library(tidyverse)
## ── Attaching core tidyverse packages ──────────────────────── tidyverse 2.0.0 ──
## ✔ dplyr 1.1.3 ✔ readr 2.1.4
## ✔ forcats 1.0.0 ✔ stringr 1.5.0
## ✔ ggplot2 3.4.3 ✔ tibble 3.2.1
## ✔ lubridate 1.9.3 ✔ tidyr 1.3.0
## ✔ purrr 1.0.2
## ── Conflicts ────────────────────────────────────────── tidyverse_conflicts() ──
## ✖ dplyr::filter() masks stats::filter()
## ✖ dplyr::lag() masks stats::lag()
## ℹ Use the conflicted package (<http://conflicted.r-lib.org/>) to force all conflicts to become errors
library(recommenderlab)
## Loading required package: Matrix
##
## Attaching package: 'Matrix'
##
## The following objects are masked from 'package:tidyr':
##
## expand, pack, unpack
##
## Loading required package: arules
##
## Attaching package: 'arules'
##
## The following object is masked from 'package:dplyr':
##
## recode
##
## The following objects are masked from 'package:base':
##
## abbreviate, write
##
## Loading required package: proxy
##
## Attaching package: 'proxy'
##
## The following object is masked from 'package:Matrix':
##
## as.matrix
##
## The following objects are masked from 'package:stats':
##
## as.dist, dist
##
## The following object is masked from 'package:base':
##
## as.matrix
##
## Registered S3 methods overwritten by 'registry':
## method from
## print.registry_field proxy
## print.registry_entry proxy
library(lsa)
## Loading required package: SnowballC
library(dplyr)
library(tidyr)
data("MovieLense")
str(MovieLense)
## Formal class 'realRatingMatrix' [package "recommenderlab"] with 2 slots
## ..@ data :Formal class 'dgCMatrix' [package "Matrix"] with 6 slots
## .. .. ..@ i : int [1:99392] 0 1 4 5 9 12 14 15 16 17 ...
## .. .. ..@ p : int [1:1665] 0 452 583 673 882 968 994 1386 1605 1904 ...
## .. .. ..@ Dim : int [1:2] 943 1664
## .. .. ..@ Dimnames:List of 2
## .. .. .. ..$ : chr [1:943] "1" "2" "3" "4" ...
## .. .. .. ..$ : chr [1:1664] "Toy Story (1995)" "GoldenEye (1995)" "Four Rooms (1995)" "Get Shorty (1995)" ...
## .. .. ..@ x : num [1:99392] 5 4 4 4 4 3 1 5 4 5 ...
## .. .. ..@ factors : list()
## ..@ normalize: NULL
summary(MovieLense)
## Length Class Mode
## 1 realRatingMatrix S4
type:
class(MovieLense)
## [1] "realRatingMatrix"
## attr(,"package")
## [1] "recommenderlab"
see it as data frame
movie_data <- as(MovieLense, "data.frame")
head(movie_data, 20)
## user item rating
## 1 1 Toy Story (1995) 5
## 453 1 GoldenEye (1995) 3
## 584 1 Four Rooms (1995) 4
## 674 1 Get Shorty (1995) 3
## 883 1 Copycat (1995) 3
## 969 1 Shanghai Triad (Yao a yao yao dao waipo qiao) (1995) 5
## 995 1 Twelve Monkeys (1995) 4
## 1387 1 Babe (1995) 1
## 1606 1 Dead Man Walking (1995) 5
## 1905 1 Richard III (1995) 3
## 1994 1 Seven (Se7en) (1995) 2
## 2230 1 Usual Suspects, The (1995) 5
## 2497 1 Mighty Aphrodite (1995) 5
## 2681 1 Postino, Il (1994) 5
## 2864 1 Mr. Holland's Opus (1995) 5
## 3157 1 French Twist (Gazon maudit) (1995) 5
## 3196 1 From Dusk Till Dawn (1996) 3
## 3288 1 White Balloon, The (1995) 4
## 3298 1 Antonia's Line (1995) 5
## 3367 1 Angels and Insects (1995) 4
column_names <- colnames(MovieLense)
# print(column_names)
# we look at slotnames
slotNames(MovieLense)
## [1] "data" "normalize"
# classes
class(MovieLense@data)
## [1] "dgCMatrix"
## attr(,"package")
## [1] "Matrix"
We now look at all the unique vector ratings
vector_ratings <- as.vector(MovieLense@data)
unique(vector_ratings)
## [1] 5 4 0 3 1 2
A rating of 0 indicates a missing rating, so we have to remove it
vector_ratings <- vector_ratings[vector_ratings != 0]
we now look, how often a movie was watched, with the help of a dataframe
views_per_movie <- colCounts(MovieLense)
dfrat <- data.frame(
movie = names(views_per_movie),
views = views_per_movie
)
dfviews <- dfrat[order(dfrat$views, decreasing = TRUE), ]
head(dfviews)
## movie views
## Star Wars (1977) Star Wars (1977) 583
## Contact (1997) Contact (1997) 509
## Fargo (1996) Fargo (1996) 508
## Return of the Jedi (1983) Return of the Jedi (1983) 507
## Liar Liar (1997) Liar Liar (1997) 485
## English Patient, The (1996) English Patient, The (1996) 481
here we have our 10 most watched movies as a plot
df <- as(MovieLense, "data.frame")
dfMeta <- as(MovieLenseMeta, "data.frame")
movieCount <- df %>%
group_by(item) %>%
summarize(freq = n()) %>%
arrange(desc(freq))
ggplot(
head(movieCount, 10),
aes(x = reorder(item, -freq), y = freq)
) +
geom_bar(stat = "identity") +
xlab("Movie Titles") +
ylab("Frequency") +
ggtitle("Top 10 Most Frequent Movies") +
theme(axis.text.x = element_text(angle = 90, hjust = 1))
We see the top 10 most frequent watched movies, further below we investigate which genres are the most frequent watched.
Genres are in movielensemeta data. 1 means the genre is represent in the movie. 0 means it is not. By using that logic, we can summarise the columns, and the result is the number of occurenses of the genres in movielense.
# Count the frequency of each genre and create a new data frame
merged <- left_join(df, dfMeta, by = c("item" = "title"))
# Summarize by Genre
dfMetaGenres <- select(dfMeta, -(1:3))
# sum all genre columns
genreCount <- colSums(dfMetaGenres, na.rm = TRUE)
# create df
genreCountDf <- data.frame(genre = names(genreCount), freq = genreCount)
# Create a bar plot
ggplot(
genreCountDf,
aes(x = reorder(genre, -freq), y = freq)
) +
geom_bar(stat = "identity") +
xlab("Genres") +
ylab("Total Frequency") +
ggtitle("Most Frequently Watched Genres") +
theme(axis.text.x = element_text(angle = 90, hjust = 1))
The plot shows the most frequently watches genres in descending order. There is a clear imbalance in the genres, which can lead to a popularity bias, say the tendency to recommend popular items. Which in turn can lead to even more people watching dramas and reinforce the bias. An additional problem is that the same movie can be categorized in multiple genres, which can be misleading for the interpretation of the data.
MovieLenseMeta
## title
## 1 Toy Story (1995)
## 2 GoldenEye (1995)
## 3 Four Rooms (1995)
## 4 Get Shorty (1995)
## 5 Copycat (1995)
## 6 Shanghai Triad (Yao a yao yao dao waipo qiao) (1995)
## 7 Twelve Monkeys (1995)
## 8 Babe (1995)
## 9 Dead Man Walking (1995)
## 10 Richard III (1995)
## 11 Seven (Se7en) (1995)
## 12 Usual Suspects, The (1995)
## 13 Mighty Aphrodite (1995)
## 14 Postino, Il (1994)
## 15 Mr. Holland's Opus (1995)
## 16 French Twist (Gazon maudit) (1995)
## 17 From Dusk Till Dawn (1996)
## 18 White Balloon, The (1995)
## 19 Antonia's Line (1995)
## 20 Angels and Insects (1995)
## 21 Muppet Treasure Island (1996)
## 22 Braveheart (1995)
## 23 Taxi Driver (1976)
## 24 Rumble in the Bronx (1995)
## 25 Birdcage, The (1996)
## 26 Brothers McMullen, The (1995)
## 27 Bad Boys (1995)
## 28 Apollo 13 (1995)
## 29 Batman Forever (1995)
## 30 Belle de jour (1967)
## 31 Crimson Tide (1995)
## 32 Crumb (1994)
## 33 Desperado (1995)
## 34 Doom Generation, The (1995)
## 35 Free Willy 2: The Adventure Home (1995)
## 36 Mad Love (1995)
## 37 Nadja (1994)
## 38 Net, The (1995)
## 39 Strange Days (1995)
## 40 To Wong Foo, Thanks for Everything! Julie Newmar (1995)
## 41 Billy Madison (1995)
## 42 Clerks (1994)
## 43 Disclosure (1994)
## 44 Dolores Claiborne (1994)
## 45 Eat Drink Man Woman (1994)
## 46 Exotica (1994)
## 47 Ed Wood (1994)
## 48 Hoop Dreams (1994)
## 49 I.Q. (1994)
## 50 Star Wars (1977)
## 51 Legends of the Fall (1994)
## 52 Madness of King George, The (1994)
## 53 Natural Born Killers (1994)
## 54 Outbreak (1995)
## 55 Professional, The (1994)
## 56 Pulp Fiction (1994)
## 57 Priest (1994)
## 58 Quiz Show (1994)
## 59 Three Colors: Red (1994)
## 60 Three Colors: Blue (1993)
## 61 Three Colors: White (1994)
## 62 Stargate (1994)
## 63 Santa Clause, The (1994)
## 64 Shawshank Redemption, The (1994)
## 65 What's Eating Gilbert Grape (1993)
## 66 While You Were Sleeping (1995)
## 67 Ace Ventura: Pet Detective (1994)
## 68 Crow, The (1994)
## 69 Forrest Gump (1994)
## 70 Four Weddings and a Funeral (1994)
## 71 Lion King, The (1994)
## 72 Mask, The (1994)
## 73 Maverick (1994)
## 74 Faster Pussycat! Kill! Kill! (1965)
## 75 Brother Minister: The Assassination of Malcolm X (1994)
## 76 Carlito's Way (1993)
## 77 Firm, The (1993)
## 78 Free Willy (1993)
## 79 Fugitive, The (1993)
## 80 Hot Shots! Part Deux (1993)
## 81 Hudsucker Proxy, The (1994)
## 82 Jurassic Park (1993)
## 83 Much Ado About Nothing (1993)
## 84 Robert A. Heinlein's The Puppet Masters (1994)
## 85 Ref, The (1994)
## 86 Remains of the Day, The (1993)
## 87 Searching for Bobby Fischer (1993)
## 88 Sleepless in Seattle (1993)
## 89 Blade Runner (1982)
## 90 So I Married an Axe Murderer (1993)
## 91 Nightmare Before Christmas, The (1993)
## 92 True Romance (1993)
## 93 Welcome to the Dollhouse (1995)
## 94 Home Alone (1990)
## 95 Aladdin (1992)
## 96 Terminator 2: Judgment Day (1991)
## 97 Dances with Wolves (1990)
## 98 Silence of the Lambs, The (1991)
## 99 Snow White and the Seven Dwarfs (1937)
## 100 Fargo (1996)
## 101 Heavy Metal (1981)
## 102 Aristocats, The (1970)
## 103 All Dogs Go to Heaven 2 (1996)
## 104 Theodore Rex (1995)
## 105 Sgt. Bilko (1996)
## 106 Diabolique (1996)
## 107 Moll Flanders (1996)
## 108 Kids in the Hall: Brain Candy (1996)
## 109 Mystery Science Theater 3000: The Movie (1996)
## 110 Operation Dumbo Drop (1995)
## 111 Truth About Cats & Dogs, The (1996)
## 112 Flipper (1996)
## 113 Horseman on the Roof, The (Hussard sur le toit, Le) (1995)
## 114 Wallace & Gromit: The Best of Aardman Animation (1996)
## 115 Haunted World of Edward D. Wood Jr., The (1995)
## 116 Cold Comfort Farm (1995)
## 117 Rock, The (1996)
## 118 Twister (1996)
## 119 Maya Lin: A Strong Clear Vision (1994)
## 120 Striptease (1996)
## 121 Independence Day (ID4) (1996)
## 122 Cable Guy, The (1996)
## 123 Frighteners, The (1996)
## 124 Lone Star (1996)
## 125 Phenomenon (1996)
## 126 Spitfire Grill, The (1996)
## 127 Godfather, The (1972)
## 128 Supercop (1992)
## 129 Bound (1996)
## 130 Kansas City (1996)
## 131 Breakfast at Tiffany's (1961)
## 132 Wizard of Oz, The (1939)
## 133 Gone with the Wind (1939)
## 134 Citizen Kane (1941)
## 135 2001: A Space Odyssey (1968)
## 136 Mr. Smith Goes to Washington (1939)
## 137 Big Night (1996)
## 138 D3: The Mighty Ducks (1996)
## 139 Love Bug, The (1969)
## 140 Homeward Bound: The Incredible Journey (1993)
## 141 20,000 Leagues Under the Sea (1954)
## 142 Bedknobs and Broomsticks (1971)
## 143 Sound of Music, The (1965)
## 144 Die Hard (1988)
## 145 Lawnmower Man, The (1992)
## 146 Unhook the Stars (1996)
## 147 Long Kiss Goodnight, The (1996)
## 148 Ghost and the Darkness, The (1996)
## 149 Jude (1996)
## 150 Swingers (1996)
## 151 Willy Wonka and the Chocolate Factory (1971)
## 152 Sleeper (1973)
## 153 Fish Called Wanda, A (1988)
## 154 Monty Python's Life of Brian (1979)
## 155 Dirty Dancing (1987)
## 156 Reservoir Dogs (1992)
## 157 Platoon (1986)
## 158 Weekend at Bernie's (1989)
## 159 Basic Instinct (1992)
## 160 Glengarry Glen Ross (1992)
## 161 Top Gun (1986)
## 162 On Golden Pond (1981)
## 163 Return of the Pink Panther, The (1974)
## 164 Abyss, The (1989)
## 165 Jean de Florette (1986)
## 166 Manon of the Spring (Manon des sources) (1986)
## 167 Private Benjamin (1980)
## 168 Monty Python and the Holy Grail (1974)
## 169 Wrong Trousers, The (1993)
## 170 Cinema Paradiso (1988)
## 171 Delicatessen (1991)
## 172 Empire Strikes Back, The (1980)
## 173 Princess Bride, The (1987)
## 174 Raiders of the Lost Ark (1981)
## 175 Brazil (1985)
## 176 Aliens (1986)
## 177 Good, The Bad and The Ugly, The (1966)
## 178 12 Angry Men (1957)
## 179 Clockwork Orange, A (1971)
## 180 Apocalypse Now (1979)
## 181 Return of the Jedi (1983)
## 182 GoodFellas (1990)
## 183 Alien (1979)
## 184 Army of Darkness (1993)
## 185 Psycho (1960)
## 186 Blues Brothers, The (1980)
## 187 Godfather: Part II, The (1974)
## 188 Full Metal Jacket (1987)
## 189 Grand Day Out, A (1992)
## 190 Henry V (1989)
## 191 Amadeus (1984)
## 192 Raging Bull (1980)
## 193 Right Stuff, The (1983)
## 194 Sting, The (1973)
## 195 Terminator, The (1984)
## 196 Dead Poets Society (1989)
## 197 Graduate, The (1967)
## 198 Nikita (La Femme Nikita) (1990)
## 199 Bridge on the River Kwai, The (1957)
## 200 Shining, The (1980)
## 201 Evil Dead II (1987)
## 202 Groundhog Day (1993)
## 203 Unforgiven (1992)
## 204 Back to the Future (1985)
## 205 Patton (1970)
## 206 Akira (1988)
## 207 Cyrano de Bergerac (1990)
## 208 Young Frankenstein (1974)
## 209 This Is Spinal Tap (1984)
## 210 Indiana Jones and the Last Crusade (1989)
## 211 M*A*S*H (1970)
## 212 Unbearable Lightness of Being, The (1988)
## 213 Room with a View, A (1986)
## 214 Pink Floyd - The Wall (1982)
## 215 Field of Dreams (1989)
## 216 When Harry Met Sally... (1989)
## 217 Bram Stoker's Dracula (1992)
## 218 Cape Fear (1991)
## 219 Nightmare on Elm Street, A (1984)
## 220 Mirror Has Two Faces, The (1996)
## 221 Breaking the Waves (1996)
## 222 Star Trek: First Contact (1996)
## 223 Sling Blade (1996)
## 224 Ridicule (1996)
## 225 101 Dalmatians (1996)
## 226 Die Hard 2 (1990)
## 227 Star Trek VI: The Undiscovered Country (1991)
## 228 Star Trek: The Wrath of Khan (1982)
## 229 Star Trek III: The Search for Spock (1984)
## 230 Star Trek IV: The Voyage Home (1986)
## 231 Batman Returns (1992)
## 232 Young Guns (1988)
## 233 Under Siege (1992)
## 234 Jaws (1975)
## 235 Mars Attacks! (1996)
## 236 Citizen Ruth (1996)
## 237 Jerry Maguire (1996)
## 238 Raising Arizona (1987)
## 239 Sneakers (1992)
## 240 Beavis and Butt-head Do America (1996)
## 241 Last of the Mohicans, The (1992)
## 242 Kolya (1996)
## 243 Jungle2Jungle (1997)
## 244 Smilla's Sense of Snow (1997)
## 245 Devil's Own, The (1997)
## 246 Chasing Amy (1997)
## 247 Turbo: A Power Rangers Movie (1997)
## 248 Grosse Pointe Blank (1997)
## 249 Austin Powers: International Man of Mystery (1997)
## 250 Fifth Element, The (1997)
## 251 Shall We Dance? (1996)
## 252 Lost World: Jurassic Park, The (1997)
## 253 Pillow Book, The (1995)
## 254 Batman & Robin (1997)
## 255 My Best Friend's Wedding (1997)
## 256 When the Cats Away (Chacun cherche son chat) (1996)
## 257 Men in Black (1997)
## 258 Contact (1997)
## 259 George of the Jungle (1997)
## 260 Event Horizon (1997)
## 261 Air Bud (1997)
## 262 In the Company of Men (1997)
## 263 Steel (1997)
## 264 Mimic (1997)
## 265 Hunt for Red October, The (1990)
## 266 Kull the Conqueror (1997)
## 267 unknown
## 269 Full Monty, The (1997)
## 270 Gattaca (1997)
## 271 Starship Troopers (1997)
## 272 Good Will Hunting (1997)
## 273 Heat (1995)
## 274 Sabrina (1995)
## 275 Sense and Sensibility (1995)
## 276 Leaving Las Vegas (1995)
## 277 Restoration (1995)
## 278 Bed of Roses (1996)
## 279 Once Upon a Time... When We Were Colored (1995)
## 280 Up Close and Personal (1996)
## 281 River Wild, The (1994)
## 282 Time to Kill, A (1996)
## 283 Emma (1996)
## 284 Tin Cup (1996)
## 285 Secrets & Lies (1996)
## 286 English Patient, The (1996)
## 287 Marvin's Room (1996)
## 288 Scream (1996)
## 289 Evita (1996)
## 290 Fierce Creatures (1997)
## 291 Absolute Power (1997)
## 292 Rosewood (1997)
## 293 Donnie Brasco (1997)
## 294 Liar Liar (1997)
## 295 Breakdown (1997)
## 296 Promesse, La (1996)
## 297 Ulee's Gold (1997)
## 298 Face/Off (1997)
## 299 Hoodlum (1997)
## 300 Air Force One (1997)
## 301 In & Out (1997)
## 302 L.A. Confidential (1997)
## 304 Fly Away Home (1996)
## 305 Ice Storm, The (1997)
## 306 Mrs. Brown (Her Majesty, Mrs. Brown) (1997)
## 307 Devil's Advocate, The (1997)
## 308 FairyTale: A True Story (1997)
## 309 Deceiver (1997)
## 310 Rainmaker, The (1997)
## 311 Wings of the Dove, The (1997)
## 312 Midnight in the Garden of Good and Evil (1997)
## 313 Titanic (1997)
## 314 3 Ninjas: High Noon At Mega Mountain (1998)
## 315 Apt Pupil (1998)
## 316 As Good As It Gets (1997)
## 317 In the Name of the Father (1993)
## 318 Schindler's List (1993)
## 319 Everyone Says I Love You (1996)
## 320 Paradise Lost: The Child Murders at Robin Hood Hills (1996)
## 321 Mother (1996)
## 322 Murder at 1600 (1997)
## 323 Dante's Peak (1997)
## 324 Lost Highway (1997)
## 325 Crash (1996)
## 326 G.I. Jane (1997)
## 327 Cop Land (1997)
## 328 Conspiracy Theory (1997)
## 329 Desperate Measures (1998)
## 330 187 (1997)
## 331 Edge, The (1997)
## 332 Kiss the Girls (1997)
## 333 Game, The (1997)
## 334 U Turn (1997)
## 335 How to Be a Player (1997)
## 336 Playing God (1997)
## 337 House of Yes, The (1997)
## 338 Bean (1997)
## 339 Mad City (1997)
## 340 Boogie Nights (1997)
## 341 Critical Care (1997)
## 342 Man Who Knew Too Little, The (1997)
## 343 Alien: Resurrection (1997)
## 344 Apostle, The (1997)
## 345 Deconstructing Harry (1997)
## 346 Jackie Brown (1997)
## 347 Wag the Dog (1997)
## 349 Hard Rain (1998)
## 350 Fallen (1998)
## 351 Prophecy II, The (1998)
## 352 Spice World (1997)
## 353 Deep Rising (1998)
## 354 Wedding Singer, The (1998)
## 355 Sphere (1998)
## 356 Client, The (1994)
## 357 One Flew Over the Cuckoo's Nest (1975)
## 358 Spawn (1997)
## 359 Assignment, The (1997)
## 360 Wonderland (1997)
## 361 Incognito (1997)
## 362 Blues Brothers 2000 (1998)
## 363 Sudden Death (1995)
## 364 Ace Ventura: When Nature Calls (1995)
## 365 Powder (1995)
## 366 Dangerous Minds (1995)
## 367 Clueless (1995)
## 368 Bio-Dome (1996)
## 369 Black Sheep (1996)
## 370 Mary Reilly (1996)
## 371 Bridges of Madison County, The (1995)
## 372 Jeffrey (1995)
## 373 Judge Dredd (1995)
## 374 Mighty Morphin Power Rangers: The Movie (1995)
## 375 Showgirls (1995)
## 376 Houseguest (1994)
## 377 Heavyweights (1994)
## 378 Miracle on 34th Street (1994)
## 379 Tales From the Crypt Presents: Demon Knight (1995)
## 380 Star Trek: Generations (1994)
## 381 Muriel's Wedding (1994)
## 382 Adventures of Priscilla, Queen of the Desert, The (1994)
## 383 Flintstones, The (1994)
## 384 Naked Gun 33 1/3: The Final Insult (1994)
## 385 True Lies (1994)
## 386 Addams Family Values (1993)
## 387 Age of Innocence, The (1993)
## 388 Beverly Hills Cop III (1994)
## 389 Black Beauty (1994)
## 390 Fear of a Black Hat (1993)
## 391 Last Action Hero (1993)
## 392 Man Without a Face, The (1993)
## 393 Mrs. Doubtfire (1993)
## 394 Radioland Murders (1994)
## 395 Robin Hood: Men in Tights (1993)
## 396 Serial Mom (1994)
## 397 Striking Distance (1993)
## 398 Super Mario Bros. (1993)
## 399 Three Musketeers, The (1993)
## 400 Little Rascals, The (1994)
## 401 Brady Bunch Movie, The (1995)
## 402 Ghost (1990)
## 403 Batman (1989)
## 404 Pinocchio (1940)
## 405 Mission: Impossible (1996)
## 406 Thinner (1996)
## 407 Spy Hard (1996)
## 408 Close Shave, A (1995)
## 409 Jack (1996)
## 410 Kingpin (1996)
## 411 Nutty Professor, The (1996)
## 412 Very Brady Sequel, A (1996)
## 413 Tales from the Crypt Presents: Bordello of Blood (1996)
## 414 My Favorite Year (1982)
## 415 Apple Dumpling Gang, The (1975)
## 416 Old Yeller (1957)
## 417 Parent Trap, The (1961)
## 418 Cinderella (1950)
## 419 Mary Poppins (1964)
## 420 Alice in Wonderland (1951)
## 421 William Shakespeare's Romeo and Juliet (1996)
## 422 Aladdin and the King of Thieves (1996)
## 423 E.T. the Extra-Terrestrial (1982)
## 424 Children of the Corn: The Gathering (1996)
## 425 Bob Roberts (1992)
## 426 Transformers: The Movie, The (1986)
## 427 To Kill a Mockingbird (1962)
## 428 Harold and Maude (1971)
## 429 Day the Earth Stood Still, The (1951)
## 430 Duck Soup (1933)
## 431 Highlander (1986)
## 432 Fantasia (1940)
## 433 Heathers (1989)
## 434 Forbidden Planet (1956)
## 435 Butch Cassidy and the Sundance Kid (1969)
## 436 American Werewolf in London, An (1981)
## 437 Amityville 1992: It's About Time (1992)
## 438 Amityville 3-D (1983)
## 439 Amityville: A New Generation (1993)
## 440 Amityville II: The Possession (1982)
## 441 Amityville Horror, The (1979)
## 442 Amityville Curse, The (1990)
## 443 Birds, The (1963)
## 444 Blob, The (1958)
## 445 Body Snatcher, The (1945)
## 446 Burnt Offerings (1976)
## 447 Carrie (1976)
## 448 Omen, The (1976)
## 449 Star Trek: The Motion Picture (1979)
## 450 Star Trek V: The Final Frontier (1989)
## 451 Grease (1978)
## 452 Jaws 2 (1978)
## 453 Jaws 3-D (1983)
## 454 Bastard Out of Carolina (1996)
## 455 Jackie Chan's First Strike (1996)
## 456 Beverly Hills Ninja (1997)
## 457 Free Willy 3: The Rescue (1997)
## 458 Nixon (1995)
## 459 Cry, the Beloved Country (1995)
## 460 Crossing Guard, The (1995)
## 461 Smoke (1995)
## 462 Like Water For Chocolate (Como agua para chocolate) (1992)
## 463 Secret of Roan Inish, The (1994)
## 464 Vanya on 42nd Street (1994)
## 465 Jungle Book, The (1994)
## 466 Red Rock West (1992)
## 467 Bronx Tale, A (1993)
## 468 Rudy (1993)
## 469 Short Cuts (1993)
## 470 Tombstone (1993)
## 471 Courage Under Fire (1996)
## 472 Dragonheart (1996)
## 473 James and the Giant Peach (1996)
## 474 Dr. Strangelove or: How I Learned to Stop Worrying and Love the Bomb (1963)
## 475 Trainspotting (1996)
## 476 First Wives Club, The (1996)
## 477 Matilda (1996)
## 478 Philadelphia Story, The (1940)
## 479 Vertigo (1958)
## 480 North by Northwest (1959)
## 481 Apartment, The (1960)
## 482 Some Like It Hot (1959)
## 483 Casablanca (1942)
## 484 Maltese Falcon, The (1941)
## 485 My Fair Lady (1964)
## 486 Sabrina (1954)
## 487 Roman Holiday (1953)
## 488 Sunset Blvd. (1950)
## 489 Notorious (1946)
## 490 To Catch a Thief (1955)
## 491 Adventures of Robin Hood, The (1938)
## 492 East of Eden (1955)
## 493 Thin Man, The (1934)
## 494 His Girl Friday (1940)
## 495 Around the World in 80 Days (1956)
## 496 It's a Wonderful Life (1946)
## 497 Bringing Up Baby (1938)
## 498 African Queen, The (1951)
## 499 Cat on a Hot Tin Roof (1958)
## 501 Dumbo (1941)
## 502 Bananas (1971)
## 503 Candidate, The (1972)
## 504 Bonnie and Clyde (1967)
## 505 Dial M for Murder (1954)
## 506 Rebel Without a Cause (1955)
## 507 Streetcar Named Desire, A (1951)
## 508 People vs. Larry Flynt, The (1996)
## 509 My Left Foot (1989)
## 510 Magnificent Seven, The (1954)
## 511 Lawrence of Arabia (1962)
## 512 Wings of Desire (1987)
## 513 Third Man, The (1949)
## 514 Annie Hall (1977)
## 515 Boot, Das (1981)
## 516 Local Hero (1983)
## 517 Manhattan (1979)
## 518 Miller's Crossing (1990)
## 519 Treasure of the Sierra Madre, The (1948)
## 520 Great Escape, The (1963)
## 521 Deer Hunter, The (1978)
## 522 Down by Law (1986)
## 523 Cool Hand Luke (1967)
## 524 Great Dictator, The (1940)
## 525 Big Sleep, The (1946)
## 526 Ben-Hur (1959)
## 527 Gandhi (1982)
## 528 Killing Fields, The (1984)
## 529 My Life as a Dog (Mitt liv som hund) (1985)
## 530 Man Who Would Be King, The (1975)
## 531 Shine (1996)
## 532 Kama Sutra: A Tale of Love (1996)
## 533 Daytrippers, The (1996)
## 534 Traveller (1997)
## 535 Addicted to Love (1997)
## 536 Ponette (1996)
## 537 My Own Private Idaho (1991)
## 538 Anastasia (1997)
## 539 Mouse Hunt (1997)
## 540 Money Train (1995)
## 541 Mortal Kombat (1995)
## 542 Pocahontas (1995)
## 543 Miserables, Les (1995)
## 544 Things to Do in Denver when You're Dead (1995)
## 545 Vampire in Brooklyn (1995)
## 546 Broken Arrow (1996)
## 547 Young Poisoner's Handbook, The (1995)
## 548 NeverEnding Story III, The (1994)
## 549 Rob Roy (1995)
## 550 Die Hard: With a Vengeance (1995)
## 551 Lord of Illusions (1995)
## 552 Species (1995)
## 553 Walk in the Clouds, A (1995)
## 554 Waterworld (1995)
## 555 White Man's Burden (1995)
## 556 Wild Bill (1995)
## 557 Farinelli: il castrato (1994)
## 558 Heavenly Creatures (1994)
## 559 Interview with the Vampire (1994)
## 560 Kid in King Arthur's Court, A (1995)
## 561 Mary Shelley's Frankenstein (1994)
## 562 Quick and the Dead, The (1995)
## 563 Stephen King's The Langoliers (1995)
## 564 Tales from the Hood (1995)
## 565 Village of the Damned (1995)
## 566 Clear and Present Danger (1994)
## 567 Wes Craven's New Nightmare (1994)
## 568 Speed (1994)
## 569 Wolf (1994)
## 570 Wyatt Earp (1994)
## 571 Another Stakeout (1993)
## 572 Blown Away (1994)
## 573 Body Snatchers (1993)
## 574 Boxing Helena (1993)
## 575 City Slickers II: The Legend of Curly's Gold (1994)
## 576 Cliffhanger (1993)
## 577 Coneheads (1993)
## 578 Demolition Man (1993)
## 579 Fatal Instinct (1993)
## 580 Englishman Who Went Up a Hill, But Came Down a Mountain, The (1995)
## 581 Kalifornia (1993)
## 582 Piano, The (1993)
## 583 Romeo Is Bleeding (1993)
## 584 Secret Garden, The (1993)
## 585 Son in Law (1993)
## 586 Terminal Velocity (1994)
## 587 Hour of the Pig, The (1993)
## 588 Beauty and the Beast (1991)
## 589 Wild Bunch, The (1969)
## 590 Hellraiser: Bloodline (1996)
## 591 Primal Fear (1996)
## 592 True Crime (1995)
## 593 Stalingrad (1993)
## 594 Heavy (1995)
## 595 Fan, The (1996)
## 596 Hunchback of Notre Dame, The (1996)
## 597 Eraser (1996)
## 598 Big Squeeze, The (1996)
## 599 Police Story 4: Project S (Chao ji ji hua) (1993)
## 600 Daniel Defoe's Robinson Crusoe (1996)
## 601 For Whom the Bell Tolls (1943)
## 602 American in Paris, An (1951)
## 603 Rear Window (1954)
## 604 It Happened One Night (1934)
## 605 Meet Me in St. Louis (1944)
## 606 All About Eve (1950)
## 607 Rebecca (1940)
## 608 Spellbound (1945)
## 609 Father of the Bride (1950)
## 610 Gigi (1958)
## 611 Laura (1944)
## 612 Lost Horizon (1937)
## 613 My Man Godfrey (1936)
## 614 Giant (1956)
## 615 39 Steps, The (1935)
## 616 Night of the Living Dead (1968)
## 617 Blue Angel, The (Blaue Engel, Der) (1930)
## 618 Picnic (1955)
## 619 Extreme Measures (1996)
## 620 Chamber, The (1996)
## 621 Davy Crockett, King of the Wild Frontier (1955)
## 622 Swiss Family Robinson (1960)
## 623 Angels in the Outfield (1994)
## 624 Three Caballeros, The (1945)
## 625 Sword in the Stone, The (1963)
## 626 So Dear to My Heart (1949)
## 627 Robin Hood: Prince of Thieves (1991)
## 628 Sleepers (1996)
## 629 Victor/Victoria (1982)
## 630 Great Race, The (1965)
## 631 Crying Game, The (1992)
## 632 Sophie's Choice (1982)
## 633 Christmas Carol, A (1938)
## 634 Microcosmos: Le peuple de l'herbe (1996)
## 635 Fog, The (1980)
## 636 Escape from New York (1981)
## 637 Howling, The (1981)
## 638 Return of Martin Guerre, The (Retour de Martin Guerre, Le) (1982)
## 639 Tin Drum, The (Blechtrommel, Die) (1979)
## 640 Cook the Thief His Wife & Her Lover, The (1989)
## 641 Paths of Glory (1957)
## 642 Grifters, The (1990)
## 643 The Innocent (1994)
## 644 Thin Blue Line, The (1988)
## 645 Paris Is Burning (1990)
## 646 Once Upon a Time in the West (1969)
## 647 Ran (1985)
## 648 Quiet Man, The (1952)
## 649 Once Upon a Time in America (1984)
## 650 Seventh Seal, The (Sjunde inseglet, Det) (1957)
## 651 Glory (1989)
## 652 Rosencrantz and Guildenstern Are Dead (1990)
## 653 Touch of Evil (1958)
## 654 Chinatown (1974)
## 655 Stand by Me (1986)
## 656 M (1931)
## 657 Manchurian Candidate, The (1962)
## 658 Pump Up the Volume (1990)
## 659 Arsenic and Old Lace (1944)
## 660 Fried Green Tomatoes (1991)
## 661 High Noon (1952)
## 662 Somewhere in Time (1980)
## 663 Being There (1979)
## 664 Paris, Texas (1984)
## 665 Alien 3 (1992)
## 666 Blood For Dracula (Andy Warhol's Dracula) (1974)
## 667 Audrey Rose (1977)
## 668 Blood Beach (1981)
## 669 Body Parts (1991)
## 671 Bride of Frankenstein (1935)
## 672 Candyman (1992)
## 673 Cape Fear (1962)
## 674 Cat People (1982)
## 675 Nosferatu (Nosferatu, eine Symphonie des Grauens) (1922)
## 676 Crucible, The (1996)
## 677 Fire on the Mountain (1996)
## 678 Volcano (1997)
## 679 Conan the Barbarian (1981)
## 681 Wishmaster (1997)
## 682 I Know What You Did Last Summer (1997)
## 683 Rocket Man (1997)
## 684 In the Line of Fire (1993)
## 685 Executive Decision (1996)
## 686 Perfect World, A (1993)
## 687 McHale's Navy (1997)
## 688 Leave It to Beaver (1997)
## 689 Jackal, The (1997)
## 690 Seven Years in Tibet (1997)
## 691 Dark City (1998)
## 692 American President, The (1995)
## 693 Casino (1995)
## 694 Persuasion (1995)
## 695 Kicking and Screaming (1995)
## 696 City Hall (1996)
## 697 Basketball Diaries, The (1995)
## 698 Browning Version, The (1994)
## 699 Little Women (1994)
## 700 Miami Rhapsody (1995)
## 701 Wonderful, Horrible Life of Leni Riefenstahl, The (1993)
## 702 Barcelona (1994)
## 703 Widows' Peak (1994)
## 704 House of the Spirits, The (1993)
## 705 Singin' in the Rain (1952)
## 706 Bad Moon (1996)
## 707 Enchanted April (1991)
## 708 Sex, Lies, and Videotape (1989)
## 709 Strictly Ballroom (1992)
## 710 Better Off Dead... (1985)
## 711 Substance of Fire, The (1996)
## 712 Tin Men (1987)
## 713 Othello (1995)
## 714 Carrington (1995)
## 715 To Die For (1995)
## 716 Home for the Holidays (1995)
## 717 Juror, The (1996)
## 718 In the Bleak Midwinter (1995)
## 719 Canadian Bacon (1994)
## 720 First Knight (1995)
## 721 Mallrats (1995)
## 722 Nine Months (1995)
## 723 Boys on the Side (1995)
## 724 Circle of Friends (1995)
## 725 Exit to Eden (1994)
## 726 Fluke (1995)
## 727 Immortal Beloved (1994)
## 728 Junior (1994)
## 729 Nell (1994)
## 730 Queen Margot (Reine Margot, La) (1994)
## 731 Corrina, Corrina (1994)
## 732 Dave (1993)
## 733 Go Fish (1994)
## 734 Made in America (1993)
## 735 Philadelphia (1993)
## 736 Shadowlands (1993)
## 737 Sirens (1994)
## 738 Threesome (1994)
## 739 Pretty Woman (1990)
## 740 Jane Eyre (1996)
## 741 Last Supper, The (1995)
## 742 Ransom (1996)
## 743 Crow: City of Angels, The (1996)
## 744 Michael Collins (1996)
## 745 Ruling Class, The (1972)
## 746 Real Genius (1985)
## 747 Benny & Joon (1993)
## 748 Saint, The (1997)
## 749 MatchMaker, The (1997)
## 750 Amistad (1997)
## 751 Tomorrow Never Dies (1997)
## 752 Replacement Killers, The (1998)
## 753 Burnt By the Sun (1994)
## 754 Red Corner (1997)
## 755 Jumanji (1995)
## 756 Father of the Bride Part II (1995)
## 757 Across the Sea of Time (1995)
## 758 Lawnmower Man 2: Beyond Cyberspace (1996)
## 759 Fair Game (1995)
## 760 Screamers (1995)
## 761 Nick of Time (1995)
## 762 Beautiful Girls (1996)
## 763 Happy Gilmore (1996)
## 764 If Lucy Fell (1996)
## 765 Boomerang (1992)
## 766 Man of the Year (1995)
## 767 Addiction, The (1995)
## 768 Casper (1995)
## 769 Congo (1995)
## 770 Devil in a Blue Dress (1995)
## 771 Johnny Mnemonic (1995)
## 772 Kids (1995)
## 773 Mute Witness (1994)
## 774 Prophecy, The (1995)
## 775 Something to Talk About (1995)
## 776 Three Wishes (1995)
## 777 Castle Freak (1995)
## 778 Don Juan DeMarco (1995)
## 779 Drop Zone (1994)
## 780 Dumb & Dumber (1994)
## 781 French Kiss (1995)
## 782 Little Odessa (1994)
## 783 Milk Money (1994)
## 784 Beyond Bedlam (1993)
## 785 Only You (1994)
## 786 Perez Family, The (1995)
## 787 Roommates (1995)
## 788 Relative Fear (1994)
## 789 Swimming with Sharks (1995)
## 790 Tommy Boy (1995)
## 791 Baby-Sitters Club, The (1995)
## 792 Bullets Over Broadway (1994)
## 793 Crooklyn (1994)
## 794 It Could Happen to You (1994)
## 795 Richie Rich (1994)
## 796 Speechless (1994)
## 797 Timecop (1994)
## 798 Bad Company (1995)
## 799 Boys Life (1995)
## 800 In the Mouth of Madness (1995)
## 801 Air Up There, The (1994)
## 802 Hard Target (1993)
## 803 Heaven & Earth (1993)
## 804 Jimmy Hollywood (1994)
## 805 Manhattan Murder Mystery (1993)
## 806 Menace II Society (1993)
## 807 Poetic Justice (1993)
## 808 Program, The (1993)
## 809 Rising Sun (1993)
## 810 Shadow, The (1994)
## 811 Thirty-Two Short Films About Glenn Gould (1993)
## 812 Andre (1994)
## 813 Celluloid Closet, The (1995)
## 814 Great Day in Harlem, A (1994)
## 815 One Fine Day (1996)
## 816 Candyman: Farewell to the Flesh (1995)
## 817 Frisk (1995)
## 818 Girl 6 (1996)
## 819 Eddie (1996)
## 820 Space Jam (1996)
## 821 Mrs. Winterbourne (1996)
## 822 Faces (1968)
## 823 Mulholland Falls (1996)
## 824 Great White Hype, The (1996)
## 825 Arrival, The (1996)
## 826 Phantom, The (1996)
## 827 Daylight (1996)
## 828 Alaska (1996)
## 829 Fled (1996)
## 830 Power 98 (1995)
## 831 Escape from L.A. (1996)
## 832 Bogus (1996)
## 833 Bulletproof (1996)
## 834 Halloween: The Curse of Michael Myers (1995)
## 835 Gay Divorcee, The (1934)
## 836 Ninotchka (1939)
## 837 Meet John Doe (1941)
## 838 In the Line of Duty 2 (1987)
## 839 Loch Ness (1995)
## 840 Last Man Standing (1996)
## 841 Glimmer Man, The (1996)
## 842 Pollyanna (1960)
## 843 Shaggy Dog, The (1959)
## 844 Freeway (1996)
## 845 That Thing You Do! (1996)
## 846 To Gillian on Her 37th Birthday (1996)
## 847 Looking for Richard (1996)
## 848 Murder, My Sweet (1944)
## 849 Days of Thunder (1990)
## 850 Perfect Candidate, A (1996)
## 851 Two or Three Things I Know About Her (1966)
## 852 Bloody Child, The (1996)
## 853 Braindead (1992)
## 854 Bad Taste (1987)
## 855 Diva (1981)
## 856 Night on Earth (1991)
## 857 Paris Was a Woman (1995)
## 858 Amityville: Dollhouse (1996)
## 859 April Fool's Day (1986)
## 860 Believers, The (1987)
## 861 Nosferatu a Venezia (1986)
## 862 Jingle All the Way (1996)
## 863 Garden of Finzi-Contini, The (Giardino dei Finzi-Contini, Il) (1970)
## 864 My Fellow Americans (1996)
## 866 Michael (1996)
## 867 Whole Wide World, The (1996)
## 868 Hearts and Minds (1996)
## 869 Fools Rush In (1997)
## 870 Touch (1997)
## 871 Vegas Vacation (1997)
## 872 Love Jones (1997)
## 873 Picture Perfect (1997)
## 874 Career Girls (1997)
## 875 She's So Lovely (1997)
## 876 Money Talks (1997)
## 877 Excess Baggage (1997)
## 878 That Darn Cat! (1997)
## 879 Peacemaker, The (1997)
## 880 Soul Food (1997)
## 882 Washington Square (1997)
## 883 Telling Lies in America (1997)
## 884 Year of the Horse (1997)
## 885 Phantoms (1998)
## 886 Life Less Ordinary, A (1997)
## 887 Eve's Bayou (1997)
## 888 One Night Stand (1997)
## 889 Tango Lesson, The (1997)
## 890 Mortal Kombat: Annihilation (1997)
## 891 Bent (1997)
## 892 Flubber (1997)
## 893 For Richer or Poorer (1997)
## 894 Home Alone 3 (1997)
## 895 Scream 2 (1997)
## 896 Sweet Hereafter, The (1997)
## 897 Time Tracers (1995)
## 898 Postman, The (1997)
## 899 Winter Guest, The (1997)
## 900 Kundun (1997)
## 901 Mr. Magoo (1997)
## 902 Big Lebowski, The (1998)
## 903 Afterglow (1997)
## 904 Ma vie en rose (My Life in Pink) (1997)
## 905 Great Expectations (1998)
## 906 Oscar & Lucinda (1997)
## 907 Vermin (1998)
## 908 Half Baked (1998)
## 909 Dangerous Beauty (1998)
## 910 Nil By Mouth (1997)
## 911 Twilight (1998)
## 912 U.S. Marshalls (1998)
## 913 Love and Death on Long Island (1997)
## 914 Wild Things (1998)
## 915 Primary Colors (1998)
## 916 Lost in Space (1998)
## 917 Mercury Rising (1998)
## 918 City of Angels (1998)
## 919 City of Lost Children, The (1995)
## 920 Two Bits (1995)
## 921 Farewell My Concubine (1993)
## 922 Dead Man (1995)
## 923 Raise the Red Lantern (1991)
## 924 White Squall (1996)
## 925 Unforgettable (1996)
## 926 Down Periscope (1996)
## 927 Flower of My Secret, The (Flor de mi secreto, La) (1995)
## 928 Craft, The (1996)
## 929 Harriet the Spy (1996)
## 930 Chain Reaction (1996)
## 931 Island of Dr. Moreau, The (1996)
## 932 First Kid (1996)
## 933 Funeral, The (1996)
## 934 Preacher's Wife, The (1996)
## 935 Paradise Road (1997)
## 936 Brassed Off (1996)
## 937 Thousand Acres, A (1997)
## 938 Smile Like Yours, A (1997)
## 939 Murder in the First (1995)
## 940 Airheads (1994)
## 941 With Honors (1994)
## 942 What's Love Got to Do with It (1993)
## 943 Killing Zoe (1994)
## 944 Renaissance Man (1994)
## 945 Charade (1963)
## 946 Fox and the Hound, The (1981)
## 947 Big Blue, The (Grand bleu, Le) (1988)
## 948 Booty Call (1997)
## 949 How to Make an American Quilt (1995)
## 950 Georgia (1995)
## 951 Indian in the Cupboard, The (1995)
## 952 Blue in the Face (1995)
## 953 Unstrung Heroes (1995)
## 954 Unzipped (1995)
## 955 Before Sunrise (1995)
## 956 Nobody's Fool (1994)
## 957 Pushing Hands (1992)
## 958 To Live (Huozhe) (1994)
## 959 Dazed and Confused (1993)
## 960 Naked (1993)
## 961 Orlando (1993)
## 962 Ruby in Paradise (1993)
## 963 Some Folks Call It a Sling Blade (1993)
## 964 Month by the Lake, A (1995)
## 965 Funny Face (1957)
## 966 Affair to Remember, An (1957)
## 967 Little Lord Fauntleroy (1936)
## 968 Inspector General, The (1949)
## 969 Winnie the Pooh and the Blustery Day (1968)
## 970 Hear My Song (1991)
## 971 Mediterraneo (1991)
## 972 Passion Fish (1992)
## 973 Grateful Dead (1995)
## 974 Eye for an Eye (1996)
## 975 Fear (1996)
## 976 Solo (1996)
## 977 Substitute, The (1996)
## 978 Heaven's Prisoners (1996)
## 979 Trigger Effect, The (1996)
## 980 Mother Night (1996)
## 981 Dangerous Ground (1997)
## 982 Maximum Risk (1996)
## 983 Rich Man's Wife, The (1996)
## 984 Shadow Conspiracy (1997)
## 985 Blood & Wine (1997)
## 986 Turbulence (1997)
## 987 Underworld (1997)
## 988 Beautician and the Beast, The (1997)
## 989 Cats Don't Dance (1997)
## 990 Anna Karenina (1997)
## 991 Keys to Tulsa (1997)
## 992 Head Above Water (1996)
## 993 Hercules (1997)
## 994 Last Time I Committed Suicide, The (1997)
## 995 Kiss Me, Guido (1997)
## 996 Big Green, The (1995)
## 997 Stuart Saves His Family (1995)
## 998 Cabin Boy (1994)
## 999 Clean Slate (1994)
## 1000 Lightning Jack (1994)
## 1001 Stupids, The (1996)
## 1002 Pest, The (1997)
## 1004 Geronimo: An American Legend (1993)
## 1005 Double vie de Veronique, La (Double Life of Veronique, The) (1991)
## 1006 Until the End of the World (Bis ans Ende der Welt) (1991)
## 1007 Waiting for Guffman (1996)
## 1008 I Shot Andy Warhol (1996)
## 1009 Stealing Beauty (1996)
## 1010 Basquiat (1996)
## 1011 2 Days in the Valley (1996)
## 1012 Private Parts (1997)
## 1013 Anaconda (1997)
## 1014 Romy and Michele's High School Reunion (1997)
## 1015 Shiloh (1997)
## 1016 Con Air (1997)
## 1017 Trees Lounge (1996)
## 1018 Tie Me Up! Tie Me Down! (1990)
## 1019 Die xue shuang xiong (Killer, The) (1989)
## 1020 Gaslight (1944)
## 1021 8 1/2 (1963)
## 1022 Fast, Cheap & Out of Control (1997)
## 1023 Fathers' Day (1997)
## 1024 Mrs. Dalloway (1997)
## 1025 Fire Down Below (1997)
## 1026 Lay of the Land, The (1997)
## 1027 Shooter, The (1995)
## 1028 Grumpier Old Men (1995)
## 1029 Jury Duty (1995)
## 1030 Beverly Hillbillies, The (1993)
## 1031 Lassie (1994)
## 1032 Little Big League (1994)
## 1033 Homeward Bound II: Lost in San Francisco (1996)
## 1034 Quest, The (1996)
## 1035 Cool Runnings (1993)
## 1036 Drop Dead Fred (1991)
## 1037 Grease 2 (1982)
## 1038 Switchback (1997)
## 1039 Hamlet (1996)
## 1040 Two if by Sea (1996)
## 1041 Forget Paris (1995)
## 1042 Just Cause (1995)
## 1043 Rent-a-Kid (1995)
## 1044 Paper, The (1994)
## 1045 Fearless (1993)
## 1046 Malice (1993)
## 1047 Multiplicity (1996)
## 1048 She's the One (1996)
## 1049 House Arrest (1996)
## 1050 Ghost and Mrs. Muir, The (1947)
## 1051 Associate, The (1996)
## 1052 Dracula: Dead and Loving It (1995)
## 1053 Now and Then (1995)
## 1054 Mr. Wrong (1996)
## 1055 Simple Twist of Fate, A (1994)
## 1056 Cronos (1992)
## 1057 Pallbearer, The (1996)
## 1058 War, The (1994)
## 1059 Don't Be a Menace to South Central While Drinking Your Juice in the Hood (1996)
## 1060 Adventures of Pinocchio, The (1996)
## 1061 Evening Star, The (1996)
## 1062 Four Days in September (1997)
## 1063 Little Princess, A (1995)
## 1064 Crossfire (1947)
## 1065 Koyaanisqatsi (1983)
## 1066 Balto (1995)
## 1067 Bottle Rocket (1996)
## 1068 Star Maker, The (Uomo delle stelle, L') (1995)
## 1069 Amateur (1994)
## 1070 Living in Oblivion (1995)
## 1071 Party Girl (1995)
## 1072 Pyromaniac's Love Story, A (1995)
## 1073 Shallow Grave (1994)
## 1074 Reality Bites (1994)
## 1075 Man of No Importance, A (1994)
## 1076 Pagemaster, The (1994)
## 1077 Love and a .45 (1994)
## 1078 Oliver & Company (1988)
## 1079 Joe's Apartment (1996)
## 1080 Celestial Clockwork (1994)
## 1081 Curdled (1996)
## 1082 Female Perversions (1996)
## 1083 Albino Alligator (1996)
## 1084 Anne Frank Remembered (1995)
## 1085 Carried Away (1996)
## 1086 It's My Party (1995)
## 1087 Bloodsport 2 (1995)
## 1088 Double Team (1997)
## 1089 Speed 2: Cruise Control (1997)
## 1090 Sliver (1993)
## 1091 Pete's Dragon (1977)
## 1092 Dear God (1996)
## 1093 Live Nude Girls (1995)
## 1094 Thin Line Between Love and Hate, A (1996)
## 1095 High School High (1996)
## 1096 Commandments (1997)
## 1097 Hate (Haine, La) (1995)
## 1098 Flirting With Disaster (1996)
## 1099 Red Firecracker, Green Firecracker (1994)
## 1100 What Happened Was... (1994)
## 1101 Six Degrees of Separation (1993)
## 1102 Two Much (1996)
## 1103 Trust (1990)
## 1104 C'est arrive pres de chez vous (1992)
## 1105 Firestorm (1998)
## 1106 Newton Boys, The (1998)
## 1107 Beyond Rangoon (1995)
## 1108 Feast of July (1995)
## 1109 Death and the Maiden (1994)
## 1110 Tank Girl (1995)
## 1111 Double Happiness (1994)
## 1112 Cobb (1994)
## 1113 Mrs. Parker and the Vicious Circle (1994)
## 1114 Faithful (1996)
## 1115 Twelfth Night (1996)
## 1116 Mark of Zorro, The (1940)
## 1117 Surviving Picasso (1996)
## 1118 Up in Smoke (1978)
## 1119 Some Kind of Wonderful (1987)
## 1120 I'm Not Rappaport (1996)
## 1121 Umbrellas of Cherbourg, The (Parapluies de Cherbourg, Les) (1964)
## 1122 They Made Me a Criminal (1939)
## 1123 Last Time I Saw Paris, The (1954)
## 1124 Farewell to Arms, A (1932)
## 1125 Innocents, The (1961)
## 1126 Old Man and the Sea, The (1958)
## 1127 Truman Show, The (1998)
## 1128 Heidi Fleiss: Hollywood Madam (1995)
## 1129 Chungking Express (1994)
## 1130 Jupiter's Wife (1994)
## 1131 Safe (1995)
## 1132 Feeling Minnesota (1996)
## 1133 Escape to Witch Mountain (1975)
## 1134 Get on the Bus (1996)
## 1135 Doors, The (1991)
## 1136 Ghosts of Mississippi (1996)
## 1137 Beautiful Thing (1996)
## 1138 Best Men (1997)
## 1139 Hackers (1995)
## 1140 Road to Wellville, The (1994)
## 1141 War Room, The (1993)
## 1142 When We Were Kings (1996)
## 1143 Hard Eight (1996)
## 1144 Quiet Room, The (1996)
## 1145 Blue Chips (1994)
## 1146 Calendar Girl (1993)
## 1147 My Family (1995)
## 1148 Tom & Viv (1994)
## 1149 Walkabout (1971)
## 1150 Last Dance (1996)
## 1151 Original Gangstas (1996)
## 1152 In Love and War (1996)
## 1153 Backbeat (1993)
## 1154 Alphaville (1965)
## 1155 Rendezvous in Paris (Rendez-vous de Paris, Les) (1995)
## 1156 Cyclo (1995)
## 1157 Relic, The (1997)
## 1158 Fille seule, La (A Single Girl) (1995)
## 1159 Stalker (1979)
## 1160 Love! Valour! Compassion! (1997)
## 1161 Palookaville (1996)
## 1162 Phat Beach (1996)
## 1163 Portrait of a Lady, The (1996)
## 1164 Zeus and Roxanne (1997)
## 1165 Big Bully (1996)
## 1166 Love & Human Remains (1993)
## 1167 Sum of Us, The (1994)
## 1168 Little Buddha (1993)
## 1169 Fresh (1994)
## 1170 Spanking the Monkey (1994)
## 1171 Wild Reeds (1994)
## 1172 Women, The (1939)
## 1173 Bliss (1997)
## 1174 Caught (1996)
## 1175 Hugo Pool (1997)
## 1176 Welcome To Sarajevo (1997)
## 1177 Dunston Checks In (1996)
## 1178 Major Payne (1994)
## 1179 Man of the House (1995)
## 1180 I Love Trouble (1994)
## 1181 Low Down Dirty Shame, A (1994)
## 1182 Cops and Robbersons (1994)
## 1183 Cowboy Way, The (1994)
## 1184 Endless Summer 2, The (1994)
## 1185 In the Army Now (1994)
## 1186 Inkwell, The (1994)
## 1187 Switchblade Sisters (1975)
## 1188 Young Guns II (1990)
## 1189 Prefontaine (1997)
## 1190 That Old Feeling (1997)
## 1191 Letter From Death Row, A (1998)
## 1192 Boys of St. Vincent, The (1993)
## 1193 Before the Rain (Pred dozhdot) (1994)
## 1194 Once Were Warriors (1994)
## 1195 Strawberry and Chocolate (Fresa y chocolate) (1993)
## 1196 Savage Nights (Nuits fauves, Les) (1992)
## 1197 Family Thing, A (1996)
## 1198 Purple Noon (1960)
## 1199 Cemetery Man (Dellamorte Dellamore) (1994)
## 1200 Kim (1950)
## 1201 Marlene Dietrich: Shadow and Light (1996)
## 1202 Maybe, Maybe Not (Bewegte Mann, Der) (1994)
## 1203 Top Hat (1935)
## 1204 To Be or Not to Be (1942)
## 1205 Secret Agent, The (1996)
## 1206 Amos & Andrew (1993)
## 1207 Jade (1995)
## 1208 Kiss of Death (1995)
## 1209 Mixed Nuts (1994)
## 1210 Virtuosity (1995)
## 1211 Blue Sky (1994)
## 1212 Flesh and Bone (1993)
## 1213 Guilty as Sin (1993)
## 1214 In the Realm of the Senses (Ai no corrida) (1976)
## 1215 Barb Wire (1996)
## 1216 Kissed (1996)
## 1217 Assassins (1995)
## 1218 Friday (1995)
## 1219 Goofy Movie, A (1995)
## 1220 Higher Learning (1995)
## 1221 When a Man Loves a Woman (1994)
## 1222 Judgment Night (1993)
## 1223 King of the Hill (1993)
## 1224 Scout, The (1994)
## 1225 Angus (1995)
## 1226 Night Falls on Manhattan (1997)
## 1227 Awfully Big Adventure, An (1995)
## 1228 Under Siege 2: Dark Territory (1995)
## 1229 Poison Ivy II (1995)
## 1230 Ready to Wear (Pret-A-Porter) (1994)
## 1231 Marked for Death (1990)
## 1232 Madonna: Truth or Dare (1991)
## 1233 Nenette et Boni (1996)
## 1234 Chairman of the Board (1998)
## 1235 Big Bang Theory, The (1994)
## 1236 Other Voices, Other Rooms (1997)
## 1237 Twisted (1996)
## 1238 Full Speed (1996)
## 1239 Cutthroat Island (1995)
## 1240 Ghost in the Shell (Kokaku kidotai) (1995)
## 1241 Van, The (1996)
## 1242 Old Lady Who Walked in the Sea, The (Vieille qui marchait dans la mer, La) (1991)
## 1243 Night Flier (1997)
## 1244 Metro (1997)
## 1245 Gridlock'd (1997)
## 1246 Bushwhacked (1995)
## 1247 Bad Girls (1994)
## 1248 Blink (1994)
## 1249 For Love or Money (1993)
## 1250 Best of the Best 3: No Turning Back (1995)
## 1251 A Chef in Love (1996)
## 1252 Contempt (Mepris, Le) (1963)
## 1253 Tie That Binds, The (1995)
## 1254 Gone Fishin' (1997)
## 1255 Broken English (1996)
## 1256 Designated Mourner, The (1997)
## 1258 Trial and Error (1997)
## 1259 Pie in the Sky (1995)
## 1260 Total Eclipse (1995)
## 1261 Run of the Country, The (1995)
## 1262 Walking and Talking (1996)
## 1263 Foxfire (1996)
## 1264 Nothing to Lose (1994)
## 1265 Star Maps (1997)
## 1266 Bread and Chocolate (Pane e cioccolata) (1973)
## 1267 Clockers (1995)
## 1268 Bitter Moon (1992)
## 1269 Love in the Afternoon (1957)
## 1270 Life with Mikey (1993)
## 1271 North (1994)
## 1272 Talking About Sex (1994)
## 1273 Color of Night (1994)
## 1274 Robocop 3 (1993)
## 1275 Killer (Bulletproof Heart) (1994)
## 1276 Sunset Park (1996)
## 1277 Set It Off (1996)
## 1278 Selena (1997)
## 1279 Wild America (1997)
## 1280 Gang Related (1997)
## 1281 Manny & Lo (1996)
## 1282 Grass Harp, The (1995)
## 1283 Out to Sea (1997)
## 1284 Before and After (1996)
## 1285 Princess Caraboo (1994)
## 1286 Shall We Dance? (1937)
## 1287 Ed (1996)
## 1288 Denise Calls Up (1995)
## 1289 Jack and Sarah (1995)
## 1290 Country Life (1994)
## 1291 Celtic Pride (1996)
## 1292 Simple Wish, A (1997)
## 1293 Star Kid (1997)
## 1294 Ayn Rand: A Sense of Life (1997)
## 1295 Kicked in the Head (1997)
## 1296 Indian Summer (1996)
## 1297 Love Affair (1994)
## 1298 Band Wagon, The (1953)
## 1299 Penny Serenade (1941)
## 1300 'Til There Was You (1997)
## 1301 Stripes (1981)
## 1302 Late Bloomers (1996)
## 1303 Getaway, The (1994)
## 1304 New York Cop (1996)
## 1305 National Lampoon's Senior Trip (1995)
## 1306 Delta of Venus (1994)
## 1307 Carmen Miranda: Bananas Is My Business (1994)
## 1308 Babyfever (1994)
## 1309 Very Natural Thing, A (1974)
## 1310 Walk in the Sun, A (1945)
## 1311 Waiting to Exhale (1995)
## 1312 Pompatus of Love, The (1996)
## 1313 Palmetto (1998)
## 1314 Surviving the Game (1994)
## 1315 Inventing the Abbotts (1997)
## 1316 Horse Whisperer, The (1998)
## 1317 Journey of August King, The (1995)
## 1318 Catwalk (1995)
## 1319 Neon Bible, The (1995)
## 1320 Homage (1995)
## 1321 Open Season (1996)
## 1322 Metisse (Cafe au Lait) (1993)
## 1323 Wooden Man's Bride, The (Wu Kui) (1994)
## 1324 Loaded (1994)
## 1325 August (1996)
## 1326 Boys (1996)
## 1327 Captives (1994)
## 1328 Of Love and Shadows (1994)
## 1329 Low Life, The (1994)
## 1330 An Unforgettable Summer (1994)
## 1331 Last Klezmer: Leopold Kozlowski, His Life and Music, The (1995)
## 1332 My Life and Times With Antonin Artaud (En compagnie d'Antonin Artaud) (1993)
## 1333 Midnight Dancers (Sibak) (1994)
## 1334 Somebody to Love (1994)
## 1335 American Buffalo (1996)
## 1336 Kazaam (1996)
## 1337 Larger Than Life (1996)
## 1338 Two Deaths (1995)
## 1339 Stefano Quantestorie (1993)
## 1340 Crude Oasis, The (1995)
## 1341 Hedd Wyn (1992)
## 1342 Convent, The (Convento, O) (1995)
## 1343 Lotto Land (1995)
## 1344 Story of Xinghua, The (1993)
## 1345 Day the Sun Turned Cold, The (Tianguo niezi) (1994)
## 1346 Dingo (1992)
## 1347 Ballad of Narayama, The (Narayama Bushiko) (1958)
## 1348 Every Other Weekend (1990)
## 1349 Mille bolle blu (1993)
## 1350 Crows and Sparrows (1949)
## 1351 Lover's Knot (1996)
## 1352 Shadow of Angels (Schatten der Engel) (1976)
## 1353 1-900 (1994)
## 1354 Venice/Venice (1992)
## 1355 Infinity (1996)
## 1356 Ed's Next Move (1996)
## 1357 For the Moment (1994)
## 1358 The Deadly Cure (1996)
## 1359 Boys in Venice (1996)
## 1360 Sexual Life of the Belgians, The (1994)
## 1361 Search for One-eye Jimmy, The (1996)
## 1362 American Strays (1996)
## 1363 Leopard Son, The (1996)
## 1364 Bird of Prey (1996)
## 1365 Johnny 100 Pesos (1993)
## 1366 JLG/JLG - autoportrait de decembre (1994)
## 1367 Faust (1994)
## 1368 Mina Tannenbaum (1994)
## 1369 Forbidden Christ, The (Cristo proibito, Il) (1950)
## 1370 I Can't Sleep (J'ai pas sommeil) (1994)
## 1371 Machine, The (1994)
## 1372 Stranger, The (1994)
## 1373 Good Morning (1971)
## 1374 Falling in Love Again (1980)
## 1375 Cement Garden, The (1993)
## 1376 Meet Wally Sparks (1997)
## 1377 Hotel de Love (1996)
## 1378 Rhyme & Reason (1997)
## 1379 Love and Other Catastrophes (1996)
## 1380 Hollow Reed (1996)
## 1381 Losing Chase (1996)
## 1382 Bonheur, Le (1965)
## 1383 Second Jungle Book: Mowgli & Baloo, The (1997)
## 1384 Squeeze (1996)
## 1385 Roseanna's Grave (For Roseanna) (1997)
## 1386 Tetsuo II: Body Hammer (1992)
## 1387 Fall (1997)
## 1388 Gabbeh (1996)
## 1389 Mondo (1996)
## 1390 Innocent Sleep, The (1995)
## 1391 For Ever Mozart (1996)
## 1392 Locusts, The (1997)
## 1393 Stag (1997)
## 1394 Swept from the Sea (1997)
## 1395 Hurricane Streets (1998)
## 1396 Stonewall (1995)
## 1397 Of Human Bondage (1934)
## 1398 Anna (1996)
## 1399 Stranger in the House (1997)
## 1400 Picture Bride (1995)
## 1401 M. Butterfly (1993)
## 1402 Ciao, Professore! (1993)
## 1403 Caro Diario (Dear Diary) (1994)
## 1404 Withnail and I (1987)
## 1405 Boy's Life 2 (1997)
## 1406 When Night Is Falling (1995)
## 1407 Specialist, The (1994)
## 1408 Gordy (1995)
## 1409 Swan Princess, The (1994)
## 1410 Harlem (1993)
## 1411 Barbarella (1968)
## 1412 Land Before Time III: The Time of the Great Giving (1995) (V)
## 1413 Street Fighter (1994)
## 1414 Coldblooded (1995)
## 1415 Next Karate Kid, The (1994)
## 1416 No Escape (1994)
## 1417 Turning, The (1992)
## 1418 Joy Luck Club, The (1993)
## 1419 Highlander III: The Sorcerer (1994)
## 1420 Gilligan's Island: The Movie (1998)
## 1421 My Crazy Life (Mi vida loca) (1993)
## 1422 Suture (1993)
## 1423 Walking Dead, The (1995)
## 1424 I Like It Like That (1994)
## 1425 I'll Do Anything (1994)
## 1426 Grace of My Heart (1996)
## 1427 Drunks (1995)
## 1428 SubUrbia (1997)
## 1429 Sliding Doors (1998)
## 1430 Ill Gotten Gains (1997)
## 1431 Legal Deceit (1997)
## 1432 Mighty, The (1998)
## 1433 Men of Means (1998)
## 1434 Shooting Fish (1997)
## 1435 Steal Big, Steal Little (1995)
## 1436 Mr. Jones (1993)
## 1437 House Party 3 (1994)
## 1438 Panther (1995)
## 1439 Jason's Lyric (1994)
## 1440 Above the Rim (1994)
## 1441 Moonlight and Valentino (1995)
## 1442 Scarlet Letter, The (1995)
## 1443 8 Seconds (1994)
## 1444 That Darn Cat! (1965)
## 1445 Ladybird Ladybird (1994)
## 1446 Bye Bye, Love (1995)
## 1447 Century (1993)
## 1448 My Favorite Season (1993)
## 1449 Pather Panchali (1955)
## 1450 Golden Earrings (1947)
## 1451 Foreign Correspondent (1940)
## 1452 Lady of Burlesque (1943)
## 1453 Angel on My Shoulder (1946)
## 1454 Angel and the Badman (1947)
## 1455 Outlaw, The (1943)
## 1456 Beat the Devil (1954)
## 1457 Love Is All There Is (1996)
## 1458 Damsel in Distress, A (1937)
## 1459 Madame Butterfly (1995)
## 1460 Sleepover (1995)
## 1461 Here Comes Cookie (1935)
## 1462 Thieves (Voleurs, Les) (1996)
## 1463 Boys, Les (1997)
## 1464 Stars Fell on Henrietta, The (1995)
## 1465 Last Summer in the Hamptons (1995)
## 1466 Margaret's Museum (1995)
## 1467 Saint of Fort Washington, The (1993)
## 1468 Cure, The (1995)
## 1469 Tom and Huck (1995)
## 1470 Gumby: The Movie (1995)
## 1471 Hideaway (1995)
## 1472 Visitors, The (Visiteurs, Les) (1993)
## 1473 Little Princess, The (1939)
## 1474 Nina Takes a Lover (1994)
## 1475 Bhaji on the Beach (1993)
## 1476 Raw Deal (1948)
## 1477 Nightwatch (1997)
## 1478 Dead Presidents (1995)
## 1479 Reckless (1995)
## 1480 Herbie Rides Again (1974)
## 1481 S.F.W. (1994)
## 1482 Gate of Heavenly Peace, The (1995)
## 1483 Man in the Iron Mask, The (1998)
## 1484 Jerky Boys, The (1994)
## 1485 Colonel Chabert, Le (1994)
## 1486 Girl in the Cadillac (1995)
## 1487 Even Cowgirls Get the Blues (1993)
## 1488 Germinal (1993)
## 1489 Chasers (1994)
## 1490 Fausto (1993)
## 1491 Tough and Deadly (1995)
## 1492 Window to Paris (1994)
## 1493 Modern Affair, A (1995)
## 1494 Mostro, Il (1994)
## 1495 Flirt (1995)
## 1496 Carpool (1996)
## 1497 Line King: Al Hirschfeld, The (1996)
## 1498 Farmer & Chase (1995)
## 1499 Grosse Fatigue (1994)
## 1500 Santa with Muscles (1996)
## 1501 Prisoner of the Mountains (Kavkazsky Plennik) (1996)
## 1502 Naked in New York (1994)
## 1503 Gold Diggers: The Secret of Bear Mountain (1995)
## 1504 Bewegte Mann, Der (1994)
## 1505 Killer: A Journal of Murder (1995)
## 1506 Nelly & Monsieur Arnaud (1995)
## 1507 Three Lives and Only One Death (1996)
## 1508 Babysitter, The (1995)
## 1509 Getting Even with Dad (1994)
## 1510 Mad Dog Time (1996)
## 1511 Children of the Revolution (1996)
## 1512 World of Apu, The (Apur Sansar) (1959)
## 1513 Sprung (1997)
## 1514 Dream With the Fishes (1997)
## 1515 Wings of Courage (1995)
## 1516 Wedding Gift, The (1994)
## 1517 Race the Sun (1996)
## 1518 Losing Isaiah (1995)
## 1519 New Jersey Drive (1995)
## 1520 Fear, The (1995)
## 1521 Mr. Wonderful (1993)
## 1522 Trial by Jury (1994)
## 1523 Good Man in Africa, A (1994)
## 1524 Kaspar Hauser (1993)
## 1525 Object of My Affection, The (1998)
## 1526 Witness (1985)
## 1527 Senseless (1998)
## 1528 Nowhere (1997)
## 1529 Underground (1995)
## 1530 Jefferson in Paris (1995)
## 1531 Far From Home: The Adventures of Yellow Dog (1995)
## 1532 Foreign Student (1994)
## 1533 I Don't Want to Talk About It (De eso no se habla) (1993)
## 1534 Twin Town (1997)
## 1535 Enfer, L' (1994)
## 1536 Aiqing wansui (1994)
## 1537 Cosi (1996)
## 1538 All Over Me (1997)
## 1539 Being Human (1993)
## 1540 Amazing Panda Adventure, The (1995)
## 1541 Beans of Egypt, Maine, The (1994)
## 1542 Scarlet Letter, The (1926)
## 1543 Johns (1996)
## 1544 It Takes Two (1995)
## 1545 Frankie Starlight (1995)
## 1546 Shadows (Cienie) (1988)
## 1547 Show, The (1995)
## 1548 The Courtyard (1995)
## 1549 Dream Man (1995)
## 1550 Destiny Turns on the Radio (1995)
## 1551 Glass Shield, The (1994)
## 1552 Hunted, The (1995)
## 1553 Underneath, The (1995)
## 1554 Safe Passage (1994)
## 1555 Secret Adventures of Tom Thumb, The (1993)
## 1556 Condition Red (1995)
## 1557 Yankee Zulu (1994)
## 1558 Aparajito (1956)
## 1559 Hostile Intentions (1994)
## 1560 Clean Slate (Coup de Torchon) (1981)
## 1561 Tigrero: A Film That Was Never Made (1994)
## 1562 Eye of Vichy, The (Oeil de Vichy, L') (1993)
## 1563 Promise, The (Versprechen, Das) (1994)
## 1564 To Cross the Rubicon (1991)
## 1565 Daens (1992)
## 1566 Man from Down Under, The (1943)
## 1567 Careful (1992)
## 1568 Vermont Is For Lovers (1992)
## 1569 Vie est belle, La (Life is Rosey) (1987)
## 1570 Quartier Mozart (1992)
## 1571 Touki Bouki (Journey of the Hyena) (1973)
## 1572 Wend Kuuni (God's Gift) (1982)
## 1573 Spirits of the Dead (Tre passi nel delirio) (1968)
## 1574 Pharaoh's Army (1995)
## 1575 I, Worst of All (Yo, la peor de todas) (1990)
## 1576 Hungarian Fairy Tale, A (1987)
## 1577 Death in the Garden (Mort en ce jardin, La) (1956)
## 1578 Collectionneuse, La (1967)
## 1579 Baton Rouge (1988)
## 1580 Liebelei (1933)
## 1581 Woman in Question, The (1950)
## 1582 T-Men (1947)
## 1583 Invitation, The (Zaproszenie) (1986)
## 1584 Symphonie pastorale, La (1946)
## 1585 American Dream (1990)
## 1586 Lashou shentan (1992)
## 1587 Terror in a Texas Town (1958)
## 1588 Salut cousin! (1996)
## 1589 Schizopolis (1996)
## 1590 To Have, or Not (1995)
## 1591 Duoluo tianshi (1995)
## 1592 Magic Hour, The (1998)
## 1593 Death in Brunswick (1991)
## 1594 Everest (1998)
## 1595 Shopping (1994)
## 1596 Nemesis 2: Nebula (1995)
## 1597 Romper Stomper (1992)
## 1598 City of Industry (1997)
## 1599 Someone Else's America (1995)
## 1600 Guantanamera (1994)
## 1601 Office Killer (1997)
## 1602 Price Above Rubies, A (1998)
## 1603 Angela (1995)
## 1604 He Walked by Night (1948)
## 1605 Love Serenade (1996)
## 1608 Buddy (1997)
## 1609 B*A*P*S (1997)
## 1610 Truth or Consequences, N.M. (1997)
## 1611 Intimate Relations (1996)
## 1612 Leading Man, The (1996)
## 1613 Tokyo Fist (1995)
## 1614 Reluctant Debutante, The (1958)
## 1615 Warriors of Virtue (1997)
## 1616 Desert Winds (1995)
## 1618 King of New York (1990)
## 1619 All Things Fair (1996)
## 1620 Sixth Man, The (1997)
## 1621 Butterfly Kiss (1995)
## 1622 Paris, France (1993)
## 1623 Ceremonie, La (1995)
## 1624 Hush (1998)
## 1626 Nobody Loves Me (Keiner liebt mich) (1994)
## 1627 Wife, The (1995)
## 1628 Lamerica (1994)
## 1629 Nico Icon (1995)
## 1630 Silence of the Palace, The (Saimt el Qusur) (1994)
## 1631 Slingshot, The (1993)
## 1632 Land and Freedom (Tierra y libertad) (1995)
## 1633 A koldum klaka (Cold Fever) (1994)
## 1634 Etz Hadomim Tafus (Under the Domin Tree) (1994)
## 1635 Two Friends (1986)
## 1636 Brothers in Trouble (1995)
## 1637 Girls Town (1996)
## 1638 Normal Life (1996)
## 1639 Bitter Sugar (Azucar Amargo) (1996)
## 1640 Eighth Day, The (1996)
## 1641 Dadetown (1995)
## 1642 Some Mother's Son (1996)
## 1643 Angel Baby (1995)
## 1644 Sudden Manhattan (1996)
## 1645 Butcher Boy, The (1998)
## 1646 Men With Guns (1997)
## 1647 Hana-bi (1997)
## 1648 Niagara, Niagara (1997)
## 1649 Big One, The (1997)
## 1651 Spanish Prisoner, The (1997)
## 1652 Temptress Moon (Feng Yue) (1996)
## 1653 Entertaining Angels: The Dorothy Day Story (1996)
## 1655 Favor, The (1994)
## 1656 Little City (1998)
## 1657 Target (1995)
## 1659 Getting Away With Murder (1996)
## 1660 Small Faces (1995)
## 1661 New Age, The (1994)
## 1662 Rough Magic (1995)
## 1663 Nothing Personal (1995)
## 1664 8 Heads in a Duffel Bag (1997)
## 1665 Brother's Kiss, A (1997)
## 1666 Ripe (1996)
## 1667 Next Step, The (1995)
## 1668 Wedding Bell Blues (1996)
## 1669 MURDER and murder (1996)
## 1670 Tainted (1998)
## 1671 Further Gesture, A (1996)
## 1672 Kika (1993)
## 1673 Mirage (1995)
## 1674 Mamma Roma (1962)
## 1675 Sunchaser, The (1996)
## 1676 War at Home, The (1996)
## 1677 Sweet Nothing (1995)
## 1678 Mat' i syn (1997)
## 1679 B. Monkey (1998)
## 1681 You So Crazy (1994)
## 1682 Scream of Stone (Schrei aus Stein) (1991)
## year
## 1 1995
## 2 1995
## 3 1995
## 4 1995
## 5 1995
## 6 1995
## 7 1995
## 8 1995
## 9 1995
## 10 1996
## 11 1995
## 12 1995
## 13 1995
## 14 1994
## 15 1996
## 16 1995
## 17 1996
## 18 1995
## 19 1995
## 20 1995
## 21 1996
## 22 1996
## 23 1996
## 24 1996
## 25 1996
## 26 1995
## 27 1995
## 28 1995
## 29 1995
## 30 1967
## 31 1995
## 32 1994
## 33 1995
## 34 1995
## 35 1995
## 36 1995
## 37 1994
## 38 1995
## 39 1995
## 40 1995
## 41 1995
## 42 1994
## 43 1994
## 44 1994
## 45 1994
## 46 1994
## 47 1994
## 48 1994
## 49 1994
## 50 1977
## 51 1994
## 52 1994
## 53 1994
## 54 1995
## 55 1994
## 56 1994
## 57 1994
## 58 1994
## 59 1994
## 60 1993
## 61 1994
## 62 1994
## 63 1994
## 64 1994
## 65 1993
## 66 1995
## 67 1994
## 68 1994
## 69 1994
## 70 1994
## 71 1994
## 72 1994
## 73 1994
## 74 1965
## 75 1994
## 76 1993
## 77 1993
## 78 1993
## 79 1993
## 80 1993
## 81 1994
## 82 1993
## 83 1993
## 84 1994
## 85 1994
## 86 1993
## 87 1993
## 88 1993
## 89 1982
## 90 1993
## 91 1993
## 92 1993
## 93 1996
## 94 1990
## 95 1992
## 96 1991
## 97 1990
## 98 1991
## 99 1937
## 100 1997
## 101 1981
## 102 1970
## 103 1996
## 104 1996
## 105 1996
## 106 1996
## 107 1996
## 108 1996
## 109 1996
## 110 1995
## 111 1996
## 112 1996
## 113 1996
## 114 1996
## 115 1996
## 116 1996
## 117 1996
## 118 1996
## 119 1994
## 120 1996
## 121 1996
## 122 1996
## 123 1996
## 124 1996
## 125 1996
## 126 1996
## 127 1972
## 128 1996
## 129 1996
## 130 1996
## 131 1961
## 132 1939
## 133 1939
## 134 1941
## 135 1968
## 136 1939
## 137 1996
## 138 1996
## 139 1969
## 140 1993
## 141 1954
## 142 1971
## 143 1965
## 144 1988
## 145 1992
## 146 1996
## 147 1996
## 148 1996
## 149 1996
## 150 1996
## 151 1971
## 152 1973
## 153 1988
## 154 1979
## 155 1987
## 156 1992
## 157 1986
## 158 1989
## 159 1992
## 160 1992
## 161 1986
## 162 1981
## 163 1974
## 164 1989
## 165 1986
## 166 1986
## 167 1980
## 168 1974
## 169 1993
## 170 1988
## 171 1991
## 172 1980
## 173 1987
## 174 1981
## 175 1985
## 176 1986
## 177 1966
## 178 1957
## 179 1971
## 180 1979
## 181 1997
## 182 1990
## 183 1979
## 184 1993
## 185 1960
## 186 1980
## 187 1974
## 188 1987
## 189 1992
## 190 1989
## 191 1984
## 192 1980
## 193 1983
## 194 1973
## 195 1984
## 196 1989
## 197 1967
## 198 1990
## 199 1957
## 200 1980
## 201 1987
## 202 1993
## 203 1992
## 204 1985
## 205 1970
## 206 1988
## 207 1990
## 208 1974
## 209 1984
## 210 1989
## 211 1970
## 212 1988
## 213 1986
## 214 1982
## 215 1989
## 216 1989
## 217 1992
## 218 1991
## 219 1984
## 220 1996
## 221 1996
## 222 1996
## 223 1996
## 224 1996
## 225 1996
## 226 1990
## 227 1991
## 228 1982
## 229 1984
## 230 1986
## 231 1992
## 232 1988
## 233 1992
## 234 1975
## 235 1996
## 236 1996
## 237 1996
## 238 1987
## 239 1992
## 240 1996
## 241 1992
## 242 1997
## 243 1997
## 244 1997
## 245 1997
## 246 1997
## 247 1997
## 248 1997
## 249 1997
## 250 1997
## 251 1997
## 252 1997
## 253 1997
## 254 1997
## 255 1997
## 256 1997
## 257 1997
## 258 1997
## 259 1997
## 260 1997
## 261 1997
## 262 1997
## 263 1997
## 264 1997
## 265 1990
## 266 1997
## 267 NA
## 269 1997
## 270 1997
## 271 1997
## 272 1997
## 273 1995
## 274 1995
## 275 1995
## 276 1995
## 277 1995
## 278 1996
## 279 1995
## 280 1996
## 281 1994
## 282 1996
## 283 1996
## 284 1996
## 285 1996
## 286 1996
## 287 1996
## 288 1996
## 289 1996
## 290 1997
## 291 1997
## 292 1997
## 293 1997
## 294 1997
## 295 1997
## 296 1997
## 297 1997
## 298 1997
## 299 1997
## 300 1997
## 301 1997
## 302 1997
## 304 1996
## 305 1997
## 306 1997
## 307 1997
## 308 1997
## 309 1997
## 310 1997
## 311 1997
## 312 1997
## 313 1997
## 314 1997
## 315 1998
## 316 1997
## 317 1993
## 318 1993
## 319 1996
## 320 1996
## 321 1996
## 322 1997
## 323 1997
## 324 1997
## 325 1997
## 326 1997
## 327 1997
## 328 1997
## 329 1998
## 330 1997
## 331 1997
## 332 1997
## 333 1997
## 334 1997
## 335 1997
## 336 1997
## 337 1997
## 338 1997
## 339 1997
## 340 1997
## 341 1997
## 342 1997
## 343 1997
## 344 1997
## 345 1997
## 346 1997
## 347 1998
## 349 1998
## 350 1998
## 351 1998
## 352 1997
## 353 1998
## 354 1998
## 355 1998
## 356 1994
## 357 1975
## 358 1997
## 359 1997
## 360 1997
## 361 1997
## 362 1998
## 363 1995
## 364 1995
## 365 1995
## 366 1995
## 367 1995
## 368 1996
## 369 1996
## 370 1996
## 371 1996
## 372 1995
## 373 1995
## 374 1995
## 375 1995
## 376 1994
## 377 1994
## 378 1994
## 379 1995
## 380 1994
## 381 1994
## 382 1994
## 383 1994
## 384 1994
## 385 1994
## 386 1993
## 387 1993
## 388 1994
## 389 1994
## 390 1993
## 391 1993
## 392 1993
## 393 1993
## 394 1994
## 395 1993
## 396 1994
## 397 1993
## 398 1993
## 399 1993
## 400 1994
## 401 1995
## 402 1990
## 403 1989
## 404 1940
## 405 1996
## 406 1996
## 407 1996
## 408 1996
## 409 1996
## 410 1996
## 411 1996
## 412 1996
## 413 1996
## 414 1982
## 415 1975
## 416 1957
## 417 1961
## 418 1950
## 419 1964
## 420 1951
## 421 1996
## 422 1996
## 423 1982
## 424 1996
## 425 1992
## 426 1986
## 427 1962
## 428 1971
## 429 1951
## 430 1933
## 431 1986
## 432 1940
## 433 1989
## 434 1956
## 435 1969
## 436 1981
## 437 1992
## 438 1983
## 439 1993
## 440 1982
## 441 1979
## 442 1990
## 443 1963
## 444 1958
## 445 1945
## 446 1976
## 447 1976
## 448 1976
## 449 1979
## 450 1989
## 451 1978
## 452 1978
## 453 1983
## 454 1996
## 455 1997
## 456 1997
## 457 1997
## 458 1995
## 459 1995
## 460 1995
## 461 1995
## 462 1992
## 463 1994
## 464 1994
## 465 1994
## 466 1992
## 467 1993
## 468 1993
## 469 1993
## 470 1993
## 471 1996
## 472 1996
## 473 1996
## 474 1963
## 475 1996
## 476 1996
## 477 1996
## 478 1940
## 479 1958
## 480 1959
## 481 1960
## 482 1959
## 483 1942
## 484 1941
## 485 1964
## 486 1954
## 487 1953
## 488 1950
## 489 1946
## 490 1955
## 491 1938
## 492 1955
## 493 1934
## 494 1940
## 495 1956
## 496 1946
## 497 1938
## 498 1951
## 499 1958
## 501 1941
## 502 1971
## 503 1972
## 504 1967
## 505 1954
## 506 1955
## 507 1951
## 508 1996
## 509 1989
## 510 1954
## 511 1962
## 512 1987
## 513 1949
## 514 1977
## 515 1997
## 516 1983
## 517 1979
## 518 1990
## 519 1948
## 520 1963
## 521 1978
## 522 1986
## 523 1967
## 524 1940
## 525 1946
## 526 1959
## 527 1982
## 528 1984
## 529 1985
## 530 1975
## 531 1996
## 532 1997
## 533 1997
## 534 1997
## 535 1997
## 536 1997
## 537 1991
## 538 1997
## 539 1997
## 540 1995
## 541 1995
## 542 1995
## 543 1995
## 544 1996
## 545 1995
## 546 1996
## 547 1996
## 548 1996
## 549 1995
## 550 1995
## 551 1995
## 552 1995
## 553 1995
## 554 1995
## 555 1995
## 556 1995
## 557 1994
## 558 1994
## 559 1994
## 560 1995
## 561 1994
## 562 1995
## 563 1995
## 564 1995
## 565 1995
## 566 1994
## 567 1994
## 568 1994
## 569 1994
## 570 1994
## 571 1993
## 572 1994
## 573 1993
## 574 1993
## 575 1994
## 576 1993
## 577 1993
## 578 1993
## 579 1993
## 580 1995
## 581 1993
## 582 1993
## 583 1993
## 584 1993
## 585 1993
## 586 1994
## 587 1993
## 588 1991
## 589 1969
## 590 1996
## 591 1996
## 592 1995
## 593 1993
## 594 1996
## 595 1996
## 596 1996
## 597 1996
## 598 1996
## 599 1996
## 600 1996
## 601 1943
## 602 1951
## 603 1954
## 604 1934
## 605 1944
## 606 1950
## 607 1940
## 608 1945
## 609 1950
## 610 1958
## 611 1944
## 612 1937
## 613 1936
## 614 1956
## 615 1935
## 616 1968
## 617 1930
## 618 1955
## 619 1996
## 620 1996
## 621 1955
## 622 1960
## 623 1994
## 624 1945
## 625 1963
## 626 1949
## 627 1991
## 628 1996
## 629 1982
## 630 1965
## 631 1992
## 632 1982
## 633 1938
## 634 1996
## 635 1980
## 636 1981
## 637 1981
## 638 1982
## 639 1979
## 640 1989
## 641 1957
## 642 1990
## 643 1994
## 644 1988
## 645 1990
## 646 1969
## 647 1985
## 648 1952
## 649 1984
## 650 1957
## 651 1989
## 652 1990
## 653 1958
## 654 1974
## 655 1986
## 656 1931
## 657 1962
## 658 1990
## 659 1944
## 660 1991
## 661 1952
## 662 1980
## 663 1979
## 664 1984
## 665 1992
## 666 1974
## 667 1977
## 668 1981
## 669 1991
## 671 1935
## 672 1992
## 673 1962
## 674 1982
## 675 1922
## 676 1996
## 677 1997
## 678 1997
## 679 1981
## 681 1997
## 682 1997
## 683 1997
## 684 1993
## 685 1996
## 686 1993
## 687 1997
## 688 1997
## 689 1997
## 690 1997
## 691 1998
## 692 1995
## 693 1995
## 694 1995
## 695 1995
## 696 1996
## 697 1995
## 698 1994
## 699 1994
## 700 1995
## 701 1993
## 702 1994
## 703 1994
## 704 1993
## 705 1952
## 706 1996
## 707 1991
## 708 1989
## 709 1992
## 710 1985
## 711 1996
## 712 1987
## 713 1995
## 714 1995
## 715 1995
## 716 1995
## 717 1996
## 718 1996
## 719 1994
## 720 1995
## 721 1995
## 722 1995
## 723 1995
## 724 1995
## 725 1994
## 726 1995
## 727 1994
## 728 1994
## 729 1994
## 730 1996
## 731 1994
## 732 1993
## 733 1994
## 734 1993
## 735 1993
## 736 1993
## 737 1994
## 738 1994
## 739 1990
## 740 1996
## 741 1996
## 742 1996
## 743 1996
## 744 1996
## 745 1972
## 746 1985
## 747 1993
## 748 1997
## 749 1997
## 750 1997
## 751 1997
## 752 1998
## 753 1994
## 754 1997
## 755 1995
## 756 1995
## 757 1995
## 758 1996
## 759 1995
## 760 1995
## 761 1995
## 762 1996
## 763 1996
## 764 1996
## 765 1992
## 766 1996
## 767 1995
## 768 1995
## 769 1995
## 770 1995
## 771 1995
## 772 1995
## 773 1994
## 774 1995
## 775 1995
## 776 1995
## 777 1995
## 778 1995
## 779 1994
## 780 1994
## 781 1995
## 782 1994
## 783 1994
## 784 1993
## 785 1994
## 786 1995
## 787 1995
## 788 1994
## 789 1995
## 790 1995
## 791 1995
## 792 1994
## 793 1994
## 794 1994
## 795 1994
## 796 1994
## 797 1994
## 798 1995
## 799 1995
## 800 1995
## 801 1994
## 802 1993
## 803 1993
## 804 1994
## 805 1993
## 806 1993
## 807 1993
## 808 1993
## 809 1993
## 810 1994
## 811 1993
## 812 1994
## 813 1996
## 814 1994
## 815 1996
## 816 1995
## 817 1996
## 818 1996
## 819 1996
## 820 1996
## 821 1996
## 822 1968
## 823 1996
## 824 1996
## 825 1996
## 826 1996
## 827 1996
## 828 1996
## 829 1996
## 830 1996
## 831 1996
## 832 1996
## 833 1996
## 834 1995
## 835 1934
## 836 1939
## 837 1941
## 838 1996
## 839 1995
## 840 1996
## 841 1996
## 842 1960
## 843 1959
## 844 1996
## 845 1996
## 846 1996
## 847 1996
## 848 1944
## 849 1990
## 850 1996
## 851 1966
## 852 1996
## 853 1992
## 854 1987
## 855 1981
## 856 1991
## 857 1996
## 858 1996
## 859 1986
## 860 1987
## 861 1986
## 862 1996
## 863 1996
## 864 1996
## 866 1996
## 867 1996
## 868 1997
## 869 1997
## 870 1997
## 871 1997
## 872 1997
## 873 1997
## 874 1997
## 875 1997
## 876 1997
## 877 1997
## 878 1997
## 879 1997
## 880 1997
## 882 1997
## 883 1997
## 884 1997
## 885 1998
## 886 1997
## 887 1997
## 888 1997
## 889 1997
## 890 1997
## 891 1997
## 892 1997
## 893 1997
## 894 1997
## 895 1997
## 896 1997
## 897 1995
## 898 1997
## 899 1997
## 900 1997
## 901 1997
## 902 1997
## 903 1997
## 904 1997
## 905 1998
## 906 1997
## 907 1997
## 908 1998
## 909 1998
## 910 1998
## 911 1998
## 912 1998
## 913 1998
## 914 1998
## 915 1998
## 916 1998
## 917 1998
## 918 1998
## 919 1995
## 920 1995
## 921 1993
## 922 1996
## 923 1991
## 924 1996
## 925 1996
## 926 1996
## 927 1996
## 928 1996
## 929 1996
## 930 1996
## 931 1996
## 932 1996
## 933 1996
## 934 1996
## 935 1997
## 936 1997
## 937 1997
## 938 1997
## 939 1995
## 940 1994
## 941 1994
## 942 1993
## 943 1994
## 944 1994
## 945 1963
## 946 1981
## 947 1988
## 948 1997
## 949 1995
## 950 1995
## 951 1995
## 952 1995
## 953 1995
## 954 1995
## 955 1995
## 956 1994
## 957 1992
## 958 1994
## 959 1993
## 960 1993
## 961 1993
## 962 1993
## 963 1993
## 964 1995
## 965 1957
## 966 1957
## 967 1936
## 968 1949
## 969 1968
## 970 1991
## 971 1991
## 972 1992
## 973 1996
## 974 1996
## 975 1996
## 976 1996
## 977 1996
## 978 1996
## 979 1996
## 980 1996
## 981 1996
## 982 1996
## 983 1996
## 984 1997
## 985 1996
## 986 1997
## 987 1997
## 988 1997
## 989 1997
## 990 1997
## 991 1997
## 992 1997
## 993 1997
## 994 1997
## 995 1997
## 996 1995
## 997 1995
## 998 1994
## 999 1994
## 1000 1994
## 1001 1996
## 1002 1997
## 1004 1993
## 1005 1991
## 1006 1991
## 1007 1997
## 1008 1996
## 1009 1996
## 1010 1996
## 1011 1996
## 1012 1997
## 1013 1997
## 1014 1997
## 1015 1997
## 1016 1997
## 1017 1996
## 1018 1990
## 1019 1989
## 1020 1944
## 1021 1963
## 1022 1997
## 1023 1997
## 1024 1997
## 1025 1997
## 1026 1997
## 1027 1995
## 1028 1995
## 1029 1995
## 1030 1993
## 1031 1994
## 1032 1994
## 1033 1996
## 1034 1996
## 1035 1993
## 1036 1991
## 1037 1982
## 1038 1997
## 1039 1997
## 1040 1996
## 1041 1995
## 1042 1995
## 1043 1995
## 1044 1994
## 1045 1993
## 1046 1993
## 1047 1996
## 1048 1996
## 1049 1996
## 1050 1947
## 1051 1996
## 1052 1995
## 1053 1995
## 1054 1996
## 1055 1994
## 1056 1992
## 1057 1996
## 1058 1994
## 1059 1996
## 1060 1996
## 1061 1996
## 1062 1998
## 1063 1995
## 1064 1947
## 1065 1983
## 1066 1995
## 1067 1996
## 1068 1996
## 1069 1994
## 1070 1995
## 1071 1995
## 1072 1995
## 1073 1994
## 1074 1994
## 1075 1994
## 1076 1994
## 1077 1994
## 1078 1988
## 1079 1996
## 1080 1996
## 1081 1996
## 1082 1997
## 1083 1997
## 1084 1996
## 1085 1996
## 1086 1996
## 1087 1996
## 1088 1997
## 1089 1997
## 1090 1993
## 1091 1977
## 1092 1996
## 1093 1996
## 1094 1996
## 1095 1996
## 1096 1997
## 1097 1996
## 1098 1996
## 1099 1994
## 1100 1994
## 1101 1993
## 1102 1996
## 1103 1990
## 1104 1992
## 1105 1998
## 1106 1998
## 1107 1995
## 1108 1995
## 1109 1994
## 1110 1995
## 1111 1996
## 1112 1994
## 1113 1994
## 1114 1996
## 1115 1996
## 1116 1940
## 1117 1996
## 1118 1978
## 1119 1987
## 1120 1996
## 1121 1996
## 1122 1939
## 1123 1954
## 1124 1932
## 1125 1961
## 1126 1958
## 1127 1998
## 1128 1996
## 1129 1996
## 1130 1996
## 1131 1995
## 1132 1996
## 1133 1975
## 1134 1996
## 1135 1991
## 1136 1996
## 1137 1996
## 1138 1997
## 1139 1995
## 1140 1994
## 1141 1993
## 1142 1997
## 1143 1997
## 1144 1997
## 1145 1994
## 1146 1993
## 1147 1995
## 1148 1994
## 1149 1971
## 1150 1996
## 1151 1996
## 1152 1997
## 1153 1993
## 1154 1965
## 1155 1996
## 1156 1996
## 1157 1997
## 1158 1996
## 1159 1979
## 1160 1997
## 1161 1996
## 1162 1996
## 1163 1996
## 1164 1997
## 1165 1996
## 1166 1993
## 1167 1994
## 1168 1993
## 1169 1994
## 1170 1994
## 1171 1994
## 1172 1939
## 1173 1997
## 1174 1996
## 1175 1997
## 1176 1997
## 1177 1996
## 1178 1994
## 1179 1995
## 1180 1994
## 1181 1994
## 1182 1994
## 1183 1994
## 1184 1994
## 1185 1994
## 1186 1994
## 1187 1975
## 1188 1990
## 1189 1997
## 1190 1997
## 1191 1998
## 1192 1993
## 1193 1994
## 1194 1994
## 1195 1993
## 1196 1992
## 1197 1996
## 1198 1960
## 1199 1996
## 1200 1950
## 1201 1996
## 1202 1996
## 1203 1935
## 1204 1942
## 1205 1996
## 1206 1993
## 1207 1995
## 1208 1995
## 1209 1994
## 1210 1995
## 1211 1994
## 1212 1993
## 1213 1993
## 1214 1976
## 1215 1996
## 1216 1997
## 1217 1995
## 1218 1995
## 1219 1995
## 1220 1995
## 1221 1994
## 1222 1993
## 1223 1993
## 1224 1994
## 1225 1995
## 1226 1997
## 1227 1995
## 1228 1995
## 1229 1995
## 1230 1994
## 1231 1990
## 1232 1991
## 1233 1996
## 1234 1998
## 1235 1994
## 1236 1997
## 1237 1996
## 1238 1996
## 1239 1995
## 1240 1996
## 1241 1997
## 1242 1991
## 1243 1998
## 1244 1997
## 1245 1997
## 1246 1995
## 1247 1994
## 1248 1994
## 1249 1993
## 1250 1995
## 1251 1997
## 1252 1997
## 1253 1995
## 1254 1997
## 1255 1997
## 1256 1997
## 1258 1997
## 1259 1996
## 1260 1995
## 1261 1995
## 1262 1996
## 1263 1996
## 1264 1996
## 1265 1997
## 1266 1973
## 1267 1995
## 1268 1992
## 1269 1957
## 1270 1993
## 1271 1994
## 1272 1994
## 1273 1994
## 1274 1993
## 1275 1994
## 1276 1996
## 1277 1996
## 1278 1997
## 1279 1997
## 1280 1997
## 1281 1996
## 1282 1996
## 1283 1997
## 1284 1996
## 1285 1994
## 1286 1937
## 1287 1996
## 1288 1996
## 1289 1996
## 1290 1994
## 1291 1996
## 1292 1997
## 1293 1998
## 1294 1998
## 1295 1997
## 1296 1996
## 1297 1994
## 1298 1953
## 1299 1941
## 1300 1997
## 1301 1981
## 1302 1997
## 1303 1994
## 1304 1996
## 1305 1995
## 1306 1994
## 1307 1994
## 1308 1994
## 1309 1974
## 1310 1945
## 1311 1996
## 1312 1996
## 1313 1998
## 1314 1994
## 1315 1997
## 1316 1997
## 1317 1996
## 1318 1996
## 1319 1996
## 1320 1996
## 1321 1996
## 1322 1993
## 1323 1994
## 1324 1996
## 1325 1996
## 1326 1996
## 1327 1994
## 1328 1996
## 1329 1996
## 1330 1994
## 1331 1995
## 1332 1993
## 1333 1994
## 1334 1996
## 1335 1996
## 1336 1996
## 1337 1996
## 1338 1996
## 1339 1993
## 1340 1995
## 1341 1992
## 1342 1996
## 1343 1995
## 1344 1993
## 1345 1994
## 1346 1992
## 1347 1958
## 1348 1990
## 1349 1993
## 1350 1949
## 1351 1996
## 1352 1976
## 1353 1994
## 1354 1992
## 1355 1996
## 1356 1996
## 1357 1994
## 1358 1996
## 1359 1996
## 1360 1994
## 1361 1996
## 1362 1996
## 1363 1996
## 1364 1996
## 1365 1993
## 1366 1994
## 1367 1994
## 1368 1994
## 1369 1950
## 1370 1994
## 1371 1994
## 1372 1994
## 1373 1971
## 1374 1980
## 1375 1993
## 1376 1997
## 1377 1997
## 1378 1997
## 1379 1997
## 1380 1997
## 1381 1996
## 1382 1997
## 1383 1997
## 1384 1997
## 1385 1997
## 1386 1997
## 1387 1997
## 1388 1997
## 1389 1997
## 1390 1997
## 1391 1997
## 1392 1997
## 1393 1997
## 1394 1997
## 1395 1998
## 1396 1996
## 1397 1934
## 1398 1996
## 1399 1997
## 1400 1995
## 1401 1993
## 1402 1993
## 1403 1994
## 1404 1987
## 1405 1997
## 1406 1995
## 1407 1994
## 1408 1995
## 1409 1994
## 1410 1993
## 1411 1968
## 1412 1995
## 1413 1994
## 1414 1995
## 1415 1994
## 1416 1994
## 1417 1997
## 1418 1993
## 1419 1994
## 1420 1997
## 1421 1993
## 1422 1993
## 1423 1995
## 1424 1994
## 1425 1994
## 1426 1996
## 1427 1996
## 1428 1997
## 1429 1998
## 1430 1997
## 1431 1997
## 1432 1998
## 1433 1997
## 1434 1998
## 1435 1995
## 1436 1993
## 1437 1994
## 1438 1995
## 1439 1994
## 1440 1994
## 1441 1995
## 1442 1995
## 1443 1994
## 1444 1965
## 1445 1994
## 1446 1995
## 1447 1993
## 1448 1996
## 1449 1996
## 1450 1947
## 1451 1940
## 1452 1943
## 1453 1946
## 1454 1947
## 1455 1943
## 1456 1954
## 1457 1996
## 1458 1937
## 1459 1996
## 1460 1996
## 1461 1935
## 1462 1996
## 1463 1997
## 1464 1995
## 1465 1995
## 1466 1995
## 1467 1993
## 1468 1995
## 1469 1995
## 1470 1995
## 1471 1995
## 1472 1996
## 1473 1939
## 1474 1994
## 1475 1993
## 1476 1948
## 1477 1997
## 1478 1995
## 1479 1995
## 1480 1974
## 1481 1994
## 1482 1996
## 1483 1998
## 1484 1994
## 1485 1994
## 1486 1995
## 1487 1993
## 1488 1993
## 1489 1994
## 1490 1993
## 1491 1995
## 1492 1994
## 1493 1996
## 1494 1996
## 1495 1996
## 1496 1996
## 1497 1996
## 1498 1997
## 1499 1994
## 1500 1996
## 1501 1997
## 1502 1994
## 1503 1995
## 1504 1996
## 1505 1996
## 1506 1996
## 1507 1996
## 1508 1995
## 1509 1994
## 1510 1996
## 1511 1997
## 1512 1996
## 1513 1997
## 1514 1997
## 1515 1995
## 1516 1994
## 1517 1996
## 1518 1995
## 1519 1995
## 1520 1995
## 1521 1993
## 1522 1994
## 1523 1994
## 1524 1996
## 1525 1998
## 1526 1985
## 1527 1998
## 1528 1997
## 1529 1996
## 1530 1995
## 1531 1995
## 1532 1994
## 1533 1993
## 1534 1997
## 1535 1994
## 1536 1996
## 1537 1997
## 1538 1997
## 1539 1993
## 1540 1995
## 1541 1994
## 1542 1926
## 1543 1996
## 1544 1995
## 1545 1995
## 1546 1988
## 1547 1995
## 1548 1995
## 1549 1995
## 1550 1995
## 1551 1994
## 1552 1995
## 1553 1995
## 1554 1994
## 1555 1993
## 1556 1995
## 1557 1996
## 1558 1996
## 1559 1994
## 1560 1981
## 1561 1994
## 1562 1993
## 1563 1994
## 1564 1991
## 1565 1992
## 1566 1943
## 1567 1992
## 1568 1992
## 1569 1987
## 1570 1992
## 1571 1973
## 1572 1982
## 1573 1968
## 1574 1995
## 1575 1990
## 1576 1987
## 1577 1956
## 1578 1967
## 1579 1988
## 1580 1933
## 1581 1950
## 1582 1947
## 1583 1986
## 1584 1946
## 1585 1990
## 1586 1992
## 1587 1958
## 1588 1997
## 1589 1997
## 1590 1997
## 1591 1998
## 1592 1998
## 1593 1996
## 1594 1998
## 1595 1996
## 1596 1995
## 1597 1992
## 1598 1997
## 1599 1996
## 1600 1997
## 1601 1997
## 1602 1998
## 1603 1996
## 1604 1948
## 1605 1997
## 1608 1997
## 1609 1997
## 1610 1997
## 1611 1997
## 1612 1998
## 1613 1998
## 1614 1958
## 1615 1997
## 1616 1995
## 1618 1990
## 1619 1996
## 1620 1997
## 1621 1996
## 1622 1993
## 1623 1996
## 1624 1998
## 1626 1996
## 1627 1996
## 1628 1994
## 1629 1995
## 1630 1996
## 1631 1993
## 1632 1996
## 1633 1996
## 1634 1996
## 1635 1986
## 1636 1996
## 1637 1996
## 1638 1996
## 1639 1996
## 1640 1996
## 1641 1996
## 1642 1996
## 1643 1997
## 1644 1997
## 1645 1998
## 1646 1998
## 1647 1998
## 1648 1998
## 1649 1998
## 1651 1998
## 1652 1997
## 1653 1996
## 1655 1994
## 1656 1998
## 1657 1996
## 1659 1996
## 1660 1996
## 1661 1994
## 1662 1997
## 1663 1997
## 1664 1997
## 1665 1997
## 1666 1997
## 1667 1997
## 1668 1997
## 1669 1997
## 1670 1998
## 1671 1998
## 1672 1993
## 1673 1995
## 1674 1962
## 1675 1996
## 1676 1996
## 1677 1996
## 1678 1998
## 1679 1998
## 1681 1994
## 1682 1996
## url
## 1 http://us.imdb.com/M/title-exact?Toy%20Story%20(1995)
## 2 http://us.imdb.com/M/title-exact?GoldenEye%20(1995)
## 3 http://us.imdb.com/M/title-exact?Four%20Rooms%20(1995)
## 4 http://us.imdb.com/M/title-exact?Get%20Shorty%20(1995)
## 5 http://us.imdb.com/M/title-exact?Copycat%20(1995)
## 6 http://us.imdb.com/Title?Yao+a+yao+yao+dao+waipo+qiao+(1995)
## 7 http://us.imdb.com/M/title-exact?Twelve%20Monkeys%20(1995)
## 8 http://us.imdb.com/M/title-exact?Babe%20(1995)
## 9 http://us.imdb.com/M/title-exact?Dead%20Man%20Walking%20(1995)
## 10 http://us.imdb.com/M/title-exact?Richard%20III%20(1995)
## 11 http://us.imdb.com/M/title-exact?Se7en%20(1995)
## 12 http://us.imdb.com/M/title-exact?Usual%20Suspects,%20The%20(1995)
## 13 http://us.imdb.com/M/title-exact?Mighty%20Aphrodite%20(1995)
## 14 http://us.imdb.com/M/title-exact?Postino,%20Il%20(1994)
## 15 http://us.imdb.com/M/title-exact?Mr.%20Holland's%20Opus%20(1995)
## 16 http://us.imdb.com/M/title-exact?Gazon%20maudit%20(1995)
## 17 http://us.imdb.com/M/title-exact?From%20Dusk%20Till%20Dawn%20(1996)
## 18 http://us.imdb.com/M/title-exact?Badkonake%20Sefid%20(1995)
## 19 http://us.imdb.com/M/title-exact?Antonia%20(1995)
## 20 http://us.imdb.com/M/title-exact?Angels%20and%20Insects%20(1995)
## 21 http://us.imdb.com/M/title-exact?Muppet%20Treasure%20Island%20(1996)
## 22 http://us.imdb.com/M/title-exact?Braveheart%20(1995)
## 23 http://us.imdb.com/M/title-exact?Taxi%20Driver%20(1976)
## 24 http://us.imdb.com/M/title-exact?Hong%20Faan%20Kui%20(1995)
## 25 http://us.imdb.com/M/title-exact?Birdcage,%20The%20(1996)
## 26 http://us.imdb.com/M/title-exact?Brothers%20McMullen,%20The%20(1995)
## 27 http://us.imdb.com/M/title-exact?Bad%20Boys%20(1995)
## 28 http://us.imdb.com/M/title-exact?Apollo%2013%20(1995)
## 29 http://us.imdb.com/M/title-exact?Batman%20Forever%20(1995)
## 30 http://us.imdb.com/M/title-exact?Belle%20de%20jour%20(1967)
## 31 http://us.imdb.com/M/title-exact?Crimson%20Tide%20(1995)
## 32 http://us.imdb.com/M/title-exact?Crumb%20(1994)
## 33 http://us.imdb.com/M/title-exact?Desperado%20(1995)
## 34 http://us.imdb.com/M/title-exact?Doom%20Generation,%20The%20(1995)
## 35 http://us.imdb.com/M/title-exact?Free%20Willy%202:%20The%20Adventure%20Home%20(1995)
## 36 http://us.imdb.com/M/title-exact?Mad%20Love%20(1995)
## 37 http://us.imdb.com/M/title-exact?Nadja%20(1994)
## 38 http://us.imdb.com/M/title-exact?Net,%20The%20(1995)
## 39 http://us.imdb.com/M/title-exact?Strange%20Days%20(1995)
## 40 http://us.imdb.com/M/title-exact?To%20Wong%20Foo,%20Thanks%20for%20Everything!%20Julie%20Newmar%20(1995)
## 41 http://us.imdb.com/M/title-exact?Billy%20Madison%20(1995)
## 42 http://us.imdb.com/M/title-exact?Clerks%20(1994)
## 43 http://us.imdb.com/M/title-exact?Disclosure%20(1994)
## 44 http://us.imdb.com/M/title-exact?Dolores%20Claiborne%20(1994)
## 45 http://us.imdb.com/M/title-exact?Yinshi%20Nan%20Nu%20(1994)
## 46 http://us.imdb.com/M/title-exact?Exotica%20(1994)
## 47 http://us.imdb.com/M/title-exact?Ed%20Wood%20(1994)
## 48 http://us.imdb.com/M/title-exact?Hoop%20Dreams%20(1994)
## 49 http://us.imdb.com/M/title-exact?I.Q.%20(1994)
## 50 http://us.imdb.com/M/title-exact?Star%20Wars%20(1977)
## 51 http://us.imdb.com/M/title-exact?Legends%20of%20the%20Fall%20(1994)
## 52 http://us.imdb.com/M/title-exact?Madness%20of%20King%20George,%20The%20(1994)
## 53 http://us.imdb.com/M/title-exact?Natural%20Born%20Killers%20(1994)
## 54 http://us.imdb.com/M/title-exact?Outbreak%20(1995)
## 55 http://us.imdb.com/Title?L%E9on+(1994)
## 56 http://us.imdb.com/M/title-exact?Pulp%20Fiction%20(1994)
## 57 http://us.imdb.com/M/title-exact?Priest%20(1994)
## 58 http://us.imdb.com/M/title-exact?Quiz%20Show%20(1994)
## 59 http://us.imdb.com/M/title-exact?Trzy%20kolory:%20Czerwony%20(1994)
## 60 http://us.imdb.com/M/title-exact?Trzy%20kolory:%20Niebieski%20(1993)
## 61 http://us.imdb.com/M/title-exact?Trzy%20kolory:%20Bialy%20(1994)
## 62 http://us.imdb.com/M/title-exact?Stargate%20(1994)
## 63 http://us.imdb.com/M/title-exact?Santa%20Clause,%20The%20(1994)
## 64 http://us.imdb.com/M/title-exact?Shawshank%20Redemption,%20The%20(1994)
## 65 http://us.imdb.com/M/title-exact?What's%20Eating%20Gilbert%20Grape%20(1993)
## 66 http://us.imdb.com/M/title-exact?While%20You%20Were%20Sleeping%20(1995)
## 67 http://us.imdb.com/M/title-exact?Ace%20Ventura:%20Pet%20Detective%20(1994)
## 68 http://us.imdb.com/M/title-exact?Crow,%20The%20(1994)
## 69 http://us.imdb.com/M/title-exact?Forrest%20Gump%20(1994)
## 70 http://us.imdb.com/M/title-exact?Four%20Weddings%20and%20a%20Funeral%20(1994)
## 71 http://us.imdb.com/M/title-exact?Lion%20King,%20The%20(1994)
## 72 http://us.imdb.com/M/title-exact?Mask,%20The%20(1994)
## 73 http://us.imdb.com/M/title-exact?Maverick%20(1994)
## 74 http://us.imdb.com/M/title-exact?Faster%20Pussycat!%20Kill!%20Kill!%20(1965)
## 75 http://us.imdb.com/M/title-exact?Brother%20Minister:%20The%20Assassination%20of%20Malcolm%20X%20(1994)
## 76 http://us.imdb.com/M/title-exact?Carlito's%20Way%20(1993)
## 77 http://us.imdb.com/M/title-exact?Firm,%20The%20(1993)
## 78 http://us.imdb.com/M/title-exact?Free%20Willy%20(1993)
## 79 http://us.imdb.com/M/title-exact?Fugitive,%20The%20(1993)
## 80 http://us.imdb.com/M/title-exact?Hot%20Shots!%20Part%20Deux%20(1993)
## 81 http://us.imdb.com/M/title-exact?Hudsucker%20Proxy,%20The%20(1994)
## 82 http://us.imdb.com/M/title-exact?Jurassic%20Park%20(1993)
## 83 http://us.imdb.com/M/title-exact?Much%20Ado%20About%20Nothing%20(1993)
## 84 http://us.imdb.com/M/title-exact?Robert%20A.%20Heinlein's%20The%20Puppet%20Masters%20(1994)
## 85 http://us.imdb.com/M/title-exact?Ref,%20The%20(1994)
## 86 http://us.imdb.com/M/title-exact?Remains%20of%20the%20Day,%20The%20(1993)
## 87 http://us.imdb.com/M/title-exact?Searching%20for%20Bobby%20Fischer%20(1993)
## 88 http://us.imdb.com/M/title-exact?Sleepless%20in%20Seattle%20(1993)
## 89 http://us.imdb.com/M/title-exact?Blade%20Runner%20(1982)
## 90 http://us.imdb.com/M/title-exact?So%20I%20Married%20an%20Axe%20Murderer%20(1993)
## 91 http://us.imdb.com/M/title-exact?Nightmare%20Before%20Christmas,%20The%20(1993)
## 92 http://us.imdb.com/M/title-exact?True%20Romance%20(1993)
## 93 http://us.imdb.com/Title?Welcome+to+the+Dollhouse+(1995)
## 94 http://us.imdb.com/M/title-exact?Home%20Alone%20(1990)
## 95 http://us.imdb.com/M/title-exact?Aladdin%20(1992)
## 96 http://us.imdb.com/M/title-exact?Terminator%202:%20Judgment%20Day%20(1991)
## 97 http://us.imdb.com/M/title-exact?Dances%20with%20Wolves%20(1990)
## 98 http://us.imdb.com/M/title-exact?Silence%20of%20the%20Lambs,%20The%20(1991)
## 99 http://us.imdb.com/M/title-exact?Snow%20White%20and%20the%20Seven%20Dwarfs%20(1937)
## 100 http://us.imdb.com/M/title-exact?Fargo%20(1996)
## 101 http://us.imdb.com/M/title-exact?Heavy%20Metal%20(1981)
## 102 http://us.imdb.com/M/title-exact?Aristocats,%20The%20(1970)
## 103 http://us.imdb.com/M/title-exact?All%20Dogs%20Go%20to%20Heaven%202%20(1996)
## 104 http://us.imdb.com/M/title-exact?Theodore%20Rex%20(1995)
## 105 http://us.imdb.com/M/title-exact?Sgt.%20Bilko%20(1996)
## 106 http://us.imdb.com/M/title-exact?Diabolique%20(1996)
## 107 http://us.imdb.com/M/title-exact?Moll%20Flanders%20(1996)
## 108 http://us.imdb.com/M/title-exact?Kids%20in%20the%20Hall:%20Brain%20Candy%20(1996)
## 109 http://us.imdb.com/M/title-exact?Mystery%20Science%20Theater%203000:%20The%20Movie%20(1996)
## 110 http://us.imdb.com/M/title-exact?Operation%20Dumbo%20Drop%20(1995)
## 111 http://us.imdb.com/M/title-exact?Truth%20About%20Cats%20&%20Dogs,%20The%20(1996)
## 112 http://us.imdb.com/M/title-exact?Flipper%20(1996)
## 113 http://us.imdb.com/M/title-exact?Hussard%20sur%20le%20toit,%20Le%20(1995)
## 114 http://us.imdb.com/Title?Wallace+%26+Gromit%3A+The+Best+of+Aardman+Animation+(1996)
## 115 http://us.imdb.com/Title?Haunted+World+of+Edward+D.+Wood+Jr.,+The+(1995)
## 116 http://us.imdb.com/M/title-exact?Cold%20Comfort%20Farm%20(1995)%20(TV)
## 117 http://us.imdb.com/M/title-exact?Rock,%20The%20(1996)
## 118 http://us.imdb.com/M/title-exact?Twister%20(1996)
## 119 http://us.imdb.com/M/title-exact?Maya%20Lin:%20A%20Strong%20Clear%20Vision%20(1994)
## 120 http://us.imdb.com/M/title-exact?Striptease%20(1996)
## 121 http://us.imdb.com/M/title-exact?Independence%20Day%20(1996)
## 122 http://us.imdb.com/M/title-exact?Cable%20Guy,%20The%20(1996)
## 123 http://us.imdb.com/M/title-exact?Frighteners,%20The%20(1996)
## 124 http://us.imdb.com/M/title-exact?Lone%20Star%20(1996)
## 125 http://us.imdb.com/M/title-exact?Phenomenon%20(1996)
## 126 http://us.imdb.com/M/title-exact?Spitfire%20Grill,%20The%20(1996)
## 127 http://us.imdb.com/M/title-exact?Godfather,%20The%20(1972)
## 128 http://us.imdb.com/M/title-exact?Police%20Story%20III:%20Supercop%20(1992)
## 129 http://us.imdb.com/M/title-exact?Bound%20(1996)
## 130 http://us.imdb.com/M/title-exact?Kansas%20City%20(1996)
## 131 http://us.imdb.com/M/title-exact?Breakfast%20at%20Tiffany's%20(1961)
## 132 http://us.imdb.com/M/title-exact?Wizard%20of%20Oz,%20The%20(1939)
## 133 http://us.imdb.com/M/title-exact?Gone%20with%20the%20Wind%20(1939)
## 134 http://us.imdb.com/M/title-exact?Citizen%20Kane%20(1941)
## 135 http://us.imdb.com/M/title-exact?2001:%20A%20Space%20Odyssey%20(1968)
## 136 http://us.imdb.com/M/title-exact?Mr.%20Smith%20Goes%20to%20Washington%20(1939)
## 137 http://us.imdb.com/M/title-exact?Big%20Night%20(1996)
## 138 http://us.imdb.com/M/title-exact?D3:%20The%20Mighty%20Ducks%20(1996)
## 139 http://us.imdb.com/M/title-exact?Love%20Bug,%20The%20(1969)
## 140 http://us.imdb.com/M/title-exact?Homeward%20Bound:%20The%20Incredible%20Journey%20(1993)
## 141 http://us.imdb.com/M/title-exact?20,000%20Leagues%20Under%20the%20Sea%20(1954)
## 142 http://us.imdb.com/M/title-exact?Bedknobs%20and%20Broomsticks%20(1971)
## 143 http://us.imdb.com/M/title-exact?Sound%20of%20Music,%20The%20(1965)
## 144 http://us.imdb.com/M/title-exact?Die%20Hard%20(1988)
## 145 http://us.imdb.com/M/title-exact?Lawnmower%20Man,%20The%20(1992)
## 146 http://us.imdb.com/M/title-exact?Unhook%20the%20Stars%20(1996)
## 147 http://us.imdb.com/M/title-exact?Long%20Kiss%20Goodnight,%20The%20(1996)
## 148 http://us.imdb.com/M/title-exact?Ghost%20and%20the%20Darkness,%20The%20(1996)
## 149 http://us.imdb.com/M/title-exact?Jude%20(1996)
## 150 http://us.imdb.com/M/title-exact?Swingers%20(1996)
## 151 http://us.imdb.com/M/title-exact?Willy%20Wonka%20and%20the%20Chocolate%20Factory%20(1971)
## 152 http://us.imdb.com/M/title-exact?Sleeper%20(1973)
## 153 http://us.imdb.com/M/title-exact?Fish%20Called%20Wanda,%20A%20(1988)
## 154 http://us.imdb.com/M/title-exact?Life%20of%20Brian%20(1979)
## 155 http://us.imdb.com/M/title-exact?Dirty%20Dancing%20(1987)
## 156 http://us.imdb.com/M/title-exact?Reservoir%20Dogs%20(1992)
## 157 http://us.imdb.com/M/title-exact?Platoon%20(1986)
## 158 http://us.imdb.com/M/title-exact?Weekend%20at%20Bernie's%20(1989)
## 159 http://us.imdb.com/M/title-exact?Basic%20Instinct%20(1992)
## 160 http://us.imdb.com/M/title-exact?Glengarry%20Glen%20Ross%20(1992)
## 161 http://us.imdb.com/M/title-exact?Top%20Gun%20(1986)
## 162 http://us.imdb.com/M/title-exact?On%20Golden%20Pond%20(1981)
## 163 http://us.imdb.com/M/title-exact?Return%20of%20the%20Pink%20Panther,%20The%20(1974)
## 164 http://us.imdb.com/M/title-exact?Abyss,%20The%20(1989)
## 165 http://us.imdb.com/M/title-exact?Jean%20de%20Florette%20(1986)
## 166 http://us.imdb.com/M/title-exact?Manon%20des%20sources%20(1986)
## 167 http://us.imdb.com/M/title-exact?Private%20Benjamin%20(1980)
## 168 http://us.imdb.com/M/title-exact?Monty%20Python%20and%20the%20Holy%20Grail%20(1974)
## 169 http://us.imdb.com/M/title-exact?Wrong%20Trousers,%20The%20(1993)
## 170 http://us.imdb.com/M/title-exact?Nuovo%20cinema%20Paradiso%20(1988)
## 171 http://us.imdb.com/M/title-exact?Delicatessen%20(1991)
## 172 http://us.imdb.com/M/title-exact?Empire%20Strikes%20Back,%20The%20(1980)
## 173 http://us.imdb.com/M/title-exact?Princess%20Bride,%20The%20(1987)
## 174 http://us.imdb.com/M/title-exact?Raiders%20of%20the%20Lost%20Ark%20(1981)
## 175 http://us.imdb.com/M/title-exact?Brazil%20(1985)
## 176 http://us.imdb.com/M/title-exact?Aliens%20(1986)
## 177 http://us.imdb.com/M/title-exact?Buono,%20il%20brutto,%20il%20cattivo,%20Il%20(1966)
## 178 http://us.imdb.com/M/title-exact?12%20Angry%20Men%20(1957)
## 179 http://us.imdb.com/M/title-exact?Clockwork%20Orange,%20A%20(1971)
## 180 http://us.imdb.com/M/title-exact?Apocalypse%20Now%20(1979)
## 181 http://us.imdb.com/M/title-exact?Return%20of%20the%20Jedi%20(1983)
## 182 http://us.imdb.com/M/title-exact?GoodFellas%20(1990)
## 183 http://us.imdb.com/M/title-exact?Alien%20(1979)
## 184 http://us.imdb.com/M/title-exact?Army%20of%20Darkness%20(1993)
## 185 http://us.imdb.com/M/title-exact?Psycho%20(1960)
## 186 http://us.imdb.com/M/title-exact?Blues%20Brothers,%20The%20(1980)
## 187 http://us.imdb.com/M/title-exact?Godfather:%20Part%20II,%20The%20(1974)
## 188 http://us.imdb.com/M/title-exact?Full%20Metal%20Jacket%20(1987)
## 189 http://us.imdb.com/M/title-exact?Grand%20Day%20Out,%20A%20(1992)
## 190 http://us.imdb.com/M/title-exact?Henry%20V%20(1989)
## 191 http://us.imdb.com/M/title-exact?Amadeus%20(1984)
## 192 http://us.imdb.com/M/title-exact?Raging%20Bull%20(1980)
## 193 http://us.imdb.com/M/title-exact?Right%20Stuff,%20The%20(1983)
## 194 http://us.imdb.com/M/title-exact?Sting,%20The%20(1973)
## 195 http://us.imdb.com/M/title-exact?Terminator,%20The%20(1984)
## 196 http://us.imdb.com/M/title-exact?Dead%20Poets%20Society%20(1989)
## 197 http://us.imdb.com/M/title-exact?Graduate,%20The%20(1967)
## 198 http://us.imdb.com/M/title-exact?Nikita%20(1990)
## 199 http://us.imdb.com/M/title-exact?Bridge%20on%20the%20River%20Kwai,%20The%20(1957)
## 200 http://us.imdb.com/M/title-exact?Shining,%20The%20(1980)
## 201 http://us.imdb.com/M/title-exact?Evil%20Dead%20II%20(1987)
## 202 http://us.imdb.com/M/title-exact?Groundhog%20Day%20(1993)
## 203 http://us.imdb.com/M/title-exact?Unforgiven%20(1992)
## 204 http://us.imdb.com/M/title-exact?Back%20to%20the%20Future%20(1985)
## 205 http://us.imdb.com/M/title-exact?Patton%20(1970)
## 206 http://us.imdb.com/M/title-exact?Akira%20(1988)
## 207 http://us.imdb.com/M/title-exact?Cyrano%20de%20Bergerac%20(1990)
## 208 http://us.imdb.com/M/title-exact?Young%20Frankenstein%20(1974)
## 209 http://us.imdb.com/M/title-exact?This%20Is%20Spinal%20Tap%20(1984)
## 210 http://us.imdb.com/M/title-exact?Indiana%20Jones%20and%20the%20Last%20Crusade%20(1989)
## 211 http://us.imdb.com/M/title-exact?MASH%20(1970)
## 212 http://us.imdb.com/M/title-exact?Unbearable%20Lightness%20of%20Being,%20The%20(1988)
## 213 http://us.imdb.com/M/title-exact?Room%20with%20a%20View,%20A%20(1986)
## 214 http://us.imdb.com/M/title-exact?Pink%20Floyd%20-%20The%20Wall%20(1982)
## 215 http://us.imdb.com/M/title-exact?Field%20of%20Dreams%20(1989)
## 216 http://us.imdb.com/M/title-exact?When%20Harry%20Met%20Sally...%20(1989)
## 217 http://us.imdb.com/M/title-exact?Bram%20Stoker's%20Dracula%20(1992)
## 218 http://us.imdb.com/M/title-exact?Cape%20Fear%20(1991)
## 219 http://us.imdb.com/M/title-exact?Nightmare%20on%20Elm%20Street,%20A%20(1984)
## 220 http://us.imdb.com/M/title-exact?Mirror%20Has%20Two%20Faces,%20The%20(1996)
## 221 http://us.imdb.com/M/title-exact?Breaking%20the%20Waves%20(1996)
## 222 http://us.imdb.com/M/title-exact?Star%20Trek:%20First%20Contact%20(1996)
## 223 http://us.imdb.com/M/title-exact?Sling%20Blade%20(1996)
## 224 http://us.imdb.com/M/title-exact?Ridicule%20(1996)
## 225 http://us.imdb.com/M/title-exact?101%20Dalmatians%20(1996)
## 226 http://us.imdb.com/M/title-exact?Die%20Hard%202%20(1990)
## 227 http://us.imdb.com/M/title-exact?Star%20Trek%20VI:%20The%20Undiscovered%20Country%20(1991)
## 228 http://us.imdb.com/M/title-exact?Star%20Trek:%20The%20Wrath%20of%20Khan%20(1982)
## 229 http://us.imdb.com/M/title-exact?Star%20Trek%20III:%20The%20Search%20for%20Spock%20(1984)
## 230 http://us.imdb.com/M/title-exact?Star%20Trek%20IV:%20The%20Voyage%20Home%20(1986)
## 231 http://us.imdb.com/M/title-exact?Batman%20Returns%20(1992)
## 232 http://us.imdb.com/M/title-exact?Young%20Guns%20(1988)
## 233 http://us.imdb.com/M/title-exact?Under%20Siege%20(1992)
## 234 http://us.imdb.com/M/title-exact?Jaws%20(1975)
## 235 http://us.imdb.com/M/title-exact?Mars%20Attacks!%20(1996)
## 236 http://us.imdb.com/M/title-exact?Citizen%20Ruth%20(1996)
## 237 http://us.imdb.com/M/title-exact?Jerry%20Maguire%20(1996)
## 238 http://us.imdb.com/M/title-exact?Raising%20Arizona%20(1987)
## 239 http://us.imdb.com/M/title-exact?Sneakers%20(1992)
## 240 http://us.imdb.com/M/title-exact?Beavis%20and%20Butt-head%20Do%20America%20(1996)
## 241 http://us.imdb.com/M/title-exact?Last%20of%20the%20Mohicans,%20The%20(1992)
## 242 http://us.imdb.com/M/title-exact?Kolya%20(1996)
## 243 http://us.imdb.com/M/title-exact?Jungle2Jungle%20(1997)
## 244 http://us.imdb.com/M/title-exact?Smilla%27s%20Sense%20of%20Snow%20(1997)
## 245 http://us.imdb.com/M/title-exact?Devil%27s%20Own%2C%20The%20(1997)
## 246 http://us.imdb.com/M/title-exact?Chasing+Amy+(1997)
## 247 http://us.imdb.com/M/title-exact?Turbo%3A%20A%20Power%20Rangers%20Movie%20%281997%29
## 248 http://us.imdb.com/M/title-exact?Grosse%20Pointe%20Blank%20%281997%29
## 249 http://us.imdb.com/M/title-exact?Austin%20Powers%3A%20International%20Man%20of%20Mystery%20%281997%29
## 250 http://us.imdb.com/M/title-exact?Fifth%20Element%2C%20The%20%281997%29
## 251 http://us.imdb.com/M/title-exact?Shall%20we%20DANSU%3F%20%281996%29
## 252 http://us.imdb.com/M/title-exact?Lost%20World%3A%20Jurassic%20Park%2C%20The%20%281997%29
## 253 http://us.imdb.com/M/title-exact?Pillow%20Book%2C%20The%20%281995%29
## 254 http://us.imdb.com/M/title-exact?Batman+%26+Robin+(1997)
## 255 http://us.imdb.com/M/title-exact?My+Best+Friend%27s+Wedding+(1997)
## 256 http://us.imdb.com/M/title-exact?Chacun+cherche+son+chat+(1996)
## 257 http://us.imdb.com/M/title-exact?Men+in+Black+(1997)
## 258 http://us.imdb.com/Title?Contact+(1997/I)
## 259 http://us.imdb.com/M/title-exact?George+of+the+Jungle+(1997)
## 260 http://us.imdb.com/M/title-exact?Event+Horizon+(1997)
## 261 http://us.imdb.com/M/title-exact?Air+Bud+(1997)
## 262 http://us.imdb.com/M/title-exact?In+the+Company+of+Men+(1997)
## 263 http://us.imdb.com/M/title-exact?Steel+(1997)
## 264 http://us.imdb.com/M/title-exact?Mimic+(1997)
## 265 http://us.imdb.com/M/title-exact?Hunt+for+Red+October%2C+The+(1990)
## 266 http://us.imdb.com/M/title-exact?Kull+the+Conqueror+(1997)
## 267
## 269 http://us.imdb.com/M/title-exact?Full+Monty%2C+The+(1997)
## 270 http://us.imdb.com/M/title-exact?Gattaca+(1997)
## 271 http://us.imdb.com/M/title-exact?Starship+Troopers+(1997)
## 272 http://us.imdb.com/M/title-exact?imdb-title-119217
## 273 http://us.imdb.com/M/title-exact?Heat%20(1995)
## 274 http://us.imdb.com/M/title-exact?Sabrina%20(1995)
## 275 http://us.imdb.com/M/title-exact?Sense%20and%20Sensibility%20(1995)
## 276 http://us.imdb.com/M/title-exact?Leaving%20Las%20Vegas%20(1995)
## 277 http://us.imdb.com/M/title-exact?Restoration%20(1995)
## 278 http://us.imdb.com/M/title-exact?Bed%20of%20Roses%20(1996)
## 279 http://us.imdb.com/M/title-exact?Once%20Upon%20a%20Time... When%20We%20Were%20Colored%20(1995)
## 280 http://us.imdb.com/M/title-exact?Up%20Close%20and%20Personal%20(1996)
## 281 http://us.imdb.com/M/title-exact?River%20Wild,%20The%20(1994)
## 282 http://us.imdb.com/M/title-exact?Time%20to%20Kill,%20A%20(1996)
## 283 http://us.imdb.com/M/title-exact?Emma%20(1996)
## 284 http://us.imdb.com/M/title-exact?Tin%20Cup%20(1996)
## 285 http://us.imdb.com/M/title-exact?Secrets%20&%20Lies%20(1996)
## 286 http://us.imdb.com/M/title-exact?English%20Patient,%20The%20(1996)
## 287 http://us.imdb.com/M/title-exact?Marvin's%20Room%20(1996)
## 288 http://us.imdb.com/M/title-exact?Scream%20(1996)
## 289 http://us.imdb.com/M/title-exact?Evita%20(1996)
## 290 http://us.imdb.com/M/title-exact?Fierce%20Creatures%20(1997)
## 291 http://us.imdb.com/M/title-exact?Absolute%20Power%20(1997)
## 292 http://us.imdb.com/M/title-exact?Rosewood%20(1997)
## 293 http://us.imdb.com/M/title-exact?Donnie%20Brasco%20(1997)
## 294 http://us.imdb.com/Title?Liar+Liar+(1997)
## 295 http://us.imdb.com/M/title-exact?Breakdown%20%281997%29
## 296 http://us.imdb.com/M/title-exact?Promesse%2C%20La%20%281996%29
## 297 http://us.imdb.com/M/title-exact?Ulee%27s+Gold+(1997)
## 298 http://us.imdb.com/M/title-exact?Face/Off+(1997)
## 299 http://us.imdb.com/M/title-exact?Hoodlum+(1997)
## 300 http://us.imdb.com/M/title-exact?Air+Force+One+(1997)
## 301 http://us.imdb.com/Title?In+%26+Out+(1997)
## 302 http://us.imdb.com/M/title-exact?L%2EA%2E+Confidential+(1997)
## 304 http://us.imdb.com/M/title-exact?Fly%20Away%20Home%20(1996)
## 305 http://us.imdb.com/M/title-exact?Ice+Storm%2C+The+(1997)
## 306 http://us.imdb.com/M/title-exact?Her+Majesty%2C+Mrs%2E+Brown+(1997)
## 307 http://us.imdb.com/M/title-exact?Devil's+Advocate,+The+(1997)
## 308 http://us.imdb.com/M/title-exact?Fairytale:+A+True+Story+(1997)
## 309 http://us.imdb.com/M/title-exact?Liar+(1997)
## 310 http://us.imdb.com/M/title-exact?Rainmaker,+The+(1997)
## 311 http://us.imdb.com/M/title-exact?Wings+of+the+Dove%2C+The+(1997)
## 312 http://us.imdb.com/M/title-exact?Midnight+in+the+Garden+of+Good+and+Evil+(1997)
## 313 http://us.imdb.com/M/title-exact?imdb-title-120338
## 314 http://us.imdb.com/M/title-exact?imdb-title-118539
## 315 http://us.imdb.com/Title?Apt+Pupil+(1998)
## 316 http://us.imdb.com/Title?As+Good+As+It+Gets+(1997)
## 317 http://us.imdb.com/M/title-exact?In%20the%20Name%20of%20the%20Father%20(1993)
## 318 http://us.imdb.com/M/title-exact?Schindler's%20List%20(1993)
## 319 http://us.imdb.com/M/title-exact?Everyone%20Says%20I%20Love%20You%20(1996)
## 320 http://us.imdb.com/M/title-exact?Paradise%20Lost%3a%20The%20Child%20Murders%20at%20Robin%20Hood%20Hills%20(1996)
## 321 http://us.imdb.com/M/title-exact?Mother%20(1996/I)
## 322 http://us.imdb.com/M/title-exact?Murder%20at%201600%20(1997)
## 323 http://us.imdb.com/M/title-exact?Dante's%20Peak%20(1997)
## 324 http://us.imdb.com/Title?Lost+Highway+(1997)
## 325 http://us.imdb.com/M/title-exact?Crash%20(1996)
## 326 http://us.imdb.com/M/title-exact?G%2EI%2E+Jane+(1997)
## 327 http://us.imdb.com/M/title-exact?Cop+Land+(1997)
## 328 http://us.imdb.com/M/title-exact?Conspiracy+Theory+(1997)
## 329 http://us.imdb.com/Title?Desperate+Measures+(1998)
## 330 http://us.imdb.com/M/title-exact?187+(1997)
## 331 http://us.imdb.com/M/title-exact?Edge%2C+The+(1997/I)
## 332 http://us.imdb.com/M/title-exact?Kiss+the+Girls+(1997)
## 333 http://us.imdb.com/M/title-exact?Game%2C+The+(1997)
## 334 http://us.imdb.com/Title?U+Turn+(1997)
## 335 http://us.imdb.com/M/title-exact?How+to+Be+a+Player+(1997)
## 336 http://us.imdb.com/M/title-exact?Playing+God+(1997)
## 337 http://us.imdb.com/M/title-exact?House+of+Yes,+The+(1997)
## 338 http://us.imdb.com/M/title-exact?Bean+(1997)
## 339 http://us.imdb.com/M/title-exact?Mad+City+(1997)
## 340 http://us.imdb.com/M/title-exact?Boogie+Nights+(1997)
## 341 http://us.imdb.com/M/title-exact?Critical+Care+(1997)
## 342 http://us.imdb.com/M/title-exact?Man+Who+Knew+Too+Little%2C+The+(1997)
## 343 http://us.imdb.com/M/title-exact?Alien%3A+Resurrection+(1997)
## 344 http://us.imdb.com/M/title-exact?imdb-title-118632
## 345 http://us.imdb.com/M/title-exact?imdb-title-118954
## 346 http://us.imdb.com/M/title-exact?imdb-title-119396
## 347 http://us.imdb.com/M/title-exact?imdb-title-120885
## 349 http://us.imdb.com/M/title-exact?imdb-title-120696
## 350 http://us.imdb.com/Title?Fallen+(1998)
## 351 http://us.imdb.com/M/title-exact?imdb-title-119959
## 352 http://us.imdb.com/M/title-exact?imdb-title-120185
## 353 http://us.imdb.com/M/title-exact?imdb-title-118956
## 354 http://us.imdb.com/M/title-exact?Wedding+Singer%2C+The+(1998)
## 355 http://us.imdb.com/M/title-exact?Sphere+(1998)
## 356 http://us.imdb.com/M/title-exact?Client,%20The%20(1994)
## 357 http://us.imdb.com/M/title-exact?One%20Flew%20Over%20the%20Cuckoo's%20Nest%20(1975)
## 358 http://us.imdb.com/M/title-exact?Spawn+(1997/I)
## 359 http://us.imdb.com/M/title-exact?Assignment%2C+The+(1997)
## 360 http://us.imdb.com/M/title-exact?Wonderland+(1997)
## 361 http://us.imdb.com/M/title-exact?Incognito+(1997)
## 362 http://us.imdb.com/M/title-exact?Blues+Brothers+2000+(1998)
## 363 http://us.imdb.com/M/title-exact?Sudden%20Death%20(1995)
## 364 http://us.imdb.com/M/title-exact?Ace%20Ventura:%20When%20Nature%20Calls%20(1995)
## 365 http://us.imdb.com/M/title-exact?Powder%20(1995)
## 366 http://us.imdb.com/M/title-exact?Dangerous%20Minds%20(1995)
## 367 http://us.imdb.com/M/title-exact?Clueless%20(1995)
## 368 http://us.imdb.com/M/title-exact?Bio-Dome%20(1996)
## 369 http://us.imdb.com/M/title-exact?Black%20Sheep%20(1996)
## 370 http://us.imdb.com/M/title-exact?Mary%20Reilly%20(1996)
## 371 http://us.imdb.com/M/title-exact?Bridges%20of%20Madison%20County,%20The%20(1995)
## 372 http://us.imdb.com/M/title-exact?Jeffrey%20(1995)
## 373 http://us.imdb.com/M/title-exact?Judge%20Dredd%20(1995)
## 374 http://us.imdb.com/M/title-exact?Mighty%20Morphin%20Power%20Rangers:%20The%20Movie%20(1995)
## 375 http://us.imdb.com/M/title-exact?Showgirls%20(1995)
## 376 http://us.imdb.com/M/title-exact?Houseguest%20(1994)
## 377 http://us.imdb.com/M/title-exact?Heavyweights%20(1994)
## 378 http://us.imdb.com/M/title-exact?Miracle%20on%2034th%20Street%20(1994)
## 379 http://us.imdb.com/M/title-exact?Tales%20From%20the%20Crypt%20Presents:%20Demon%20Knight%20(1995)
## 380 http://us.imdb.com/M/title-exact?Star%20Trek:%20Generations%20(1994)
## 381 http://us.imdb.com/M/title-exact?Muriel's%20Wedding%20(1994)
## 382 http://us.imdb.com/M/title-exact?Adventures%20of%20Priscilla,%20Queen%20of%20the%20Desert,%20The%20(1994)
## 383 http://us.imdb.com/M/title-exact?Flintstones,%20The%20(1994)
## 384 http://us.imdb.com/M/title-exact?Naked%20Gun%2033%201/3:%20The%20Final%20Insult%20(1994)
## 385 http://us.imdb.com/M/title-exact?True%20Lies%20(1994)
## 386 http://us.imdb.com/M/title-exact?Addams%20Family%20Values%20(1993)
## 387 http://us.imdb.com/M/title-exact?Age%20of%20Innocence,%20The%20(1993)
## 388 http://us.imdb.com/M/title-exact?Beverly%20Hills%20Cop%20III%20(1994)
## 389 http://us.imdb.com/Title?Black+Beauty+(1994/I)
## 390 http://us.imdb.com/M/title-exact?Fear%20of%20a%20Black%20Hat%20(1993)
## 391 http://us.imdb.com/M/title-exact?Last%20Action%20Hero%20(1993)
## 392 http://us.imdb.com/M/title-exact?Man%20Without%20a%20Face,%20The%20(1993)
## 393 http://us.imdb.com/M/title-exact?Mrs.%20Doubtfire%20(1993)
## 394 http://us.imdb.com/M/title-exact?Radioland%20Murders%20(1994)
## 395 http://us.imdb.com/M/title-exact?Robin%20Hood:%20Men%20in%20Tights%20(1993)
## 396 http://us.imdb.com/M/title-exact?Serial%20Mom%20(1994)
## 397 http://us.imdb.com/M/title-exact?Striking%20Distance%20(1993)
## 398 http://us.imdb.com/M/title-exact?Super%20Mario%20Bros.%20(1993)
## 399 http://us.imdb.com/M/title-exact?Three%20Musketeers,%20The%20(1993)
## 400 http://us.imdb.com/M/title-exact?Little%20Rascals,%20The%20(1994)
## 401 http://us.imdb.com/M/title-exact?Brady%20Bunch%20Movie,%20The%20(1995)
## 402 http://us.imdb.com/M/title-exact?Ghost%20(1990)
## 403 http://us.imdb.com/M/title-exact?Batman%20(1989)
## 404 http://us.imdb.com/M/title-exact?Pinocchio%20(1940)
## 405 http://us.imdb.com/M/title-exact?Mission:%20Impossible%20(1996)
## 406 http://us.imdb.com/M/title-exact?Thinner%20(1996)
## 407 http://us.imdb.com/M/title-exact?Spy%20Hard%20(1996)
## 408 http://us.imdb.com/M/title-exact?Close%20Shave,%20A%20(1995)
## 409 http://us.imdb.com/M/title-exact?Jack%20(1996)
## 410 http://us.imdb.com/M/title-exact?Kingpin%20(1996)
## 411 http://us.imdb.com/M/title-exact?Nutty%20Professor,%20The%20(1996)
## 412 http://us.imdb.com/M/title-exact?Very%20Brady%20Sequel,%20A%20(1996)
## 413 http://us.imdb.com/M/title-exact?Tales%20from%20the%20Crypt%20Presents:%20Bordello%20of%20Blood%20(1996)
## 414 http://us.imdb.com/M/title-exact?My%20Favorite%20Year%20(1982)
## 415 http://us.imdb.com/M/title-exact?Apple%20Dumpling%20Gang,%20The%20(1975)
## 416 http://us.imdb.com/M/title-exact?Old%20Yeller%20(1957)
## 417 http://us.imdb.com/M/title-exact?Parent%20Trap,%20The%20(1961)
## 418 http://us.imdb.com/M/title-exact?Cinderella%20(1950)
## 419 http://us.imdb.com/M/title-exact?Mary%20Poppins%20(1964)
## 420 http://us.imdb.com/M/title-exact?Alice%20in%20Wonderland%20(1951)
## 421 http://us.imdb.com/Title?Romeo+%2B+Juliet+(1996)
## 422 http://us.imdb.com/M/title-exact?Aladdin%20and%20the%20King%20of%20Thieves%20(1996)%20(V)
## 423 http://us.imdb.com/M/title-exact?E%2ET%2E%20the%20Extra-Terrestrial%20%281982%29
## 424 http://us.imdb.com/M/title-exact?Children%20of%20the%20Corn%3A%20The%20Gathering%20%281996%29
## 425 http://us.imdb.com/M/title-exact?Bob%20Roberts%20(1992)
## 426 http://us.imdb.com/M/title-exact?Transformers:%20The%20Movie,%20The%20(1986)
## 427 http://us.imdb.com/M/title-exact?To%20Kill%20a%20Mockingbird%20(1962)
## 428 http://us.imdb.com/M/title-exact?Harold%20and%20Maude%20(1971)
## 429 http://us.imdb.com/M/title-exact?Day%20the%20Earth%20Stood%20Still,%20The%20(1951)
## 430 http://us.imdb.com/M/title-exact?Duck%20Soup%20(1933)
## 431 http://us.imdb.com/M/title-exact?Highlander%20(1986)
## 432 http://us.imdb.com/M/title-exact?Fantasia%20(1940)
## 433 http://us.imdb.com/M/title-exact?Heathers%20(1989)
## 434 http://us.imdb.com/M/title-exact?Forbidden%20Planet%20(1956)
## 435 http://us.imdb.com/M/title-exact?Butch%20Cassidy%20and%20the%20Sundance%20Kid%20(1969)
## 436 http://us.imdb.com/M/title-exact?American%20Werewolf%20in%20London,%20An%20(1981)
## 437 http://us.imdb.com/M/title-exact?Amityville%201992:%20It's%20About%20Time%20(1992)
## 438 http://us.imdb.com/M/title-exact?Amityville%203-D%20(1983)
## 439 http://us.imdb.com/M/title-exact?Amityville:%20A%20New%20Generation%20(1993)
## 440 http://us.imdb.com/M/title-exact?Amityville%20II:%20The%20Possession%20(1982)
## 441 http://us.imdb.com/M/title-exact?Amityville%20Horror,%20The%20(1979)
## 442 http://us.imdb.com/M/title-exact?Amityville%20Curse,%20The%20(1990)
## 443 http://us.imdb.com/M/title-exact?Birds,%20The%20(1963)
## 444 http://us.imdb.com/M/title-exact?Blob,%20The%20(1958)
## 445 http://us.imdb.com/M/title-exact?Body%20Snatcher,%20The%20(1945)
## 446 http://us.imdb.com/M/title-exact?Burnt%20Offerings%20(1976)
## 447 http://us.imdb.com/M/title-exact?Carrie%20(1976)
## 448 http://us.imdb.com/M/title-exact?Omen,%20The%20(1976)
## 449 http://us.imdb.com/M/title-exact?Star%20Trek:%20The%20Motion%20Picture%20(1979)
## 450 http://us.imdb.com/M/title-exact?Star%20Trek%20V:%20The%20Final%20Frontier%20(1989)
## 451 http://us.imdb.com/M/title-exact?Grease%20(1978)
## 452 http://us.imdb.com/M/title-exact?Jaws%202%20(1978)
## 453 http://us.imdb.com/M/title-exact?Jaws%203-D%20(1983)
## 454 http://us.imdb.com/M/title-exact?Bastard%20Out%20of%20Carolina%20(1996)
## 455 http://us.imdb.com/M/title-exact?Police%20Story%204:%20First%20Strike%20(1996)
## 456 http://us.imdb.com/M/title-exact?Beverly%20Hills%20Ninja%20(1997)
## 457 http://us.imdb.com/M/title-exact?Free+Willy+3%3A+The+Rescue+(1997)
## 458 http://us.imdb.com/M/title-exact?Nixon%20(1995)
## 459 http://us.imdb.com/M/title-exact?Cry,%20the%20Beloved%20Country%20(1995)
## 460 http://us.imdb.com/M/title-exact?Crossing%20Guard,%20The%20(1995)
## 461 http://us.imdb.com/M/title-exact?Smoke%20(1995)
## 462 http://us.imdb.com/M/title-exact?Como%20agua%20para%20chocolate%20(1992)
## 463 http://us.imdb.com/M/title-exact?Secret%20of%20Roan%20Inish,%20The%20(1994)
## 464 http://us.imdb.com/M/title-exact?Vanya%20on%2042nd%20Street%20(1994)
## 465 http://us.imdb.com/M/title-exact?Jungle%20Book,%20The%20(1994)
## 466 http://us.imdb.com/M/title-exact?Red%20Rock%20West%20(1992)
## 467 http://us.imdb.com/M/title-exact?Bronx%20Tale,%20A%20(1993)
## 468 http://us.imdb.com/M/title-exact?Rudy%20(1993)
## 469 http://us.imdb.com/M/title-exact?Short%20Cuts%20(1993)
## 470 http://us.imdb.com/M/title-exact?Tombstone%20(1993)
## 471 http://us.imdb.com/M/title-exact?Courage%20Under%20Fire%20(1996)
## 472 http://us.imdb.com/M/title-exact?Dragonheart%20(1996)
## 473 http://us.imdb.com/M/title-exact?James%20and%20the%20Giant%20Peach%20(1996)
## 474 http://us.imdb.com/M/title-exact?Dr.%20Strangelove%20or:%20How%20I%20Learned%20to%20Stop%20Worrying%20and%20Love%20the%20Bomb%20(1963)
## 475 http://us.imdb.com/Title?Trainspotting+(1996)
## 476 http://us.imdb.com/M/title-exact?First%20Wives%20Club,%20The%20(1996)
## 477 http://us.imdb.com/M/title-exact?Matilda%20(1996)
## 478 http://us.imdb.com/M/title-exact?Philadelphia%20Story,%20The%20(1940)
## 479 http://us.imdb.com/M/title-exact?Vertigo%20(1958)
## 480 http://us.imdb.com/M/title-exact?North%20by%20Northwest%20(1959)
## 481 http://us.imdb.com/M/title-exact?Apartment,%20The%20(1960)
## 482 http://us.imdb.com/M/title-exact?Some%20Like%20It%20Hot%20(1959)
## 483 http://us.imdb.com/M/title-exact?Casablanca%20(1942)
## 484 http://us.imdb.com/M/title-exact?Maltese%20Falcon,%20The%20(1941)
## 485 http://us.imdb.com/M/title-exact?My%20Fair%20Lady%20(1964)
## 486 http://us.imdb.com/M/title-exact?Sabrina%20(1954)
## 487 http://us.imdb.com/M/title-exact?Roman%20Holiday%20(1953)
## 488 http://us.imdb.com/M/title-exact?Sunset%20Boulevard%20(1950)
## 489 http://us.imdb.com/M/title-exact?Notorious%20(1946)
## 490 http://us.imdb.com/M/title-exact?To%20Catch%20a%20Thief%20(1955)
## 491 http://us.imdb.com/M/title-exact?Adventures%20of%20Robin%20Hood,%20The%20(1938)
## 492 http://us.imdb.com/M/title-exact?East%20of%20Eden%20(1955)
## 493 http://us.imdb.com/M/title-exact?Thin%20Man,%20The%20(1934)
## 494 http://us.imdb.com/M/title-exact?His%20Girl%20Friday%20(1940)
## 495 http://us.imdb.com/M/title-exact?Around%20the%20World%20in%2080%20Days%20(1956)
## 496 http://us.imdb.com/M/title-exact?It's%20a%20Wonderful%20Life%20(1946)
## 497 http://us.imdb.com/M/title-exact?Bringing%20Up%20Baby%20(1938)
## 498 http://us.imdb.com/M/title-exact?African%20Queen,%20The%20(1951)
## 499 http://us.imdb.com/M/title-exact?Cat%20on%20a%20Hot%20Tin%20Roof%20(1958)
## 501 http://us.imdb.com/M/title-exact?Dumbo%20(1941)
## 502 http://us.imdb.com/M/title-exact?Bananas%20(1971)
## 503 http://us.imdb.com/M/title-exact?Candidate,%20The%20(1972)
## 504 http://us.imdb.com/M/title-exact?Bonnie%20and%20Clyde%20(1967)
## 505 http://us.imdb.com/M/title-exact?Dial%20M%20for%20Murder%20(1954)
## 506 http://us.imdb.com/M/title-exact?Rebel%20Without%20a%20Cause%20(1955)
## 507 http://us.imdb.com/M/title-exact?Streetcar%20Named%20Desire,%20A%20(1951)
## 508 http://us.imdb.com/M/title-exact?People%20vs.%20Larry%20Flynt,%20The%20(1996)
## 509 http://us.imdb.com/M/title-exact?My%20Left%20Foot%20(1989)
## 510 http://us.imdb.com/M/title-exact?Shichinin%20no%20samurai%20(1954)
## 511 http://us.imdb.com/M/title-exact?Lawrence%20of%20Arabia%20(1962)
## 512 http://us.imdb.com/Title?Himmel+%FCber+Berlin,+Der+(1987)
## 513 http://us.imdb.com/M/title-exact?Third%20Man,%20The%20(1949)
## 514 http://us.imdb.com/M/title-exact?Annie%20Hall%20(1977)
## 515 http://us.imdb.com/M/title-exact?Boot,%20Das%20(1981)
## 516 http://us.imdb.com/M/title-exact?Local%20Hero%20(1983)
## 517 http://us.imdb.com/M/title-exact?Manhattan%20(1979)
## 518 http://us.imdb.com/M/title-exact?Miller's%20Crossing%20(1990)
## 519 http://us.imdb.com/M/title-exact?Treasure%20of%20the%20Sierra%20Madre,%20The%20(1948)
## 520 http://us.imdb.com/M/title-exact?Great%20Escape,%20The%20(1963)
## 521 http://us.imdb.com/M/title-exact?Deer%20Hunter,%20The%20(1978)
## 522 http://us.imdb.com/M/title-exact?Down%20by%20Law%20(1986)
## 523 http://us.imdb.com/M/title-exact?Cool%20Hand%20Luke%20(1967)
## 524 http://us.imdb.com/M/title-exact?Great%20Dictator,%20The%20(1940)
## 525 http://us.imdb.com/M/title-exact?Big%20Sleep,%20The%20(1946)
## 526 http://us.imdb.com/M/title-exact?Ben-Hur%20(1959)
## 527 http://us.imdb.com/M/title-exact?Gandhi%20(1982)
## 528 http://us.imdb.com/M/title-exact?Killing%20Fields,%20The%20(1984)
## 529 http://us.imdb.com/M/title-exact?Mitt%20liv%20som%20hund%20(1985)
## 530 http://us.imdb.com/M/title-exact?Man%20Who%20Would%20Be%20King,%20The%20(1975)
## 531 http://us.imdb.com/M/title-exact?Shine%20(1996)
## 532 http://us.imdb.com/M/title-exact?Kama%20Sutra%20(1996)
## 533 http://us.imdb.com/M/title-exact?Daytrippers%2C%20The%20(1996)
## 534 http://us.imdb.com/M/title-exact?Traveller%20%281997%29
## 535 http://us.imdb.com/M/title-exact?Addicted%20to%20Love%20%281997%29
## 536 http://us.imdb.com/M/title-exact?Ponette%20%281996%29
## 537 http://us.imdb.com/M/title-exact?My+Own+Private+Idaho+(1991)
## 538 http://us.imdb.com/M/title-exact?Anastasia+(1997)
## 539 http://us.imdb.com/M/title-exact?imdb-title-119715
## 540 http://us.imdb.com/M/title-exact?Money%20Train%20(1995)
## 541 http://us.imdb.com/M/title-exact?Mortal%20Kombat%20(1995)
## 542 http://us.imdb.com/M/title-exact?Pocahontas%20(1995)
## 543 http://us.imdb.com/M/title-exact?Mis%E9rables%2C%20Les%20%281995%29
## 544 http://us.imdb.com/M/title-exact?Things%20to%20Do%20in%20Denver%20when%20You're%20Dead%20(1995)
## 545 http://us.imdb.com/M/title-exact?Vampire%20in%20Brooklyn%20(1995)
## 546 http://us.imdb.com/M/title-exact?Broken%20Arrow%20(1996)
## 547 http://us.imdb.com/M/title-exact?Young%20Poisoner's%20Handbook,%20The%20(1995)
## 548 http://us.imdb.com/M/title-exact?NeverEnding%20Story%20III,%20The%20(1994)
## 549 http://us.imdb.com/M/title-exact?Rob%20Roy%20(1995)
## 550 http://us.imdb.com/M/title-exact?Die%20Hard:%20With%20a%20Vengeance%20(1995)
## 551 http://us.imdb.com/M/title-exact?Lord%20of%20Illusions%20(1995)
## 552 http://us.imdb.com/M/title-exact?Species%20(1995)
## 553 http://us.imdb.com/M/title-exact?Walk%20in%20the%20Clouds,%20A%20(1995)
## 554 http://us.imdb.com/M/title-exact?Waterworld%20(1995)
## 555 http://us.imdb.com/M/title-exact?White%20Man's%20Burden%20(1995)
## 556 http://us.imdb.com/M/title-exact?Wild%20Bill%20(1995)
## 557 http://us.imdb.com/M/title-exact?Farinelli:%20il%20castrato%20(1994)
## 558 http://us.imdb.com/M/title-exact?Heavenly%20Creatures%20(1994)
## 559 http://us.imdb.com/M/title-exact?Interview%20with%20the%20Vampire%20(1994)
## 560 http://us.imdb.com/M/title-exact?Kid%20in%20King%20Arthur's%20Court,%20A%20(1995)
## 561 http://us.imdb.com/M/title-exact?Mary%20Shelley's%20Frankenstein%20(1994)
## 562 http://us.imdb.com/M/title-exact?Quick%20and%20the%20Dead,%20The%20(1995)
## 563 http://us.imdb.com/M/title-exact?%22Langoliers,%20The%22%20(1995)%20(mini)
## 564 http://us.imdb.com/M/title-exact?Tales%20from%20the%20Hood%20(1995)
## 565 http://us.imdb.com/M/title-exact?Village%20of%20the%20Damned%20(1995)
## 566 http://us.imdb.com/M/title-exact?Clear%20and%20Present%20Danger%20(1994)
## 567 http://us.imdb.com/M/title-exact?Wes%20Craven's%20New%20Nightmare%20(1994)
## 568 http://us.imdb.com/M/title-exact?Speed%20(1994/I)
## 569 http://us.imdb.com/M/title-exact?Wolf%20(1994)
## 570 http://us.imdb.com/M/title-exact?Wyatt%20Earp%20(1994)
## 571 http://us.imdb.com/M/title-exact?Another%20Stakeout%20(1993)
## 572 http://us.imdb.com/M/title-exact?Blown%20Away%20(1994)
## 573 http://us.imdb.com/M/title-exact?Body%20Snatchers%20(1993)
## 574 http://us.imdb.com/M/title-exact?Boxing%20Helena%20(1993)
## 575 http://us.imdb.com/M/title-exact?City%20Slickers%20II:%20The%20Legend%20of%20Curly's%20Gold%20(1994)
## 576 http://us.imdb.com/M/title-exact?Cliffhanger%20(1993)
## 577 http://us.imdb.com/M/title-exact?Coneheads%20(1993)
## 578 http://us.imdb.com/M/title-exact?Demolition%20Man%20(1993)
## 579 http://us.imdb.com/M/title-exact?Fatal%20Instinct%20(1993)
## 580 http://us.imdb.com/M/title-exact?Englishman%20Who%20Went%20Up%20a%20Hill,%20But%20Came%20Down%20a%20Mountain,%20The%20(1995)
## 581 http://us.imdb.com/M/title-exact?Kalifornia%20(1993)
## 582 http://us.imdb.com/M/title-exact?Piano,%20The%20(1993)
## 583 http://us.imdb.com/M/title-exact?Romeo%20Is%20Bleeding%20(1993)
## 584 http://us.imdb.com/M/title-exact?Secret%20Garden,%20The%20(1993)
## 585 http://us.imdb.com/M/title-exact?Son%20in%20Law%20(1993)
## 586 http://us.imdb.com/M/title-exact?Terminal%20Velocity%20(1994)
## 587 http://us.imdb.com/M/title-exact?Hour%20of%20the%20Pig,%20The%20(1993)
## 588 http://us.imdb.com/M/title-exact?Beauty%20and%20the%20Beast%20(1991)
## 589 http://us.imdb.com/M/title-exact?Wild%20Bunch,%20The%20(1969)
## 590 http://us.imdb.com/M/title-exact?Hellraiser:%20Bloodline%20(1996)
## 591 http://us.imdb.com/M/title-exact?Primal%20Fear%20(1996)
## 592 http://us.imdb.com/M/title-exact?True%20Crime%20(1995)
## 593 http://us.imdb.com/M/title-exact?Stalingrad%20(1993)
## 594 http://us.imdb.com/M/title-exact?Heavy%20(1995)
## 595 http://us.imdb.com/M/title-exact?Fan,%20The%20(1996)
## 596 http://us.imdb.com/M/title-exact?Hunchback%20of%20Notre%20Dame,%20The%20(1996)
## 597 http://us.imdb.com/M/title-exact?Eraser%20(1996)
## 598 http://us.imdb.com/M/title-exact?Big%20Squeeze,%20The%20(1996)
## 599 http://us.imdb.com/M/title-exact?Project%20S%20(1993)
## 600 http://us.imdb.com/M/title-exact?Robinson%20Crusoe%20(1996)
## 601 http://us.imdb.com/M/title-exact?For%20Whom%20the%20Bell%20Tolls%20(1943)
## 602 http://us.imdb.com/M/title-exact?American%20in%20Paris,%20An%20(1951)
## 603 http://us.imdb.com/M/title-exact?Rear%20Window%20(1954)
## 604 http://us.imdb.com/M/title-exact?It%20Happened%20One%20Night%20(1934)
## 605 http://us.imdb.com/M/title-exact?Meet%20Me%20in%20St.%20Louis%20(1944)
## 606 http://us.imdb.com/M/title-exact?All%20About%20Eve%20(1950)
## 607 http://us.imdb.com/M/title-exact?Rebecca%20(1940)
## 608 http://us.imdb.com/M/title-exact?Spellbound%20(1945)
## 609 http://us.imdb.com/M/title-exact?Father%20of%20the%20Bride%20(1950)
## 610 http://us.imdb.com/M/title-exact?Gigi%20(1958)
## 611 http://us.imdb.com/M/title-exact?Laura%20(1944)
## 612 http://us.imdb.com/M/title-exact?Lost%20Horizon%20(1937)
## 613 http://us.imdb.com/M/title-exact?My%20Man%20Godfrey%20(1936)
## 614 http://us.imdb.com/M/title-exact?Giant%20(1956)
## 615 http://us.imdb.com/M/title-exact?39%20Steps,%20The%20(1935)
## 616 http://us.imdb.com/M/title-exact?Night%20of%20the%20Living%20Dead%20(1968)
## 617 http://us.imdb.com/M/title-exact?Blaue%20Engel,%20Der%20(1930)
## 618 http://us.imdb.com/M/title-exact?Picnic%20(1955)
## 619 http://us.imdb.com/M/title-exact?Extreme%20Measures%20(1996)
## 620 http://us.imdb.com/M/title-exact?Chamber,%20The%20(1996)
## 621 http://us.imdb.com/M/title-exact?Davy%20Crockett%2C%20King%20of%20the%20Wild%20Frontier%20%281955%29
## 622 http://us.imdb.com/M/title-exact?Swiss%20Family%20Robinson%20(1960)
## 623 http://us.imdb.com/M/title-exact?Angels%20in%20the%20Outfield%20(1994)
## 624 http://us.imdb.com/M/title-exact?Three%20Caballeros,%20The%20(1945)
## 625 http://us.imdb.com/M/title-exact?Sword%20in%20the%20Stone,%20The%20(1963)
## 626 http://us.imdb.com/Title?So+Dear+to+My+Heart+(1949)
## 627 http://us.imdb.com/Title?Robin+Hood%3A+Prince+of+Thieves+(1991)
## 628 http://us.imdb.com/M/title-exact?Sleepers%20(1996)
## 629 http://us.imdb.com/M/title-exact?Victor/Victoria%20%281982%29
## 630 http://us.imdb.com/M/title-exact?Great%20Race,%20The%20(1965)
## 631 http://us.imdb.com/M/title-exact?Crying%20Game,%20The%20(1992)
## 632 http://us.imdb.com/M/title-exact?Sophie's%20Choice%20(1982)
## 633 http://us.imdb.com/M/title-exact?Christmas%20Carol,%20A%20(1938)
## 634 http://us.imdb.com/M/title-exact?Microcosmos%3A%20Le%20peuple%20de%20l%27herbe%20%281996%29
## 635 http://us.imdb.com/M/title-exact?Fog,%20The%20(1980)
## 636 http://us.imdb.com/M/title-exact?Escape%20from%20New%20York%20(1981)
## 637 http://us.imdb.com/M/title-exact?Howling,%20The%20(1981)
## 638 http://us.imdb.com/M/title-exact?Retour%20de%20Martin%20Guerre,%20Le%20(1982)
## 639 http://us.imdb.com/M/title-exact?Blechtrommel,%20Die%20(1979)
## 640 http://us.imdb.com/M/title-exact?Cook%20the%20Thief%20His%20Wife%20&%20Her%20Lover,%20The%20(1989)
## 641 http://us.imdb.com/M/title-exact?Paths%20of%20Glory%20(1957)
## 642 http://us.imdb.com/M/title-exact?Grifters,%20The%20(1990)
## 643 http://us.imdb.com/M/title-exact?Innocent,%20The%20(1994)%20(TV)
## 644 http://us.imdb.com/M/title-exact?Thin%20Blue%20Line,%20The%20(1988)
## 645 http://us.imdb.com/M/title-exact?Paris%20Is%20Burning%20(1990)
## 646 http://us.imdb.com/M/title-exact?C'era%20una%20volta%20il%20west%20(1969)
## 647 http://us.imdb.com/M/title-exact?Ran%20(1985)
## 648 http://us.imdb.com/M/title-exact?Quiet%20Man,%20The%20(1952)
## 649 http://us.imdb.com/M/title-exact?Once%20Upon%20a%20Time%20in%20America%20(1984)
## 650 http://us.imdb.com/M/title-exact?Sjunde%20inseglet,%20Det%20(1957)
## 651 http://us.imdb.com/M/title-exact?Glory%20(1989)
## 652 http://us.imdb.com/M/title-exact?Rosencrantz%20and%20Guildenstern%20Are%20Dead%20(1990)
## 653 http://us.imdb.com/M/title-exact?Touch%20of%20Evil%20(1958)
## 654 http://us.imdb.com/M/title-exact?Chinatown%20(1974)
## 655 http://us.imdb.com/M/title-exact?Stand%20by%20Me%20(1986)
## 656 http://us.imdb.com/M/title-exact?M%20(1931)
## 657 http://us.imdb.com/M/title-exact?Manchurian%20Candidate,%20The%20(1962)
## 658 http://us.imdb.com/M/title-exact?Pump%20Up%20the%20Volume%20(1990)
## 659 http://us.imdb.com/M/title-exact?Arsenic%20and%20Old%20Lace%20(1944)
## 660 http://us.imdb.com/M/title-exact?Fried%20Green%20Tomatoes%20at%20the%20Whistle%20Stop%20Cafe%20(1991)
## 661 http://us.imdb.com/M/title-exact?High%20Noon%20(1952)
## 662 http://us.imdb.com/M/title-exact?Somewhere%20in%20Time%20(1980)
## 663 http://us.imdb.com/M/title-exact?Being%20There%20(1979)
## 664 http://us.imdb.com/M/title-exact?Paris,%20Texas%20(1984)
## 665 http://us.imdb.com/M/title-exact?Alien%203%20(1992)
## 666 http://us.imdb.com/M/title-exact?Andy%20Warhol's%20Dracula%20(1974)
## 667 http://us.imdb.com/M/title-exact?Audrey%20Rose%20(1977)
## 668 http://us.imdb.com/M/title-exact?Blood%20Beach%20(1981)
## 669 http://us.imdb.com/M/title-exact?Body%20Parts%20(1991)
## 671 http://us.imdb.com/M/title-exact?Bride%20of%20Frankenstein%20(1935)
## 672 http://us.imdb.com/M/title-exact?Candyman%20(1992)
## 673 http://us.imdb.com/M/title-exact?Cape%20Fear%20(1962)
## 674 http://us.imdb.com/M/title-exact?Cat%20People%20(1982)
## 675 http://us.imdb.com/M/title-exact?Nosferatu,%20eine%20Symphonie%20des%20Grauens%20(1922)
## 676 http://us.imdb.com/M/title-exact?Crucible,%20The%20(1996)
## 677 http://us.imdb.com/M/title-exact?Fire%20on%20the%20Mountain%20(1996)
## 678 http://us.imdb.com/M/title-exact?Volcano%20%281997%29
## 679 http://us.imdb.com/M/title-exact?Conan+the+Barbarian+(1981)
## 681 http://us.imdb.com/M/title-exact?Wishmaster+(1997)
## 682 http://us.imdb.com/M/title-exact?I+Know+What+You+Did+Last+Summer+(1997)
## 683 http://us.imdb.com/M/title-exact?Rocket+Man+(1997)
## 684 http://us.imdb.com/M/title-exact?In%20the%20Line%20of%20Fire%20(1993)
## 685 http://us.imdb.com/M/title-exact?Executive%20Decision%20(1996)
## 686 http://us.imdb.com/M/title-exact?Perfect%20World,%20A%20(1993)
## 687 http://us.imdb.com/M/title-exact?McHale's%20Navy%20(1997)
## 688 http://us.imdb.com/M/title-exact?Leave+It+To+Beaver+(1997)
## 689 http://us.imdb.com/M/title-exact?Jackal%2C+The+(1997)
## 690 http://us.imdb.com/M/title-exact?Seven+Years+in+Tibet+(1997)
## 691 http://us.imdb.com/M/title-exact?imdb-title-118929
## 692 http://us.imdb.com/M/title-exact?American%20President,%20The%20(1995)
## 693 http://us.imdb.com/M/title-exact?Casino%20(1995)
## 694 http://us.imdb.com/Title?Persuasion+(1995/I)
## 695 http://us.imdb.com/M/title-exact?Kicking%20and%20Screaming%20(1995)
## 696 http://us.imdb.com/M/title-exact?City%20Hall%20(1996)
## 697 http://us.imdb.com/M/title-exact?Basketball%20Diaries,%20The%20(1995)
## 698 http://us.imdb.com/M/title-exact?Browning%20Version,%20The%20(1994)
## 699 http://us.imdb.com/M/title-exact?Little%20Women%20(1994)
## 700 http://us.imdb.com/M/title-exact?Miami%20Rhapsody%20(1995)
## 701 http://us.imdb.com/M/title-exact?Macht%20der%20Bilder:%20Leni%20Riefenstahl,%20Die%20(1993)
## 702 http://us.imdb.com/M/title-exact?Barcelona%20(1994)
## 703 http://us.imdb.com/M/title-exact?Widows'%20Peak%20(1994)
## 704 http://us.imdb.com/M/title-exact?House%20of%20the%20Spirits,%20The%20(1993)
## 705 http://us.imdb.com/M/title-exact?Singin'%20in%20the%20Rain%20(1952)
## 706 http://us.imdb.com/M/title-exact?Bad%20Moon%20(1996)
## 707 http://us.imdb.com/M/title-exact?Enchanted%20April%20(1991)
## 708 http://us.imdb.com/M/title-exact?sex,%20lies,%20and%20videotape%20(1989)
## 709 http://us.imdb.com/M/title-exact?Strictly%20Ballroom%20(1992)
## 710 http://us.imdb.com/Title?Better+Off+Dead...+(1985)
## 711 http://us.imdb.com/M/title-exact?Substance%20of%20Fire,%20The%20(1996)
## 712 http://us.imdb.com/M/title-exact?Tin%20Men%20(1987)
## 713 http://us.imdb.com/M/title-exact?Othello%20(1995)
## 714 http://us.imdb.com/M/title-exact?Carrington%20(1995)
## 715 http://us.imdb.com/M/title-exact?To%20Die%20For%20(1995)
## 716 http://us.imdb.com/M/title-exact?Home%20for%20the%20Holidays%20(1995)
## 717 http://us.imdb.com/M/title-exact?Juror,%20The%20(1996)
## 718 http://us.imdb.com/M/title-exact?In%20the%20Bleak%20Midwinter%20(1995)
## 719 http://us.imdb.com/M/title-exact?Canadian%20Bacon%20(1994)
## 720 http://us.imdb.com/M/title-exact?First%20Knight%20(1995)
## 721 http://us.imdb.com/M/title-exact?Mallrats%20(1995)
## 722 http://us.imdb.com/M/title-exact?Nine%20Months%20(1995)
## 723 http://us.imdb.com/M/title-exact?Boys%20on%20the%20Side%20(1995)
## 724 http://us.imdb.com/M/title-exact?Circle%20of%20Friends%20(1995)
## 725 http://us.imdb.com/M/title-exact?Exit%20to%20Eden%20(1994)
## 726 http://us.imdb.com/M/title-exact?Fluke%20(1995)
## 727 http://us.imdb.com/M/title-exact?Immortal%20Beloved%20(1994)
## 728 http://us.imdb.com/M/title-exact?Junior%20(1994)
## 729 http://us.imdb.com/M/title-exact?Nell%20(1994)
## 730 http://us.imdb.com/Title?Reine+Margot,+La+(1994)
## 731 http://us.imdb.com/M/title-exact?Corrina,%20Corrina%20(1994)
## 732 http://us.imdb.com/M/title-exact?Dave%20(1993)
## 733 http://us.imdb.com/M/title-exact?Go%20Fish%20(1994)
## 734 http://us.imdb.com/M/title-exact?Made%20in%20America%20(1993)
## 735 http://us.imdb.com/M/title-exact?Philadelphia%20(1993)
## 736 http://us.imdb.com/M/title-exact?Shadowlands%20(1993)
## 737 http://us.imdb.com/M/title-exact?Sirens%20(1994)
## 738 http://us.imdb.com/M/title-exact?Threesome%20(1994)
## 739 http://us.imdb.com/M/title-exact?Pretty%20Woman%20(1990)
## 740 http://us.imdb.com/M/title-exact?Jane%20Eyre%20(1996)
## 741 http://us.imdb.com/M/title-exact?Last%20Supper,%20The%20(1995)
## 742 http://us.imdb.com/M/title-exact?Ransom%20(1996)
## 743 http://us.imdb.com/M/title-exact?Crow%3A%20City%20of%20Angels%2C%20The%20%281996%29
## 744 http://us.imdb.com/M/title-exact?Michael%20Collins%20(1996)
## 745 http://us.imdb.com/M/title-exact?Ruling%20Class,%20The%20(1972)
## 746 http://us.imdb.com/M/title-exact?Real%20Genius%20(1985)
## 747 http://us.imdb.com/M/title-exact?Benny%20&%20Joon%20(1993)
## 748 http://us.imdb.com/M/title-exact?Saint%2C%20The%20(1997)
## 749 http://us.imdb.com/M/title-exact?Matchmaker%2C+The+(1997)
## 750 http://us.imdb.com/M/title-exact?imdb-title-118607
## 751 http://us.imdb.com/M/title-exact?imdb-title-120347
## 752 http://us.imdb.com/M/title-exact?Replacement+Killers%2C+The+(1998)
## 753 http://us.imdb.com/M/title-exact?Utomlyonnye%20Solntsem%20(1994)
## 754 http://us.imdb.com/M/title-exact?Red+Corner+(1997)
## 755 http://us.imdb.com/M/title-exact?Jumanji%20(1995)
## 756 http://us.imdb.com/M/title-exact?Father%20of%20the%20Bride%20Part%20II%20(1995)
## 757 http://us.imdb.com/M/title-exact?Across%20The%20Sea%20of%20Time%20(1995)
## 758 http://us.imdb.com/M/title-exact?Lawnmower%20Man%202:%20Beyond%20Cyberspace%20(1996)
## 759 http://us.imdb.com/M/title-exact?Fair%20Game%20(1995)
## 760 http://us.imdb.com/M/title-exact?Screamers%20(1995)
## 761 http://us.imdb.com/M/title-exact?Nick%20of%20Time%20(1995)
## 762 http://us.imdb.com/M/title-exact?Beautiful%20Girls%20(1996)
## 763 http://us.imdb.com/M/title-exact?Happy%20Gilmore%20(1996)
## 764 http://us.imdb.com/M/title-exact?If%20Lucy%20Fell%20(1996)
## 765 http://us.imdb.com/M/title-exact?Boomerang%20(1992)
## 766 http://us.imdb.com/M/title-exact?Man%20of%20the%20Year%20(1995)
## 767 http://us.imdb.com/M/title-exact?Addiction,%20The%20(1995)
## 768 http://us.imdb.com/M/title-exact?Casper%20(1995)
## 769 http://us.imdb.com/M/title-exact?Congo%20(1995)
## 770 http://us.imdb.com/M/title-exact?Devil%20in%20a%20Blue%20Dress%20(1995)
## 771 http://us.imdb.com/M/title-exact?Johnny%20Mnemonic%20(1995)
## 772 http://us.imdb.com/M/title-exact?Kids%20(1995)
## 773 http://us.imdb.com/M/title-exact?Mute%20Witness%20(1994)
## 774 http://us.imdb.com/M/title-exact?Prophecy,%20The%20(1995)
## 775 http://us.imdb.com/M/title-exact?Something%20to%20Talk%20About%20(1995)
## 776 http://us.imdb.com/M/title-exact?Three%20Wishes%20(1995)
## 777 http://us.imdb.com/M/title-exact?Castle%20Freak%20(1995)
## 778 http://us.imdb.com/M/title-exact?Don%20Juan%20DeMarco%20and%20the%20Centerfold%20(1995)
## 779 http://us.imdb.com/M/title-exact?Drop%20Zone%20(1994)
## 780 http://us.imdb.com/M/title-exact?Dumb%20&%20Dumber%20(1994)
## 781 http://us.imdb.com/M/title-exact?French%20Kiss%20(1995)
## 782 http://us.imdb.com/M/title-exact?Little%20Odessa%20(1994)
## 783 http://us.imdb.com/M/title-exact?Milk%20Money%20(1994)
## 784 http://us.imdb.com/Title?Beyond+Bedlam+(1993)
## 785 http://us.imdb.com/M/title-exact?Only%20You%20(1994)
## 786 http://us.imdb.com/M/title-exact?Perez%20Family,%20The%20(1995)
## 787 http://us.imdb.com/M/title-exact?Roommates%20(1995)
## 788 http://us.imdb.com/M/title-exact?Relative%20Fear%20(1994)
## 789 http://us.imdb.com/M/title-exact?Swimming%20with%20Sharks%20(1995)
## 790 http://us.imdb.com/M/title-exact?Tommy%20Boy%20(1995)
## 791 http://us.imdb.com/M/title-exact?Baby-Sitters%20Club,%20The%20(1995)
## 792 http://us.imdb.com/M/title-exact?Bullets%20Over%20Broadway%20(1994)
## 793 http://us.imdb.com/M/title-exact?Crooklyn%20(1994)
## 794 http://us.imdb.com/M/title-exact?It%20Could%20Happen%20to%20You%20(1994)
## 795 http://us.imdb.com/M/title-exact?Richie%20Rich%20(1994)
## 796 http://us.imdb.com/M/title-exact?Speechless%20(1994)
## 797 http://us.imdb.com/M/title-exact?Timecop%20(1994)
## 798 http://us.imdb.com/M/title-exact?Bad%20Company%20(1995)
## 799 http://us.imdb.com/M/title-exact?Boys%20Life%20(1995)
## 800 http://us.imdb.com/M/title-exact?In%20the%20Mouth%20of%20Madness%20(1995)
## 801 http://us.imdb.com/M/title-exact?Air%20Up%20There,%20The%20(1994)
## 802 http://us.imdb.com/M/title-exact?Hard%20Target%20(1993)
## 803 http://us.imdb.com/M/title-exact?Heaven%20&%20Earth%20(1993)
## 804 http://us.imdb.com/M/title-exact?Jimmy%20Hollywood%20(1994)
## 805 http://us.imdb.com/M/title-exact?Manhattan%20Murder%20Mystery%20(1993)
## 806 http://us.imdb.com/M/title-exact?Menace%20II%20Society%20(1993)
## 807 http://us.imdb.com/M/title-exact?Poetic%20Justice%20(1993)
## 808 http://us.imdb.com/M/title-exact?Program,%20The%20(1993)
## 809 http://us.imdb.com/M/title-exact?Rising%20Sun%20(1993)
## 810 http://us.imdb.com/M/title-exact?Shadow,%20The%20(1994)
## 811 http://us.imdb.com/M/title-exact?Thirty-Two%20Short%20Films%20About%20Glenn%20Gould%20(1993)
## 812 http://us.imdb.com/M/title-exact?Andre%20(1994)
## 813 http://us.imdb.com/M/title-exact?Celluloid%20Closet,%20The%20(1995)
## 814 http://us.imdb.com/M/title-exact?Great%20Day%20in%20Harlem,%20A%20(1994)
## 815 http://us.imdb.com/M/title-exact?One%20Fine%20Day%20(1996)
## 816 http://us.imdb.com/M/title-exact?Candyman:%20Farewell%20to%20the%20Flesh%20(1995)
## 817 http://us.imdb.com/M/title-exact?Frisk%20(1995)
## 818 http://us.imdb.com/M/title-exact?Girl%206%20(1996)
## 819 http://us.imdb.com/M/title-exact?Eddie%20(1996)
## 820 http://us.imdb.com/M/title-exact?Space%20Jam%20(1996)
## 821 http://us.imdb.com/M/title-exact?Mrs.%20Winterbourne%20(1996)
## 822 http://us.imdb.com/M/title-exact?Faces%20(1968)
## 823 http://us.imdb.com/M/title-exact?Mulholland%20Falls%20(1996)
## 824 http://us.imdb.com/M/title-exact?Great%20White%20Hype,%20The%20(1996)
## 825 http://us.imdb.com/M/title-exact?Arrival,%20The%20(1996)
## 826 http://us.imdb.com/M/title-exact?Phantom,%20The%20(1996)
## 827 http://us.imdb.com/M/title-exact?Daylight%20(1996)
## 828 http://us.imdb.com/M/title-exact?Alaska%20(1996)
## 829 http://us.imdb.com/M/title-exact?Fled%20(1996)
## 830 http://us.imdb.com/M/title-exact?Power%2098%20(1995)
## 831 http://us.imdb.com/M/title-exact?Escape%20from%20L.A.%20(1996)
## 832 http://us.imdb.com/M/title-exact?Bogus%20(1996)
## 833 http://us.imdb.com/M/title-exact?Bulletproof%20(1996)
## 834 http://us.imdb.com/M/title-exact?Halloween:%20The%20Curse%20of%20Michael%20Myers%20(1995)
## 835 http://us.imdb.com/M/title-exact?Gay%20Divorcee%2C%20The%20%281934%29
## 836 http://us.imdb.com/M/title-exact?Ninotchka%20(1939)
## 837 http://us.imdb.com/M/title-exact?Meet%20John%20Doe%20(1941)
## 838 http://us.imdb.com/M/title-exact?In%20the%20Line%20of%20Duty%202%20(1987)
## 839 http://us.imdb.com/M/title-exact?Loch%20Ness%20(1995)
## 840 http://us.imdb.com/M/title-exact?Last%20Man%20Standing%20(1996/I)
## 841 http://us.imdb.com/M/title-exact?Glimmer%20Man,%20The%20(1996)
## 842 http://us.imdb.com/M/title-exact?Pollyanna%20(1960)
## 843 http://us.imdb.com/M/title-exact?Shaggy%20Dog,%20The%20(1959)
## 844 http://us.imdb.com/M/title-exact?Freeway%20(1996)
## 845 http://us.imdb.com/M/title-exact?That%20Thing%20You%20Do!%20(1996)
## 846 http://us.imdb.com/M/title-exact?To%20Gillian%20on%20Her%2037th%20Birthday%20(1996)
## 847 http://us.imdb.com/M/title-exact?Looking%20for%20Richard%20(1996)
## 848 http://us.imdb.com/M/title-exact?Murder,%20My%20Sweet%20(1944)
## 849 http://us.imdb.com/M/title-exact?Days%20of%20Thunder%20(1990)
## 850 http://us.imdb.com/M/title-exact?Perfect%20Candidate,%20A%20(1996)
## 851 http://us.imdb.com/M/title-exact?Deux%20ou%20trois%20choses%20que%20je%20sais%20d'elle%20(1966)
## 852 http://us.imdb.com/M/title-exact?Bloody%20Child%2C%20The%20%281996%29
## 853 http://us.imdb.com/M/title-exact?Braindead%20(1992)
## 854 http://us.imdb.com/M/title-exact?Bad%20Taste%20(1987)
## 855 http://us.imdb.com/M/title-exact?Diva%20(1981)
## 856 http://us.imdb.com/M/title-exact?Night%20on%20Earth%20(1991)
## 857 http://us.imdb.com/M/title-exact?Paris%20Was%20a%20Woman%20(1995)
## 858 http://us.imdb.com/M/title-exact?Amityville:%20Dollhouse%20(1996)
## 859 http://us.imdb.com/M/title-exact?April%20Fool's%20Day%20(1986)
## 860 http://us.imdb.com/M/title-exact?Believers,%20The%20(1987)
## 861 http://us.imdb.com/M/title-exact?Nosferatu%20a%20Venezia%20(1986)
## 862 http://us.imdb.com/M/title-exact?Jingle%20All%20the%20Way%20(1996)
## 863 http://us.imdb.com/M/title-exact?Giardino%20dei%20Finzi-Contini,%20Il%20(1970)
## 864 http://us.imdb.com/M/title-exact?My%20Fellow%20Americans%20(1996)
## 866 http://us.imdb.com/M/title-exact?Michael%20(1996)
## 867 http://us.imdb.com/M/title-exact?Whole%20Wide%20World,%20The%20(1996)
## 868 http://us.imdb.com/M/title-exact?Hearts%20and%20Minds%20(1996)
## 869 http://us.imdb.com/M/title-exact?Fools%20Rush%20In%20(1997)
## 870 http://us.imdb.com/M/title-exact?Touch%20(1997)
## 871 http://us.imdb.com/M/title-exact?Vegas%20Vacation%20(1997)
## 872 http://us.imdb.com/M/title-exact?Love%20Jones%20(1997)
## 873 http://us.imdb.com/M/title-exact?Picture+Perfect+(1997)
## 874 http://us.imdb.com/M/title-exact?Career+Girls+(1997)
## 875 http://us.imdb.com/M/title-exact?She%27s+So+Lovely+(1997)
## 876 http://us.imdb.com/M/title-exact?Money+Talks+(1997)
## 877 http://us.imdb.com/M/title-exact?Excess+Baggage+(1997)
## 878 http://us.imdb.com/M/title-exact?That%20Darn%20Cat%20(1997)
## 879 http://us.imdb.com/M/title-exact?Peacemaker%2C+The+(1997)
## 880 http://us.imdb.com/M/title-exact?Soul+Food+(1997)
## 882 http://us.imdb.com/M/title-exact?Washington+Square+(1997)
## 883 http://us.imdb.com/M/title-exact?Telling+Lies+in+America+(1997)
## 884 http://us.imdb.com/M/title-exact?Year+of+the+Horse+(1997)
## 885 http://us.imdb.com/M/title-exact?Phantoms+(1998)
## 886 http://us.imdb.com/M/title-exact?Life+Less+Ordinary,+A+(1997)
## 887 http://us.imdb.com/M/title-exact?Eve's+Bayou+(1997)
## 888 http://us.imdb.com/M/title-exact?One+Night+Stand+(1997)
## 889 http://us.imdb.com/M/title-exact?Tango+Lesson,+The+(1997)
## 890 http://us.imdb.com/M/title-exact?Mortal+Kombat%3A+Annihilation+(1997)
## 891 http://us.imdb.com/M/title-exact?imdb-title-118698
## 892 http://us.imdb.com/M/title-exact?imdb-title-119137
## 893 http://us.imdb.com/M/title-exact?imdb-title-119142
## 894 http://us.imdb.com/M/title-exact?imdb-title-119303
## 895 http://us.imdb.com/M/title-exact?imdb-title-120082
## 896 http://us.imdb.com/M/title-exact?Sweet+Hereafter%2C+The+(1997)
## 897 http://us.imdb.com/M/title-exact?imdb-title-128755
## 898 http://us.imdb.com/M/title-exact?imdb-title-119925
## 899 http://us.imdb.com/M/title-exact?imdb-title-120521
## 900 http://us.imdb.com/M/title-exact?imdb-title-119485
## 901 http://us.imdb.com/M/title-exact?imdb-title-119718
## 902 http://us.imdb.com/M/title-exact?imdb-title-118715
## 903 http://us.imdb.com/M/title-exact?imdb-title-118566
## 904 http://us.imdb.com/M/title-exact?imdb-title-119590
## 905 http://us.imdb.com/M/title-exact?imdb-title-119223
## 906 http://us.imdb.com/M/title-exact?imdb-title-119843
## 907 http://us.imdb.com/M/title-exact?imdb-title-120881
## 908 http://us.imdb.com/M/title-exact?imdb-title-120693
## 909 http://us.imdb.com/M/title-exact?imdb-title-118892
## 910 http://us.imdb.com/Title?Nil+By+Mouth+(1997)
## 911 http://us.imdb.com/M/title-exact?imdb-title-119594
## 912 http://us.imdb.com/Title?U.S.+Marshals+(1998)
## 913 http://us.imdb.com/Title?Love+and+Death+on+Long+Island+(1997)
## 914 http://us.imdb.com/Title?Wild+Things+(1998)
## 915 http://us.imdb.com/Title?Primary+Colors+(1998)
## 916 http://us.imdb.com/Title?Lost+in+Space+(1998)
## 917 http://us.imdb.com/Title?Mercury+Rising+(1998)
## 918 http://us.imdb.com/Title?City+of+Angels+(1998)
## 919 http://us.imdb.com/Title?Cit%E9+des+enfants+perdus,+La+(1995)
## 920 http://us.imdb.com/M/title-exact?Two%20Bits%20(1995)
## 921 http://us.imdb.com/M/title-exact?Ba%20Wang%20Bie%20Ji%20(1993)
## 922 http://us.imdb.com/M/title-exact?Dead%20Man%20(1995)
## 923 http://us.imdb.com/M/title-exact?Da%20Hong%20Deng%20Long%20Gao%20Gao%20Gua%20(1991)
## 924 http://us.imdb.com/M/title-exact?White%20Squall%20(1996)
## 925 http://us.imdb.com/Title?Unforgettable+(1996)
## 926 http://us.imdb.com/M/title-exact?Down%20Periscope%20(1996)
## 927 http://us.imdb.com/M/title-exact?Flor%20de%20mi%20secreto,%20La%20(1995)
## 928 http://us.imdb.com/M/title-exact?Craft,%20The%20(1996)
## 929 http://us.imdb.com/M/title-exact?Harriet%20the%20Spy%20(1996)
## 930 http://us.imdb.com/M/title-exact?Chain%20Reaction%20(1996)
## 931 http://us.imdb.com/M/title-exact?Island%20of%20Dr.%20Moreau,%20The%20(1996)
## 932 http://us.imdb.com/M/title-exact?First%20Kid%20(1996)
## 933 http://us.imdb.com/M/title-exact?Funeral,%20The%20(1996)
## 934 http://us.imdb.com/M/title-exact?Preacher's%20Wife,%20The%20(1996)
## 935 http://us.imdb.com/M/title-exact?Paradise%20Road%20%281997%29
## 936 http://us.imdb.com/M/title-exact?Brassed%20Off%20%281996%29
## 937 http://us.imdb.com/M/title-exact?Thousand+Acres%2C+A+(1997)
## 938 http://us.imdb.com/M/title-exact?Smile+Like+Yours%2C+A+(1997)
## 939 http://us.imdb.com/M/title-exact?Murder%20in%20the%20First%20(1995)
## 940 http://us.imdb.com/M/title-exact?Airheads%20(1994)
## 941 http://us.imdb.com/M/title-exact?With%20Honors%20(1994)
## 942 http://us.imdb.com/M/title-exact?What's%20Love%20Got%20to%20Do%20with%20It%20(1993)
## 943 http://us.imdb.com/M/title-exact?Killing%20Zoe%20(1994)
## 944 http://us.imdb.com/M/title-exact?Renaissance%20Man%20(1994)
## 945 http://us.imdb.com/M/title-exact?Charade%20(1963)
## 946 http://us.imdb.com/M/title-exact?Fox%20and%20the%20Hound,%20The%20(1981)
## 947 http://us.imdb.com/M/title-exact?Grand%20bleu,%20Le%20(1988)
## 948 http://us.imdb.com/M/title-exact?Booty%20Call%20(1997)
## 949 http://us.imdb.com/M/title-exact?How%20to%20Make%20an%20American%20Quilt%20(1995)
## 950 http://us.imdb.com/M/title-exact?Georgia%20(1995)
## 951 http://us.imdb.com/M/title-exact?Indian%20in%20the%20Cupboard,%20The%20(1995)
## 952 http://us.imdb.com/M/title-exact?Blue%20in%20the%20Face%20(1995)
## 953 http://us.imdb.com/M/title-exact?Unstrung%20Heroes%20(1995)
## 954 http://us.imdb.com/M/title-exact?Unzipped%20(1995)
## 955 http://us.imdb.com/M/title-exact?Before%20Sunrise%20(1995)
## 956 http://us.imdb.com/M/title-exact?Nobody's%20Fool%20(1994)
## 957 http://us.imdb.com/M/title-exact?Tui%20Shou%20(1992)
## 958 http://us.imdb.com/M/title-exact?Huozhe%20(1994)
## 959 http://us.imdb.com/M/title-exact?Dazed%20and%20Confused%20(1993)
## 960 http://us.imdb.com/M/title-exact?Naked%20(1993)
## 961 http://us.imdb.com/M/title-exact?Orlando%20(1993)
## 962 http://us.imdb.com/M/title-exact?Ruby%20in%20Paradise%20(1993)
## 963 http://us.imdb.com/M/title-exact?Some%20Folks%20Call%20It%20a%20Sling%20Blade%20(1993)
## 964 http://us.imdb.com/M/title-exact?Month%20by%20The%20Lake,%20A%20(1995)
## 965 http://us.imdb.com/M/title-exact?Funny%20Face%20(1957)
## 966 http://us.imdb.com/M/title-exact?Affair%20to%20Remember,%20An%20(1957)
## 967 http://us.imdb.com/M/title-exact?Little%20Lord%20Fauntleroy%20(1936)
## 968 http://us.imdb.com/M/title-exact?Inspector%20General,%20The%20(1949)
## 969 http://us.imdb.com/M/title-exact?Winnie%20the%20Pooh%20and%20the%20Blustery%20Day%20%281968%29
## 970 http://us.imdb.com/M/title-exact?Hear%20My%20Song%20(1991)
## 971 http://us.imdb.com/M/title-exact?Mediterraneo%20(1991)
## 972 http://us.imdb.com/M/title-exact?Passion%20Fish%20(1992)
## 973 http://us.imdb.com/M/title-exact?Grateful%20Dead%20(1995)
## 974 http://us.imdb.com/Title?Eye+for+an+Eye+(1996)
## 975 http://us.imdb.com/M/title-exact?Fear%20(1996)
## 976 http://us.imdb.com/M/title-exact?Solo%20(1996)
## 977 http://us.imdb.com/M/title-exact?Substitute,%20The%20(1996)
## 978 http://us.imdb.com/M/title-exact?Heaven's%20Prisoners%20(1996)
## 979 http://us.imdb.com/M/title-exact?Trigger%20Effect,%20The%20(1996)
## 980 http://us.imdb.com/M/title-exact?Mother%20Night%20(1996)
## 981 http://us.imdb.com/M/title-exact?Dangerous%20Ground%20(1997)
## 982 http://us.imdb.com/M/title-exact?Maximum%20Risk%20(1996)
## 983 http://us.imdb.com/M/title-exact?Rich%20Man's%20Wife,%20The%20(1996)
## 984 http://us.imdb.com/M/title-exact?Shadow%20Conspiracy%20(1997)
## 985 http://us.imdb.com/Title?Blood+%26+Wine+(1997)
## 986 http://us.imdb.com/M/title-exact?Turbulence%20(1997)
## 987 http://us.imdb.com/M/title-exact?Underworld%20(1997)
## 988 http://us.imdb.com/M/title-exact?Beautician%20and%20the%20Beast,%20The%20(1997)
## 989 http://us.imdb.com/M/title-exact?Cats%20Don%27t%20Dance%20(1997)
## 990 http://us.imdb.com/M/title-exact?Anna%20Karenina%20%281997%29
## 991 http://us.imdb.com/Title?Keys+to+Tulsa+(1997)
## 992 http://us.imdb.com/M/title-exact?Head+Above+Water+(1996)
## 993 http://us.imdb.com/M/title-exact?Hercules+(1997)
## 994 http://us.imdb.com/M/title-exact?Last+Time+I+Committed+Suicide%2C+The+(1997)
## 995 http://us.imdb.com/M/title-exact?Kiss+Me%2C+Guido+(1997)
## 996 http://us.imdb.com/M/title-exact?Big%20Green,%20The%20(1995)
## 997 http://us.imdb.com/M/title-exact?Stuart%20Saves%20His%20Family%20(1995)
## 998 http://us.imdb.com/M/title-exact?Cabin%20Boy%20(1994)
## 999 http://us.imdb.com/M/title-exact?Clean%20Slate%20(1994)
## 1000 http://us.imdb.com/M/title-exact?Lightning%20Jack%20(1994)
## 1001 http://us.imdb.com/M/title-exact?Stupids,%20The%20(1996)
## 1002 http://us.imdb.com/M/title-exact?Pest,%20The%20(1997)
## 1004 http://us.imdb.com/M/title-exact?Geronimo:%20An%20American%20Legend%20(1993)
## 1005 http://us.imdb.com/M/title-exact?Podwojne%20zycie%20Weroniki%20(1991)
## 1006 http://us.imdb.com/M/title-exact?Bis%20ans%20Ende%20der%20Welt%20(1991)
## 1007 http://us.imdb.com/M/title-exact?Waiting%20for%20Guffman%20(1996)
## 1008 http://us.imdb.com/M/title-exact?I%20Shot%20Andy%20Warhol%20(1996)
## 1009 http://us.imdb.com/M/title-exact?Stealing%20Beauty%20(1996)
## 1010 http://us.imdb.com/M/title-exact?Basquiat%20(1996)
## 1011 http://us.imdb.com/M/title-exact?2%20Days%20in%20the%20Valley%20(1996)
## 1012 http://us.imdb.com/M/title-exact?Private%20Parts%20(1997)
## 1013 http://us.imdb.com/M/title-exact?Anaconda%20%281997%29
## 1014 http://us.imdb.com/M/title-exact?Romy%20and%20Michele%27s%20High%20School%20Reunion%20%281997%29
## 1015 http://us.imdb.com/M/title-exact?Shiloh%20%281997%29
## 1016 http://us.imdb.com/M/title-exact?Con%20Air%20%281997%29
## 1017 http://us.imdb.com/M/title-exact?Trees%20Lounge%20(1996)
## 1018 http://us.imdb.com/Title?%A1%C1tame%21+(1990)
## 1019 http://us.imdb.com/M/title-exact?Die%20xue%20shuang%20xiong%20(1989)
## 1020 http://us.imdb.com/M/title-exact?Gaslight%20(1944)
## 1021 http://us.imdb.com/M/title-exact?8%201/2%20(1963)
## 1022 http://us.imdb.com/M/title-exact?Fast,+Cheap+&+Out+of+Control+(1997)
## 1023 http://us.imdb.com/M/title-exact?Fathers%27%20Day%20%281997%29
## 1024 http://us.imdb.com/M/title-exact?Mrs%2E+Dalloway+(1997)
## 1025 http://us.imdb.com/M/title-exact?Fire+Down+Below+(1997)
## 1026 http://us.imdb.com/M/title-exact?Lay+of+the+Land%2C+The+(1997)
## 1027 http://us.imdb.com/M/title-exact?Shooter,%20The%20(1995)
## 1028 http://us.imdb.com/M/title-exact?Grumpier%20Old%20Men%20(1995)
## 1029 http://us.imdb.com/M/title-exact?Jury%20Duty%20(1995)
## 1030 http://us.imdb.com/M/title-exact?Beverly%20Hillbillies,%20The%20(1993)
## 1031 http://us.imdb.com/M/title-exact?Lassie%20(1994)
## 1032 http://us.imdb.com/M/title-exact?Little%20Big%20League%20(1994)
## 1033 http://us.imdb.com/M/title-exact?Homeward%20Bound%20II:%20Lost%20in%20San%20Francisco%20(1996)
## 1034 http://us.imdb.com/M/title-exact?Quest,%20The%20(1996/I)
## 1035 http://us.imdb.com/M/title-exact?Cool%20Runnings%20(1993)
## 1036 http://us.imdb.com/M/title-exact?Drop%20Dead%20Fred%20(1991)
## 1037 http://us.imdb.com/M/title-exact?Grease%202%20(1982)
## 1038 http://us.imdb.com/M/title-exact?Switchback+(1997)
## 1039 http://us.imdb.com/M/title-exact?Hamlet%20(1996)
## 1040 http://us.imdb.com/M/title-exact?Two%20if%20by%20Sea%20(1996)
## 1041 http://us.imdb.com/M/title-exact?Forget%20Paris%20(1995)
## 1042 http://us.imdb.com/M/title-exact?Just%20Cause%20(1995)
## 1043 http://us.imdb.com/M/title-exact?Rent-a-Kid%20(1995)
## 1044 http://us.imdb.com/M/title-exact?Paper,%20The%20(1994)
## 1045 http://us.imdb.com/M/title-exact?Fearless%20(1993)
## 1046 http://us.imdb.com/M/title-exact?Malice%20(1993)
## 1047 http://us.imdb.com/M/title-exact?Multiplicity%20(1996)
## 1048 http://us.imdb.com/M/title-exact?She's%20the%20One%20(1996)
## 1049 http://us.imdb.com/Title?House+Arrest+(1996/I)
## 1050 http://us.imdb.com/M/title-exact?Ghost%20and%20Mrs.%20Muir,%20The%20(1947)
## 1051 http://us.imdb.com/M/title-exact?Associate,%20The%20(1996)
## 1052 http://us.imdb.com/M/title-exact?Dracula:%20Dead%20and%20Loving%20It%20(1995)
## 1053 http://us.imdb.com/M/title-exact?Now%20and%20Then%20(1995)
## 1054 http://us.imdb.com/M/title-exact?Mr.%20Wrong%20(1996)
## 1055 http://us.imdb.com/M/title-exact?Simple%20Twist%20of%20Fate,%20A%20(1994)
## 1056 http://us.imdb.com/M/title-exact?Cronos%20(1992)
## 1057 http://us.imdb.com/M/title-exact?Pallbearer,%20The%20(1996)
## 1058 http://us.imdb.com/M/title-exact?War,%20The%20(1994)
## 1059 http://us.imdb.com/M/title-exact?Don't%20Be%20a%20Menace%20(1996)
## 1060 http://us.imdb.com/M/title-exact?Adventures%20of%20Pinocchio,%20The%20(1996)
## 1061 http://us.imdb.com/M/title-exact?Evening%20Star,%20The%20(1996)
## 1062 http://us.imdb.com/M/title-exact?imdb-title-119815
## 1063 http://us.imdb.com/M/title-exact?Little%20Princess,%20A%20(1995)
## 1064 http://us.imdb.com/M/title-exact?Crossfire%20(1947)
## 1065 http://us.imdb.com/M/title-exact?Koyaanisqatsi%20(1983)
## 1066 http://us.imdb.com/M/title-exact?Balto%20(1995)
## 1067 http://us.imdb.com/M/title-exact?Bottle%20Rocket%20(1996)
## 1068 http://us.imdb.com/M/title-exact?Uomo%20delle%20stelle,%20L'%20(1995)
## 1069 http://us.imdb.com/M/title-exact?Amateur%20(1994)
## 1070 http://us.imdb.com/M/title-exact?Living%20in%20Oblivion%20(1995)
## 1071 http://us.imdb.com/Title?Party+Girl+(1995/I)
## 1072 http://us.imdb.com/M/title-exact?Pyromaniac's%20Love%20Story,%20A%20(1995)
## 1073 http://us.imdb.com/Title?Shallow+Grave+(1994)
## 1074 http://us.imdb.com/M/title-exact?Reality%20Bites%20(1994)
## 1075 http://us.imdb.com/M/title-exact?Man%20of%20No%20Importance,%20A%20(1994)
## 1076 http://us.imdb.com/M/title-exact?Pagemaster,%20The%20(1994)
## 1077 http://us.imdb.com/M/title-exact?Love%20and%20a%20.45%20(1994)
## 1078 http://us.imdb.com/M/title-exact?Oliver%20&%20Company%20(1988)
## 1079 http://us.imdb.com/M/title-exact?Joe's%20Apartment%20(1996)
## 1080 http://us.imdb.com/Title?Cort%E1zar+(1994)
## 1081 http://us.imdb.com/M/title-exact?Curdled%20(1996)
## 1082 http://us.imdb.com/M/title-exact?Female%20Perversions%20(1996)
## 1083 http://us.imdb.com/M/title-exact?Albino%20Alligator%20(1996)
## 1084 http://us.imdb.com/M/title-exact?Anne%20Frank%20Remembered%20(1995)
## 1085 http://us.imdb.com/M/title-exact?Carried%20Away%20(1996)
## 1086 http://us.imdb.com/M/title-exact?It's%20My%20Party%20(1995)
## 1087 http://us.imdb.com/M/title-exact?Bloodsport%202%20%281995%29
## 1088 http://us.imdb.com/M/title-exact?Double%20Team%20%281997%29
## 1089 http://us.imdb.com/M/title-exact?Speed%202%3A%20Cruise%20Control%20%281997%29
## 1090 http://us.imdb.com/M/title-exact?Sliver%20(1993)
## 1091 http://us.imdb.com/M/title-exact?Pete's%20Dragon%20(1977)
## 1092 http://us.imdb.com/M/title-exact?Dear%20God%20(1996)
## 1093 http://us.imdb.com/M/title-exact?Live%20Nude%20Girls%20(1995)
## 1094 http://us.imdb.com/M/title-exact?Thin%20Line%20Between%20Love%20and%20Hate,%20A%20(1996)
## 1095 http://us.imdb.com/M/title-exact?High%20School%20High%20(1996)
## 1096 http://us.imdb.com/Title?Commandments+(1997)
## 1097 http://us.imdb.com/M/title-exact?Haine,%20La%20(1995)
## 1098 http://us.imdb.com/M/title-exact?Flirting%20With%20Disaster%20(1996)
## 1099 http://us.imdb.com/M/title-exact?Pao%20Da%20Shuang%20Deng%20(1994)
## 1100 http://us.imdb.com/M/title-exact?What%20Happened%20Was...%20(1994)
## 1101 http://us.imdb.com/M/title-exact?Six%20Degrees%20of%20Separation%20(1993)
## 1102 http://us.imdb.com/M/title-exact?Two%20Much%20(1996)
## 1103 http://us.imdb.com/Title?Trust+(1990)
## 1104 http://us.imdb.com/M/title-exact?C%27est%20arriv%E9%20pr%E8s%20de%20chez%20vous%20%281992%29
## 1105 http://us.imdb.com/M/title-exact?imdb-title-120670
## 1106 http://us.imdb.com/Title?Newton+Boys,+The+(1998)
## 1107 http://us.imdb.com/M/title-exact?Beyond%20Rangoon%20(1995)
## 1108 http://us.imdb.com/M/title-exact?Feast%20of%20July%20(1995)
## 1109 http://us.imdb.com/M/title-exact?Death%20and%20the%20Maiden%20(1994)
## 1110 http://us.imdb.com/M/title-exact?Tank%20Girl%20(1995)
## 1111 http://us.imdb.com/M/title-exact?Double%20Happiness%20(1994)
## 1112 http://us.imdb.com/M/title-exact?Cobb%20(1994)
## 1113 http://us.imdb.com/M/title-exact?Mrs.%20Parker%20and%20the%20Vicious%20Circle%20(1994)
## 1114 http://us.imdb.com/M/title-exact?Faithful%20(1996)
## 1115 http://us.imdb.com/M/title-exact?Twelfth%20Night:%20Or%20What%20You%20Will%20(1996)
## 1116 http://us.imdb.com/M/title-exact?Mark%20of%20Zorro,%20The%20(1940)
## 1117 http://us.imdb.com/M/title-exact?Surviving%20Picasso%20(1996)
## 1118 http://us.imdb.com/M/title-exact?Up%20in%20Smoke%20(1978)
## 1119 http://us.imdb.com/M/title-exact?Some%20Kind%20of%20Wonderful%20(1987)
## 1120 http://us.imdb.com/M/title-exact?I'm%20Not%20Rappaport%20(1996)
## 1121 http://us.imdb.com/M/title-exact?Parapluies%20de%20Cherbourg,%20Les%20(1964)
## 1122 http://us.imdb.com/M/title-exact?They%20Made%20Me%20a%20Criminal%20(1939)
## 1123 http://us.imdb.com/M/title-exact?Last%20Time%20I%20Saw%20Paris,%20The%20(1954)
## 1124 http://us.imdb.com/M/title-exact?Farewell%20to%20Arms,%20A%20(1932)
## 1125 http://us.imdb.com/M/title-exact?Innocents,%20The%20(1961)
## 1126 http://us.imdb.com/M/title-exact?Old%20Man%20and%20the%20Sea,%20The%20(1958)
## 1127 http://us.imdb.com/Title?Truman+Show,+The+(1998)
## 1128 http://us.imdb.com/M/title-exact?Heidi%20Fleiss:%20Hollywood%20Madam%20(1995)%20(TV)
## 1129 http://us.imdb.com/M/title-exact?Chongqing%20Senlin%20(1994)
## 1130 http://us.imdb.com/M/title-exact?Jupiter's%20Wife%20(1994)
## 1131 http://us.imdb.com/M/title-exact?Safe%20(1995)
## 1132 http://us.imdb.com/M/title-exact?Feeling%20Minnesota%20(1996)
## 1133 http://us.imdb.com/M/title-exact?Escape%20to%20Witch%20Mountain%20(1975)
## 1134 http://us.imdb.com/M/title-exact?Get%20on%20the%20Bus%20(1996)
## 1135 http://us.imdb.com/M/title-exact?Doors,%20The%20(1991)
## 1136 http://us.imdb.com/M/title-exact?Ghosts%20of%20Mississippi%20(1996)
## 1137 http://us.imdb.com/M/title-exact?Beautiful%20Thing%20(1996)
## 1138 http://us.imdb.com/M/title-exact/Independence%20(1997)
## 1139 http://us.imdb.com/M/title-exact?Hackers%20(1995)
## 1140 http://us.imdb.com/M/title-exact?Road%20to%20Wellville,%20The%20(1994)
## 1141 http://us.imdb.com/M/title-exact?War%20Room,%20The%20(1993)
## 1142 http://us.imdb.com/M/title-exact?When%20We%20Were%20Kings%20(1996)
## 1143 http://us.imdb.com/Title?Hard+Eight+(1996)
## 1144 http://us.imdb.com/M/title-exact?Quiet%20Room%2C%20The%20(1996)
## 1145 http://us.imdb.com/M/title-exact?Blue%20Chips%20(1994)
## 1146 http://us.imdb.com/M/title-exact?Calendar%20Girl%20(1993)
## 1147 http://us.imdb.com/M/title-exact?My%20Family%20(1995)
## 1148 http://us.imdb.com/M/title-exact?Tom%20&%20Viv%20(1994)
## 1149 http://us.imdb.com/M/title-exact?Walkabout%20(1971)
## 1150 http://us.imdb.com/M/title-exact?Last%20Dance%20(1996)
## 1151 http://us.imdb.com/M/title-exact?Original%20Gangstas%20(1996)
## 1152 http://us.imdb.com/M/title-exact?In%20Love%20and%20War%20(1996)
## 1153 http://us.imdb.com/M/title-exact?Backbeat%20(1993)
## 1154 http://us.imdb.com/M/title-exact?Alphaville%20(1965)
## 1155 http://us.imdb.com/M/title-exact?Rendez-vous%20de%20Paris,%20Les%20(1995)
## 1156 http://us.imdb.com/M/title-exact?Cyclo%20(1995)
## 1157 http://us.imdb.com/M/title-exact?Relic,%20The%20(1997)
## 1158 http://us.imdb.com/M/title-exact?Fille%20seule,%20La%20(1995)
## 1159 http://us.imdb.com/M/title-exact?Stalker%20(1979)
## 1160 http://us.imdb.com/Title?Love%21+Valour%21+Compassion%21+(1997)
## 1161 http://us.imdb.com/M/title-exact?Palookaville%20(1996)
## 1162 http://us.imdb.com/M/title-exact?Phat%20Beach%20(1996)
## 1163 http://us.imdb.com/M/title-exact?Portrait%20of%20a%20Lady%2C%20The%20%281996%29
## 1164 http://us.imdb.com/M/title-exact?Zeus%20and%20Roxanne%20(1997)
## 1165 http://us.imdb.com/M/title-exact?Big%20Bully%20(1996)
## 1166 http://us.imdb.com/M/title-exact?Love%20&%20Human%20Remains%20(1993)
## 1167 http://us.imdb.com/M/title-exact?Sum%20of%20Us,%20The%20(1994)
## 1168 http://us.imdb.com/M/title-exact?Little%20Buddha%20(1993)
## 1169 http://us.imdb.com/M/title-exact?Fresh%20(1994)
## 1170 http://us.imdb.com/M/title-exact?Spanking%20the%20Monkey%20(1994)
## 1171 http://us.imdb.com/M/title-exact?Roseaux%20sauvages%2C%20Les%20%281994%29
## 1172 http://us.imdb.com/M/title-exact?Women,%20The%20(1939)
## 1173 http://us.imdb.com/M/title-exact?Bliss%20(1997)
## 1174 http://us.imdb.com/M/title-exact?Caught%20(1996)
## 1175 http://us.imdb.com/M/title-exact?Hugo+Pool+(1997)
## 1176 http://us.imdb.com/M/title-exact?Welcome+To+Sarajevo+(1997)
## 1177 http://us.imdb.com/M/title-exact?Dunston%20Checks%20In%20(1996)
## 1178 http://us.imdb.com/M/title-exact?Major%20Payne%20(1994)
## 1179 http://us.imdb.com/M/title-exact?Man%20of%20the%20House%20(1995)
## 1180 http://us.imdb.com/M/title-exact?I%20Love%20Trouble%20(1994)
## 1181 http://us.imdb.com/M/title-exact?Low%20Down%20Dirty%20Shame,%20A%20(1994)
## 1182 http://us.imdb.com/M/title-exact?Cops%20and%20Robbersons%20(1994)
## 1183 http://us.imdb.com/M/title-exact?Cowboy%20Way,%20The%20(1994)
## 1184 http://us.imdb.com/M/title-exact?Endless%20Summer%202,%20The%20(1994)
## 1185 http://us.imdb.com/M/title-exact?In%20the%20Army%20Now%20(1994)
## 1186 http://us.imdb.com/M/title-exact?Inkwell,%20The%20(1994)
## 1187 http://us.imdb.com/M/title-exact?Switchblade%20Sisters%20(1975)
## 1188 http://us.imdb.com/M/title-exact?Young%20Guns%20II%20(1990)
## 1189 http://us.imdb.com/M/title-exact?Prefontaine%20(1997)
## 1190 http://us.imdb.com/M/title-exact?That%20Old%20Feeling%20(1997)
## 1191 http://us.imdb.com/M/title-exact?Letter+From+Death+Row%2C+A+(1998)
## 1192 http://us.imdb.com/M/title-exact?Boys%20of%20St.%20Vincent,%20The%20(1993)
## 1193 http://us.imdb.com/M/title-exact?Pred%20dozhdot%20(1994)
## 1194 http://us.imdb.com/M/title-exact?Once%20Were%20Warriors%20(1994)
## 1195 http://us.imdb.com/M/title-exact?Fresa%20y%20chocolate%20(1993)
## 1196 http://us.imdb.com/M/title-exact?Nuits%20fauves,%20Les%20(1992)
## 1197 http://us.imdb.com/M/title-exact?Family%20Thing,%20A%20(1996)
## 1198 http://us.imdb.com/M/title-exact?Plein%20soleil%20(1960)
## 1199 http://us.imdb.com/M/title-exact?Dellamorte%20Dellamore%20(1994)
## 1200 http://us.imdb.com/M/title-exact?Kim%20(1950)
## 1201 http://us.imdb.com/M/title-exact?Marlene%20Dietrich:%20Shadow%20and%20Light%20(1996)%20(TV)
## 1202 http://us.imdb.com/M/title-exact?Bewegte%20Mann,%20Der%20(1994)
## 1203 http://us.imdb.com/M/title-exact?Top%20Hat%20(1935)
## 1204 http://us.imdb.com/M/title-exact?To%20Be%20or%20Not%20to%20Be%20(1942)
## 1205 http://us.imdb.com/M/title-exact?Secret%20Agent,%20The%20(1996)
## 1206 http://us.imdb.com/M/title-exact?Amos%20&%20Andrew%20(1993)
## 1207 http://us.imdb.com/M/title-exact?Jade%20(1995)
## 1208 http://us.imdb.com/M/title-exact?Kiss%20of%20Death%20(1995)
## 1209 http://us.imdb.com/M/title-exact?Mixed%20Nuts%20(1994)
## 1210 http://us.imdb.com/M/title-exact?Virtuosity%20(1995)
## 1211 http://us.imdb.com/M/title-exact?Blue%20Sky%20(1994)
## 1212 http://us.imdb.com/M/title-exact?Flesh%20and%20Bone%20(1993)
## 1213 http://us.imdb.com/M/title-exact?Guilty%20as%20Sin%20(1993)
## 1214 http://us.imdb.com/M/title-exact?Ai%20no%20Corrida%20(1976)
## 1215 http://us.imdb.com/M/title-exact?Barb%20Wire%20(1996)
## 1216 http://us.imdb.com/M/title-exact?Kissed%20%281996%29
## 1217 http://us.imdb.com/Title?Assassins+(1995)
## 1218 http://us.imdb.com/M/title-exact?Friday%20(1995)
## 1219 http://us.imdb.com/M/title-exact?Goofy%20Movie,%20A%20(1995)
## 1220 http://us.imdb.com/M/title-exact?Higher%20Learning%20(1995)
## 1221 http://us.imdb.com/M/title-exact?When%20a%20Man%20Loves%20a%20Woman%20(1994)
## 1222 http://us.imdb.com/M/title-exact?Judgment%20Night%20(1993)
## 1223 http://us.imdb.com/M/title-exact?King%20of%20the%20Hill%20(1993)
## 1224 http://us.imdb.com/M/title-exact?Scout,%20The%20(1994)
## 1225 http://us.imdb.com/M/title-exact?Angus%20(1995)
## 1226 http://us.imdb.com/M/title-exact?Night%20Falls%20on%20Manhattan%20(1997)
## 1227 http://us.imdb.com/M/title-exact?Awfully%20Big%20Adventure,%20An%20(1995)
## 1228 http://us.imdb.com/M/title-exact?Under%20Siege%202:%20Dark%20Territory%20(1995)
## 1229 http://us.imdb.com/M/title-exact?Poison%20Ivy%20II%20(1995)
## 1230 http://us.imdb.com/Title?Pr%EAt-%E0-Porter+(1994)
## 1231 http://us.imdb.com/M/title-exact?Marked%20for%20Death%20(1990)
## 1232 http://us.imdb.com/M/title-exact?Madonna:%20Truth%20or%20Dare%20(1991)
## 1233 http://us.imdb.com/Title?N%E9nette+et+Boni+(1996)
## 1234 http://us.imdb.com/Title?Chairman+of+the+Board+(1998)
## 1235 http://us.imdb.com/M/title-exact?imdb-title-109266
## 1236 http://us.imdb.com/M/title-exact?imdb-title-119845
## 1237 http://us.imdb.com/M/title-exact?imdb-title-117994
## 1238 http://us.imdb.com/M/title-exact?imdb-title-118230
## 1239 http://us.imdb.com/M/title-exact?Cutthroat%20Island%20(1995)
## 1240 http://us.imdb.com/M/title-exact?Kokaku%20Kidotai%20(1995)
## 1241 http://us.imdb.com/M/title-exact?Van%2C%20The%20(1996)
## 1242 http://us.imdb.com/M/title-exact?Vieille%20qui%20marchait%20dans%20la%20mer,%20La%20(1991)
## 1243 http://us.imdb.com/M/title-exact?Night+Flier+(1997)
## 1244 http://us.imdb.com/M/title-exact?Metro%20(1997)
## 1245 http://us.imdb.com/M/title-exact?Gridlock'd%20(1997)
## 1246 http://us.imdb.com/Title?Bushwhacked+(1995/I)
## 1247 http://us.imdb.com/Title?Bad+Girls+(1994/I)
## 1248 http://us.imdb.com/M/title-exact?Blink%20(1994)
## 1249 http://us.imdb.com/M/title-exact?For%20Love%20or%20Money%20(1993)
## 1250 http://us.imdb.com/M/title-exact?Best%20of%20the%20Best%203:%20No%20Turning%20Back%20(1995)
## 1251 http://us.imdb.com/M/title-exact?Mille%20et%20une%20recettes%20du%20cuisinier%20amoureux%2C%20Les%20%281996%29
## 1252 http://us.imdb.com/M/title-exact?M%E9pris%2C+Le+(1963)
## 1253 http://us.imdb.com/M/title-exact?Tie%20That%20Binds,%20The%20(1995)
## 1254 http://us.imdb.com/M/title-exact?Gone%20Fishin'%20(1997)
## 1255 http://us.imdb.com/M/title-exact?Broken%20English%20%281996%29
## 1256 http://us.imdb.com/M/title-exact?Designated%20Mourner%2C%20The%20%281997%29
## 1258 http://us.imdb.com/M/title-exact?Trial%20and%20Error%20%281997%29
## 1259 http://us.imdb.com/M/title-exact?Pie%20in%20the%20Sky%20(1995)
## 1260 http://us.imdb.com/M/title-exact?Total%20Eclipse%20(1995)
## 1261 http://us.imdb.com/M/title-exact?Run%20of%20the%20Country,%20The%20(1995)
## 1262 http://us.imdb.com/M/title-exact?Walking%20and%20Talking%20(1996)
## 1263 http://us.imdb.com/M/title-exact?Foxfire%20(1996)
## 1264 http://us.imdb.com/M/title-exact?Nothing%20to%20Lose%20(1994)
## 1265 http://us.imdb.com/M/title-exact?Star+Maps+(1997)
## 1266 http://us.imdb.com/M/title-exact?Pane%20e%20Cioccolata%20(1973)
## 1267 http://us.imdb.com/M/title-exact?Clockers%20(1995)
## 1268 http://us.imdb.com/M/title-exact?Lunes%20de%20fiel%20(1992)
## 1269 http://us.imdb.com/M/title-exact?Love%20in%20the%20Afternoon%20(1957)
## 1270 http://us.imdb.com/M/title-exact?Life%20with%20Mikey%20(1993)
## 1271 http://us.imdb.com/M/title-exact?North%20(1994)
## 1272 http://us.imdb.com/M/title-exact?Talking%20About%20Sex%20(1994)
## 1273 http://us.imdb.com/M/title-exact?Color%20of%20Night%20(1994)
## 1274 http://us.imdb.com/M/title-exact?Robocop%203%20(1993)
## 1275 http://us.imdb.com/M/title-exact?Killer%20(1994)
## 1276 http://us.imdb.com/M/title-exact?Sunset%20Park%20(1996)
## 1277 http://us.imdb.com/M/title-exact?Set%20It%20Off%20(1996)
## 1278 http://us.imdb.com/M/title-exact?Selena%20(1997)
## 1279 http://us.imdb.com/M/title-exact?Wild+America+(1997)
## 1280 http://us.imdb.com/M/title-exact?Gang+Related+(1997)
## 1281 http://us.imdb.com/M/title-exact?Manny%20&%20Lo%20(1996)
## 1282 http://us.imdb.com/M/title-exact?Grass%20Harp,%20The%20(1995)
## 1283 http://us.imdb.com/M/title-exact?Out+to+Sea+(1997)
## 1284 http://us.imdb.com/M/title-exact?Before%20and%20After%20(1996)
## 1285 http://us.imdb.com/M/title-exact?Princess%20Caraboo%20(1994)
## 1286 http://us.imdb.com/M/title-exact?Shall%20We%20Dance?%20(1937)
## 1287 http://us.imdb.com/M/title-exact?Ed%20(1996)
## 1288 http://us.imdb.com/M/title-exact?Denise%20Calls%20Up%20(1995)
## 1289 http://us.imdb.com/M/title-exact?Jack%20and%20Sarah%20(1995)
## 1290 http://us.imdb.com/M/title-exact?Country%20Life%20(1994)
## 1291 http://us.imdb.com/M/title-exact?Celtic%20Pride%20(1996)
## 1292 http://us.imdb.com/M/title-exact?Simple+Wish%2C+A+(1997)
## 1293 http://us.imdb.com/M/title-exact?imdb-title-120478
## 1294 http://us.imdb.com/Title?Ayn+Rand%3A+A+Sense+of+Life+(1997)
## 1295 http://us.imdb.com/M/title-exact?Kicked+in+the+Head+(1997)
## 1296 http://us.imdb.com/M/title-exact?Indian+Summer+(1996)
## 1297 http://us.imdb.com/M/title-exact?Love%20Affair%20(1994)
## 1298 http://us.imdb.com/M/title-exact?Band%20Wagon,%20The%20(1953)
## 1299 http://us.imdb.com/M/title-exact?Penny%20Serenade%20(1941)
## 1300 http://us.imdb.com/Title?%27Til+There+Was+You+(1997)
## 1301 http://us.imdb.com/M/title-exact?Stripes+(1981)
## 1302 http://us.imdb.com/M/title-exact?Late%20Bloomers%20%281996%29
## 1303 http://us.imdb.com/M/title-exact?Getaway,%20The%20(1994)
## 1304 http://us.imdb.com/Title?New+York+Cop+(1996)
## 1305 http://us.imdb.com/M/title-exact?National%20Lampoon's%20Senior%20Trip%20(1995)
## 1306 http://us.imdb.com/M/title-exact?Delta%20of%20Venus%20(1994)
## 1307 http://us.imdb.com/M/title-exact?Carmen%20Miranda:%20Bananas%20Is%20My%20Business%20(1994)
## 1308 http://us.imdb.com/M/title-exact?Babyfever%20(1994)
## 1309 http://us.imdb.com/M/title-exact?Very%20Natural%20Thing,%20A%20(1974)
## 1310 http://us.imdb.com/M/title-exact?Walk%20in%20the%20Sun,%20A%20(1945)
## 1311 http://us.imdb.com/M/title-exact?Waiting%20to%20Exhale%20(1995)
## 1312 http://us.imdb.com/M/title-exact?Pompatus%20of%20Love,%20The%20(1996)
## 1313 http://us.imdb.com/M/title-exact?Palmetto+(1998)
## 1314 http://us.imdb.com/M/title-exact?Surviving%20the%20Game%20(1994)
## 1315 http://us.imdb.com/M/title-exact?Inventing%20the%20Abbotts%20%281997%29
## 1316 http://us.imdb.com/M/title-exact?imdb-title-119314
## 1317 http://us.imdb.com/M/title-exact?Journey%20of%20August%20King,%20The%20(1995)
## 1318 http://us.imdb.com/Title?Catwalk+(1995/I)
## 1319 http://us.imdb.com/M/title-exact?Neon%20Bible,%20The%20(1995)
## 1320 http://us.imdb.com/M/title-exact?Homage%20(1995)
## 1321 http://us.imdb.com/Title?Open+Season+(1996)
## 1322 http://us.imdb.com/Title?M%E9tisse+(1993)
## 1323 http://us.imdb.com/M/title-exact?Wu%20Kui%20(1994)
## 1324 http://us.imdb.com/M/title-exact?Loaded%20(1994)
## 1325 http://us.imdb.com/M/title-exact?August%20(1996)
## 1326 http://us.imdb.com/M/title-exact?Boys%20(1996)
## 1327 http://us.imdb.com/Title?Captives+(1994)
## 1328 http://us.imdb.com/M/title-exact?Of%20Love%20and%20Shadows%20(1994)
## 1329 http://us.imdb.com/Title?Low+Life,+The+(1994/I)
## 1330 http://us.imdb.com/Title?Un+%E9t%E9+inoubliable+(1994)
## 1331 http://us.imdb.com/M/title-exact?Last%20Klezmer%3A%20Leopold%20Kozlowski%2C%20His%20Life%20and%20Music%2C%20The%20%281995%29
## 1332 http://us.imdb.com/M/title-exact?En%20compagnie%20d'Antonin%20Artaud%20(1993)
## 1333 http://us.imdb.com/M/title-exact?Sibak%20(1994)
## 1334 http://us.imdb.com/Title?Somebody+to+Love+(1996)
## 1335 http://us.imdb.com/M/title-exact?American%20Buffalo%20(1996)
## 1336 http://us.imdb.com/M/title-exact?Kazaam%20(1996)
## 1337 http://us.imdb.com/M/title-exact?Larger%20Than%20Life%20(1996)
## 1338 http://us.imdb.com/Title?Two+Deaths+(1995)
## 1339 http://us.imdb.com/M/title-exact?Stefano%20Quantestorie%20%281993%29
## 1340 http://us.imdb.com/M/title-exact?Crude%20Oasis,%20The%20(1995)
## 1341 http://us.imdb.com/M/title-exact?Hedd%20Wyn%20(1992)
## 1342 http://us.imdb.com/M/title-exact?Convento,%20O%20(1995)
## 1343 http://us.imdb.com/M/title-exact?Lotto%20Land%20(1995)
## 1344 http://us.imdb.com/M/title-exact?Story%20of%20Xinghua,%20The%20(1993)
## 1345 http://us.imdb.com/M/title-exact?Tianguo%20Niezi%20(1994)
## 1346 http://us.imdb.com/M/title-exact?Dingo%20(1992)
## 1347 http://us.imdb.com/M/title-exact?Narayama%20Bushiko%20%281958%29
## 1348 http://us.imdb.com/Title?Un+week-end+sur+deux+(1990)
## 1349 http://us.imdb.com/M/title-exact?Mille%20bolle%20blu%20(1993)
## 1350 http://us.imdb.com/Title?Wuya+yu+maque+(1949)
## 1351 http://us.imdb.com/M/title-exact?Lover's%20Knot%20(1996)
## 1352 http://us.imdb.com/M/title-exact?Schatten%20der%20Engel%20(1976)
## 1353 http://us.imdb.com/M/title-exact?06%20(1994)
## 1354 http://us.imdb.com/M/title-exact?Venice/Venice%20(1992)
## 1355 http://us.imdb.com/M/title-exact?Infinity%20(1996)
## 1356 http://us.imdb.com/M/title-exact?Ed%27s%20Next%20Move%20%281996%29
## 1357 http://us.imdb.com/M/title-exact?For%20the%20Moment%20(1994)
## 1358
## 1359
## 1360 http://us.imdb.com/M/title-exact?Vie%20sexuelle%20des%20Belges,%20La%20(1994)
## 1361 http://us.imdb.com/M/title-exact?Search%20for%20One-eye%20Jimmy,%20The%20(1996)
## 1362 http://us.imdb.com/M/title-exact?American%20Strays%20(1996)
## 1363 http://us.imdb.com/M/title-exact?Leopard%20Son,%20The%20(1996)
## 1364 http://us.imdb.com/M/title-exact?Bird%20of%20Prey%20(1996)
## 1365 http://us.imdb.com/M/title-exact?Johnny%20100%20Pesos%20(1993)
## 1366 http://us.imdb.com/M/title-exact?JLG/JLG%20-%20autoportrait%20de%20d%E9cembre%20%281994%29
## 1367 http://us.imdb.com/M/title-exact?Faust%20%281994%29
## 1368 http://us.imdb.com/M/title-exact?Mina%20Tannenbaum%20(1994)
## 1369 http://us.imdb.com/M/title-exact?Cristo%20proibito%2C%20Il%20%281950%29
## 1370 http://us.imdb.com/M/title-exact?J'ai%20pas%20sommeil%20(1994)
## 1371 http://us.imdb.com/M/title-exact?Machine,%20La%20(1994)
## 1372 http://us.imdb.com/Title?Stranger,+The+(1994/II)
## 1373 http://us.imdb.com/M/title-exact?Good%20Morning%20(1971)
## 1374 http://us.imdb.com/M/title-exact?Falling%20in%20Love%20Again%20(1980)
## 1375 http://us.imdb.com/M/title-exact?Cement%20Garden,%20The%20(1993)
## 1376 http://us.imdb.com/M/title-exact?Meet%20Wally%20Sparks%20(1997)
## 1377 http://us.imdb.com/M/title-exact?Hotel%20de%20Love%20(1996)
## 1378 http://us.imdb.com/M/title-exact?Rhyme%20%26%20Reason%20(1997)
## 1379 http://us.imdb.com/M/title-exact?Love%20and%20Other%20Catastrophes%20%281996%29
## 1380 http://us.imdb.com/Title?Hollow+Reed+(1996)
## 1381 http://us.imdb.com/M/title-exact?Losing%20Chase%20%281996%29
## 1382 http://us.imdb.com/M/title-exact?Bonheur%2C%20Le%20%281965%29
## 1383 http://us.imdb.com/M/title-exact?Second%20Jungle%20Book%3A%20Mowgli%20%26%20Baloo%2C%20The%20%281997%29
## 1384 http://us.imdb.com/M/title-exact?Squeeze%20%281996%29
## 1385 http://us.imdb.com/M/title-exact?Roseanna%27s+Grave+(1997)
## 1386 http://us.imdb.com/M/title-exact?Tetsuo+II%3A+Body+Hammer+(1992)
## 1387 http://us.imdb.com/M/title-exact?Fall+(1997)
## 1388 http://us.imdb.com/M/title-exact?Gabbeh+(1996)
## 1389 http://us.imdb.com/M/title-exact?Mondo+(1996)
## 1390 http://us.imdb.com/M/title-exact?Innocent+Sleep%2C+The+(1995)
## 1391 http://us.imdb.com/M/title-exact?For+Ever+Mozart+(1996)
## 1392 http://us.imdb.com/M/title-exact?Locusts%2C+The+(1997)
## 1393 http://us.imdb.com/M/title-exact?Stag+(1997)
## 1394 http://us.imdb.com/M/title-exact?Swept+from+the+Sea+(1997)
## 1395 http://us.imdb.com/Title?Hurricane+Streets+(1998)
## 1396 http://us.imdb.com/M/title-exact?Stonewall%20(1995)
## 1397 http://us.imdb.com/M/title-exact?Of%20Human%20Bondage%20(1934)
## 1398 http://us.imdb.com/M/title-exact?Anna%20(1996)
## 1399 http://us.imdb.com/M/title-exact?imdb-title-120222
## 1400 http://us.imdb.com/M/title-exact?Picture%20Bride%20(1995)
## 1401 http://us.imdb.com/M/title-exact?M.%20Butterfly%20(1993)
## 1402 http://us.imdb.com/M/title-exact?Io%20speriamo%20che%20me%20la%20cavo%20(1993)
## 1403 http://us.imdb.com/M/title-exact?Caro%20diario%20(1994)
## 1404 http://us.imdb.com/M/title-exact?Withnail%20and%20I%20(1987)
## 1405 http://us.imdb.com/M/title-exact?Boy%27s%20Life%202%20(1997)
## 1406 http://us.imdb.com/M/title-exact?When%20Night%20is%20Falling%20(1995)
## 1407 http://us.imdb.com/M/title-exact?Specialist,%20The%20(1994)
## 1408 http://us.imdb.com/M/title-exact?Gordy%20(1995)
## 1409 http://us.imdb.com/M/title-exact?Swan%20Princess,%20The%20(1994)
## 1410 http://us.imdb.com/M/title-exact?Harlem%20(1993)
## 1411 http://us.imdb.com/M/title-exact?Barbarella%20(1968)
## 1412 http://us.imdb.com/M/title-exact?Land%20Before%20Time%20III%3A%20The%20Time%20of%20the%20Great%20Giving%20%281995%29%20%28V%29
## 1413 http://us.imdb.com/M/title-exact?Street%20Fighter%20(1994)
## 1414 http://us.imdb.com/M/title-exact?Coldblooded%20(1995)
## 1415 http://us.imdb.com/M/title-exact?Next%20Karate%20Kid,%20The%20(1994)
## 1416 http://us.imdb.com/M/title-exact?No%20Escape%20(1994)
## 1417 http://us.imdb.com/M/title-exact?Turning%2C%20The%20%281992%29
## 1418 http://us.imdb.com/M/title-exact?Joy+Luck+Club%2C+The+(1993)
## 1419 http://us.imdb.com/M/title-exact?Highlander%20III:%20The%20Sorcerer%20(1994)
## 1420 http://us.imdb.com/M/title-exact?imdb-title-119195
## 1421 http://us.imdb.com/M/title-exact?Mi%20vida%20loca%20(1993)
## 1422 http://us.imdb.com/M/title-exact?Suture%20(1993)
## 1423 http://us.imdb.com/M/title-exact?Walking%20Dead,%20The%20(1995)
## 1424 http://us.imdb.com/M/title-exact?I%20Like%20It%20Like%20That%20(1994)
## 1425 http://us.imdb.com/M/title-exact?I'll%20Do%20Anything%20(1994)
## 1426 http://us.imdb.com/M/title-exact?Grace%20of%20My%20Heart%20(1996)
## 1427 http://us.imdb.com/M/title-exact?Drunks%20(1995)
## 1428 http://us.imdb.com/M/title-exact?SubUrbia%20(1997)
## 1429 http://us.imdb.com/Title?Sliding+Doors+(1998)
## 1430 http://us.imdb.com/M/title-exact?imdb-title-119352
## 1431 http://us.imdb.com/Title?Legal+Deceit+(1997)
## 1432 http://us.imdb.com/Title?Mighty,+The+(1998)
## 1433 http://us.imdb.com/M/title-exact?imdb-title-119655
## 1434 http://us.imdb.com/M/title-exact?imdb-title-120122
## 1435 http://us.imdb.com/M/title-exact?Steal%20Big,%20Steal%20Little%20(1995)
## 1436 http://us.imdb.com/M/title-exact?Mr.%20Jones%20(1993)
## 1437 http://us.imdb.com/M/title-exact?House%20Party%203%20(1994)
## 1438 http://us.imdb.com/M/title-exact?Panther%20(1995)
## 1439 http://us.imdb.com/M/title-exact?Jason's%20Lyric%20(1994)
## 1440 http://us.imdb.com/M/title-exact?Above%20the%20Rim%20(1994)
## 1441 http://us.imdb.com/M/title-exact?Moonlight%20and%20Valentino%20(1995)
## 1442 http://us.imdb.com/M/title-exact?Scarlet%20Letter,%20The%20(1995)
## 1443 http://us.imdb.com/M/title-exact?8%20Seconds%20(1994)
## 1444 http://us.imdb.com/Title?That+Darn+Cat%21+(1965)
## 1445 http://us.imdb.com/M/title-exact?Ladybird%20Ladybird%20(1994)
## 1446 http://us.imdb.com/M/title-exact?Bye%20Bye,%20Love%20(1995)
## 1447 http://us.imdb.com/M/title-exact?Century%20(1993)
## 1448 http://us.imdb.com/Title?Ma+saison+pr%E9f%E9r%E9e+(1993)
## 1449 http://us.imdb.com/M/title-exact?Pather%20Panchali%20(1955)
## 1450 http://us.imdb.com/M/title-exact?Golden%20Earrings%20%281947%29
## 1451 http://us.imdb.com/M/title-exact?Foreign%20Correspondent%20(1940)
## 1452 http://us.imdb.com/M/title-exact?Lady%20of%20Burlesque%20(1943)
## 1453 http://us.imdb.com/M/title-exact?Angel%20on%20My%20Shoulder%20(1946)
## 1454 http://us.imdb.com/M/title-exact?Angel%20and%20the%20Badman%20(1947)
## 1455 http://us.imdb.com/M/title-exact?Outlaw,%20The%20(1943)
## 1456 http://us.imdb.com/M/title-exact?Beat%20the%20Devil%20(1954)
## 1457 http://us.imdb.com/M/title-exact?Love%20Is%20All%20There%20Is%20(1996)
## 1458 http://us.imdb.com/M/title-exact?Damsel%20in%20Distress,%20A%20(1937)
## 1459 http://us.imdb.com/M/title-exact?Madame%20Butterfly%20(1995)
## 1460 http://us.imdb.com/M/title-exact?Sleepover%20(1995)
## 1461 http://us.imdb.com/M/title-exact?Here%20Comes%20Cookie%20(1935)
## 1462 http://us.imdb.com/M/title-exact?Voleurs,%20Les%20(1996)
## 1463 http://us.imdb.com/M/title-exact?imdb-title-118764
## 1464 http://us.imdb.com/Title?Stars+Fell+on+Henrietta,+The+(1995)
## 1465 http://us.imdb.com/M/title-exact?Last%20Summer%20in%20the%20Hamptons%20(1995)
## 1466 http://us.imdb.com/M/title-exact?Margaret's%20Museum%20(1995)
## 1467 http://us.imdb.com/M/title-exact?Saint%20of%20Fort%20Washington,%20The%20(1993)
## 1468 http://us.imdb.com/M/title-exact?Cure,%20The%20(1995)
## 1469 http://us.imdb.com/M/title-exact?Tom%20and%20Huck%20(1995)
## 1470 http://us.imdb.com/M/title-exact?Gumby:%20The%20Movie%20(1995)
## 1471 http://us.imdb.com/M/title-exact?Hideaway%20(1995)
## 1472 http://us.imdb.com/M/title-exact?Visiteurs,%20Les%20(1993)
## 1473 http://us.imdb.com/M/title-exact?Little%20Princess,%20The%20(1939)
## 1474 http://us.imdb.com/M/title-exact?Nina%20Takes%20a%20Lover%20(1994)
## 1475 http://us.imdb.com/M/title-exact?Bhaji%20on%20the%20Beach%20(1993)
## 1476 http://us.imdb.com/M/title-exact?Raw%20Deal%20(1948)
## 1477 http://us.imdb.com/M/title-exact?Nightwatch%20(1997)
## 1478 http://us.imdb.com/M/title-exact?Dead%20Presidents%20(1995)
## 1479 http://us.imdb.com/Title?Reckless+(1995/I)
## 1480 http://us.imdb.com/M/title-exact?Herbie%20Rides%20Again%20(1974)
## 1481 http://us.imdb.com/M/title-exact?S.F.W.%20(1994)
## 1482 http://us.imdb.com/M/title-exact?Gate%20of%20Heavenly%20Peace,%20The%20(1995)
## 1483 http://us.imdb.com/Title?Man+in+the+Iron+Mask,+The+(1998/I)
## 1484 http://us.imdb.com/M/title-exact?Jerky%20Boys,%20The%20(1994)
## 1485 http://us.imdb.com/M/title-exact?Colonel%20Chabert,%20Le%20(1994)
## 1486 http://us.imdb.com/M/title-exact?Girl%20in%20the%20Cadillac%20(1995)
## 1487 http://us.imdb.com/M/title-exact?Even%20Cowgirls%20Get%20the%20Blues%20(1993)
## 1488 http://us.imdb.com/M/title-exact?Germinal%20(1993)
## 1489 http://us.imdb.com/M/title-exact?Chasers%20(1994)
## 1490 http://us.imdb.com/M/title-exact?Fausto%20%281993%29
## 1491 http://us.imdb.com/M/title-exact?Tough%20and%20Deadly%20(1995)
## 1492 http://us.imdb.com/Title?Okno+v+Parizh+(1994)
## 1493 http://us.imdb.com/M/title-exact?Modern%20Affair,%20A%20(1995)
## 1494 http://us.imdb.com/M/title-exact?Mostro,%20Il%20(1994)
## 1495 http://us.imdb.com/Title?Flirt+(1995/I)
## 1496 http://us.imdb.com/M/title-exact?Carpool%20(1996)
## 1497 http://us.imdb.com/M/title-exact?Line%20King,%20The%20(1996)
## 1498 http://us.imdb.com/M/title-exact?Farmer%20&%20Chase%20(1995)
## 1499 http://us.imdb.com/M/title-exact?Grosse%20fatigue%20(1994)
## 1500 http://us.imdb.com/M/title-exact?Santa%20with%20Muscles%20(1996)
## 1501 http://us.imdb.com/M/title-exact?Kavkazsky%20Plennik%20(1996)
## 1502 http://us.imdb.com/Title?Naked+in+New+York+(1994)
## 1503 http://us.imdb.com/M/title-exact?Gold%20Diggers:%20The%20Secret%20of%20Bear%20Mountain%20(1995)
## 1504 http://us.imdb.com/M/title-exact?Bewegte%20Mann%2C%20Der%20%281994%29
## 1505 http://us.imdb.com/M/title-exact?Killer:%20A%20Journal%20of%20Murder%20(1995)
## 1506 http://us.imdb.com/M/title-exact?Nelly%20%26%20Monsieur%20Arnaud%20%281995%29
## 1507 http://us.imdb.com/M/title-exact?Trois%20vies%20et%20une%20seule%20mort%20(1996)
## 1508 http://us.imdb.com/M/title-exact?Babysitter,%20The%20(1995)
## 1509 http://us.imdb.com/M/title-exact?Getting%20Even%20with%20Dad%20(1994)
## 1510 http://us.imdb.com/M/title-exact?Mad%20Dog%20Time%20(1996)
## 1511 http://us.imdb.com/M/title-exact?Children%20of%20the%20Revolution%20%281996%29
## 1512 http://us.imdb.com/M/title-exact?Apur%20Sansar%20(1959)
## 1513 http://us.imdb.com/M/title-exact?Sprung%20%281997%29
## 1514 http://us.imdb.com/M/title-exact?Dream+With+the+Fishes+(1997)
## 1515 http://us.imdb.com/M/title-exact?Wings%20of%20Courage%20(1995)
## 1516 http://us.imdb.com/M/title-exact?Wedding%20Gift,%20The%20(1994)%20(TV)
## 1517 http://us.imdb.com/M/title-exact?Race%20the%20Sun%20(1996)
## 1518 http://us.imdb.com/M/title-exact?Losing%20Isaiah%20(1995)
## 1519 http://us.imdb.com/M/title-exact?New%20Jersey%20Drive%20(1995)
## 1520 http://us.imdb.com/M/title-exact?Fear,%20The%20(1995)
## 1521 http://us.imdb.com/M/title-exact?Mr.%20Wonderful%20(1993)
## 1522 http://us.imdb.com/M/title-exact?Trial%20by%20Jury%20(1994)
## 1523 http://us.imdb.com/M/title-exact?Good%20Man%20in%20Africa,%20A%20(1994)
## 1524 http://us.imdb.com/Title?Kaspar+Hauser+(1993)
## 1525 http://us.imdb.com/Title?Object+of+My+Affection,+The+(1998)
## 1526 http://us.imdb.com/M/title-exact?Witness+(1985)
## 1527 http://us.imdb.com/M/title-exact?imdb-title-120820
## 1528 http://us.imdb.com/M/title-exact?Nowhere%20%281997%29
## 1529 http://us.imdb.com/M/title-exact?Underground%20(1995)
## 1530 http://us.imdb.com/M/title-exact?Jefferson%20in%20Paris%20(1995)
## 1531 http://us.imdb.com/M/title-exact?Far%20From%20Home:%20The%20Adventures%20of%20Yellow%20Dog%20(1995)
## 1532 http://us.imdb.com/M/title-exact?Foreign%20Student%20(1994)
## 1533 http://us.imdb.com/M/title-exact?De%20Eso%20No%20Se%20Habla%20(1993)
## 1534 http://us.imdb.com/M/title-exact?Twin%20Town%20%281997%29
## 1535 http://us.imdb.com/M/title-exact?Enfer,%20L'%20(1994)
## 1536 http://us.imdb.com/M/title-exact?Aiqing%20Wansui%20(1994)
## 1537 http://us.imdb.com/M/title-exact?Cosi%20(1996)
## 1538 http://us.imdb.com/M/title-exact?All%20Over%20Me%20%281997%29
## 1539 http://us.imdb.com/M/title-exact?Being%20Human%20(1993)
## 1540 http://us.imdb.com/M/title-exact?Amazing%20Panda%20Adventure,%20The%20(1995)
## 1541 http://us.imdb.com/M/title-exact?Beans%20of%20Egypt,%20Maine,%20The%20(1994)
## 1542 http://us.imdb.com/M/title-exact?Scarlet%20Letter,%20The%20(1926)
## 1543 http://us.imdb.com/M/title-exact?Johns%20(1996)
## 1544 http://us.imdb.com/M/title-exact?It%20Takes%20Two%20(1995)
## 1545 http://us.imdb.com/M/title-exact?Frankie%20Starlight%20(1995)
## 1546 http://us.imdb.com/M/title-exact?Cienie%20(1988)
## 1547 http://us.imdb.com/M/title-exact?Show,%20The%20(1995)
## 1548 http://us.imdb.com/M/title-exact?Courtyard,%20The%20(1995)%20(TV)
## 1549 http://us.imdb.com/M/title-exact?Dream%20Man%20(1995)
## 1550 http://us.imdb.com/M/title-exact?Destiny%20Turns%20on%20the%20Radio%20(1995)
## 1551 http://us.imdb.com/M/title-exact?Glass%20Shield,%20The%20(1994)
## 1552 http://us.imdb.com/M/title-exact?Hunted,%20The%20(1995)
## 1553 http://us.imdb.com/M/title-exact?Underneath,%20The%20(1995)
## 1554 http://us.imdb.com/M/title-exact?Safe%20Passage%20(1994)
## 1555 http://us.imdb.com/M/title-exact?Secret%20Adventures%20of%20Tom%20Thumb,%20The%20(1993)
## 1556 http://us.imdb.com/M/title-exact?Condition%20Red%20(1995)
## 1557 http://us.imdb.com/M/title-exact?Yankee%20Zulu%20(1994)
## 1558 http://us.imdb.com/M/title-exact?Aparajito%20(1956)
## 1559 http://us.imdb.com/M/title-exact?Hostile%20Intentions%20(1994)
## 1560 http://us.imdb.com/M/title-exact?Coup%20de%20torchon%20(1981)
## 1561 http://us.imdb.com/M/title-exact?Tigrero:%20A%20Film%20That%20Was%20Never%20Made%20(1994)
## 1562 http://us.imdb.com/M/title-exact?Oeil%20de%20Vichy,%20L'%20(1993)
## 1563 http://us.imdb.com/M/title-exact?Versprechen,%20Das%20(1994)
## 1564 http://us.imdb.com/M/title-exact?To%20Cross%20the%20Rubicon%20(1991)
## 1565 http://us.imdb.com/M/title-exact?Daens%20(1992)
## 1566 http://us.imdb.com/Title?Man+from+Down+Under,+The+(1943)
## 1567 http://us.imdb.com/M/title-exact?Careful%20(1992)
## 1568 http://us.imdb.com/M/title-exact?Vermont%20Is%20For%20Lovers%20(1992)
## 1569 http://us.imdb.com/M/title-exact?Vie%20est%20belle,%20La%20(1987)
## 1570 http://us.imdb.com/M/title-exact?Quartier%20Mozart%20(1992)
## 1571 http://us.imdb.com/M/title-exact?Touki%20Bouki%20(1973)
## 1572 http://us.imdb.com/M/title-exact?Wend%20Kuuni%20(1982)
## 1573 http://us.imdb.com/M/title-exact?Tre%20passi%20nel%20delirio%20(1968)
## 1574 http://us.imdb.com/M/title-exact?Pharaoh's%20Army%20(1995)
## 1575 http://us.imdb.com/M/title-exact?Yo,%20la%20Peor%20de%20Todas%20(1990)
## 1576 http://us.imdb.com/M/title-exact?Hol%20volt,%20hol%20nem%20volt%20(1987)
## 1577 http://us.imdb.com/Title?Mort+en+ce+jardin,+La+(1956)
## 1578 http://us.imdb.com/M/title-exact?Collectionneuse,%20La%20(1967)
## 1579 http://us.imdb.com/Title?B%E2ton+rouge+(1988)
## 1580 http://us.imdb.com/M/title-exact?Liebelei%20(1933)
## 1581 http://us.imdb.com/M/title-exact?Woman%20in%20Question,%20The%20(1950)
## 1582 http://us.imdb.com/M/title-exact?T-Men%20(1947)
## 1583 http://us.imdb.com/M/title-exact?Zaproszenie%20(1986)
## 1584 http://us.imdb.com/M/title-exact?Symphonie%20pastorale,%20La%20(1946)
## 1585 http://us.imdb.com/M/title-exact?American%20Dream%20(1990)
## 1586 http://us.imdb.com/M/title-exact?Lashou%20Shentan%20(1992)
## 1587 http://us.imdb.com/M/title-exact?Terror%20in%20a%20Texas%20Town%20(1958)
## 1588 http://us.imdb.com/M/title-exact?Salut%20cousin!%20(1996)
## 1589 http://us.imdb.com/Title?Schizopolis+(1996)
## 1590 http://us.imdb.com/M/title-exact?En%20avoir%20%28ou%20pas%29%20%281995%29
## 1591 http://us.imdb.com/M/title-exact?imdb-title-112913
## 1592 http://us.imdb.com/M/title-exact?imdb-title-119594
## 1593 http://us.imdb.com/M/title-exact?Death%20in%20Brunswick%20(1991)
## 1594 http://us.imdb.com/Title?Everest+(1998)
## 1595 http://us.imdb.com/M/title-exact?Shopping%20(1994)
## 1596 http://us.imdb.com/M/title-exact?Nemesis%202:%20Nebula%20(1995)
## 1597 http://us.imdb.com/M/title-exact?Romper%20Stomper%20(1992)
## 1598 http://us.imdb.com/M/title-exact?City%20of%20Industry%20(1997)
## 1599 http://us.imdb.com/M/title-exact?Someone%20Else's%20America%20(1995)
## 1600 http://us.imdb.com/M/title-exact?Guantanamera%20(1994)
## 1601 http://us.imdb.com/M/title-exact?imdb-title-119819
## 1602 http://us.imdb.com/Title?Price+Above+Rubies,+A+(1998)
## 1603 http://us.imdb.com/M/title-exact?Angela%20(1995)
## 1604 http://us.imdb.com/M/title-exact?He%20Walked%20by%20Night%20(1948)
## 1605 http://us.imdb.com/M/title-exact?Love+Serenade+(1996)
## 1608 http://us.imdb.com/M/title-exact?Buddy%20%281997%29
## 1609 http://us.imdb.com/M/title-exact?B%2EA%2EP%2ES%2E%20(1997)
## 1610 http://us.imdb.com/Title?Truth+or+Consequences,+N.M.+(1997)
## 1611 http://us.imdb.com/M/title-exact?Intimate%20Relations%20%281996%29
## 1612 http://us.imdb.com/M/title-exact?imdb-title-116845
## 1613 http://us.imdb.com/M/title-exact?Tokyo+Fist+(1995)
## 1614 http://us.imdb.com/M/title-exact?Reluctant%20Debutante,%20The%20(1958)
## 1615 http://us.imdb.com/M/title-exact?Warriors%20of%20Virtue%20%281997%29
## 1616 http://us.imdb.com/M/title-exact?Desert%20Winds%20(1995)
## 1618 http://us.imdb.com/Title?King+of+New+York+(1990)
## 1619 http://us.imdb.com/Title?Lust+och+f%E4gring+stor+(1995)
## 1620 http://us.imdb.com/M/title-exact?Sixth%20Man%2C%20The%20(1997)
## 1621 http://us.imdb.com/M/title-exact?Butterfly%20Kiss%20(1995)
## 1622 http://us.imdb.com/M/title-exact?Paris,%20France%20(1993)
## 1623 http://us.imdb.com/M/title-exact?C%E9r%E9monie%2C%20La%20%281995%29
## 1624 http://us.imdb.com/Title?Hush+(1998)
## 1626 http://us.imdb.com/M/title-exact?Keiner%20liebt%20mich%20(1994)
## 1627 http://us.imdb.com/Title?Wife,+The+(1995)
## 1628 http://us.imdb.com/M/title-exact?Lamerica%20(1994)
## 1629 http://us.imdb.com/M/title-exact?Nico%20Icon%20(1995)
## 1630 http://us.imdb.com/M/title-exact?Saimt%20el%20Qusur%20(1994)
## 1631 http://us.imdb.com/Title?K%E5disbellan+(1993)
## 1632 http://us.imdb.com/M/title-exact?Tierra%20y%20libertad%20(1995)
## 1633 http://us.imdb.com/Title?%C1+k%F6ldum+klaka+(1994)
## 1634 http://us.imdb.com/M/title-exact?Etz%20Hadomim%20Tafus%20(1994)
## 1635 http://us.imdb.com/M/title-exact?Two%20Friends%20(1986)%20(TV)
## 1636 http://us.imdb.com/M/title-exact?Brothers%20in%20Trouble%20(1995)
## 1637 http://us.imdb.com/M/title-exact?Girls%20Town%20(1996)
## 1638 http://us.imdb.com/M/title-exact?Normal%20Life%20(1996)
## 1639 http://us.imdb.com/M/title-exact?Bitter%20Sugar%20(1996)
## 1640 http://us.imdb.com/Title?Huiti%E8me+jour,+Le+(1996)
## 1641 http://us.imdb.com/M/title-exact?Dadetown%20(1995)
## 1642 http://us.imdb.com/M/title-exact?Some%20Mother's%20Son%20(1996)
## 1643 http://us.imdb.com/Title?Angel+Baby+(1995/I)
## 1644 http://us.imdb.com/M/title-exact?Sudden%20Manhattan%20%281996%29
## 1645 http://us.imdb.com/M/title-exact?imdb-title-118804
## 1646 http://us.imdb.com/Title?Men+with+Guns+(1997/I)
## 1647 http://us.imdb.com/Title?Hana-bi+(1997)
## 1648 http://us.imdb.com/Title?Niagara,+Niagara+(1997)
## 1649 http://us.imdb.com/Title?Big+One,+The+(1997)
## 1651 http://us.imdb.com/Title?Spanish+Prisoner,+The+(1997)
## 1652 http://us.imdb.com/M/title-exact?Feng%20Yue%20%281996%29
## 1653 http://us.imdb.com/M/title-exact?Entertaining%20Angels:%20The%20Dorothy%20Day%20Story%20(1996)
## 1655 http://us.imdb.com/M/title-exact?Favor,%20The%20(1994)
## 1656 http://us.imdb.com/M/title-exact?Little+City+(1998)
## 1657 http://us.imdb.com/M/title-exact?Target%20(1995)
## 1659 http://us.imdb.com/Title?Getting+Away+With+Murder+(1996)
## 1660 http://us.imdb.com/M/title-exact?Small%20Faces%20(1995)
## 1661 http://us.imdb.com/M/title-exact?New%20Age,%20The%20(1994)
## 1662 http://us.imdb.com/M/title-exact?Rough%20Magic%20%281995%29
## 1663 http://us.imdb.com/M/title-exact?Nothing%20Personal%20(1995)
## 1664 http://us.imdb.com/Title?8+Heads+in+a+Duffel+Bag+(1997)
## 1665 http://us.imdb.com/M/title-exact?Brother%27s%20Kiss%2C%20A%20%281997%29
## 1666 http://us.imdb.com/M/title-exact?Ripe%20%281996%29
## 1667 http://us.imdb.com/M/title-exact?Next%20Step%2C%20The%20%281995%29
## 1668 http://us.imdb.com/M/title-exact?Wedding%20Bell%20Blues%20%281996%29
## 1669 http://us.imdb.com/M/title-exact?MURDER+and+murder+(1996)
## 1670 http://us.imdb.com/M/title-exact?Tainted+(1998)
## 1671 http://us.imdb.com/M/title-exact?Further+Gesture%2C+A+(1996)
## 1672 http://us.imdb.com/M/title-exact?Kika%20(1993)
## 1673 http://us.imdb.com/M/title-exact?Mirage%20(1995)
## 1674 http://us.imdb.com/M/title-exact?Mamma%20Roma%20(1962)
## 1675 http://us.imdb.com/M/title-exact?Sunchaser,%20The%20(1996)
## 1676 http://us.imdb.com/M/title-exact?War%20at%20Home%2C%20The%20%281996%29
## 1677 http://us.imdb.com/M/title-exact?Sweet%20Nothing%20(1995)
## 1678 http://us.imdb.com/M/title-exact?Mat%27+i+syn+(1997)
## 1679 http://us.imdb.com/M/title-exact?B%2E+Monkey+(1998)
## 1681 http://us.imdb.com/M/title-exact?You%20So%20Crazy%20(1994)
## 1682 http://us.imdb.com/M/title-exact?Schrei%20aus%20Stein%20(1991)
## unknown Action Adventure Animation Children's Comedy Crime Documentary
## 1 0 0 0 1 1 1 0 0
## 2 0 1 1 0 0 0 0 0
## 3 0 0 0 0 0 0 0 0
## 4 0 1 0 0 0 1 0 0
## 5 0 0 0 0 0 0 1 0
## 6 0 0 0 0 0 0 0 0
## 7 0 0 0 0 0 0 0 0
## 8 0 0 0 0 1 1 0 0
## 9 0 0 0 0 0 0 0 0
## 10 0 0 0 0 0 0 0 0
## 11 0 0 0 0 0 0 1 0
## 12 0 0 0 0 0 0 1 0
## 13 0 0 0 0 0 1 0 0
## 14 0 0 0 0 0 0 0 0
## 15 0 0 0 0 0 0 0 0
## 16 0 0 0 0 0 1 0 0
## 17 0 1 0 0 0 1 1 0
## 18 0 0 0 0 0 0 0 0
## 19 0 0 0 0 0 0 0 0
## 20 0 0 0 0 0 0 0 0
## 21 0 1 1 0 0 1 0 0
## 22 0 1 0 0 0 0 0 0
## 23 0 0 0 0 0 0 0 0
## 24 0 1 1 0 0 0 1 0
## 25 0 0 0 0 0 1 0 0
## 26 0 0 0 0 0 1 0 0
## 27 0 1 0 0 0 0 0 0
## 28 0 1 0 0 0 0 0 0
## 29 0 1 1 0 0 1 1 0
## 30 0 0 0 0 0 0 0 0
## 31 0 0 0 0 0 0 0 0
## 32 0 0 0 0 0 0 0 1
## 33 0 1 0 0 0 0 0 0
## 34 0 0 0 0 0 1 0 0
## 35 0 0 1 0 1 0 0 0
## 36 0 0 0 0 0 0 0 0
## 37 0 0 0 0 0 0 0 0
## 38 0 0 0 0 0 0 0 0
## 39 0 1 0 0 0 0 1 0
## 40 0 0 0 0 0 1 0 0
## 41 0 0 0 0 0 1 0 0
## 42 0 0 0 0 0 1 0 0
## 43 0 0 0 0 0 0 0 0
## 44 0 0 0 0 0 0 0 0
## 45 0 0 0 0 0 1 0 0
## 46 0 0 0 0 0 0 0 0
## 47 0 0 0 0 0 1 0 0
## 48 0 0 0 0 0 0 0 1
## 49 0 0 0 0 0 1 0 0
## 50 0 1 1 0 0 0 0 0
## 51 0 0 0 0 0 0 0 0
## 52 0 0 0 0 0 0 0 0
## 53 0 1 0 0 0 0 0 0
## 54 0 1 0 0 0 0 0 0
## 55 0 0 0 0 0 0 1 0
## 56 0 0 0 0 0 0 1 0
## 57 0 0 0 0 0 0 0 0
## 58 0 0 0 0 0 0 0 0
## 59 0 0 0 0 0 0 0 0
## 60 0 0 0 0 0 0 0 0
## 61 0 0 0 0 0 0 0 0
## 62 0 1 1 0 0 0 0 0
## 63 0 0 0 0 1 1 0 0
## 64 0 0 0 0 0 0 0 0
## 65 0 0 0 0 0 1 0 0
## 66 0 0 0 0 0 1 0 0
## 67 0 0 0 0 0 1 0 0
## 68 0 1 0 0 0 0 0 0
## 69 0 0 0 0 0 1 0 0
## 70 0 0 0 0 0 1 0 0
## 71 0 0 0 1 1 0 0 0
## 72 0 0 0 0 0 1 1 0
## 73 0 1 0 0 0 1 0 0
## 74 0 1 0 0 0 1 0 0
## 75 0 0 0 0 0 0 0 1
## 76 0 0 0 0 0 0 1 0
## 77 0 0 0 0 0 0 0 0
## 78 0 0 1 0 1 0 0 0
## 79 0 1 0 0 0 0 0 0
## 80 0 1 0 0 0 1 0 0
## 81 0 0 0 0 0 1 0 0
## 82 0 1 1 0 0 0 0 0
## 83 0 0 0 0 0 1 0 0
## 84 0 0 0 0 0 0 0 0
## 85 0 0 0 0 0 1 0 0
## 86 0 0 0 0 0 0 0 0
## 87 0 0 0 0 0 0 0 0
## 88 0 0 0 0 0 1 0 0
## 89 0 0 0 0 0 0 0 0
## 90 0 0 0 0 0 1 0 0
## 91 0 0 0 0 1 1 0 0
## 92 0 1 0 0 0 0 1 0
## 93 0 0 0 0 0 1 0 0
## 94 0 0 0 0 1 1 0 0
## 95 0 0 0 1 1 1 0 0
## 96 0 1 0 0 0 0 0 0
## 97 0 0 1 0 0 0 0 0
## 98 0 0 0 0 0 0 0 0
## 99 0 0 0 1 1 0 0 0
## 100 0 0 0 0 0 0 1 0
## 101 0 1 1 1 0 0 0 0
## 102 0 0 0 1 1 0 0 0
## 103 0 0 0 1 1 0 0 0
## 104 0 0 0 0 0 1 0 0
## 105 0 0 0 0 0 1 0 0
## 106 0 0 0 0 0 0 0 0
## 107 0 0 0 0 0 0 0 0
## 108 0 0 0 0 0 1 0 0
## 109 0 0 0 0 0 1 0 0
## 110 0 1 1 0 0 1 0 0
## 111 0 0 0 0 0 1 0 0
## 112 0 0 1 0 1 0 0 0
## 113 0 0 0 0 0 0 0 0
## 114 0 0 0 1 0 0 0 0
## 115 0 0 0 0 0 0 0 1
## 116 0 0 0 0 0 1 0 0
## 117 0 1 1 0 0 0 0 0
## 118 0 1 1 0 0 0 0 0
## 119 0 0 0 0 0 0 0 1
## 120 0 0 0 0 0 1 1 0
## 121 0 1 0 0 0 0 0 0
## 122 0 0 0 0 0 1 0 0
## 123 0 0 0 0 0 1 0 0
## 124 0 0 0 0 0 0 0 0
## 125 0 0 0 0 0 0 0 0
## 126 0 0 0 0 0 0 0 0
## 127 0 1 0 0 0 0 1 0
## 128 0 1 0 0 0 0 0 0
## 129 0 0 0 0 0 0 1 0
## 130 0 0 0 0 0 0 1 0
## 131 0 0 0 0 0 0 0 0
## 132 0 0 1 0 1 0 0 0
## 133 0 0 0 0 0 0 0 0
## 134 0 0 0 0 0 0 0 0
## 135 0 0 0 0 0 0 0 0
## 136 0 0 0 0 0 0 0 0
## 137 0 0 0 0 0 0 0 0
## 138 0 0 0 0 1 1 0 0
## 139 0 0 0 0 1 1 0 0
## 140 0 0 1 0 1 0 0 0
## 141 0 0 1 0 1 0 0 0
## 142 0 0 1 0 1 0 0 0
## 143 0 0 0 0 0 0 0 0
## 144 0 1 0 0 0 0 0 0
## 145 0 1 0 0 0 0 0 0
## 146 0 0 0 0 0 0 0 0
## 147 0 1 0 0 0 0 0 0
## 148 0 1 1 0 0 0 0 0
## 149 0 0 0 0 0 0 0 0
## 150 0 0 0 0 0 1 0 0
## 151 0 0 1 0 1 1 0 0
## 152 0 0 0 0 0 1 0 0
## 153 0 0 0 0 0 1 0 0
## 154 0 0 0 0 0 1 0 0
## 155 0 0 0 0 0 0 0 0
## 156 0 0 0 0 0 0 1 0
## 157 0 0 0 0 0 0 0 0
## 158 0 0 0 0 0 1 0 0
## 159 0 0 0 0 0 0 0 0
## 160 0 0 0 0 0 0 0 0
## 161 0 1 0 0 0 0 0 0
## 162 0 0 0 0 0 0 0 0
## 163 0 0 0 0 0 1 0 0
## 164 0 1 1 0 0 0 0 0
## 165 0 0 0 0 0 0 0 0
## 166 0 0 0 0 0 0 0 0
## 167 0 0 0 0 0 1 0 0
## 168 0 0 0 0 0 1 0 0
## 169 0 0 0 1 0 1 0 0
## 170 0 0 0 0 0 1 0 0
## 171 0 0 0 0 0 1 0 0
## 172 0 1 1 0 0 0 0 0
## 173 0 1 1 0 0 1 0 0
## 174 0 1 1 0 0 0 0 0
## 175 0 0 0 0 0 0 0 0
## 176 0 1 0 0 0 0 0 0
## 177 0 1 0 0 0 0 0 0
## 178 0 0 0 0 0 0 0 0
## 179 0 0 0 0 0 0 0 0
## 180 0 0 0 0 0 0 0 0
## 181 0 1 1 0 0 0 0 0
## 182 0 0 0 0 0 0 1 0
## 183 0 1 0 0 0 0 0 0
## 184 0 1 1 0 0 1 0 0
## 185 0 0 0 0 0 0 0 0
## 186 0 1 0 0 0 1 0 0
## 187 0 1 0 0 0 0 1 0
## 188 0 1 0 0 0 0 0 0
## 189 0 0 0 1 0 1 0 0
## 190 0 0 0 0 0 0 0 0
## 191 0 0 0 0 0 0 0 0
## 192 0 0 0 0 0 0 0 0
## 193 0 0 0 0 0 0 0 0
## 194 0 0 0 0 0 1 1 0
## 195 0 1 0 0 0 0 0 0
## 196 0 0 0 0 0 0 0 0
## 197 0 0 0 0 0 0 0 0
## 198 0 0 0 0 0 0 0 0
## 199 0 0 0 0 0 0 0 0
## 200 0 0 0 0 0 0 0 0
## 201 0 1 1 0 0 1 0 0
## 202 0 0 0 0 0 1 0 0
## 203 0 0 0 0 0 0 0 0
## 204 0 0 0 0 0 1 0 0
## 205 0 0 0 0 0 0 0 0
## 206 0 0 1 1 0 0 0 0
## 207 0 1 0 0 0 0 0 0
## 208 0 0 0 0 0 1 0 0
## 209 0 0 0 0 0 1 0 0
## 210 0 1 1 0 0 0 0 0
## 211 0 0 0 0 0 1 0 0
## 212 0 0 0 0 0 0 0 0
## 213 0 0 0 0 0 0 0 0
## 214 0 0 0 0 0 0 0 0
## 215 0 0 0 0 0 0 0 0
## 216 0 0 0 0 0 1 0 0
## 217 0 0 0 0 0 0 0 0
## 218 0 0 0 0 0 0 0 0
## 219 0 0 0 0 0 0 0 0
## 220 0 0 0 0 0 1 0 0
## 221 0 0 0 0 0 0 0 0
## 222 0 1 1 0 0 0 0 0
## 223 0 0 0 0 0 0 0 0
## 224 0 0 0 0 0 0 0 0
## 225 0 0 0 0 1 1 0 0
## 226 0 1 0 0 0 0 0 0
## 227 0 1 1 0 0 0 0 0
## 228 0 1 1 0 0 0 0 0
## 229 0 1 1 0 0 0 0 0
## 230 0 1 1 0 0 0 0 0
## 231 0 1 1 0 0 1 1 0
## 232 0 1 0 0 0 1 0 0
## 233 0 1 0 0 0 0 0 0
## 234 0 1 0 0 0 0 0 0
## 235 0 1 0 0 0 1 0 0
## 236 0 0 0 0 0 1 0 0
## 237 0 0 0 0 0 0 0 0
## 238 0 0 0 0 0 1 0 0
## 239 0 0 0 0 0 0 1 0
## 240 0 0 0 1 0 1 0 0
## 241 0 1 0 0 0 0 0 0
## 242 0 0 0 0 0 1 0 0
## 243 0 0 0 0 1 1 0 0
## 244 0 1 0 0 0 0 0 0
## 245 0 1 0 0 0 0 0 0
## 246 0 0 0 0 0 0 0 0
## 247 0 1 1 0 1 0 0 0
## 248 0 0 0 0 0 1 1 0
## 249 0 0 0 0 0 1 0 0
## 250 0 1 0 0 0 0 0 0
## 251 0 0 0 0 0 1 0 0
## 252 0 1 1 0 0 0 0 0
## 253 0 0 0 0 0 0 0 0
## 254 0 1 1 0 0 0 1 0
## 255 0 0 0 0 0 1 0 0
## 256 0 0 0 0 0 1 0 0
## 257 0 1 1 0 0 1 0 0
## 258 0 0 0 0 0 0 0 0
## 259 0 0 0 0 1 1 0 0
## 260 0 1 0 0 0 0 0 0
## 261 0 0 0 0 1 1 0 0
## 262 0 0 0 0 0 0 0 0
## 263 0 1 0 0 0 0 0 0
## 264 0 0 0 0 0 0 0 0
## 265 0 1 0 0 0 0 0 0
## 266 0 1 1 0 0 0 0 0
## 267 1 0 0 0 0 0 0 0
## 269 0 0 0 0 0 1 0 0
## 270 0 0 0 0 0 0 0 0
## 271 0 1 1 0 0 0 0 0
## 272 0 0 0 0 0 0 0 0
## 273 0 1 0 0 0 0 1 0
## 274 0 0 0 0 0 1 0 0
## 275 0 0 0 0 0 0 0 0
## 276 0 0 0 0 0 0 0 0
## 277 0 0 0 0 0 0 0 0
## 278 0 0 0 0 0 0 0 0
## 279 0 0 0 0 0 0 0 0
## 280 0 0 0 0 0 0 0 0
## 281 0 1 0 0 0 0 0 0
## 282 0 0 0 0 0 0 0 0
## 283 0 0 0 0 0 0 0 0
## 284 0 0 0 0 0 1 0 0
## 285 0 0 0 0 0 0 0 0
## 286 0 0 0 0 0 0 0 0
## 287 0 0 0 0 0 0 0 0
## 288 0 0 0 0 0 0 0 0
## 289 0 0 0 0 0 0 0 0
## 290 0 0 0 0 0 1 0 0
## 291 0 0 0 0 0 0 0 0
## 292 0 0 0 0 0 0 0 0
## 293 0 0 0 0 0 0 1 0
## 294 0 0 0 0 0 1 0 0
## 295 0 1 0 0 0 0 0 0
## 296 0 0 0 0 0 0 0 0
## 297 0 0 0 0 0 0 0 0
## 298 0 1 0 0 0 0 0 0
## 299 0 0 0 0 0 0 1 0
## 300 0 1 0 0 0 0 0 0
## 301 0 0 0 0 0 1 0 0
## 302 0 0 0 0 0 0 1 0
## 304 0 0 1 0 1 0 0 0
## 305 0 0 0 0 0 0 0 0
## 306 0 0 0 0 0 0 0 0
## 307 0 0 0 0 0 0 1 0
## 308 0 0 0 0 1 0 0 0
## 309 0 0 0 0 0 0 1 0
## 310 0 0 0 0 0 0 0 0
## 311 0 0 0 0 0 0 0 0
## 312 0 0 0 0 0 1 1 0
## 313 0 1 0 0 0 0 0 0
## 314 0 1 0 0 1 0 0 0
## 315 0 0 0 0 0 0 0 0
## 316 0 0 0 0 0 1 0 0
## 317 0 0 0 0 0 0 0 0
## 318 0 0 0 0 0 0 0 0
## 319 0 0 0 0 0 1 0 0
## 320 0 0 0 0 0 0 0 1
## 321 0 0 0 0 0 1 0 0
## 322 0 0 0 0 0 0 0 0
## 323 0 1 0 0 0 0 0 0
## 324 0 0 0 0 0 0 0 0
## 325 0 0 0 0 0 0 0 0
## 326 0 1 0 0 0 0 0 0
## 327 0 0 0 0 0 0 1 0
## 328 0 1 0 0 0 0 0 0
## 329 0 0 0 0 0 0 1 0
## 330 0 0 0 0 0 0 0 0
## 331 0 0 1 0 0 0 0 0
## 332 0 0 0 0 0 0 1 0
## 333 0 0 0 0 0 0 0 0
## 334 0 1 0 0 0 0 1 0
## 335 0 0 0 0 0 1 0 0
## 336 0 0 0 0 0 0 1 0
## 337 0 0 0 0 0 1 0 0
## 338 0 0 0 0 0 1 0 0
## 339 0 1 0 0 0 0 0 0
## 340 0 0 0 0 0 0 0 0
## 341 0 0 0 0 0 1 0 0
## 342 0 0 0 0 0 1 0 0
## 343 0 1 0 0 0 0 0 0
## 344 0 0 0 0 0 0 0 0
## 345 0 0 0 0 0 1 0 0
## 346 0 0 0 0 0 0 1 0
## 347 0 0 0 0 0 1 0 0
## 349 0 1 0 0 0 0 0 0
## 350 0 1 0 0 0 0 0 0
## 351 0 0 0 0 0 0 0 0
## 352 0 0 0 0 0 1 0 0
## 353 0 1 0 0 0 0 0 0
## 354 0 0 0 0 0 1 0 0
## 355 0 0 1 0 0 0 0 0
## 356 0 0 0 0 0 0 0 0
## 357 0 0 0 0 0 0 0 0
## 358 0 1 1 0 0 0 0 0
## 359 0 0 0 0 0 0 0 0
## 360 0 0 0 0 0 0 0 1
## 361 0 0 0 0 0 0 1 0
## 362 0 1 0 0 0 1 0 0
## 363 0 1 0 0 0 0 0 0
## 364 0 0 0 0 0 1 0 0
## 365 0 0 0 0 0 0 0 0
## 366 0 0 0 0 0 0 0 0
## 367 0 0 0 0 0 1 0 0
## 368 0 0 0 0 0 1 0 0
## 369 0 0 0 0 0 1 0 0
## 370 0 0 0 0 0 0 0 0
## 371 0 0 0 0 0 0 0 0
## 372 0 0 0 0 0 1 0 0
## 373 0 1 1 0 0 0 0 0
## 374 0 1 0 0 1 0 0 0
## 375 0 0 0 0 0 0 0 0
## 376 0 0 0 0 0 1 0 0
## 377 0 0 0 0 1 1 0 0
## 378 0 0 0 0 0 0 0 0
## 379 0 0 0 0 0 0 0 0
## 380 0 1 1 0 0 0 0 0
## 381 0 0 0 0 0 1 0 0
## 382 0 0 0 0 0 1 0 0
## 383 0 0 0 0 1 1 0 0
## 384 0 0 0 0 0 1 0 0
## 385 0 1 1 0 0 1 0 0
## 386 0 0 0 0 0 1 0 0
## 387 0 0 0 0 0 0 0 0
## 388 0 1 0 0 0 1 0 0
## 389 0 0 1 0 1 0 0 0
## 390 0 0 0 0 0 1 0 0
## 391 0 1 0 0 0 1 0 0
## 392 0 0 0 0 0 0 0 0
## 393 0 0 0 0 0 1 0 0
## 394 0 0 0 0 0 1 0 0
## 395 0 0 0 0 0 1 0 0
## 396 0 0 0 0 0 1 1 0
## 397 0 1 0 0 0 0 0 0
## 398 0 1 1 0 1 0 0 0
## 399 0 1 1 0 0 1 0 0
## 400 0 0 0 0 1 1 0 0
## 401 0 0 0 0 0 1 0 0
## 402 0 0 0 0 0 1 0 0
## 403 0 1 1 0 0 0 1 0
## 404 0 0 0 1 1 0 0 0
## 405 0 1 1 0 0 0 0 0
## 406 0 0 0 0 0 0 0 0
## 407 0 0 0 0 0 1 0 0
## 408 0 0 0 1 0 1 0 0
## 409 0 0 0 0 0 1 0 0
## 410 0 0 0 0 0 1 0 0
## 411 0 0 0 0 0 1 0 0
## 412 0 0 0 0 0 1 0 0
## 413 0 0 0 0 0 0 0 0
## 414 0 0 0 0 0 1 0 0
## 415 0 0 0 0 1 1 0 0
## 416 0 0 0 0 1 0 0 0
## 417 0 0 0 0 1 0 0 0
## 418 0 0 0 1 1 0 0 0
## 419 0 0 0 0 1 1 0 0
## 420 0 0 0 1 1 0 0 0
## 421 0 0 0 0 0 0 0 0
## 422 0 0 0 1 1 1 0 0
## 423 0 0 0 0 1 0 0 0
## 424 0 0 0 0 0 0 0 0
## 425 0 0 0 0 0 1 0 0
## 426 0 1 0 1 1 0 0 0
## 427 0 0 0 0 0 0 0 0
## 428 0 0 0 0 0 1 0 0
## 429 0 0 0 0 0 0 0 0
## 430 0 0 0 0 0 1 0 0
## 431 0 1 1 0 0 0 0 0
## 432 0 0 0 1 1 0 0 0
## 433 0 0 0 0 0 1 0 0
## 434 0 0 0 0 0 0 0 0
## 435 0 1 0 0 0 1 0 0
## 436 0 0 0 0 0 0 0 0
## 437 0 0 0 0 0 0 0 0
## 438 0 0 0 0 0 0 0 0
## 439 0 0 0 0 0 0 0 0
## 440 0 0 0 0 0 0 0 0
## 441 0 0 0 0 0 0 0 0
## 442 0 0 0 0 0 0 0 0
## 443 0 0 0 0 0 0 0 0
## 444 0 0 0 0 0 0 0 0
## 445 0 0 0 0 0 0 0 0
## 446 0 0 0 0 0 0 0 0
## 447 0 0 0 0 0 0 0 0
## 448 0 0 0 0 0 0 0 0
## 449 0 1 1 0 0 0 0 0
## 450 0 1 1 0 0 0 0 0
## 451 0 0 0 0 0 1 0 0
## 452 0 1 0 0 0 0 0 0
## 453 0 1 0 0 0 0 0 0
## 454 0 0 0 0 0 0 0 0
## 455 0 1 0 0 0 0 0 0
## 456 0 1 0 0 0 1 0 0
## 457 0 0 1 0 1 0 0 0
## 458 0 0 0 0 0 0 0 0
## 459 0 0 0 0 0 0 0 0
## 460 0 0 0 0 0 0 0 0
## 461 0 0 0 0 0 0 0 0
## 462 0 0 0 0 0 0 0 0
## 463 0 0 1 0 0 0 0 0
## 464 0 0 0 0 0 0 0 0
## 465 0 0 1 0 1 0 0 0
## 466 0 0 0 0 0 0 0 0
## 467 0 0 0 0 0 0 0 0
## 468 0 0 0 0 0 0 0 0
## 469 0 0 0 0 0 0 0 0
## 470 0 0 0 0 0 0 0 0
## 471 0 0 0 0 0 0 0 0
## 472 0 1 1 0 0 0 0 0
## 473 0 0 0 1 1 0 0 0
## 474 0 0 0 0 0 0 0 0
## 475 0 0 0 0 0 0 0 0
## 476 0 0 0 0 0 1 0 0
## 477 0 0 0 0 1 1 0 0
## 478 0 0 0 0 0 1 0 0
## 479 0 0 0 0 0 0 0 0
## 480 0 0 0 0 0 1 0 0
## 481 0 0 0 0 0 1 0 0
## 482 0 0 0 0 0 1 1 0
## 483 0 0 0 0 0 0 0 0
## 484 0 0 0 0 0 0 0 0
## 485 0 0 0 0 0 0 0 0
## 486 0 0 0 0 0 1 0 0
## 487 0 0 0 0 0 1 0 0
## 488 0 0 0 0 0 0 0 0
## 489 0 0 0 0 0 0 0 0
## 490 0 0 0 0 0 1 0 0
## 491 0 1 1 0 0 0 0 0
## 492 0 0 0 0 0 0 0 0
## 493 0 0 0 0 0 0 0 0
## 494 0 0 0 0 0 1 0 0
## 495 0 0 1 0 0 1 0 0
## 496 0 0 0 0 0 0 0 0
## 497 0 0 0 0 0 1 0 0
## 498 0 1 1 0 0 0 0 0
## 499 0 0 0 0 0 0 0 0
## 501 0 0 0 1 1 0 0 0
## 502 0 0 0 0 0 1 0 0
## 503 0 0 0 0 0 0 0 0
## 504 0 0 0 0 0 0 1 0
## 505 0 0 0 0 0 0 0 0
## 506 0 0 0 0 0 0 0 0
## 507 0 0 0 0 0 0 0 0
## 508 0 0 0 0 0 0 0 0
## 509 0 0 0 0 0 0 0 0
## 510 0 1 0 0 0 0 0 0
## 511 0 0 1 0 0 0 0 0
## 512 0 0 0 0 0 1 0 0
## 513 0 0 0 0 0 0 0 0
## 514 0 0 0 0 0 1 0 0
## 515 0 1 0 0 0 0 0 0
## 516 0 0 0 0 0 1 0 0
## 517 0 0 0 0 0 1 0 0
## 518 0 0 0 0 0 0 0 0
## 519 0 0 1 0 0 0 0 0
## 520 0 0 1 0 0 0 0 0
## 521 0 0 0 0 0 0 0 0
## 522 0 0 0 0 0 1 0 0
## 523 0 0 0 0 0 1 0 0
## 524 0 0 0 0 0 1 0 0
## 525 0 0 0 0 0 0 0 0
## 526 0 1 1 0 0 0 0 0
## 527 0 0 0 0 0 0 0 0
## 528 0 0 0 0 0 0 0 0
## 529 0 0 0 0 0 0 0 0
## 530 0 0 1 0 0 0 0 0
## 531 0 0 0 0 0 0 0 0
## 532 0 0 0 0 0 0 0 0
## 533 0 0 0 0 0 0 0 0
## 534 0 0 0 0 0 0 0 0
## 535 0 0 0 0 0 1 0 0
## 536 0 0 0 0 0 0 0 0
## 537 0 0 0 0 0 0 0 0
## 538 0 0 0 1 1 0 0 0
## 539 0 0 0 0 1 1 0 0
## 540 0 1 0 0 0 0 0 0
## 541 0 1 1 0 0 0 0 0
## 542 0 0 0 1 1 0 0 0
## 543 0 0 0 0 0 0 0 0
## 544 0 0 0 0 0 0 1 0
## 545 0 0 0 0 0 1 0 0
## 546 0 1 0 0 0 0 0 0
## 547 0 0 0 0 0 0 1 0
## 548 0 0 0 0 1 0 0 0
## 549 0 0 0 0 0 0 0 0
## 550 0 1 0 0 0 0 0 0
## 551 0 0 0 0 0 0 0 0
## 552 0 0 0 0 0 0 0 0
## 553 0 0 0 0 0 0 0 0
## 554 0 1 1 0 0 0 0 0
## 555 0 0 0 0 0 0 0 0
## 556 0 0 0 0 0 0 0 0
## 557 0 0 0 0 0 0 0 0
## 558 0 0 0 0 0 0 0 0
## 559 0 0 0 0 0 0 0 0
## 560 0 0 1 0 1 1 0 0
## 561 0 0 0 0 0 0 0 0
## 562 0 1 1 0 0 0 0 0
## 563 0 0 0 0 0 0 0 0
## 564 0 0 0 0 0 1 0 0
## 565 0 0 0 0 0 0 0 0
## 566 0 1 1 0 0 0 0 0
## 567 0 0 0 0 0 0 0 0
## 568 0 1 0 0 0 0 0 0
## 569 0 0 0 0 0 0 0 0
## 570 0 0 0 0 0 0 0 0
## 571 0 0 0 0 0 1 0 0
## 572 0 1 0 0 0 0 0 0
## 573 0 0 0 0 0 0 0 0
## 574 0 0 0 0 0 0 0 0
## 575 0 0 0 0 0 1 0 0
## 576 0 1 1 0 0 0 1 0
## 577 0 0 0 0 0 1 0 0
## 578 0 1 0 0 0 0 0 0
## 579 0 0 0 0 0 1 0 0
## 580 0 0 0 0 0 1 0 0
## 581 0 0 0 0 0 0 0 0
## 582 0 0 0 0 0 0 0 0
## 583 0 0 0 0 0 0 1 0
## 584 0 0 0 0 1 0 0 0
## 585 0 0 0 0 0 1 0 0
## 586 0 1 0 0 0 0 0 0
## 587 0 0 0 0 0 0 0 0
## 588 0 0 0 1 1 0 0 0
## 589 0 0 0 0 0 0 0 0
## 590 0 1 0 0 0 0 0 0
## 591 0 0 0 0 0 0 0 0
## 592 0 0 0 0 0 0 0 0
## 593 0 0 0 0 0 0 0 0
## 594 0 0 0 0 0 0 0 0
## 595 0 0 0 0 0 0 0 0
## 596 0 0 0 1 1 0 0 0
## 597 0 1 0 0 0 0 0 0
## 598 0 0 0 0 0 1 0 0
## 599 0 1 0 0 0 0 0 0
## 600 0 0 0 0 1 0 0 0
## 601 0 0 1 0 0 0 0 0
## 602 0 0 0 0 0 0 0 0
## 603 0 0 0 0 0 0 0 0
## 604 0 0 0 0 0 1 0 0
## 605 0 0 0 0 0 0 0 0
## 606 0 0 0 0 0 0 0 0
## 607 0 0 0 0 0 0 0 0
## 608 0 0 0 0 0 0 0 0
## 609 0 0 0 0 0 1 0 0
## 610 0 0 0 0 0 0 0 0
## 611 0 0 0 0 0 0 1 0
## 612 0 0 0 0 0 0 0 0
## 613 0 0 0 0 0 1 0 0
## 614 0 0 0 0 0 0 0 0
## 615 0 0 0 0 0 0 0 0
## 616 0 0 0 0 0 0 0 0
## 617 0 0 0 0 0 0 0 0
## 618 0 0 0 0 0 0 0 0
## 619 0 0 0 0 0 0 0 0
## 620 0 0 0 0 0 0 0 0
## 621 0 0 0 0 0 0 0 0
## 622 0 0 1 0 1 0 0 0
## 623 0 0 0 0 1 1 0 0
## 624 0 0 0 1 1 0 0 0
## 625 0 0 0 1 1 0 0 0
## 626 0 0 0 0 1 0 0 0
## 627 0 0 0 0 0 0 0 0
## 628 0 0 0 0 0 0 1 0
## 629 0 0 0 0 0 1 0 0
## 630 0 0 0 0 0 1 0 0
## 631 0 1 0 0 0 0 0 0
## 632 0 0 0 0 0 0 0 0
## 633 0 0 0 0 0 0 0 0
## 634 0 0 0 0 0 0 0 1
## 635 0 0 0 0 0 0 0 0
## 636 0 1 1 0 0 0 0 0
## 637 0 0 0 0 0 1 0 0
## 638 0 0 0 0 0 0 0 0
## 639 0 0 0 0 0 0 0 0
## 640 0 0 0 0 0 0 0 0
## 641 0 0 0 0 0 0 0 0
## 642 0 0 0 0 0 0 1 0
## 643 0 0 0 0 0 0 0 0
## 644 0 0 0 0 0 0 0 1
## 645 0 0 0 0 0 0 0 1
## 646 0 0 0 0 0 0 0 0
## 647 0 0 0 0 0 0 0 0
## 648 0 0 0 0 0 1 0 0
## 649 0 0 0 0 0 0 1 0
## 650 0 0 0 0 0 0 0 0
## 651 0 1 0 0 0 0 0 0
## 652 0 0 0 0 0 1 0 0
## 653 0 0 0 0 0 0 1 0
## 654 0 0 0 0 0 0 0 0
## 655 0 0 1 0 0 1 0 0
## 656 0 0 0 0 0 0 1 0
## 657 0 0 0 0 0 0 0 0
## 658 0 0 0 0 0 0 0 0
## 659 0 0 0 0 0 1 0 0
## 660 0 0 0 0 0 0 0 0
## 661 0 0 0 0 0 0 0 0
## 662 0 0 0 0 0 0 0 0
## 663 0 0 0 0 0 1 0 0
## 664 0 0 0 0 0 0 0 0
## 665 0 1 0 0 0 0 0 0
## 666 0 0 0 0 0 0 0 0
## 667 0 0 0 0 0 0 0 0
## 668 0 1 0 0 0 0 0 0
## 669 0 0 0 0 0 0 0 0
## 671 0 0 0 0 0 0 0 0
## 672 0 0 0 0 0 0 0 0
## 673 0 0 0 0 0 0 0 0
## 674 0 0 0 0 0 0 0 0
## 675 0 0 0 0 0 0 0 0
## 676 0 0 0 0 0 0 0 0
## 677 0 0 0 0 0 0 0 1
## 678 0 0 0 0 0 0 0 0
## 679 0 1 1 0 0 0 0 0
## 681 0 0 0 0 0 0 0 0
## 682 0 0 0 0 0 0 0 0
## 683 0 0 0 0 0 1 0 0
## 684 0 1 0 0 0 0 0 0
## 685 0 1 0 0 0 0 0 0
## 686 0 1 0 0 0 0 0 0
## 687 0 0 0 0 0 1 0 0
## 688 0 0 0 0 0 1 0 0
## 689 0 1 0 0 0 0 0 0
## 690 0 0 0 0 0 0 0 0
## 691 0 0 0 0 0 0 0 0
## 692 0 0 0 0 0 1 0 0
## 693 0 0 0 0 0 0 0 0
## 694 0 0 0 0 0 0 0 0
## 695 0 0 0 0 0 1 0 0
## 696 0 0 0 0 0 0 0 0
## 697 0 0 0 0 0 0 0 0
## 698 0 0 0 0 0 0 0 0
## 699 0 0 0 0 0 0 0 0
## 700 0 0 0 0 0 1 0 0
## 701 0 0 0 0 0 0 0 1
## 702 0 0 0 0 0 1 0 0
## 703 0 0 0 0 0 0 0 0
## 704 0 0 0 0 0 0 0 0
## 705 0 0 0 0 0 0 0 0
## 706 0 0 0 0 0 0 0 0
## 707 0 0 0 0 0 0 0 0
## 708 0 0 0 0 0 0 0 0
## 709 0 0 0 0 0 1 0 0
## 710 0 0 0 0 0 1 0 0
## 711 0 0 0 0 0 0 0 0
## 712 0 0 0 0 0 1 0 0
## 713 0 0 0 0 0 0 0 0
## 714 0 0 0 0 0 0 0 0
## 715 0 0 0 0 0 1 0 0
## 716 0 0 0 0 0 0 0 0
## 717 0 0 0 0 0 0 0 0
## 718 0 0 0 0 0 1 0 0
## 719 0 0 0 0 0 1 0 0
## 720 0 1 1 0 0 0 0 0
## 721 0 0 0 0 0 1 0 0
## 722 0 0 0 0 0 1 0 0
## 723 0 0 0 0 0 1 0 0
## 724 0 0 0 0 0 0 0 0
## 725 0 0 0 0 0 1 0 0
## 726 0 0 0 0 1 0 0 0
## 727 0 0 0 0 0 0 0 0
## 728 0 0 0 0 0 1 0 0
## 729 0 0 0 0 0 0 0 0
## 730 0 0 0 0 0 0 0 0
## 731 0 0 0 0 0 1 0 0
## 732 0 0 0 0 0 1 0 0
## 733 0 0 0 0 0 0 0 0
## 734 0 0 0 0 0 1 0 0
## 735 0 0 0 0 0 0 0 0
## 736 0 0 0 0 0 0 0 0
## 737 0 0 0 0 0 1 0 0
## 738 0 0 0 0 0 1 0 0
## 739 0 0 0 0 0 1 0 0
## 740 0 0 0 0 0 0 0 0
## 741 0 0 0 0 0 0 0 0
## 742 0 0 0 0 0 0 0 0
## 743 0 1 0 0 0 0 0 0
## 744 0 0 0 0 0 0 0 0
## 745 0 0 0 0 0 1 0 0
## 746 0 0 0 0 0 1 0 0
## 747 0 0 0 0 0 1 0 0
## 748 0 1 0 0 0 0 0 0
## 749 0 0 0 0 0 1 0 0
## 750 0 0 0 0 0 0 0 0
## 751 0 1 0 0 0 0 0 0
## 752 0 1 0 0 0 0 0 0
## 753 0 0 0 0 0 0 0 0
## 754 0 0 0 0 0 0 1 0
## 755 0 1 1 0 1 0 0 0
## 756 0 0 0 0 0 1 0 0
## 757 0 0 0 0 0 0 0 1
## 758 0 0 0 0 0 0 0 0
## 759 0 1 0 0 0 0 0 0
## 760 0 0 0 0 0 0 0 0
## 761 0 1 0 0 0 0 0 0
## 762 0 0 0 0 0 0 0 0
## 763 0 0 0 0 0 1 0 0
## 764 0 0 0 0 0 1 0 0
## 765 0 0 0 0 0 1 0 0
## 766 0 0 0 0 0 0 0 1
## 767 0 0 0 0 0 0 0 0
## 768 0 0 1 0 1 0 0 0
## 769 0 1 1 0 0 0 0 0
## 770 0 0 0 0 0 0 1 0
## 771 0 1 0 0 0 0 0 0
## 772 0 0 0 0 0 0 0 0
## 773 0 0 0 0 0 0 0 0
## 774 0 0 0 0 0 0 0 0
## 775 0 0 0 0 0 1 0 0
## 776 0 0 0 0 0 0 0 0
## 777 0 0 0 0 0 0 0 0
## 778 0 0 0 0 0 1 0 0
## 779 0 1 0 0 0 0 0 0
## 780 0 0 0 0 0 1 0 0
## 781 0 0 0 0 0 1 0 0
## 782 0 0 0 0 0 0 0 0
## 783 0 0 0 0 0 1 0 0
## 784 0 0 0 0 0 0 0 0
## 785 0 0 0 0 0 1 0 0
## 786 0 0 0 0 0 1 0 0
## 787 0 0 0 0 0 1 0 0
## 788 0 0 0 0 0 0 0 0
## 789 0 0 0 0 0 1 0 0
## 790 0 0 0 0 0 1 0 0
## 791 0 0 0 0 1 0 0 0
## 792 0 0 0 0 0 1 0 0
## 793 0 0 0 0 0 1 0 0
## 794 0 0 0 0 0 0 0 0
## 795 0 0 0 0 1 1 0 0
## 796 0 0 0 0 0 1 0 0
## 797 0 1 0 0 0 0 0 0
## 798 0 1 0 0 0 0 0 0
## 799 0 0 0 0 0 0 0 0
## 800 0 0 0 0 0 0 0 0
## 801 0 0 0 0 0 1 0 0
## 802 0 1 1 0 0 0 1 0
## 803 0 1 0 0 0 0 0 0
## 804 0 0 0 0 0 1 0 0
## 805 0 0 0 0 0 1 0 0
## 806 0 1 0 0 0 0 1 0
## 807 0 0 0 0 0 0 0 0
## 808 0 1 0 0 0 0 0 0
## 809 0 1 0 0 0 0 0 0
## 810 0 1 0 0 0 0 0 0
## 811 0 0 0 0 0 0 0 1
## 812 0 0 1 0 1 0 0 0
## 813 0 0 0 0 0 0 0 1
## 814 0 0 0 0 0 0 0 1
## 815 0 0 0 0 0 0 0 0
## 816 0 0 0 0 0 0 0 0
## 817 0 0 0 0 0 0 0 0
## 818 0 0 0 0 0 1 0 0
## 819 0 0 0 0 0 1 0 0
## 820 0 0 1 1 1 1 0 0
## 821 0 0 0 0 0 1 0 0
## 822 0 0 0 0 0 0 0 0
## 823 0 0 0 0 0 0 1 0
## 824 0 0 0 0 0 1 0 0
## 825 0 1 0 0 0 0 0 0
## 826 0 0 1 0 0 0 0 0
## 827 0 1 1 0 0 0 0 0
## 828 0 0 1 0 1 0 0 0
## 829 0 1 1 0 0 0 0 0
## 830 0 1 0 0 0 0 0 0
## 831 0 1 1 0 0 0 0 0
## 832 0 0 0 0 1 0 0 0
## 833 0 1 0 0 0 0 0 0
## 834 0 0 0 0 0 0 0 0
## 835 0 0 0 0 0 1 0 0
## 836 0 0 0 0 0 1 0 0
## 837 0 0 0 0 0 0 0 0
## 838 0 1 0 0 0 0 0 0
## 839 0 0 0 0 0 0 0 0
## 840 0 1 0 0 0 0 0 0
## 841 0 1 0 0 0 0 0 0
## 842 0 0 0 0 1 1 0 0
## 843 0 0 0 0 1 1 0 0
## 844 0 0 0 0 0 0 1 0
## 845 0 0 0 0 0 1 0 0
## 846 0 0 0 0 0 0 0 0
## 847 0 0 0 0 0 0 0 1
## 848 0 0 0 0 0 0 0 0
## 849 0 1 0 0 0 0 0 0
## 850 0 0 0 0 0 0 0 1
## 851 0 0 0 0 0 0 0 0
## 852 0 0 0 0 0 0 0 0
## 853 0 0 0 0 0 1 0 0
## 854 0 0 0 0 0 1 0 0
## 855 0 1 0 0 0 0 0 0
## 856 0 0 0 0 0 1 0 0
## 857 0 0 0 0 0 0 0 1
## 858 0 0 0 0 0 0 0 0
## 859 0 0 0 0 0 1 0 0
## 860 0 0 0 0 0 0 0 0
## 861 0 0 0 0 0 0 0 0
## 862 0 0 1 0 1 1 0 0
## 863 0 0 0 0 0 0 0 0
## 864 0 0 0 0 0 1 0 0
## 866 0 0 0 0 0 1 0 0
## 867 0 0 0 0 0 0 0 0
## 868 0 0 0 0 0 0 0 0
## 869 0 0 0 0 0 1 0 0
## 870 0 0 0 0 0 0 0 0
## 871 0 0 0 0 0 1 0 0
## 872 0 0 0 0 0 0 0 0
## 873 0 0 0 0 0 1 0 0
## 874 0 0 0 0 0 0 0 0
## 875 0 0 0 0 0 0 0 0
## 876 0 1 0 0 0 1 0 0
## 877 0 0 1 0 0 0 0 0
## 878 0 0 0 0 1 1 0 0
## 879 0 1 0 0 0 0 0 0
## 880 0 0 0 0 0 0 0 0
## 882 0 0 0 0 0 0 0 0
## 883 0 0 0 0 0 0 0 0
## 884 0 0 0 0 0 0 0 1
## 885 0 0 0 0 0 0 0 0
## 886 0 0 0 0 0 0 0 0
## 887 0 0 0 0 0 0 0 0
## 888 0 0 0 0 0 0 0 0
## 889 0 0 0 0 0 0 0 0
## 890 0 1 1 0 0 0 0 0
## 891 0 0 0 0 0 0 0 0
## 892 0 0 0 0 1 1 0 0
## 893 0 0 0 0 0 1 0 0
## 894 0 0 0 0 1 1 0 0
## 895 0 0 0 0 0 0 0 0
## 896 0 0 0 0 0 0 0 0
## 897 0 1 1 0 0 0 0 0
## 898 0 0 0 0 0 0 0 0
## 899 0 0 0 0 0 0 0 0
## 900 0 0 0 0 0 0 0 0
## 901 0 0 0 0 0 1 0 0
## 902 0 0 0 0 0 1 1 0
## 903 0 0 0 0 0 0 0 0
## 904 0 0 0 0 0 1 0 0
## 905 0 0 0 0 0 0 0 0
## 906 0 0 0 0 0 0 0 0
## 907 0 0 0 0 0 1 0 0
## 908 0 0 0 0 0 1 0 0
## 909 0 0 0 0 0 0 0 0
## 910 0 0 0 0 0 0 0 0
## 911 0 0 0 0 0 0 1 0
## 912 0 1 0 0 0 0 0 0
## 913 0 0 0 0 0 1 0 0
## 914 0 0 0 0 0 0 1 0
## 915 0 0 0 0 0 0 0 0
## 916 0 1 0 0 0 0 0 0
## 917 0 1 0 0 0 0 0 0
## 918 0 0 0 0 0 0 0 0
## 919 0 0 1 0 0 0 0 0
## 920 0 0 0 0 0 0 0 0
## 921 0 0 0 0 0 0 0 0
## 922 0 0 0 0 0 0 0 0
## 923 0 0 0 0 0 0 0 0
## 924 0 0 1 0 0 0 0 0
## 925 0 0 0 0 0 0 0 0
## 926 0 0 0 0 0 1 0 0
## 927 0 0 0 0 0 0 0 0
## 928 0 0 0 0 0 0 0 0
## 929 0 0 0 0 1 1 0 0
## 930 0 1 1 0 0 0 0 0
## 931 0 0 0 0 0 0 0 0
## 932 0 0 0 0 1 1 0 0
## 933 0 0 0 0 0 0 0 0
## 934 0 0 0 0 0 0 0 0
## 935 0 0 0 0 0 0 0 0
## 936 0 0 0 0 0 1 0 0
## 937 0 0 0 0 0 0 0 0
## 938 0 0 0 0 0 1 0 0
## 939 0 0 0 0 0 0 0 0
## 940 0 0 0 0 0 1 0 0
## 941 0 0 0 0 0 1 0 0
## 942 0 0 0 0 0 0 0 0
## 943 0 0 0 0 0 0 0 0
## 944 0 0 0 0 0 1 0 0
## 945 0 0 0 0 0 1 0 0
## 946 0 0 0 1 1 0 0 0
## 947 0 0 1 0 0 0 0 0
## 948 0 0 0 0 0 1 0 0
## 949 0 0 0 0 0 0 0 0
## 950 0 0 0 0 0 0 0 0
## 951 0 0 1 0 1 0 0 0
## 952 0 0 0 0 0 1 0 0
## 953 0 0 0 0 0 1 0 0
## 954 0 0 0 0 0 0 0 1
## 955 0 0 0 0 0 0 0 0
## 956 0 0 0 0 0 0 0 0
## 957 0 0 0 0 0 1 0 0
## 958 0 0 0 0 0 0 0 0
## 959 0 0 0 0 0 1 0 0
## 960 0 0 0 0 0 0 0 0
## 961 0 0 0 0 0 0 0 0
## 962 0 0 0 0 0 0 0 0
## 963 0 0 0 0 0 0 0 0
## 964 0 0 0 0 0 1 0 0
## 965 0 0 0 0 0 1 0 0
## 966 0 0 0 0 0 0 0 0
## 967 0 0 0 0 0 0 0 0
## 968 0 0 0 0 0 0 0 0
## 969 0 0 0 1 1 0 0 0
## 970 0 0 0 0 0 1 0 0
## 971 0 0 0 0 0 1 0 0
## 972 0 0 0 0 0 0 0 0
## 973 0 0 0 0 0 0 0 1
## 974 0 0 0 0 0 0 0 0
## 975 0 0 0 0 0 0 0 0
## 976 0 1 0 0 0 0 0 0
## 977 0 1 0 0 0 0 0 0
## 978 0 0 0 0 0 0 0 0
## 979 0 0 0 0 0 0 0 0
## 980 0 0 0 0 0 0 0 0
## 981 0 0 0 0 0 0 0 0
## 982 0 1 1 0 0 0 0 0
## 983 0 0 0 0 0 0 0 0
## 984 0 0 0 0 0 0 0 0
## 985 0 0 0 0 0 0 0 0
## 986 0 0 0 0 0 0 0 0
## 987 0 0 0 0 0 0 0 0
## 988 0 0 0 0 0 1 0 0
## 989 0 0 0 1 1 0 0 0
## 990 0 0 0 0 0 0 0 0
## 991 0 0 0 0 0 0 1 0
## 992 0 0 0 0 0 1 0 0
## 993 0 0 1 1 1 1 0 0
## 994 0 0 0 0 0 0 0 0
## 995 0 0 0 0 0 1 0 0
## 996 0 0 0 0 1 1 0 0
## 997 0 0 0 0 0 1 0 0
## 998 0 0 0 0 0 1 0 0
## 999 0 0 0 0 0 1 0 0
## 1000 0 0 0 0 0 1 0 0
## 1001 0 0 0 0 0 1 0 0
## 1002 0 0 0 0 0 1 0 0
## 1004 0 0 0 0 0 0 0 0
## 1005 0 0 0 0 0 0 0 0
## 1006 0 0 0 0 0 0 0 0
## 1007 0 0 0 0 0 1 0 0
## 1008 0 0 0 0 0 0 0 0
## 1009 0 0 0 0 0 0 0 0
## 1010 0 0 0 0 0 0 0 0
## 1011 0 0 0 0 0 0 1 0
## 1012 0 0 0 0 0 1 0 0
## 1013 0 1 1 0 0 0 0 0
## 1014 0 0 0 0 0 1 0 0
## 1015 0 0 0 0 1 0 0 0
## 1016 0 1 1 0 0 0 0 0
## 1017 0 0 0 0 0 0 0 0
## 1018 0 0 0 0 0 0 0 0
## 1019 0 1 0 0 0 0 0 0
## 1020 0 0 0 0 0 0 0 0
## 1021 0 0 0 0 0 0 0 0
## 1022 0 0 0 0 0 0 0 1
## 1023 0 0 0 0 0 1 0 0
## 1024 0 0 0 0 0 0 0 0
## 1025 0 1 0 0 0 0 0 0
## 1026 0 0 0 0 0 1 0 0
## 1027 0 1 0 0 0 0 0 0
## 1028 0 0 0 0 0 1 0 0
## 1029 0 0 0 0 0 1 0 0
## 1030 0 0 0 0 0 1 0 0
## 1031 0 0 1 0 1 0 0 0
## 1032 0 0 0 0 1 1 0 0
## 1033 0 0 1 0 1 0 0 0
## 1034 0 1 1 0 0 0 0 0
## 1035 0 0 0 0 0 1 0 0
## 1036 0 0 0 0 0 1 0 0
## 1037 0 0 0 0 0 1 0 0
## 1038 0 0 0 0 0 0 0 0
## 1039 0 0 0 0 0 0 0 0
## 1040 0 0 0 0 0 1 0 0
## 1041 0 0 0 0 0 1 0 0
## 1042 0 0 0 0 0 0 0 0
## 1043 0 0 0 0 0 1 0 0
## 1044 0 0 0 0 0 1 0 0
## 1045 0 0 0 0 0 0 0 0
## 1046 0 0 0 0 0 0 0 0
## 1047 0 0 0 0 0 1 0 0
## 1048 0 0 0 0 0 1 0 0
## 1049 0 0 0 0 0 1 0 0
## 1050 0 0 0 0 0 0 0 0
## 1051 0 0 0 0 0 1 0 0
## 1052 0 0 0 0 0 1 0 0
## 1053 0 0 0 0 0 0 0 0
## 1054 0 0 0 0 0 1 0 0
## 1055 0 0 0 0 0 0 0 0
## 1056 0 0 0 0 0 0 0 0
## 1057 0 0 0 0 0 1 0 0
## 1058 0 0 1 0 0 0 0 0
## 1059 0 0 0 0 0 1 0 0
## 1060 0 0 1 0 1 0 0 0
## 1061 0 0 0 0 0 1 0 0
## 1062 0 0 0 0 0 0 0 0
## 1063 0 0 0 0 1 0 0 0
## 1064 0 0 0 0 0 0 1 0
## 1065 0 0 0 0 0 0 0 1
## 1066 0 0 0 1 1 0 0 0
## 1067 0 0 0 0 0 1 0 0
## 1068 0 0 0 0 0 0 0 0
## 1069 0 0 0 0 0 0 1 0
## 1070 0 0 0 0 0 1 0 0
## 1071 0 0 0 0 0 1 0 0
## 1072 0 0 0 0 0 1 0 0
## 1073 0 0 0 0 0 0 0 0
## 1074 0 0 0 0 0 1 0 0
## 1075 0 0 0 0 0 0 0 0
## 1076 0 1 1 1 1 0 0 0
## 1077 0 0 0 0 0 0 0 0
## 1078 0 0 0 1 1 0 0 0
## 1079 0 0 0 0 0 1 0 0
## 1080 0 0 0 0 0 1 0 0
## 1081 0 0 0 0 0 0 1 0
## 1082 0 0 0 0 0 0 0 0
## 1083 0 0 0 0 0 0 1 0
## 1084 0 0 0 0 0 0 0 1
## 1085 0 0 0 0 0 0 0 0
## 1086 0 0 0 0 0 0 0 0
## 1087 0 1 0 0 0 0 0 0
## 1088 0 1 0 0 0 0 0 0
## 1089 0 1 0 0 0 0 0 0
## 1090 0 0 0 0 0 0 0 0
## 1091 0 0 1 1 1 0 0 0
## 1092 0 0 0 0 0 1 0 0
## 1093 0 0 0 0 0 1 0 0
## 1094 0 0 0 0 0 1 0 0
## 1095 0 0 0 0 0 1 0 0
## 1096 0 0 0 0 0 0 0 0
## 1097 0 0 0 0 0 0 0 0
## 1098 0 0 0 0 0 1 0 0
## 1099 0 0 0 0 0 0 0 0
## 1100 0 0 0 0 0 1 0 0
## 1101 0 0 0 0 0 0 0 0
## 1102 0 0 0 0 0 1 0 0
## 1103 0 0 0 0 0 1 0 0
## 1104 0 0 0 0 0 1 1 0
## 1105 0 1 1 0 0 0 0 0
## 1106 0 0 0 0 0 0 1 0
## 1107 0 0 0 0 0 0 0 0
## 1108 0 0 0 0 0 0 0 0
## 1109 0 0 0 0 0 0 0 0
## 1110 0 1 0 0 0 1 0 0
## 1111 0 0 0 0 0 0 0 0
## 1112 0 0 0 0 0 0 0 0
## 1113 0 0 0 0 0 0 0 0
## 1114 0 0 0 0 0 1 0 0
## 1115 0 0 0 0 0 1 0 0
## 1116 0 0 1 0 0 0 0 0
## 1117 0 0 0 0 0 0 0 0
## 1118 0 0 0 0 0 1 0 0
## 1119 0 0 0 0 0 0 0 0
## 1120 0 0 0 0 0 1 0 0
## 1121 0 0 0 0 0 0 0 0
## 1122 0 0 0 0 0 0 1 0
## 1123 0 0 0 0 0 0 0 0
## 1124 0 0 0 0 0 0 0 0
## 1125 0 0 0 0 0 0 0 0
## 1126 0 0 1 0 0 0 0 0
## 1127 0 0 0 0 0 0 0 0
## 1128 0 0 0 0 0 0 0 1
## 1129 0 0 0 0 0 0 0 0
## 1130 0 0 0 0 0 0 0 1
## 1131 0 0 0 0 0 0 0 0
## 1132 0 0 0 0 0 0 0 0
## 1133 0 0 1 0 1 0 0 0
## 1134 0 0 0 0 0 0 0 0
## 1135 0 0 0 0 0 0 0 0
## 1136 0 0 0 0 0 0 0 0
## 1137 0 0 0 0 0 0 0 0
## 1138 0 1 0 0 0 1 1 0
## 1139 0 1 0 0 0 0 1 0
## 1140 0 0 0 0 0 1 0 0
## 1141 0 0 0 0 0 0 0 1
## 1142 0 0 0 0 0 0 0 1
## 1143 0 0 0 0 0 0 1 0
## 1144 0 0 0 0 0 0 0 0
## 1145 0 0 0 0 0 0 0 0
## 1146 0 0 0 0 0 0 0 0
## 1147 0 0 0 0 0 0 0 0
## 1148 0 0 0 0 0 0 0 0
## 1149 0 0 0 0 0 0 0 0
## 1150 0 0 0 0 0 0 0 0
## 1151 0 0 0 0 0 0 1 0
## 1152 0 0 0 0 0 0 0 0
## 1153 0 0 0 0 0 0 0 0
## 1154 0 0 0 0 0 0 0 0
## 1155 0 0 0 0 0 1 0 0
## 1156 0 0 0 0 0 0 1 0
## 1157 0 0 0 0 0 0 0 0
## 1158 0 0 0 0 0 0 0 0
## 1159 0 0 0 0 0 0 0 0
## 1160 0 0 0 0 0 0 0 0
## 1161 0 1 0 0 0 0 0 0
## 1162 0 0 0 0 0 1 0 0
## 1163 0 0 0 0 0 0 0 0
## 1164 0 0 0 0 1 0 0 0
## 1165 0 0 0 0 0 1 0 0
## 1166 0 0 0 0 0 1 0 0
## 1167 0 0 0 0 0 1 0 0
## 1168 0 0 0 0 0 0 0 0
## 1169 0 0 0 0 0 0 0 0
## 1170 0 0 0 0 0 1 0 0
## 1171 0 0 0 0 0 0 0 0
## 1172 0 0 0 0 0 1 0 0
## 1173 0 0 0 0 0 0 0 0
## 1174 0 0 0 0 0 0 0 0
## 1175 0 0 0 0 0 0 0 0
## 1176 0 0 0 0 0 0 0 0
## 1177 0 0 0 0 0 1 0 0
## 1178 0 0 0 0 0 1 0 0
## 1179 0 0 0 0 0 1 0 0
## 1180 0 1 0 0 0 1 0 0
## 1181 0 1 0 0 0 1 0 0
## 1182 0 0 0 0 0 1 0 0
## 1183 0 1 0 0 0 1 0 0
## 1184 0 0 0 0 0 0 0 1
## 1185 0 0 0 0 0 1 0 0
## 1186 0 0 0 0 0 1 0 0
## 1187 0 0 0 0 0 0 1 0
## 1188 0 1 0 0 0 1 0 0
## 1189 0 0 0 0 0 0 0 0
## 1190 0 0 0 0 0 1 0 0
## 1191 0 0 0 0 0 0 1 0
## 1192 0 0 0 0 0 0 0 0
## 1193 0 0 0 0 0 0 0 0
## 1194 0 0 0 0 0 0 1 0
## 1195 0 0 0 0 0 0 0 0
## 1196 0 0 0 0 0 0 0 0
## 1197 0 0 0 0 0 1 0 0
## 1198 0 0 0 0 0 0 1 0
## 1199 0 0 0 0 0 1 0 0
## 1200 0 0 0 0 1 0 0 0
## 1201 0 0 0 0 0 0 0 1
## 1202 0 0 0 0 0 1 0 0
## 1203 0 0 0 0 0 1 0 0
## 1204 0 0 0 0 0 1 0 0
## 1205 0 0 0 0 0 0 0 0
## 1206 0 0 0 0 0 1 0 0
## 1207 0 0 0 0 0 0 0 0
## 1208 0 0 0 0 0 0 1 0
## 1209 0 0 0 0 0 1 0 0
## 1210 0 0 0 0 0 0 0 0
## 1211 0 0 0 0 0 0 0 0
## 1212 0 0 0 0 0 0 0 0
## 1213 0 0 0 0 0 0 1 0
## 1214 0 0 0 0 0 0 0 0
## 1215 0 1 0 0 0 0 0 0
## 1216 0 0 0 0 0 0 0 0
## 1217 0 0 0 0 0 0 0 0
## 1218 0 0 0 0 0 1 0 0
## 1219 0 0 0 1 1 1 0 0
## 1220 0 0 0 0 0 0 0 0
## 1221 0 0 0 0 0 0 0 0
## 1222 0 1 0 0 0 0 0 0
## 1223 0 0 0 0 0 0 0 0
## 1224 0 0 0 0 0 0 0 0
## 1225 0 0 0 0 0 1 0 0
## 1226 0 0 0 0 0 0 1 0
## 1227 0 0 0 0 0 0 0 0
## 1228 0 1 0 0 0 0 0 0
## 1229 0 0 0 0 0 0 0 0
## 1230 0 0 0 0 0 1 0 0
## 1231 0 1 0 0 0 0 0 0
## 1232 0 0 0 0 0 0 0 1
## 1233 0 0 0 0 0 0 0 0
## 1234 0 0 0 0 0 1 0 0
## 1235 0 0 0 0 0 0 1 0
## 1236 0 0 0 0 0 0 0 0
## 1237 0 0 0 0 0 1 0 0
## 1238 0 0 0 0 0 0 0 0
## 1239 0 1 1 0 0 0 0 0
## 1240 0 0 0 1 0 0 0 0
## 1241 0 0 0 0 0 1 0 0
## 1242 0 0 0 0 0 1 0 0
## 1243 0 0 0 0 0 0 0 0
## 1244 0 1 0 0 0 0 0 0
## 1245 0 0 0 0 0 0 1 0
## 1246 0 0 0 0 0 1 0 0
## 1247 0 0 0 0 0 0 0 0
## 1248 0 0 0 0 0 0 0 0
## 1249 0 0 0 0 0 1 0 0
## 1250 0 1 0 0 0 0 0 0
## 1251 0 0 0 0 0 1 0 0
## 1252 0 0 0 0 0 0 0 0
## 1253 0 0 0 0 0 0 0 0
## 1254 0 0 0 0 0 1 0 0
## 1255 0 0 0 0 0 0 0 0
## 1256 0 0 0 0 0 0 0 0
## 1258 0 0 0 0 0 1 0 0
## 1259 0 0 0 0 0 1 0 0
## 1260 0 0 0 0 0 0 0 0
## 1261 0 0 0 0 0 0 0 0
## 1262 0 0 0 0 0 0 0 0
## 1263 0 0 0 0 0 0 0 0
## 1264 0 0 0 0 0 0 0 0
## 1265 0 0 0 0 0 0 0 0
## 1266 0 0 0 0 0 0 0 0
## 1267 0 0 0 0 0 0 0 0
## 1268 0 0 0 0 0 0 0 0
## 1269 0 0 0 0 0 1 0 0
## 1270 0 0 0 0 0 1 0 0
## 1271 0 0 0 0 0 1 0 0
## 1272 0 0 0 0 0 1 0 0
## 1273 0 0 0 0 0 0 0 0
## 1274 0 0 0 0 0 0 0 0
## 1275 0 0 0 0 0 0 0 0
## 1276 0 0 0 0 0 0 0 0
## 1277 0 1 0 0 0 0 1 0
## 1278 0 0 0 0 0 0 0 0
## 1279 0 0 1 0 1 0 0 0
## 1280 0 0 0 0 0 0 1 0
## 1281 0 0 0 0 0 0 0 0
## 1282 0 0 0 0 0 0 0 0
## 1283 0 0 0 0 0 1 0 0
## 1284 0 0 0 0 0 0 0 0
## 1285 0 0 0 0 0 0 0 0
## 1286 0 0 0 0 0 1 0 0
## 1287 0 0 0 0 0 1 0 0
## 1288 0 0 0 0 0 1 0 0
## 1289 0 0 0 0 0 0 0 0
## 1290 0 0 0 0 0 0 0 0
## 1291 0 0 0 0 0 1 0 0
## 1292 0 0 0 0 1 0 0 0
## 1293 0 0 1 0 1 0 0 0
## 1294 0 0 0 0 0 0 0 1
## 1295 0 0 0 0 0 1 0 0
## 1296 0 0 0 0 0 1 0 0
## 1297 0 0 0 0 0 0 0 0
## 1298 0 0 0 0 0 1 0 0
## 1299 0 0 0 0 0 0 0 0
## 1300 0 0 0 0 0 0 0 0
## 1301 0 0 0 0 0 1 0 0
## 1302 0 0 0 0 0 1 0 0
## 1303 0 1 0 0 0 0 0 0
## 1304 0 1 0 0 0 0 1 0
## 1305 0 0 0 0 0 1 0 0
## 1306 0 0 0 0 0 0 0 0
## 1307 0 0 0 0 0 0 0 1
## 1308 0 0 0 0 0 1 0 0
## 1309 0 0 0 0 0 0 0 0
## 1310 0 0 0 0 0 0 0 0
## 1311 0 0 0 0 0 1 0 0
## 1312 0 0 0 0 0 1 0 0
## 1313 0 0 0 0 0 0 0 0
## 1314 0 1 1 0 0 0 0 0
## 1315 0 0 0 0 0 0 0 0
## 1316 0 0 0 0 0 0 0 0
## 1317 0 0 0 0 0 0 0 0
## 1318 0 0 0 0 0 0 0 1
## 1319 0 0 0 0 0 0 0 0
## 1320 0 0 0 0 0 0 0 0
## 1321 0 0 0 0 0 1 0 0
## 1322 0 0 0 0 0 1 0 0
## 1323 0 0 0 0 0 0 0 0
## 1324 0 0 0 0 0 0 0 0
## 1325 0 0 0 0 0 0 0 0
## 1326 0 0 0 0 0 0 0 0
## 1327 0 0 0 0 0 0 0 0
## 1328 0 0 0 0 0 0 0 0
## 1329 0 0 0 0 0 0 0 0
## 1330 0 0 0 0 0 0 0 0
## 1331 0 0 0 0 0 0 0 1
## 1332 0 0 0 0 0 0 0 0
## 1333 0 0 0 0 0 1 0 0
## 1334 0 0 0 0 0 0 0 0
## 1335 0 0 0 0 0 0 0 0
## 1336 0 0 0 0 1 1 0 0
## 1337 0 0 0 0 0 1 0 0
## 1338 0 0 0 0 0 0 0 0
## 1339 0 0 0 0 0 1 0 0
## 1340 0 0 0 0 0 0 0 0
## 1341 0 0 0 0 0 0 0 0
## 1342 0 0 0 0 0 0 0 0
## 1343 0 0 0 0 0 0 0 0
## 1344 0 0 0 0 0 0 0 0
## 1345 0 0 0 0 0 0 0 0
## 1346 0 0 0 0 0 0 0 0
## 1347 0 0 0 0 0 0 0 0
## 1348 0 0 0 0 0 0 0 0
## 1349 0 0 0 0 0 1 0 0
## 1350 0 0 0 0 0 0 0 0
## 1351 0 0 0 0 0 1 0 0
## 1352 0 0 0 0 0 0 0 0
## 1353 0 0 0 0 0 0 0 0
## 1354 0 0 0 0 0 0 0 0
## 1355 0 0 0 0 0 0 0 0
## 1356 0 0 0 0 0 1 0 0
## 1357 0 0 0 0 0 0 0 0
## 1358 0 1 0 0 0 0 0 0
## 1359 0 0 0 0 0 0 0 0
## 1360 0 0 0 0 0 1 0 0
## 1361 0 0 0 0 0 1 0 0
## 1362 0 1 0 0 0 0 0 0
## 1363 0 0 0 0 0 0 0 1
## 1364 0 1 0 0 0 0 0 0
## 1365 0 1 0 0 0 0 0 0
## 1366 0 0 0 0 0 0 0 1
## 1367 0 0 0 1 0 0 0 0
## 1368 0 0 0 0 0 0 0 0
## 1369 0 0 0 0 0 0 0 0
## 1370 0 0 0 0 0 0 0 0
## 1371 0 0 0 0 0 1 0 0
## 1372 0 1 0 0 0 0 0 0
## 1373 1 0 0 0 0 0 0 0
## 1374 0 0 0 0 0 1 0 0
## 1375 0 0 0 0 0 0 0 0
## 1376 0 0 0 0 0 1 0 0
## 1377 0 0 0 0 0 1 0 0
## 1378 0 0 0 0 0 0 0 1
## 1379 0 0 0 0 0 0 0 0
## 1380 0 0 0 0 0 0 0 0
## 1381 0 0 0 0 0 0 0 0
## 1382 0 0 0 0 0 0 0 0
## 1383 0 0 1 0 1 0 0 0
## 1384 0 0 0 0 0 0 0 0
## 1385 0 0 0 0 0 1 0 0
## 1386 0 0 0 0 0 0 0 0
## 1387 0 0 0 0 0 0 0 0
## 1388 0 0 0 0 0 0 0 0
## 1389 0 0 0 0 0 0 0 0
## 1390 0 0 0 0 0 0 1 0
## 1391 0 0 0 0 0 0 0 0
## 1392 0 0 0 0 0 0 0 0
## 1393 0 1 0 0 0 0 0 0
## 1394 0 0 0 0 0 0 0 0
## 1395 0 0 0 0 0 0 0 0
## 1396 0 0 0 0 0 0 0 0
## 1397 0 0 0 0 0 0 0 0
## 1398 0 0 0 0 0 0 0 0
## 1399 0 0 0 0 0 0 0 0
## 1400 0 0 0 0 0 0 0 0
## 1401 0 0 0 0 0 0 0 0
## 1402 0 0 0 0 0 0 0 0
## 1403 0 0 0 0 0 1 0 0
## 1404 0 0 0 0 0 1 0 0
## 1405 0 0 0 0 0 0 0 0
## 1406 0 0 0 0 0 0 0 0
## 1407 0 1 0 0 0 0 0 0
## 1408 0 0 0 0 0 1 0 0
## 1409 0 0 0 1 1 0 0 0
## 1410 0 0 0 0 0 0 0 0
## 1411 0 0 1 0 0 0 0 0
## 1412 0 0 0 1 1 0 0 0
## 1413 0 1 0 0 0 0 0 0
## 1414 0 1 0 0 0 0 0 0
## 1415 0 1 0 0 1 0 0 0
## 1416 0 1 0 0 0 0 0 0
## 1417 0 0 0 0 0 0 0 0
## 1418 0 0 0 0 0 0 0 0
## 1419 0 1 0 0 0 0 0 0
## 1420 0 0 0 0 0 1 0 0
## 1421 0 0 0 0 0 0 0 0
## 1422 0 0 0 0 0 0 0 0
## 1423 0 0 0 0 0 0 0 0
## 1424 0 0 0 0 0 1 0 0
## 1425 0 0 0 0 0 1 0 0
## 1426 0 0 0 0 0 1 0 0
## 1427 0 0 0 0 0 0 0 0
## 1428 0 0 0 0 0 1 0 0
## 1429 0 0 0 0 0 0 0 0
## 1430 0 0 0 0 0 0 0 0
## 1431 0 0 0 0 0 0 0 0
## 1432 0 0 0 0 0 0 0 0
## 1433 0 1 0 0 0 0 0 0
## 1434 0 0 0 0 0 0 0 0
## 1435 0 0 0 0 0 1 0 0
## 1436 0 0 0 0 0 0 0 0
## 1437 0 0 0 0 0 1 0 0
## 1438 0 0 0 0 0 0 0 0
## 1439 0 0 0 0 0 0 1 0
## 1440 0 0 0 0 0 0 0 0
## 1441 0 0 0 0 0 0 0 0
## 1442 0 0 0 0 0 0 0 0
## 1443 0 0 0 0 0 0 0 0
## 1444 0 0 0 0 1 1 0 0
## 1445 0 0 0 0 0 0 0 0
## 1446 0 0 0 0 0 1 0 0
## 1447 0 0 0 0 0 0 0 0
## 1448 0 0 0 0 0 0 0 0
## 1449 0 0 0 0 0 0 0 0
## 1450 0 0 1 0 0 0 0 0
## 1451 0 0 0 0 0 0 0 0
## 1452 0 0 0 0 0 1 0 0
## 1453 0 0 0 0 0 0 1 0
## 1454 0 0 0 0 0 0 0 0
## 1455 0 0 0 0 0 0 0 0
## 1456 0 0 0 0 0 1 0 0
## 1457 0 0 0 0 0 1 0 0
## 1458 0 0 0 0 0 1 0 0
## 1459 0 0 0 0 0 0 0 0
## 1460 0 0 0 0 0 1 0 0
## 1461 0 0 0 0 0 1 0 0
## 1462 0 0 0 0 0 0 1 0
## 1463 0 0 0 0 0 1 0 0
## 1464 0 0 0 0 0 0 0 0
## 1465 0 0 0 0 0 1 0 0
## 1466 0 0 0 0 0 0 0 0
## 1467 0 0 0 0 0 0 0 0
## 1468 0 0 0 0 0 0 0 0
## 1469 0 0 1 0 1 0 0 0
## 1470 0 0 0 1 1 0 0 0
## 1471 0 0 0 0 0 0 0 0
## 1472 0 0 0 0 0 1 0 0
## 1473 0 0 0 0 1 0 0 0
## 1474 0 0 0 0 0 1 0 0
## 1475 0 0 0 0 0 1 0 0
## 1476 0 0 0 0 0 0 0 0
## 1477 0 0 0 0 0 0 0 0
## 1478 0 1 0 0 0 0 1 0
## 1479 0 0 0 0 0 1 0 0
## 1480 0 0 1 0 1 1 0 0
## 1481 0 0 0 0 0 0 0 0
## 1482 0 0 0 0 0 0 0 1
## 1483 0 1 0 0 0 0 0 0
## 1484 0 1 0 0 0 1 0 0
## 1485 0 0 0 0 0 0 0 0
## 1486 0 0 0 0 0 0 0 0
## 1487 0 0 0 0 0 1 0 0
## 1488 0 0 0 0 0 0 0 0
## 1489 0 0 0 0 0 1 0 0
## 1490 0 0 0 0 0 1 0 0
## 1491 0 1 0 0 0 0 0 0
## 1492 0 0 0 0 0 1 0 0
## 1493 0 0 0 0 0 0 0 0
## 1494 0 0 0 0 0 1 0 0
## 1495 0 0 0 0 0 0 0 0
## 1496 0 0 0 0 0 1 1 0
## 1497 0 0 0 0 0 0 0 1
## 1498 0 0 0 0 0 1 0 0
## 1499 0 0 0 0 0 1 0 0
## 1500 0 0 0 0 0 1 0 0
## 1501 0 0 0 0 0 0 0 0
## 1502 0 0 0 0 0 1 0 0
## 1503 0 0 1 0 1 0 0 0
## 1504 0 0 0 0 0 1 0 0
## 1505 0 0 0 0 0 0 1 0
## 1506 0 0 0 0 0 0 0 0
## 1507 0 0 0 0 0 1 0 0
## 1508 0 0 0 0 0 0 0 0
## 1509 0 0 0 0 0 1 0 0
## 1510 0 0 0 0 0 0 1 0
## 1511 0 0 0 0 0 1 0 0
## 1512 0 0 0 0 0 0 0 0
## 1513 0 0 0 0 0 1 0 0
## 1514 0 0 0 0 0 0 0 0
## 1515 0 0 1 0 0 0 0 0
## 1516 0 0 0 0 0 0 0 0
## 1517 0 0 0 0 0 0 0 0
## 1518 0 0 0 0 0 0 0 0
## 1519 0 0 0 0 0 0 1 0
## 1520 0 0 0 0 0 0 0 0
## 1521 0 0 0 0 0 1 0 0
## 1522 0 0 0 0 0 0 0 0
## 1523 0 1 1 0 0 0 0 0
## 1524 0 0 0 0 0 0 0 0
## 1525 0 0 0 0 0 1 0 0
## 1526 0 0 0 0 0 0 0 0
## 1527 0 0 0 0 0 1 0 0
## 1528 0 0 0 0 0 0 0 0
## 1529 0 0 0 0 0 0 0 0
## 1530 0 0 0 0 0 0 0 0
## 1531 0 0 1 0 1 0 0 0
## 1532 0 0 0 0 0 0 0 0
## 1533 0 0 0 0 0 0 0 0
## 1534 0 0 0 0 0 1 1 0
## 1535 0 0 0 0 0 0 0 0
## 1536 0 0 0 0 0 0 0 0
## 1537 0 0 0 0 0 1 0 0
## 1538 0 0 0 0 0 0 0 0
## 1539 0 0 0 0 0 0 0 0
## 1540 0 0 1 0 1 0 0 0
## 1541 0 0 0 0 0 0 0 0
## 1542 0 0 0 0 0 0 0 0
## 1543 0 0 0 0 0 0 0 0
## 1544 0 0 0 0 0 1 0 0
## 1545 0 0 0 0 0 0 0 0
## 1546 0 0 0 0 0 0 0 0
## 1547 0 0 0 0 0 0 0 1
## 1548 0 1 0 0 0 0 0 0
## 1549 0 0 0 0 0 0 0 0
## 1550 0 0 0 0 0 1 0 0
## 1551 0 0 0 0 0 0 0 0
## 1552 0 1 0 0 0 0 0 0
## 1553 0 0 0 0 0 0 0 0
## 1554 0 0 0 0 0 0 0 0
## 1555 0 0 1 0 1 0 0 0
## 1556 0 1 0 0 0 0 0 0
## 1557 0 0 0 0 0 1 0 0
## 1558 0 0 0 0 0 0 0 0
## 1559 0 1 0 0 0 0 0 0
## 1560 0 0 0 0 0 0 1 0
## 1561 0 0 0 0 0 0 0 1
## 1562 0 0 0 0 0 0 0 1
## 1563 0 0 0 0 0 0 0 0
## 1564 0 0 0 0 0 0 0 0
## 1565 0 0 0 0 0 0 0 0
## 1566 0 0 0 0 0 0 0 0
## 1567 0 0 0 0 0 1 0 0
## 1568 0 0 0 0 0 1 0 0
## 1569 0 0 0 0 0 1 0 0
## 1570 0 0 0 0 0 1 0 0
## 1571 0 0 0 0 0 0 0 0
## 1572 0 0 0 0 0 0 0 0
## 1573 0 0 0 0 0 0 0 0
## 1574 0 0 0 0 0 0 0 0
## 1575 0 0 0 0 0 0 0 0
## 1576 0 0 0 0 0 0 0 0
## 1577 0 0 0 0 0 0 0 0
## 1578 0 0 0 0 0 0 0 0
## 1579 0 0 0 0 0 0 0 0
## 1580 0 0 0 0 0 0 0 0
## 1581 0 0 0 0 0 0 0 0
## 1582 0 0 0 0 0 0 0 0
## 1583 0 0 0 0 0 0 0 0
## 1584 0 0 0 0 0 0 0 0
## 1585 0 0 0 0 0 0 0 1
## 1586 0 1 0 0 0 0 1 0
## 1587 0 0 0 0 0 0 0 0
## 1588 0 0 0 0 0 1 0 0
## 1589 0 0 0 0 0 1 0 0
## 1590 0 0 0 0 0 0 0 0
## 1591 0 0 0 0 0 0 0 0
## 1592 0 0 0 0 0 0 0 0
## 1593 0 0 0 0 0 1 0 0
## 1594 0 0 0 0 0 0 0 1
## 1595 0 1 0 0 0 0 0 0
## 1596 0 1 0 0 0 0 0 0
## 1597 0 1 0 0 0 0 0 0
## 1598 0 0 0 0 0 0 1 0
## 1599 0 0 0 0 0 0 0 0
## 1600 0 0 0 0 0 1 0 0
## 1601 0 0 0 0 0 0 0 0
## 1602 0 0 0 0 0 0 0 0
## 1603 0 0 0 0 0 0 0 0
## 1604 0 0 0 0 0 0 1 0
## 1605 0 0 0 0 0 1 0 0
## 1608 0 0 1 0 1 0 0 0
## 1609 0 0 0 0 0 1 0 0
## 1610 0 1 0 0 0 0 1 0
## 1611 0 0 0 0 0 1 0 0
## 1612 0 0 0 0 0 0 0 0
## 1613 0 1 0 0 0 0 0 0
## 1614 0 0 0 0 0 1 0 0
## 1615 0 1 1 0 1 0 0 0
## 1616 0 0 0 0 0 0 0 0
## 1618 0 1 0 0 0 0 1 0
## 1619 0 0 0 0 0 0 0 0
## 1620 0 0 0 0 0 1 0 0
## 1621 0 0 0 0 0 0 0 0
## 1622 0 0 0 0 0 1 0 0
## 1623 0 0 0 0 0 0 0 0
## 1624 0 0 0 0 0 0 0 0
## 1626 0 0 0 0 0 1 0 0
## 1627 0 0 0 0 0 1 0 0
## 1628 0 0 0 0 0 0 0 0
## 1629 0 0 0 0 0 0 0 1
## 1630 0 0 0 0 0 0 0 0
## 1631 0 0 0 0 0 1 0 0
## 1632 0 0 0 0 0 0 0 0
## 1633 0 0 0 0 0 1 0 0
## 1634 0 0 0 0 0 0 0 0
## 1635 0 0 0 0 0 0 0 0
## 1636 0 0 0 0 0 0 0 0
## 1637 0 0 0 0 0 0 0 0
## 1638 0 0 0 0 0 0 1 0
## 1639 0 0 0 0 0 0 0 0
## 1640 0 0 0 0 0 0 0 0
## 1641 0 0 0 0 0 0 0 1
## 1642 0 0 0 0 0 0 0 0
## 1643 0 0 0 0 0 0 0 0
## 1644 0 0 0 0 0 1 0 0
## 1645 0 0 0 0 0 0 0 0
## 1646 0 1 0 0 0 0 0 0
## 1647 0 0 0 0 0 1 1 0
## 1648 0 0 0 0 0 0 0 0
## 1649 0 0 0 0 0 1 0 1
## 1651 0 0 0 0 0 0 0 0
## 1652 0 0 0 0 0 0 0 0
## 1653 0 0 0 0 0 0 0 0
## 1655 0 0 0 0 0 1 0 0
## 1656 0 0 0 0 0 1 0 0
## 1657 0 1 0 0 0 0 0 0
## 1659 0 0 0 0 0 1 0 0
## 1660 0 0 0 0 0 0 0 0
## 1661 0 0 0 0 0 0 0 0
## 1662 0 0 0 0 0 0 0 0
## 1663 0 0 0 0 0 0 0 0
## 1664 0 0 0 0 0 1 0 0
## 1665 0 0 0 0 0 0 0 0
## 1666 0 0 0 0 0 0 0 0
## 1667 0 0 0 0 0 0 0 0
## 1668 0 0 0 0 0 1 0 0
## 1669 0 0 0 0 0 0 1 0
## 1670 0 0 0 0 0 1 0 0
## 1671 0 0 0 0 0 0 0 0
## 1672 0 0 0 0 0 0 0 0
## 1673 0 1 0 0 0 0 0 0
## 1674 0 0 0 0 0 0 0 0
## 1675 0 0 0 0 0 0 0 0
## 1676 0 0 0 0 0 0 0 0
## 1677 0 0 0 0 0 0 0 0
## 1678 0 0 0 0 0 0 0 0
## 1679 0 0 0 0 0 0 0 0
## 1681 0 0 0 0 0 1 0 0
## 1682 0 0 0 0 0 0 0 0
## Drama Fantasy Film-Noir Horror Musical Mystery Romance Sci-Fi Thriller War
## 1 0 0 0 0 0 0 0 0 0 0
## 2 0 0 0 0 0 0 0 0 1 0
## 3 0 0 0 0 0 0 0 0 1 0
## 4 1 0 0 0 0 0 0 0 0 0
## 5 1 0 0 0 0 0 0 0 1 0
## 6 1 0 0 0 0 0 0 0 0 0
## 7 1 0 0 0 0 0 0 1 0 0
## 8 1 0 0 0 0 0 0 0 0 0
## 9 1 0 0 0 0 0 0 0 0 0
## 10 1 0 0 0 0 0 0 0 0 1
## 11 0 0 0 0 0 0 0 0 1 0
## 12 0 0 0 0 0 0 0 0 1 0
## 13 0 0 0 0 0 0 0 0 0 0
## 14 1 0 0 0 0 0 1 0 0 0
## 15 1 0 0 0 0 0 0 0 0 0
## 16 0 0 0 0 0 0 1 0 0 0
## 17 0 0 0 1 0 0 0 0 1 0
## 18 1 0 0 0 0 0 0 0 0 0
## 19 1 0 0 0 0 0 0 0 0 0
## 20 1 0 0 0 0 0 1 0 0 0
## 21 0 0 0 0 1 0 0 0 1 0
## 22 1 0 0 0 0 0 0 0 0 1
## 23 1 0 0 0 0 0 0 0 1 0
## 24 0 0 0 0 0 0 0 0 0 0
## 25 0 0 0 0 0 0 0 0 0 0
## 26 0 0 0 0 0 0 0 0 0 0
## 27 0 0 0 0 0 0 0 0 0 0
## 28 1 0 0 0 0 0 0 0 1 0
## 29 0 0 0 0 0 0 0 0 0 0
## 30 1 0 0 0 0 0 0 0 0 0
## 31 1 0 0 0 0 0 0 0 1 1
## 32 0 0 0 0 0 0 0 0 0 0
## 33 0 0 0 0 0 0 1 0 1 0
## 34 1 0 0 0 0 0 0 0 0 0
## 35 1 0 0 0 0 0 0 0 0 0
## 36 1 0 0 0 0 0 1 0 0 0
## 37 1 0 0 0 0 0 0 0 0 0
## 38 0 0 0 0 0 0 0 1 1 0
## 39 0 0 0 0 0 0 0 1 0 0
## 40 0 0 0 0 0 0 0 0 0 0
## 41 0 0 0 0 0 0 0 0 0 0
## 42 0 0 0 0 0 0 0 0 0 0
## 43 1 0 0 0 0 0 0 0 1 0
## 44 1 0 0 0 0 0 0 0 1 0
## 45 1 0 0 0 0 0 0 0 0 0
## 46 1 0 0 0 0 0 0 0 0 0
## 47 1 0 0 0 0 0 0 0 0 0
## 48 0 0 0 0 0 0 0 0 0 0
## 49 0 0 0 0 0 0 1 0 0 0
## 50 0 0 0 0 0 0 1 1 0 1
## 51 1 0 0 0 0 0 1 0 0 1
## 52 1 0 0 0 0 0 0 0 0 0
## 53 0 0 0 0 0 0 0 0 1 0
## 54 1 0 0 0 0 0 0 0 1 0
## 55 1 0 0 0 0 0 1 0 1 0
## 56 1 0 0 0 0 0 0 0 0 0
## 57 1 0 0 0 0 0 0 0 0 0
## 58 1 0 0 0 0 0 0 0 0 0
## 59 1 0 0 0 0 0 0 0 0 0
## 60 1 0 0 0 0 0 0 0 0 0
## 61 1 0 0 0 0 0 0 0 0 0
## 62 0 0 0 0 0 0 0 1 0 0
## 63 0 0 0 0 0 0 0 0 0 0
## 64 1 0 0 0 0 0 0 0 0 0
## 65 1 0 0 0 0 0 0 0 0 0
## 66 0 0 0 0 0 0 1 0 0 0
## 67 0 0 0 0 0 0 0 0 0 0
## 68 0 0 0 0 0 0 1 0 1 0
## 69 0 0 0 0 0 0 1 0 0 1
## 70 0 0 0 0 0 0 1 0 0 0
## 71 0 0 0 0 1 0 0 0 0 0
## 72 0 1 0 0 0 0 0 0 0 0
## 73 0 0 0 0 0 0 0 0 0 0
## 74 1 0 0 0 0 0 0 0 0 0
## 75 0 0 0 0 0 0 0 0 0 0
## 76 1 0 0 0 0 0 0 0 0 0
## 77 1 0 0 0 0 0 0 0 1 0
## 78 1 0 0 0 0 0 0 0 0 0
## 79 0 0 0 0 0 0 0 0 1 0
## 80 0 0 0 0 0 0 0 0 0 1
## 81 0 0 0 0 0 0 1 0 0 0
## 82 0 0 0 0 0 0 0 1 0 0
## 83 0 0 0 0 0 0 1 0 0 0
## 84 0 0 0 1 0 0 0 1 0 0
## 85 0 0 0 0 0 0 0 0 0 0
## 86 1 0 0 0 0 0 0 0 0 0
## 87 1 0 0 0 0 0 0 0 0 0
## 88 0 0 0 0 0 0 1 0 0 0
## 89 0 0 1 0 0 0 0 1 0 0
## 90 0 0 0 0 0 0 1 0 1 0
## 91 0 0 0 0 1 0 0 0 0 0
## 92 0 0 0 0 0 0 1 0 0 0
## 93 1 0 0 0 0 0 0 0 0 0
## 94 0 0 0 0 0 0 0 0 0 0
## 95 0 0 0 0 1 0 0 0 0 0
## 96 0 0 0 0 0 0 0 1 1 0
## 97 1 0 0 0 0 0 0 0 0 0
## 98 1 0 0 0 0 0 0 0 1 0
## 99 0 0 0 0 1 0 0 0 0 0
## 100 1 0 0 0 0 0 0 0 1 0
## 101 0 0 0 1 0 0 0 1 0 0
## 102 0 0 0 0 0 0 0 0 0 0
## 103 0 0 0 0 1 0 0 0 0 0
## 104 0 0 0 0 0 0 0 0 0 0
## 105 0 0 0 0 0 0 0 0 0 0
## 106 1 0 0 0 0 0 0 0 1 0
## 107 1 0 0 0 0 0 0 0 0 0
## 108 0 0 0 0 0 0 0 0 0 0
## 109 0 0 0 0 0 0 0 1 0 0
## 110 0 0 0 0 0 0 0 0 0 1
## 111 0 0 0 0 0 0 1 0 0 0
## 112 0 0 0 0 0 0 0 0 0 0
## 113 1 0 0 0 0 0 0 0 0 0
## 114 0 0 0 0 0 0 0 0 0 0
## 115 0 0 0 0 0 0 0 0 0 0
## 116 0 0 0 0 0 0 0 0 0 0
## 117 0 0 0 0 0 0 0 0 1 0
## 118 0 0 0 0 0 0 0 0 1 0
## 119 0 0 0 0 0 0 0 0 0 0
## 120 0 0 0 0 0 0 0 0 0 0
## 121 0 0 0 0 0 0 0 1 0 1
## 122 0 0 0 0 0 0 0 0 0 0
## 123 0 0 0 1 0 0 0 0 0 0
## 124 1 0 0 0 0 1 0 0 0 0
## 125 1 0 0 0 0 0 1 0 0 0
## 126 1 0 0 0 0 0 0 0 0 0
## 127 1 0 0 0 0 0 0 0 0 0
## 128 0 0 0 0 0 0 0 0 1 0
## 129 1 0 0 0 0 0 1 0 1 0
## 130 0 0 0 0 0 0 0 0 0 0
## 131 1 0 0 0 0 0 1 0 0 0
## 132 1 0 0 0 1 0 0 0 0 0
## 133 1 0 0 0 0 0 1 0 0 1
## 134 1 0 0 0 0 0 0 0 0 0
## 135 1 0 0 0 0 1 0 1 1 0
## 136 1 0 0 0 0 0 0 0 0 0
## 137 1 0 0 0 0 0 0 0 0 0
## 138 0 0 0 0 0 0 0 0 0 0
## 139 0 0 0 0 0 0 0 0 0 0
## 140 0 0 0 0 0 0 0 0 0 0
## 141 0 1 0 0 0 0 0 1 0 0
## 142 0 0 0 0 1 0 0 0 0 0
## 143 0 0 0 0 1 0 0 0 0 0
## 144 0 0 0 0 0 0 0 0 1 0
## 145 0 0 0 0 0 0 0 1 1 0
## 146 1 0 0 0 0 0 0 0 0 0
## 147 0 0 0 0 0 0 0 0 1 0
## 148 0 0 0 0 0 0 0 0 0 0
## 149 1 0 0 0 0 0 0 0 0 0
## 150 1 0 0 0 0 0 0 0 0 0
## 151 0 0 0 0 0 0 0 0 0 0
## 152 0 0 0 0 0 0 0 1 0 0
## 153 0 0 0 0 0 0 0 0 0 0
## 154 0 0 0 0 0 0 0 0 0 0
## 155 0 0 0 0 1 0 1 0 0 0
## 156 0 0 0 0 0 0 0 0 1 0
## 157 1 0 0 0 0 0 0 0 0 1
## 158 0 0 0 0 0 0 0 0 0 0
## 159 0 0 0 0 0 1 0 0 1 0
## 160 1 0 0 0 0 0 0 0 0 0
## 161 0 0 0 0 0 0 1 0 0 0
## 162 1 0 0 0 0 0 0 0 0 0
## 163 0 0 0 0 0 0 0 0 0 0
## 164 0 0 0 0 0 0 0 1 1 0
## 165 1 0 0 0 0 0 0 0 0 0
## 166 1 0 0 0 0 0 0 0 0 0
## 167 0 0 0 0 0 0 0 0 0 0
## 168 0 0 0 0 0 0 0 0 0 0
## 169 0 0 0 0 0 0 0 0 0 0
## 170 1 0 0 0 0 0 1 0 0 0
## 171 0 0 0 0 0 0 0 1 0 0
## 172 1 0 0 0 0 0 1 1 0 1
## 173 0 0 0 0 0 0 1 0 0 0
## 174 0 0 0 0 0 0 0 0 0 0
## 175 0 0 0 0 0 0 0 1 0 0
## 176 0 0 0 0 0 0 0 1 1 1
## 177 0 0 0 0 0 0 0 0 0 0
## 178 1 0 0 0 0 0 0 0 0 0
## 179 0 0 0 0 0 0 0 1 0 0
## 180 1 0 0 0 0 0 0 0 0 1
## 181 0 0 0 0 0 0 1 1 0 1
## 182 1 0 0 0 0 0 0 0 0 0
## 183 0 0 0 1 0 0 0 1 1 0
## 184 0 0 0 1 0 0 0 1 0 0
## 185 0 0 0 1 0 0 1 0 1 0
## 186 0 0 0 0 1 0 0 0 0 0
## 187 1 0 0 0 0 0 0 0 0 0
## 188 1 0 0 0 0 0 0 0 0 1
## 189 0 0 0 0 0 0 0 0 0 0
## 190 1 0 0 0 0 0 0 0 0 1
## 191 1 0 0 0 0 1 0 0 0 0
## 192 1 0 0 0 0 0 0 0 0 0
## 193 1 0 0 0 0 0 0 0 0 0
## 194 0 0 0 0 0 0 0 0 0 0
## 195 0 0 0 0 0 0 0 1 1 0
## 196 1 0 0 0 0 0 0 0 0 0
## 197 1 0 0 0 0 0 1 0 0 0
## 198 0 0 0 0 0 0 0 0 1 0
## 199 1 0 0 0 0 0 0 0 0 1
## 200 0 0 0 1 0 0 0 0 0 0
## 201 0 0 0 1 0 0 0 0 0 0
## 202 0 0 0 0 0 0 1 0 0 0
## 203 0 0 0 0 0 0 0 0 0 0
## 204 0 0 0 0 0 0 0 1 0 0
## 205 1 0 0 0 0 0 0 0 0 1
## 206 0 0 0 0 0 0 0 1 1 0
## 207 1 0 0 0 0 0 1 0 0 0
## 208 0 0 0 1 0 0 0 0 0 0
## 209 1 0 0 0 1 0 0 0 0 0
## 210 0 0 0 0 0 0 0 0 0 0
## 211 0 0 0 0 0 0 0 0 0 1
## 212 1 0 0 0 0 0 0 0 0 0
## 213 1 0 0 0 0 0 1 0 0 0
## 214 1 0 0 0 1 0 0 0 0 1
## 215 1 0 0 0 0 0 0 0 0 0
## 216 0 0 0 0 0 0 1 0 0 0
## 217 0 0 0 1 0 0 1 0 0 0
## 218 0 0 0 0 0 0 0 0 1 0
## 219 0 0 0 1 0 0 0 0 0 0
## 220 0 0 0 0 0 0 1 0 0 0
## 221 1 0 0 0 0 0 0 0 0 0
## 222 0 0 0 0 0 0 0 1 0 0
## 223 1 0 0 0 0 0 0 0 1 0
## 224 1 0 0 0 0 0 0 0 0 0
## 225 0 0 0 0 0 0 0 0 0 0
## 226 0 0 0 0 0 0 0 0 1 0
## 227 0 0 0 0 0 0 0 1 0 0
## 228 0 0 0 0 0 0 0 1 0 0
## 229 0 0 0 0 0 0 0 1 0 0
## 230 0 0 0 0 0 0 0 1 0 0
## 231 0 0 0 0 0 0 0 0 0 0
## 232 0 0 0 0 0 0 0 0 0 0
## 233 0 0 0 0 0 0 0 0 0 0
## 234 0 0 0 1 0 0 0 0 0 0
## 235 0 0 0 0 0 0 0 1 0 1
## 236 1 0 0 0 0 0 0 0 0 0
## 237 1 0 0 0 0 0 1 0 0 0
## 238 0 0 0 0 0 0 0 0 0 0
## 239 1 0 0 0 0 0 0 1 0 0
## 240 0 0 0 0 0 0 0 0 0 0
## 241 0 0 0 0 0 0 1 0 0 1
## 242 0 0 0 0 0 0 0 0 0 0
## 243 0 0 0 0 0 0 0 0 0 0
## 244 1 0 0 0 0 0 0 0 1 0
## 245 1 0 0 0 0 0 0 0 1 1
## 246 1 0 0 0 0 0 1 0 0 0
## 247 0 0 0 0 0 0 0 0 0 0
## 248 0 0 0 0 0 0 0 0 0 0
## 249 0 0 0 0 0 0 0 0 0 0
## 250 0 0 0 0 0 0 0 1 0 0
## 251 0 0 0 0 0 0 0 0 0 0
## 252 0 0 0 0 0 0 0 1 1 0
## 253 1 0 0 0 0 0 1 0 0 0
## 254 0 0 0 0 0 0 0 0 0 0
## 255 0 0 0 0 0 0 1 0 0 0
## 256 0 0 0 0 0 0 1 0 0 0
## 257 0 0 0 0 0 0 0 1 0 0
## 258 1 0 0 0 0 0 0 1 0 0
## 259 0 0 0 0 0 0 0 0 0 0
## 260 0 0 0 0 0 1 0 1 1 0
## 261 0 0 0 0 0 0 0 0 0 0
## 262 1 0 0 0 0 0 0 0 0 0
## 263 0 0 0 0 0 0 0 0 0 0
## 264 0 0 0 0 0 0 0 1 1 0
## 265 0 0 0 0 0 0 0 0 1 0
## 266 0 0 0 0 0 0 0 0 0 0
## 267 0 0 0 0 0 0 0 0 0 0
## 269 0 0 0 0 0 0 0 0 0 0
## 270 1 0 0 0 0 0 0 1 1 0
## 271 0 0 0 0 0 0 0 1 0 1
## 272 1 0 0 0 0 0 0 0 0 0
## 273 0 0 0 0 0 0 0 0 1 0
## 274 0 0 0 0 0 0 1 0 0 0
## 275 1 0 0 0 0 0 1 0 0 0
## 276 1 0 0 0 0 0 1 0 0 0
## 277 1 0 0 0 0 0 0 0 0 0
## 278 1 0 0 0 0 0 1 0 0 0
## 279 1 0 0 0 0 0 0 0 0 0
## 280 1 0 0 0 0 0 1 0 0 0
## 281 0 0 0 0 0 0 0 0 1 0
## 282 1 0 0 0 0 0 0 0 0 0
## 283 1 0 0 0 0 0 1 0 0 0
## 284 0 0 0 0 0 0 1 0 0 0
## 285 1 0 0 0 0 0 0 0 0 0
## 286 1 0 0 0 0 0 1 0 0 1
## 287 1 0 0 0 0 0 0 0 0 0
## 288 0 0 0 1 0 0 0 0 1 0
## 289 1 0 0 0 1 0 0 0 0 0
## 290 0 0 0 0 0 0 0 0 0 0
## 291 0 0 0 0 0 1 0 0 1 0
## 292 1 0 0 0 0 0 0 0 0 0
## 293 1 0 0 0 0 0 0 0 0 0
## 294 0 0 0 0 0 0 0 0 0 0
## 295 0 0 0 0 0 0 0 0 1 0
## 296 1 0 0 0 0 0 0 0 0 0
## 297 1 0 0 0 0 0 0 0 0 0
## 298 0 0 0 0 0 0 0 1 1 0
## 299 1 0 1 0 0 0 0 0 0 0
## 300 0 0 0 0 0 0 0 0 1 0
## 301 0 0 0 0 0 0 0 0 0 0
## 302 0 0 1 0 0 1 0 0 1 0
## 304 0 0 0 0 0 0 0 0 0 0
## 305 1 0 0 0 0 0 0 0 0 0
## 306 1 0 0 0 0 0 1 0 0 0
## 307 0 0 0 1 0 1 0 0 1 0
## 308 1 1 0 0 0 0 0 0 0 0
## 309 0 0 0 0 0 0 0 0 0 0
## 310 1 0 0 0 0 0 0 0 0 0
## 311 1 0 0 0 0 0 1 0 1 0
## 312 1 0 0 0 0 1 0 0 0 0
## 313 1 0 0 0 0 0 1 0 0 0
## 314 0 0 0 0 0 0 0 0 0 0
## 315 1 0 0 0 0 0 0 0 1 0
## 316 1 0 0 0 0 0 0 0 0 0
## 317 1 0 0 0 0 0 0 0 0 0
## 318 1 0 0 0 0 0 0 0 0 1
## 319 0 0 0 0 1 0 1 0 0 0
## 320 0 0 0 0 0 0 0 0 0 0
## 321 0 0 0 0 0 0 0 0 0 0
## 322 0 0 0 0 0 1 0 0 1 0
## 323 0 0 0 0 0 0 0 0 1 0
## 324 0 0 0 0 0 1 0 0 0 0
## 325 1 0 0 0 0 0 0 0 1 0
## 326 1 0 0 0 0 0 0 0 0 1
## 327 1 0 0 0 0 1 0 0 0 0
## 328 0 0 0 0 0 1 1 0 1 0
## 329 1 0 0 0 0 0 0 0 1 0
## 330 1 0 0 0 0 0 0 0 0 0
## 331 0 0 0 0 0 0 0 0 1 0
## 332 1 0 0 0 0 0 0 0 1 0
## 333 0 0 0 0 0 1 0 0 1 0
## 334 0 0 0 0 0 1 0 0 0 0
## 335 0 0 0 0 0 0 0 0 0 0
## 336 0 0 0 0 0 0 0 0 1 0
## 337 1 0 0 0 0 0 0 0 1 0
## 338 0 0 0 0 0 0 0 0 0 0
## 339 1 0 0 0 0 0 0 0 0 0
## 340 1 0 0 0 0 0 0 0 0 0
## 341 0 0 0 0 0 0 0 0 0 0
## 342 0 0 0 0 0 1 0 0 0 0
## 343 0 0 0 1 0 0 0 1 0 0
## 344 1 0 0 0 0 0 0 0 0 0
## 345 1 0 0 0 0 0 0 0 0 0
## 346 1 0 0 0 0 0 0 0 0 0
## 347 1 0 0 0 0 0 0 0 0 0
## 349 0 0 0 0 0 0 0 0 1 0
## 350 0 0 0 0 0 1 0 0 1 0
## 351 0 0 0 1 0 0 0 0 0 0
## 352 0 0 0 0 1 0 0 0 0 0
## 353 0 0 0 1 0 0 0 1 0 0
## 354 0 0 0 0 0 0 1 0 0 0
## 355 0 0 0 0 0 0 0 1 1 0
## 356 1 0 0 0 0 1 0 0 1 0
## 357 1 0 0 0 0 0 0 0 0 0
## 358 0 0 0 0 0 0 0 1 1 0
## 359 0 0 0 0 0 0 0 0 1 0
## 360 0 0 0 0 0 0 0 0 0 0
## 361 0 0 0 0 0 0 0 0 1 0
## 362 0 0 0 0 1 0 0 0 0 0
## 363 0 0 0 0 0 0 0 0 0 0
## 364 0 0 0 0 0 0 0 0 0 0
## 365 1 0 0 0 0 0 0 0 0 0
## 366 1 0 0 0 0 0 0 0 0 0
## 367 0 0 0 0 0 0 0 0 0 0
## 368 0 0 0 0 0 0 0 0 0 0
## 369 0 0 0 0 0 0 0 0 0 0
## 370 1 0 0 0 0 0 0 0 1 0
## 371 1 0 0 0 0 0 1 0 0 0
## 372 0 0 0 0 0 0 0 0 0 0
## 373 0 0 0 0 0 0 0 1 0 0
## 374 0 0 0 0 0 0 0 0 0 0
## 375 1 0 0 0 0 0 0 0 0 0
## 376 0 0 0 0 0 0 0 0 0 0
## 377 0 0 0 0 0 0 0 0 0 0
## 378 1 0 0 0 0 0 0 0 0 0
## 379 0 0 0 1 0 0 0 0 0 0
## 380 0 0 0 0 0 0 0 1 0 0
## 381 0 0 0 0 0 0 1 0 0 0
## 382 1 0 0 0 0 0 0 0 0 0
## 383 0 0 0 0 0 0 0 0 0 0
## 384 0 0 0 0 0 0 0 0 0 0
## 385 0 0 0 0 0 0 1 0 0 0
## 386 0 0 0 0 0 0 0 0 0 0
## 387 1 0 0 0 0 0 0 0 0 0
## 388 0 0 0 0 0 0 0 0 0 0
## 389 0 0 0 0 0 0 0 0 0 0
## 390 0 0 0 0 0 0 0 0 0 0
## 391 0 0 0 0 0 0 0 0 0 0
## 392 1 0 0 0 0 0 0 0 0 0
## 393 0 0 0 0 0 0 0 0 0 0
## 394 0 0 0 0 0 1 1 0 0 0
## 395 0 0 0 0 0 0 0 0 0 0
## 396 0 0 0 1 0 0 0 0 0 0
## 397 0 0 0 0 0 0 0 0 0 0
## 398 0 0 0 0 0 0 0 1 0 0
## 399 0 0 0 0 0 0 0 0 0 0
## 400 0 0 0 0 0 0 0 0 0 0
## 401 0 0 0 0 0 0 0 0 0 0
## 402 0 0 0 0 0 0 1 0 1 0
## 403 1 0 0 0 0 0 0 0 0 0
## 404 0 0 0 0 0 0 0 0 0 0
## 405 0 0 0 0 0 1 0 0 0 0
## 406 0 0 0 1 0 0 0 0 1 0
## 407 0 0 0 0 0 0 0 0 0 0
## 408 0 0 0 0 0 0 0 0 1 0
## 409 1 0 0 0 0 0 0 0 0 0
## 410 0 0 0 0 0 0 0 0 0 0
## 411 0 1 0 0 0 0 1 1 0 0
## 412 0 0 0 0 0 0 0 0 0 0
## 413 0 0 0 1 0 0 0 0 0 0
## 414 0 0 0 0 0 0 0 0 0 0
## 415 0 0 0 0 0 0 0 0 0 0
## 416 1 0 0 0 0 0 0 0 0 0
## 417 1 0 0 0 0 0 0 0 0 0
## 418 0 0 0 0 1 0 0 0 0 0
## 419 0 0 0 0 1 0 0 0 0 0
## 420 0 0 0 0 1 0 0 0 0 0
## 421 1 0 0 0 0 0 1 0 0 0
## 422 0 0 0 0 0 0 0 0 0 0
## 423 1 1 0 0 0 0 0 1 0 0
## 424 0 0 0 1 0 0 0 0 0 0
## 425 0 0 0 0 0 0 0 0 0 0
## 426 0 0 0 0 0 0 0 1 1 1
## 427 1 0 0 0 0 0 0 0 0 0
## 428 0 0 0 0 0 0 0 0 0 0
## 429 1 0 0 0 0 0 0 1 0 0
## 430 0 0 0 0 0 0 0 0 0 1
## 431 0 0 0 0 0 0 0 0 0 0
## 432 0 0 0 0 1 0 0 0 0 0
## 433 0 0 0 0 0 0 0 0 0 0
## 434 0 0 0 0 0 0 0 1 0 0
## 435 0 0 0 0 0 0 0 0 0 0
## 436 0 0 0 1 0 0 0 0 0 0
## 437 0 0 0 1 0 0 0 0 0 0
## 438 0 0 0 1 0 0 0 0 0 0
## 439 0 0 0 1 0 0 0 0 0 0
## 440 0 0 0 1 0 0 0 0 0 0
## 441 0 0 0 1 0 0 0 0 0 0
## 442 0 0 0 1 0 0 0 0 0 0
## 443 0 0 0 1 0 0 0 0 0 0
## 444 0 0 0 1 0 0 0 1 0 0
## 445 0 0 0 1 0 0 0 0 0 0
## 446 0 0 0 1 0 0 0 0 0 0
## 447 0 0 0 1 0 0 0 0 0 0
## 448 0 0 0 1 0 0 0 0 0 0
## 449 0 0 0 0 0 0 0 1 0 0
## 450 0 0 0 0 0 0 0 1 0 0
## 451 0 0 0 0 1 0 1 0 0 0
## 452 0 0 0 1 0 0 0 0 0 0
## 453 0 0 0 1 0 0 0 0 0 0
## 454 1 0 0 0 0 0 0 0 0 0
## 455 0 0 0 0 0 0 0 0 0 0
## 456 0 0 0 0 0 0 0 0 0 0
## 457 1 0 0 0 0 0 0 0 0 0
## 458 1 0 0 0 0 0 0 0 0 0
## 459 1 0 0 0 0 0 0 0 0 0
## 460 1 0 0 0 0 0 0 0 0 0
## 461 1 0 0 0 0 0 0 0 0 0
## 462 1 0 0 0 0 0 1 0 0 0
## 463 0 0 0 0 0 0 0 0 0 0
## 464 1 0 0 0 0 0 0 0 0 0
## 465 0 0 0 0 0 0 1 0 0 0
## 466 0 0 0 0 0 0 0 0 1 0
## 467 1 0 0 0 0 0 0 0 0 0
## 468 1 0 0 0 0 0 0 0 0 0
## 469 1 0 0 0 0 0 0 0 0 0
## 470 0 0 0 0 0 0 0 0 0 0
## 471 1 0 0 0 0 0 0 0 0 1
## 472 0 1 0 0 0 0 0 0 0 0
## 473 0 0 0 0 1 0 0 0 0 0
## 474 0 0 0 0 0 0 0 1 0 1
## 475 1 0 0 0 0 0 0 0 0 0
## 476 0 0 0 0 0 0 0 0 0 0
## 477 0 0 0 0 0 0 0 0 0 0
## 478 0 0 0 0 0 0 1 0 0 0
## 479 0 0 0 0 0 1 0 0 1 0
## 480 0 0 0 0 0 0 0 0 1 0
## 481 1 0 0 0 0 0 0 0 0 0
## 482 0 0 0 0 0 0 0 0 0 0
## 483 1 0 0 0 0 0 1 0 0 1
## 484 0 0 1 0 0 1 0 0 0 0
## 485 0 0 0 0 1 0 1 0 0 0
## 486 0 0 0 0 0 0 1 0 0 0
## 487 0 0 0 0 0 0 1 0 0 0
## 488 0 0 1 0 0 0 0 0 0 0
## 489 0 0 1 0 0 0 1 0 1 0
## 490 0 0 0 0 0 0 1 0 1 0
## 491 0 0 0 0 0 0 0 0 0 0
## 492 1 0 0 0 0 0 0 0 0 0
## 493 0 0 0 0 0 1 0 0 0 0
## 494 0 0 0 0 0 0 0 0 0 0
## 495 0 0 0 0 0 0 0 0 0 0
## 496 1 0 0 0 0 0 0 0 0 0
## 497 0 0 0 0 0 0 0 0 0 0
## 498 0 0 0 0 0 0 1 0 0 1
## 499 1 0 0 0 0 0 0 0 0 0
## 501 0 0 0 0 1 0 0 0 0 0
## 502 0 0 0 0 0 0 0 0 0 1
## 503 1 0 0 0 0 0 0 0 0 0
## 504 1 0 0 0 0 0 0 0 0 0
## 505 0 0 0 0 0 1 0 0 1 0
## 506 1 0 0 0 0 0 0 0 0 0
## 507 1 0 0 0 0 0 0 0 0 0
## 508 1 0 0 0 0 0 0 0 0 0
## 509 1 0 0 0 0 0 0 0 0 0
## 510 1 0 0 0 0 0 0 0 0 0
## 511 0 0 0 0 0 0 0 0 0 1
## 512 1 0 0 0 0 0 1 0 0 0
## 513 0 0 0 0 0 1 0 0 1 0
## 514 0 0 0 0 0 0 1 0 0 0
## 515 1 0 0 0 0 0 0 0 0 1
## 516 0 0 0 0 0 0 0 0 0 0
## 517 1 0 0 0 0 0 1 0 0 0
## 518 1 0 0 0 0 0 0 0 0 0
## 519 0 0 0 0 0 0 0 0 0 0
## 520 0 0 0 0 0 0 0 0 0 1
## 521 1 0 0 0 0 0 0 0 0 1
## 522 1 0 0 0 0 0 0 0 0 0
## 523 1 0 0 0 0 0 0 0 0 0
## 524 0 0 0 0 0 0 0 0 0 0
## 525 0 0 1 0 0 1 0 0 0 0
## 526 1 0 0 0 0 0 0 0 0 0
## 527 1 0 0 0 0 0 0 0 0 0
## 528 1 0 0 0 0 0 0 0 0 1
## 529 1 0 0 0 0 0 0 0 0 0
## 530 0 0 0 0 0 0 0 0 0 0
## 531 1 0 0 0 0 0 1 0 0 0
## 532 0 0 0 0 0 0 1 0 0 0
## 533 0 0 0 0 0 1 0 0 0 0
## 534 1 0 0 0 0 0 0 0 0 0
## 535 0 0 0 0 0 0 1 0 0 0
## 536 1 0 0 0 0 0 0 0 0 0
## 537 1 0 0 0 0 0 0 0 0 0
## 538 0 0 0 0 1 0 0 0 0 0
## 539 0 0 0 0 0 0 0 0 0 0
## 540 0 0 0 0 0 0 0 0 0 0
## 541 0 0 0 0 0 0 0 0 0 0
## 542 0 0 0 0 1 0 1 0 0 0
## 543 1 0 0 0 1 0 0 0 0 0
## 544 1 0 0 0 0 0 1 0 0 0
## 545 0 0 0 0 0 0 1 0 0 0
## 546 0 0 0 0 0 0 0 0 1 0
## 547 0 0 0 0 0 0 0 0 0 0
## 548 0 1 0 0 0 0 0 0 0 0
## 549 1 0 0 0 0 0 1 0 0 1
## 550 0 0 0 0 0 0 0 0 1 0
## 551 0 0 0 1 0 0 0 0 0 0
## 552 0 0 0 0 0 0 0 1 0 0
## 553 1 0 0 0 0 0 1 0 0 0
## 554 0 0 0 0 0 0 0 0 0 0
## 555 1 0 0 0 0 0 0 0 0 0
## 556 0 0 0 0 0 0 0 0 0 0
## 557 1 0 0 0 1 0 0 0 0 0
## 558 1 1 0 0 0 0 0 0 1 0
## 559 1 0 0 1 0 0 0 0 0 0
## 560 0 1 0 0 0 0 1 1 0 0
## 561 1 0 0 1 0 0 0 0 0 0
## 562 0 0 0 0 0 0 0 0 0 0
## 563 0 0 0 1 0 0 0 0 0 0
## 564 0 0 0 1 0 0 0 0 0 0
## 565 0 0 0 1 0 0 0 0 1 0
## 566 0 0 0 0 0 0 0 0 1 0
## 567 0 0 0 1 0 0 0 0 0 0
## 568 0 0 0 0 0 0 1 0 1 0
## 569 1 0 0 1 0 0 0 0 0 0
## 570 0 0 0 0 0 0 0 0 0 0
## 571 0 0 0 0 0 0 0 0 1 0
## 572 0 0 0 0 0 0 0 0 1 0
## 573 0 0 0 1 0 0 0 1 1 0
## 574 0 0 0 0 0 1 1 0 1 0
## 575 0 0 0 0 0 0 0 0 0 0
## 576 0 0 0 0 0 0 0 0 0 0
## 577 0 0 0 0 0 0 0 1 0 0
## 578 0 0 0 0 0 0 0 1 0 0
## 579 0 0 0 0 0 0 0 0 0 0
## 580 0 0 0 0 0 0 1 0 0 0
## 581 1 0 0 0 0 0 0 0 1 0
## 582 1 0 0 0 0 0 1 0 0 0
## 583 0 0 0 0 0 0 0 0 1 0
## 584 1 0 0 0 0 0 0 0 0 0
## 585 0 0 0 0 0 0 0 0 0 0
## 586 0 0 0 0 0 0 0 0 0 0
## 587 1 0 0 0 0 1 0 0 0 0
## 588 0 0 0 0 1 0 0 0 0 0
## 589 0 0 0 0 0 0 0 0 0 0
## 590 0 0 0 1 0 0 0 1 0 0
## 591 1 0 0 0 0 0 0 0 1 0
## 592 0 0 0 0 0 1 0 0 1 0
## 593 0 0 0 0 0 0 0 0 0 1
## 594 1 0 0 0 0 0 1 0 0 0
## 595 0 0 0 0 0 0 0 0 1 0
## 596 0 0 0 0 1 0 0 0 0 0
## 597 0 0 0 0 0 0 0 0 1 0
## 598 1 0 0 0 0 0 0 0 0 0
## 599 0 0 0 0 0 0 0 0 0 0
## 600 0 0 0 0 0 0 0 0 0 0
## 601 0 0 0 0 0 0 0 0 0 1
## 602 0 0 0 0 1 0 1 0 0 0
## 603 0 0 0 0 0 1 0 0 1 0
## 604 0 0 0 0 0 0 0 0 0 0
## 605 0 0 0 0 1 0 0 0 0 0
## 606 1 0 0 0 0 0 0 0 0 0
## 607 0 0 0 0 0 0 1 0 1 0
## 608 0 0 0 0 0 1 1 0 1 0
## 609 0 0 0 0 0 0 0 0 0 0
## 610 0 0 0 0 1 0 0 0 0 0
## 611 0 0 1 0 0 1 0 0 0 0
## 612 1 0 0 0 0 0 0 0 0 0
## 613 0 0 0 0 0 0 0 0 0 0
## 614 1 0 0 0 0 0 0 0 0 0
## 615 0 0 0 0 0 0 0 0 1 0
## 616 0 0 0 1 0 0 0 1 0 0
## 617 1 0 0 0 0 0 0 0 0 0
## 618 1 0 0 0 0 0 0 0 0 0
## 619 1 0 0 0 0 0 0 0 1 0
## 620 1 0 0 0 0 0 0 0 0 0
## 621 0 0 0 0 0 0 0 0 0 0
## 622 0 0 0 0 0 0 0 0 0 0
## 623 0 0 0 0 0 0 0 0 0 0
## 624 0 0 0 0 1 0 0 0 0 0
## 625 0 0 0 0 0 0 0 0 0 0
## 626 1 0 0 0 0 0 0 0 0 0
## 627 1 0 0 0 0 0 0 0 0 0
## 628 1 0 0 0 0 0 0 0 0 0
## 629 0 0 0 0 1 0 0 0 0 0
## 630 0 0 0 0 1 0 0 0 0 0
## 631 1 0 0 0 0 0 1 0 0 1
## 632 1 0 0 0 0 0 0 0 0 0
## 633 1 0 0 0 0 0 0 0 0 0
## 634 0 0 0 0 0 0 0 0 0 0
## 635 0 0 0 1 0 0 0 0 0 0
## 636 0 0 0 0 0 0 0 1 1 0
## 637 0 0 0 1 0 0 0 0 0 0
## 638 1 0 0 0 0 0 0 0 0 0
## 639 1 0 0 0 0 0 0 0 0 0
## 640 1 0 0 0 0 0 0 0 0 0
## 641 1 0 0 0 0 0 0 0 0 1
## 642 1 0 1 0 0 0 0 0 0 0
## 643 1 0 0 0 0 0 1 0 0 0
## 644 0 0 0 0 0 0 0 0 0 0
## 645 0 0 0 0 0 0 0 0 0 0
## 646 0 0 0 0 0 0 0 0 0 0
## 647 1 0 0 0 0 0 0 0 0 1
## 648 0 0 0 0 0 0 1 0 0 0
## 649 1 0 0 0 0 0 0 0 1 0
## 650 1 0 0 0 0 0 0 0 0 0
## 651 1 0 0 0 0 0 0 0 0 1
## 652 1 0 0 0 0 0 0 0 0 0
## 653 0 0 1 0 0 0 0 0 1 0
## 654 0 0 1 0 0 1 0 0 1 0
## 655 1 0 0 0 0 0 0 0 0 0
## 656 0 0 1 0 0 0 0 0 1 0
## 657 0 0 1 0 0 0 0 0 1 0
## 658 1 0 0 0 0 0 0 0 0 0
## 659 0 0 0 0 0 1 0 0 1 0
## 660 1 0 0 0 0 0 0 0 0 0
## 661 0 0 0 0 0 0 0 0 0 0
## 662 1 0 0 0 0 0 1 0 0 0
## 663 0 0 0 0 0 0 0 0 0 0
## 664 1 0 0 0 0 0 0 0 0 0
## 665 0 0 0 1 0 0 0 1 1 0
## 666 0 0 0 1 0 0 0 0 0 0
## 667 0 0 0 1 0 0 0 0 0 0
## 668 0 0 0 1 0 0 0 0 0 0
## 669 0 0 0 1 0 0 0 0 0 0
## 671 0 0 0 1 0 0 0 0 0 0
## 672 0 0 0 1 0 0 0 0 0 0
## 673 0 0 1 0 0 0 0 0 1 0
## 674 0 0 0 1 0 0 0 0 0 0
## 675 0 0 0 1 0 0 0 0 0 0
## 676 1 0 0 0 0 0 0 0 0 0
## 677 0 0 0 0 0 0 0 0 0 0
## 678 1 0 0 0 0 0 0 0 1 0
## 679 0 0 0 0 0 0 0 0 0 0
## 681 0 0 0 1 0 0 0 0 0 0
## 682 0 0 0 1 0 1 0 0 1 0
## 683 0 0 0 0 0 0 0 0 0 0
## 684 0 0 0 0 0 0 0 0 1 0
## 685 0 0 0 0 0 0 0 0 1 0
## 686 1 0 0 0 0 0 0 0 0 0
## 687 0 0 0 0 0 0 0 0 0 1
## 688 0 0 0 0 0 0 0 0 0 0
## 689 0 0 0 0 0 0 0 0 1 0
## 690 1 0 0 0 0 0 0 0 0 1
## 691 0 0 1 0 0 0 0 1 1 0
## 692 1 0 0 0 0 0 1 0 0 0
## 693 1 0 0 0 0 0 0 0 0 0
## 694 0 0 0 0 0 0 1 0 0 0
## 695 1 0 0 0 0 0 0 0 0 0
## 696 1 0 0 0 0 0 0 0 1 0
## 697 1 0 0 0 0 0 0 0 0 0
## 698 1 0 0 0 0 0 0 0 0 0
## 699 1 0 0 0 0 0 0 0 0 0
## 700 0 0 0 0 0 0 0 0 0 0
## 701 0 0 0 0 0 0 0 0 0 0
## 702 0 0 0 0 0 0 1 0 0 0
## 703 1 0 0 0 0 0 0 0 0 0
## 704 1 0 0 0 0 0 1 0 0 0
## 705 0 0 0 0 1 0 1 0 0 0
## 706 0 0 0 1 0 0 0 0 0 0
## 707 1 0 0 0 0 0 0 0 0 0
## 708 1 0 0 0 0 0 0 0 0 0
## 709 0 0 0 0 0 0 1 0 0 0
## 710 0 0 0 0 0 0 0 0 0 0
## 711 1 0 0 0 0 0 0 0 0 0
## 712 1 0 0 0 0 0 0 0 0 0
## 713 1 0 0 0 0 0 0 0 0 0
## 714 1 0 0 0 0 0 1 0 0 0
## 715 1 0 0 0 0 0 0 0 0 0
## 716 1 0 0 0 0 0 1 0 0 0
## 717 1 0 0 0 0 0 0 0 1 0
## 718 0 0 0 0 0 0 0 0 0 0
## 719 0 0 0 0 0 0 0 0 0 1
## 720 1 0 0 0 0 0 1 0 0 0
## 721 0 0 0 0 0 0 0 0 0 0
## 722 0 0 0 0 0 0 0 0 0 0
## 723 1 0 0 0 0 0 0 0 0 0
## 724 1 0 0 0 0 0 1 0 0 0
## 725 0 0 0 0 0 0 0 0 0 0
## 726 1 0 0 0 0 0 0 0 0 0
## 727 1 0 0 0 0 0 1 0 0 0
## 728 0 0 0 0 0 0 0 1 0 0
## 729 1 0 0 0 0 0 0 0 0 0
## 730 1 0 0 0 0 0 1 0 0 0
## 731 1 0 0 0 0 0 1 0 0 0
## 732 0 0 0 0 0 0 1 0 0 0
## 733 1 0 0 0 0 0 1 0 0 0
## 734 0 0 0 0 0 0 0 0 0 0
## 735 1 0 0 0 0 0 0 0 0 0
## 736 1 0 0 0 0 0 1 0 0 0
## 737 1 0 0 0 0 0 0 0 0 0
## 738 0 0 0 0 0 0 1 0 0 0
## 739 0 0 0 0 0 0 1 0 0 0
## 740 1 0 0 0 0 0 1 0 0 0
## 741 1 0 0 0 0 0 0 0 1 0
## 742 1 0 0 0 0 0 0 0 1 0
## 743 0 0 0 0 0 0 0 0 1 0
## 744 1 0 0 0 0 0 0 0 0 1
## 745 0 0 0 0 0 0 0 0 0 0
## 746 0 0 0 0 0 0 0 0 0 0
## 747 0 0 0 0 0 0 1 0 0 0
## 748 0 0 0 0 0 0 1 0 1 0
## 749 0 0 0 0 0 0 1 0 0 0
## 750 1 0 0 0 0 0 0 0 0 0
## 751 0 0 0 0 0 0 1 0 1 0
## 752 0 0 0 0 0 0 0 0 1 0
## 753 1 0 0 0 0 0 0 0 0 0
## 754 0 0 0 0 0 0 0 0 1 0
## 755 0 1 0 0 0 0 0 1 0 0
## 756 0 0 0 0 0 0 0 0 0 0
## 757 0 0 0 0 0 0 0 0 0 0
## 758 0 0 0 0 0 0 0 1 1 0
## 759 0 0 0 0 0 0 0 0 0 0
## 760 0 0 0 0 0 0 0 1 0 0
## 761 0 0 0 0 0 0 0 0 1 0
## 762 1 0 0 0 0 0 0 0 0 0
## 763 0 0 0 0 0 0 0 0 0 0
## 764 0 0 0 0 0 0 1 0 0 0
## 765 0 0 0 0 0 0 1 0 0 0
## 766 0 0 0 0 0 0 0 0 0 0
## 767 0 0 0 1 0 0 0 0 0 0
## 768 0 0 0 0 0 0 0 0 0 0
## 769 0 0 0 0 0 1 0 1 0 0
## 770 0 0 1 0 0 1 0 0 1 0
## 771 0 0 0 0 0 0 0 1 1 0
## 772 1 0 0 0 0 0 0 0 0 0
## 773 0 0 0 0 0 0 0 0 1 0
## 774 0 0 0 1 0 0 0 0 0 0
## 775 1 0 0 0 0 0 1 0 0 0
## 776 1 0 0 0 0 0 0 0 0 0
## 777 0 0 0 1 0 0 0 0 0 0
## 778 1 0 0 0 0 0 1 0 0 0
## 779 0 0 0 0 0 0 0 0 0 0
## 780 0 0 0 0 0 0 0 0 0 0
## 781 0 0 0 0 0 0 1 0 0 0
## 782 1 0 0 0 0 0 0 0 0 0
## 783 0 0 0 0 0 0 1 0 0 0
## 784 1 0 0 1 0 0 0 0 0 0
## 785 0 0 0 0 0 0 1 0 0 0
## 786 0 0 0 0 0 0 1 0 0 0
## 787 1 0 0 0 0 0 0 0 0 0
## 788 0 0 0 1 0 0 0 0 1 0
## 789 1 0 0 0 0 0 0 0 0 0
## 790 0 0 0 0 0 0 0 0 0 0
## 791 0 0 0 0 0 0 0 0 0 0
## 792 0 0 0 0 0 0 0 0 0 0
## 793 0 0 0 0 0 0 0 0 0 0
## 794 1 0 0 0 0 0 1 0 0 0
## 795 0 0 0 0 0 0 0 0 0 0
## 796 0 0 0 0 0 0 1 0 0 0
## 797 0 0 0 0 0 0 0 1 0 0
## 798 0 0 0 0 0 0 0 0 0 0
## 799 1 0 0 0 0 0 0 0 0 0
## 800 0 0 0 1 0 0 0 0 1 0
## 801 0 0 0 0 0 0 0 0 0 0
## 802 0 0 0 0 0 0 0 0 1 0
## 803 1 0 0 0 0 0 0 0 0 1
## 804 0 0 0 0 0 0 0 0 0 0
## 805 0 0 0 0 0 1 0 0 0 0
## 806 1 0 0 0 0 0 0 0 0 0
## 807 1 0 0 0 0 0 0 0 0 0
## 808 1 0 0 0 0 0 0 0 0 0
## 809 1 0 0 0 0 1 0 0 0 0
## 810 0 0 0 0 0 0 0 0 0 0
## 811 0 0 0 0 0 0 0 0 0 0
## 812 0 0 0 0 0 0 0 0 0 0
## 813 0 0 0 0 0 0 0 0 0 0
## 814 0 0 0 0 0 0 0 0 0 0
## 815 1 0 0 0 0 0 1 0 0 0
## 816 0 0 0 1 0 0 0 0 0 0
## 817 1 0 0 0 0 0 0 0 0 0
## 818 0 0 0 0 0 0 0 0 0 0
## 819 0 0 0 0 0 0 0 0 0 0
## 820 0 1 0 0 0 0 0 0 0 0
## 821 0 0 0 0 0 0 1 0 0 0
## 822 1 0 0 0 0 0 0 0 0 0
## 823 0 0 1 0 0 0 0 0 1 0
## 824 0 0 0 0 0 0 0 0 0 0
## 825 0 0 0 0 0 0 0 1 1 0
## 826 0 0 0 0 0 0 0 0 0 0
## 827 0 0 0 0 0 0 0 0 1 0
## 828 0 0 0 0 0 0 0 0 0 0
## 829 0 0 0 0 0 0 0 0 0 0
## 830 0 0 0 0 0 1 0 0 1 0
## 831 0 0 0 0 0 0 0 1 1 0
## 832 1 1 0 0 0 0 0 0 0 0
## 833 0 0 0 0 0 0 0 0 0 0
## 834 0 0 0 1 0 0 0 0 1 0
## 835 0 0 0 0 1 0 1 0 0 0
## 836 0 0 0 0 0 0 1 0 0 0
## 837 1 0 0 0 0 0 0 0 0 0
## 838 0 0 0 0 0 0 0 0 0 0
## 839 0 0 0 1 0 0 0 0 1 0
## 840 1 0 0 0 0 0 0 0 0 0
## 841 0 0 0 0 0 0 0 0 1 0
## 842 1 0 0 0 0 0 0 0 0 0
## 843 0 0 0 0 0 0 0 0 0 0
## 844 0 0 0 0 0 0 0 0 0 0
## 845 0 0 0 0 0 0 0 0 0 0
## 846 1 0 0 0 0 0 1 0 0 0
## 847 1 0 0 0 0 0 0 0 0 0
## 848 0 0 1 0 0 0 0 0 1 0
## 849 0 0 0 0 0 0 1 0 0 0
## 850 0 0 0 0 0 0 0 0 0 0
## 851 1 0 0 0 0 0 0 0 0 0
## 852 1 0 0 0 0 0 0 0 1 0
## 853 0 0 0 1 0 0 0 0 0 0
## 854 0 0 0 1 0 0 0 0 0 0
## 855 1 0 0 0 0 1 1 0 1 0
## 856 1 0 0 0 0 0 0 0 0 0
## 857 0 0 0 0 0 0 0 0 0 0
## 858 0 0 0 1 0 0 0 0 0 0
## 859 0 0 0 1 0 0 0 0 0 0
## 860 0 0 0 1 0 0 0 0 1 0
## 861 0 0 0 1 0 0 0 0 0 0
## 862 0 0 0 0 0 0 0 0 0 0
## 863 1 0 0 0 0 0 0 0 0 0
## 864 0 0 0 0 0 0 0 0 0 0
## 866 0 0 0 0 0 0 1 0 0 0
## 867 1 0 0 0 0 0 0 0 0 0
## 868 1 0 0 0 0 0 0 0 0 0
## 869 0 0 0 0 0 0 1 0 0 0
## 870 0 0 0 0 0 0 1 0 0 0
## 871 0 0 0 0 0 0 0 0 0 0
## 872 0 0 0 0 0 0 1 0 0 0
## 873 0 0 0 0 0 0 1 0 0 0
## 874 1 0 0 0 0 0 0 0 0 0
## 875 1 0 0 0 0 0 1 0 0 0
## 876 0 0 0 0 0 0 0 0 0 0
## 877 0 0 0 0 0 0 1 0 0 0
## 878 0 0 0 0 0 1 0 0 0 0
## 879 0 0 0 0 0 0 0 0 1 1
## 880 1 0 0 0 0 0 0 0 0 0
## 882 1 0 0 0 0 0 0 0 0 0
## 883 1 0 0 0 0 0 0 0 0 0
## 884 0 0 0 0 0 0 0 0 0 0
## 885 0 0 0 1 0 0 0 0 0 0
## 886 0 0 0 0 0 0 1 0 1 0
## 887 1 0 0 0 0 0 0 0 0 0
## 888 1 0 0 0 0 0 0 0 0 0
## 889 0 0 0 0 0 0 1 0 0 0
## 890 0 0 0 0 0 0 0 0 0 0
## 891 1 0 0 0 0 0 0 0 0 1
## 892 0 1 0 0 0 0 0 0 0 0
## 893 0 0 0 0 0 0 0 0 0 0
## 894 0 0 0 0 0 0 0 0 0 0
## 895 0 0 0 1 0 0 0 0 1 0
## 896 1 0 0 0 0 0 0 0 0 0
## 897 0 0 0 0 0 0 0 1 0 0
## 898 1 0 0 0 0 0 0 0 0 0
## 899 1 0 0 0 0 0 0 0 0 0
## 900 1 0 0 0 0 0 0 0 0 0
## 901 0 0 0 0 0 0 0 0 0 0
## 902 0 0 0 0 0 1 0 0 1 0
## 903 1 0 0 0 0 0 1 0 0 0
## 904 1 0 0 0 0 0 0 0 0 0
## 905 1 0 0 0 0 0 1 0 0 0
## 906 1 0 0 0 0 0 1 0 0 0
## 907 0 0 0 0 0 0 0 0 0 0
## 908 0 0 0 0 0 0 0 0 0 0
## 909 1 0 0 0 0 0 0 0 0 0
## 910 1 0 0 0 0 0 0 0 0 0
## 911 1 0 0 0 0 0 0 0 0 0
## 912 0 0 0 0 0 0 0 0 1 0
## 913 0 0 0 0 0 0 0 0 0 0
## 914 1 0 0 0 0 1 0 0 1 0
## 915 1 0 0 0 0 0 0 0 0 0
## 916 0 0 0 0 0 0 0 1 1 0
## 917 1 0 0 0 0 0 0 0 1 0
## 918 0 0 0 0 0 0 1 0 0 0
## 919 0 0 0 0 0 0 0 1 0 0
## 920 1 0 0 0 0 0 0 0 0 0
## 921 1 0 0 0 0 0 1 0 0 0
## 922 0 0 0 0 0 0 0 0 0 0
## 923 1 0 0 0 0 0 0 0 0 0
## 924 1 0 0 0 0 0 0 0 0 0
## 925 0 0 0 0 0 0 0 1 1 0
## 926 0 0 0 0 0 0 0 0 0 0
## 927 1 0 0 0 0 0 0 0 0 0
## 928 1 0 0 1 0 0 0 0 0 0
## 929 0 0 0 0 0 0 0 0 0 0
## 930 0 0 0 0 0 0 0 0 1 0
## 931 0 0 0 0 0 0 0 1 1 0
## 932 0 0 0 0 0 0 0 0 0 0
## 933 1 0 0 0 0 0 0 0 0 0
## 934 1 0 0 0 0 0 0 0 0 0
## 935 1 0 0 0 0 0 0 0 0 1
## 936 1 0 0 0 0 0 1 0 0 0
## 937 1 0 0 0 0 0 0 0 0 0
## 938 0 0 0 0 0 0 1 0 0 0
## 939 1 0 0 0 0 0 0 0 1 0
## 940 0 0 0 0 0 0 0 0 0 0
## 941 1 0 0 0 0 0 0 0 0 0
## 942 1 0 0 0 0 0 0 0 0 0
## 943 0 0 0 0 0 0 0 0 1 0
## 944 1 0 0 0 0 0 0 0 0 1
## 945 0 0 0 0 0 1 1 0 1 0
## 946 0 0 0 0 0 0 0 0 0 0
## 947 0 0 0 0 0 0 1 0 0 0
## 948 0 0 0 0 0 0 1 0 0 0
## 949 1 0 0 0 0 0 1 0 0 0
## 950 1 0 0 0 0 0 0 0 0 0
## 951 0 1 0 0 0 0 0 0 0 0
## 952 0 0 0 0 0 0 0 0 0 0
## 953 1 0 0 0 0 0 0 0 0 0
## 954 0 0 0 0 0 0 0 0 0 0
## 955 1 0 0 0 0 0 1 0 0 0
## 956 1 0 0 0 0 0 0 0 0 0
## 957 0 0 0 0 0 0 0 0 0 0
## 958 1 0 0 0 0 0 0 0 0 0
## 959 0 0 0 0 0 0 0 0 0 0
## 960 1 0 0 0 0 0 0 0 0 0
## 961 1 0 0 0 0 0 0 0 0 0
## 962 1 0 0 0 0 0 0 0 0 0
## 963 1 0 0 0 0 0 0 0 1 0
## 964 1 0 0 0 0 0 0 0 0 0
## 965 0 0 0 0 1 0 0 0 0 0
## 966 0 0 0 0 0 0 1 0 0 0
## 967 1 0 0 0 0 0 0 0 0 0
## 968 0 0 0 0 1 0 0 0 0 0
## 969 0 0 0 0 0 0 0 0 0 0
## 970 0 0 0 0 0 0 0 0 0 0
## 971 0 0 0 0 0 0 0 0 0 1
## 972 1 0 0 0 0 0 0 0 0 0
## 973 0 0 0 0 0 0 0 0 0 0
## 974 1 0 0 0 0 0 0 0 1 0
## 975 0 0 0 0 0 0 0 0 1 0
## 976 0 0 0 0 0 0 0 1 1 0
## 977 0 0 0 0 0 0 0 0 0 0
## 978 0 0 0 0 0 1 0 0 1 0
## 979 1 0 0 0 0 0 0 0 1 0
## 980 1 0 0 0 0 0 0 0 0 0
## 981 1 0 0 0 0 0 0 0 0 0
## 982 0 0 0 0 0 0 0 0 1 0
## 983 0 0 0 0 0 0 0 0 1 0
## 984 0 0 0 0 0 0 0 0 1 0
## 985 1 0 0 0 0 0 0 0 0 0
## 986 0 0 0 0 0 0 0 0 1 0
## 987 0 0 0 0 0 0 0 0 1 0
## 988 0 0 0 0 0 0 1 0 0 0
## 989 0 0 0 0 1 0 0 0 0 0
## 990 1 0 0 0 0 0 1 0 0 0
## 991 0 0 0 0 0 0 0 0 0 0
## 992 0 0 0 0 0 0 0 0 1 0
## 993 0 0 0 0 1 0 0 0 0 0
## 994 1 0 0 0 0 0 0 0 0 0
## 995 0 0 0 0 0 0 0 0 0 0
## 996 0 0 0 0 0 0 0 0 0 0
## 997 0 0 0 0 0 0 0 0 0 0
## 998 0 0 0 0 0 0 0 0 0 0
## 999 0 0 0 0 0 0 0 0 0 0
## 1000 0 0 0 0 0 0 0 0 0 0
## 1001 0 0 0 0 0 0 0 0 0 0
## 1002 0 0 0 0 0 0 0 0 0 0
## 1004 1 0 0 0 0 0 0 0 0 0
## 1005 1 0 0 0 0 0 0 0 0 0
## 1006 1 0 0 0 0 0 0 1 0 0
## 1007 0 0 0 0 0 0 0 0 0 0
## 1008 1 0 0 0 0 0 0 0 0 0
## 1009 1 0 0 0 0 0 0 0 0 0
## 1010 1 0 0 0 0 0 0 0 0 0
## 1011 0 0 0 0 0 0 0 0 0 0
## 1012 1 0 0 0 0 0 0 0 0 0
## 1013 0 0 0 0 0 0 0 0 1 0
## 1014 0 0 0 0 0 0 0 0 0 0
## 1015 1 0 0 0 0 0 0 0 0 0
## 1016 0 0 0 0 0 0 0 0 1 0
## 1017 1 0 0 0 0 0 0 0 0 0
## 1018 1 0 0 0 0 0 0 0 0 0
## 1019 0 0 0 0 0 0 0 0 1 0
## 1020 0 0 0 0 0 1 0 0 1 0
## 1021 1 0 0 0 0 0 0 0 0 0
## 1022 0 0 0 0 0 0 0 0 0 0
## 1023 0 0 0 0 0 0 0 0 0 0
## 1024 0 0 0 0 0 0 1 0 0 0
## 1025 1 0 0 0 0 0 0 0 1 0
## 1026 1 0 0 0 0 0 0 0 0 0
## 1027 0 0 0 0 0 0 0 0 0 0
## 1028 0 0 0 0 0 0 1 0 0 0
## 1029 0 0 0 0 0 0 0 0 0 0
## 1030 0 0 0 0 0 0 0 0 0 0
## 1031 0 0 0 0 0 0 0 0 0 0
## 1032 0 0 0 0 0 0 0 0 0 0
## 1033 0 0 0 0 0 0 0 0 0 0
## 1034 0 0 0 0 0 0 0 0 0 0
## 1035 0 0 0 0 0 0 0 0 0 0
## 1036 0 1 0 0 0 0 0 0 0 0
## 1037 0 0 0 0 1 0 1 0 0 0
## 1038 0 0 0 0 0 0 0 0 1 0
## 1039 1 0 0 0 0 0 0 0 0 0
## 1040 0 0 0 0 0 0 1 0 0 0
## 1041 0 0 0 0 0 0 1 0 0 0
## 1042 0 0 0 0 0 1 0 0 1 0
## 1043 0 0 0 0 0 0 0 0 0 0
## 1044 1 0 0 0 0 0 0 0 0 0
## 1045 1 0 0 0 0 0 0 0 0 0
## 1046 0 0 0 0 0 0 0 0 1 0
## 1047 0 0 0 0 0 0 0 0 0 0
## 1048 0 0 0 0 0 0 1 0 0 0
## 1049 0 0 0 0 0 0 0 0 0 0
## 1050 1 0 0 0 0 0 1 0 0 0
## 1051 0 0 0 0 0 0 0 0 0 0
## 1052 0 0 0 1 0 0 0 0 0 0
## 1053 1 0 0 0 0 0 0 0 0 0
## 1054 0 0 0 0 0 0 0 0 0 0
## 1055 1 0 0 0 0 0 0 0 0 0
## 1056 0 0 0 1 0 0 0 0 0 0
## 1057 0 0 0 0 0 0 0 0 0 0
## 1058 1 0 0 0 0 0 0 0 0 0
## 1059 0 0 0 0 0 0 0 0 0 0
## 1060 0 0 0 0 0 0 0 0 0 0
## 1061 1 0 0 0 0 0 0 0 0 0
## 1062 1 0 0 0 0 0 0 0 0 0
## 1063 1 0 0 0 0 0 0 0 0 0
## 1064 0 0 1 0 0 0 0 0 0 0
## 1065 0 0 0 0 0 0 0 0 0 1
## 1066 0 0 0 0 0 0 0 0 0 0
## 1067 0 0 0 0 0 0 0 0 0 0
## 1068 1 0 0 0 0 0 0 0 0 0
## 1069 1 0 0 0 0 0 0 0 1 0
## 1070 0 0 0 0 0 0 0 0 0 0
## 1071 0 0 0 0 0 0 0 0 0 0
## 1072 0 0 0 0 0 0 1 0 0 0
## 1073 0 0 0 0 0 0 0 0 1 0
## 1074 1 0 0 0 0 0 0 0 0 0
## 1075 1 0 0 0 0 0 0 0 0 0
## 1076 0 1 0 0 0 0 0 0 0 0
## 1077 0 0 0 0 0 0 0 0 1 0
## 1078 0 0 0 0 0 0 0 0 0 0
## 1079 0 0 0 0 1 0 0 0 0 0
## 1080 0 0 0 0 0 0 0 0 0 0
## 1081 0 0 0 0 0 0 0 0 0 0
## 1082 1 0 0 0 0 0 0 0 0 0
## 1083 0 0 0 0 0 0 0 0 1 0
## 1084 0 0 0 0 0 0 0 0 0 0
## 1085 1 0 0 0 0 0 1 0 0 0
## 1086 1 0 0 0 0 0 0 0 0 0
## 1087 0 0 0 0 0 0 0 0 0 0
## 1088 0 0 0 0 0 0 0 0 0 0
## 1089 0 0 0 0 0 0 1 0 1 0
## 1090 0 0 0 0 0 0 0 0 1 0
## 1091 0 0 0 0 1 0 0 0 0 0
## 1092 0 0 0 0 0 0 0 0 0 0
## 1093 0 0 0 0 0 0 0 0 0 0
## 1094 0 0 0 0 0 0 0 0 0 0
## 1095 0 0 0 0 0 0 0 0 0 0
## 1096 0 0 0 0 0 0 1 0 0 0
## 1097 1 0 0 0 0 0 0 0 0 0
## 1098 0 0 0 0 0 0 0 0 0 0
## 1099 1 0 0 0 0 0 0 0 0 0
## 1100 1 0 0 0 0 0 1 0 0 0
## 1101 1 0 0 0 0 1 0 0 0 0
## 1102 0 0 0 0 0 0 1 0 0 0
## 1103 1 0 0 0 0 0 0 0 0 0
## 1104 1 0 0 0 0 0 0 0 0 0
## 1105 0 0 0 0 0 0 0 0 1 0
## 1106 1 0 0 0 0 0 0 0 0 0
## 1107 1 0 0 0 0 0 0 0 0 0
## 1108 1 0 0 0 0 0 0 0 0 0
## 1109 1 0 0 0 0 0 0 0 1 0
## 1110 0 0 0 0 1 0 0 1 0 0
## 1111 1 0 0 0 0 0 0 0 0 0
## 1112 1 0 0 0 0 0 0 0 0 0
## 1113 1 0 0 0 0 0 0 0 0 0
## 1114 0 0 0 0 0 0 0 0 0 0
## 1115 1 0 0 0 0 0 1 0 0 0
## 1116 0 0 0 0 0 0 0 0 0 0
## 1117 1 0 0 0 0 0 0 0 0 0
## 1118 0 0 0 0 0 0 0 0 0 0
## 1119 1 0 0 0 0 0 1 0 0 0
## 1120 0 0 0 0 0 0 0 0 0 0
## 1121 1 0 0 0 1 0 0 0 0 0
## 1122 1 0 0 0 0 0 0 0 0 0
## 1123 1 0 0 0 0 0 0 0 0 0
## 1124 0 0 0 0 0 0 1 0 0 1
## 1125 0 0 0 0 0 0 0 0 1 0
## 1126 1 0 0 0 0 0 0 0 0 0
## 1127 1 0 0 0 0 0 0 0 0 0
## 1128 0 0 0 0 0 0 0 0 0 0
## 1129 1 0 0 0 0 1 1 0 0 0
## 1130 0 0 0 0 0 0 0 0 0 0
## 1131 0 0 0 0 0 0 0 0 1 0
## 1132 1 0 0 0 0 0 1 0 0 0
## 1133 0 1 0 0 0 0 0 0 0 0
## 1134 1 0 0 0 0 0 0 0 0 0
## 1135 1 0 0 0 1 0 0 0 0 0
## 1136 1 0 0 0 0 0 0 0 0 0
## 1137 1 0 0 0 0 0 1 0 0 0
## 1138 1 0 0 0 0 0 0 0 0 0
## 1139 0 0 0 0 0 0 0 0 1 0
## 1140 0 0 0 0 0 0 0 0 0 0
## 1141 0 0 0 0 0 0 0 0 0 0
## 1142 0 0 0 0 0 0 0 0 0 0
## 1143 0 0 0 0 0 0 0 0 1 0
## 1144 1 0 0 0 0 0 0 0 0 0
## 1145 1 0 0 0 0 0 0 0 0 0
## 1146 1 0 0 0 0 0 0 0 0 0
## 1147 1 0 0 0 0 0 0 0 0 0
## 1148 1 0 0 0 0 0 0 0 0 0
## 1149 1 0 0 0 0 0 0 0 0 0
## 1150 1 0 0 0 0 0 0 0 0 0
## 1151 0 0 0 0 0 0 0 0 0 0
## 1152 0 0 0 0 0 0 1 0 0 1
## 1153 1 0 0 0 1 0 0 0 0 0
## 1154 0 0 0 0 0 0 0 1 0 0
## 1155 0 0 0 0 0 0 1 0 0 0
## 1156 1 0 0 0 0 0 0 0 0 0
## 1157 0 0 0 1 0 0 0 0 0 0
## 1158 1 0 0 0 0 0 0 0 0 0
## 1159 0 0 0 0 0 1 0 1 0 0
## 1160 1 0 0 0 0 0 1 0 0 0
## 1161 1 0 0 0 0 0 0 0 0 0
## 1162 0 0 0 0 0 0 0 0 0 0
## 1163 1 0 0 0 0 0 0 0 0 0
## 1164 0 0 0 0 0 0 0 0 0 0
## 1165 1 0 0 0 0 0 0 0 0 0
## 1166 0 0 0 0 0 0 0 0 0 0
## 1167 0 0 0 0 0 0 0 0 0 0
## 1168 1 0 0 0 0 0 0 0 0 0
## 1169 1 0 0 0 0 0 0 0 0 0
## 1170 1 0 0 0 0 0 0 0 0 0
## 1171 1 0 0 0 0 0 0 0 0 0
## 1172 0 0 0 0 0 0 0 0 0 0
## 1173 1 0 0 0 0 0 1 0 0 0
## 1174 1 0 0 0 0 0 0 0 1 0
## 1175 0 0 0 0 0 0 1 0 0 0
## 1176 1 0 0 0 0 0 0 0 0 1
## 1177 0 0 0 0 0 0 0 0 0 0
## 1178 0 0 0 0 0 0 0 0 0 0
## 1179 0 0 0 0 0 0 0 0 0 0
## 1180 0 0 0 0 0 0 0 0 0 0
## 1181 0 0 0 0 0 0 0 0 0 0
## 1182 0 0 0 0 0 0 0 0 0 0
## 1183 0 0 0 0 0 0 0 0 0 0
## 1184 0 0 0 0 0 0 0 0 0 0
## 1185 0 0 0 0 0 0 0 0 0 1
## 1186 1 0 0 0 0 0 0 0 0 0
## 1187 0 0 0 0 0 0 0 0 0 0
## 1188 0 0 0 0 0 0 0 0 0 0
## 1189 1 0 0 0 0 0 0 0 0 0
## 1190 0 0 0 0 0 0 1 0 0 0
## 1191 1 0 0 0 0 0 0 0 0 0
## 1192 1 0 0 0 0 0 0 0 0 0
## 1193 1 0 0 0 0 0 0 0 0 0
## 1194 1 0 0 0 0 0 0 0 0 0
## 1195 1 0 0 0 0 0 0 0 0 0
## 1196 1 0 0 0 0 0 0 0 0 0
## 1197 1 0 0 0 0 0 0 0 0 0
## 1198 0 0 0 0 0 0 0 0 1 0
## 1199 0 0 0 1 0 0 0 0 0 0
## 1200 1 0 0 0 0 0 0 0 0 0
## 1201 0 0 0 0 0 0 0 0 0 0
## 1202 0 0 0 0 0 0 0 0 0 0
## 1203 0 0 0 0 1 0 1 0 0 0
## 1204 1 0 0 0 0 0 0 0 0 1
## 1205 1 0 0 0 0 0 0 0 0 0
## 1206 0 0 0 0 0 0 0 0 0 0
## 1207 0 0 0 0 0 0 0 0 1 0
## 1208 1 0 0 0 0 0 0 0 1 0
## 1209 0 0 0 0 0 0 0 0 0 0
## 1210 0 0 0 0 0 0 0 1 1 0
## 1211 1 0 0 0 0 0 1 0 0 0
## 1212 1 0 0 0 0 1 1 0 0 0
## 1213 1 0 0 0 0 0 0 0 1 0
## 1214 1 0 0 0 0 0 0 0 0 0
## 1215 0 0 0 0 0 0 0 1 0 0
## 1216 0 0 0 0 0 0 1 0 0 0
## 1217 0 0 0 0 0 0 0 0 1 0
## 1218 0 0 0 0 0 0 0 0 0 0
## 1219 0 0 0 0 0 0 1 0 0 0
## 1220 1 0 0 0 0 0 0 0 0 0
## 1221 1 0 0 0 0 0 0 0 0 0
## 1222 0 0 0 0 0 0 0 0 0 0
## 1223 1 0 0 0 0 0 0 0 0 0
## 1224 1 0 0 0 0 0 0 0 0 0
## 1225 0 0 0 0 0 0 0 0 0 0
## 1226 1 0 0 0 0 0 0 0 0 0
## 1227 1 0 0 0 0 0 0 0 0 0
## 1228 0 0 0 0 0 0 0 0 0 0
## 1229 1 0 0 0 0 0 0 0 1 0
## 1230 0 0 0 0 0 0 0 0 0 0
## 1231 1 0 0 0 0 0 0 0 0 0
## 1232 0 0 0 0 0 0 0 0 0 0
## 1233 1 0 0 0 0 0 0 0 0 0
## 1234 0 0 0 0 0 0 0 0 0 0
## 1235 0 0 0 0 0 0 0 0 0 0
## 1236 1 0 0 0 0 0 0 0 0 0
## 1237 1 0 0 0 0 0 0 0 0 0
## 1238 1 0 0 0 0 0 0 0 0 0
## 1239 0 0 0 0 0 0 1 0 0 0
## 1240 0 0 0 0 0 0 0 1 0 0
## 1241 1 0 0 0 0 0 0 0 0 0
## 1242 0 0 0 0 0 0 0 0 0 0
## 1243 0 0 0 1 0 0 0 0 0 0
## 1244 0 0 0 0 0 0 0 0 0 0
## 1245 0 0 0 0 0 0 0 0 0 0
## 1246 0 0 0 0 0 0 0 0 0 0
## 1247 0 0 0 0 0 0 0 0 0 0
## 1248 0 0 0 0 0 0 0 0 1 0
## 1249 0 0 0 0 0 0 0 0 0 0
## 1250 0 0 0 0 0 0 0 0 0 0
## 1251 0 0 0 0 0 0 0 0 0 0
## 1252 1 0 0 0 0 0 0 0 0 0
## 1253 0 0 0 0 0 0 0 0 1 0
## 1254 0 0 0 0 0 0 0 0 0 0
## 1255 1 0 0 0 0 0 0 0 0 0
## 1256 1 0 0 0 0 0 0 0 0 0
## 1258 0 0 0 0 0 0 1 0 0 0
## 1259 0 0 0 0 0 0 1 0 0 0
## 1260 1 0 0 0 0 0 0 0 0 0
## 1261 1 0 0 0 0 0 0 0 0 0
## 1262 0 0 0 0 0 0 1 0 0 0
## 1263 1 0 0 0 0 0 0 0 0 0
## 1264 1 0 0 0 0 0 0 0 0 0
## 1265 1 0 0 0 0 0 0 0 0 0
## 1266 1 0 0 0 0 0 0 0 0 0
## 1267 1 0 0 0 0 0 0 0 0 0
## 1268 1 0 0 0 0 0 0 0 0 0
## 1269 0 0 0 0 0 0 1 0 0 0
## 1270 0 0 0 0 0 0 0 0 0 0
## 1271 0 0 0 0 0 0 0 0 0 0
## 1272 1 0 0 0 0 0 0 0 0 0
## 1273 1 0 0 0 0 0 0 0 1 0
## 1274 0 0 0 0 0 0 0 1 1 0
## 1275 0 0 0 0 0 0 0 0 1 0
## 1276 1 0 0 0 0 0 0 0 0 0
## 1277 0 0 0 0 0 0 0 0 0 0
## 1278 1 0 0 0 1 0 0 0 0 0
## 1279 0 0 0 0 0 0 0 0 0 0
## 1280 0 0 0 0 0 0 0 0 0 0
## 1281 1 0 0 0 0 0 0 0 0 0
## 1282 1 0 0 0 0 0 0 0 0 0
## 1283 0 0 0 0 0 0 0 0 0 0
## 1284 1 0 0 0 0 1 0 0 0 0
## 1285 1 0 0 0 0 0 0 0 0 0
## 1286 0 0 0 0 1 0 1 0 0 0
## 1287 0 0 0 0 0 0 0 0 0 0
## 1288 0 0 0 0 0 0 0 0 0 0
## 1289 0 0 0 0 0 0 1 0 0 0
## 1290 1 0 0 0 0 0 1 0 0 0
## 1291 0 0 0 0 0 0 0 0 0 0
## 1292 0 1 0 0 0 0 0 0 0 0
## 1293 0 1 0 0 0 0 0 1 0 0
## 1294 0 0 0 0 0 0 0 0 0 0
## 1295 1 0 0 0 0 0 0 0 0 0
## 1296 1 0 0 0 0 0 0 0 0 0
## 1297 1 0 0 0 0 0 1 0 0 0
## 1298 0 0 0 0 1 0 0 0 0 0
## 1299 1 0 0 0 0 0 1 0 0 0
## 1300 1 0 0 0 0 0 1 0 0 0
## 1301 0 0 0 0 0 0 0 0 0 0
## 1302 0 0 0 0 0 0 0 0 0 0
## 1303 0 0 0 0 0 0 0 0 0 0
## 1304 0 0 0 0 0 0 0 0 0 0
## 1305 0 0 0 0 0 0 0 0 0 0
## 1306 1 0 0 0 0 0 0 0 0 0
## 1307 0 0 0 0 0 0 0 0 0 0
## 1308 1 0 0 0 0 0 0 0 0 0
## 1309 1 0 0 0 0 0 0 0 0 0
## 1310 1 0 0 0 0 0 0 0 0 0
## 1311 1 0 0 0 0 0 0 0 0 0
## 1312 1 0 0 0 0 0 0 0 0 0
## 1313 0 0 1 0 0 1 0 0 1 0
## 1314 0 0 0 0 0 0 0 0 1 0
## 1315 1 0 0 0 0 0 1 0 0 0
## 1316 1 0 0 0 0 0 0 0 0 0
## 1317 1 0 0 0 0 0 0 0 0 0
## 1318 0 0 0 0 0 0 0 0 0 0
## 1319 1 0 0 0 0 0 0 0 0 0
## 1320 1 0 0 0 0 0 0 0 0 0
## 1321 0 0 0 0 0 0 0 0 0 0
## 1322 0 0 0 0 0 0 0 0 0 0
## 1323 1 0 0 0 0 0 0 0 0 0
## 1324 1 0 0 0 0 0 0 0 1 0
## 1325 1 0 0 0 0 0 0 0 0 0
## 1326 1 0 0 0 0 0 0 0 0 0
## 1327 1 0 0 0 0 0 0 0 0 0
## 1328 1 0 0 0 0 0 0 0 0 0
## 1329 1 0 0 0 0 0 0 0 0 0
## 1330 1 0 0 0 0 0 0 0 0 0
## 1331 0 0 0 0 0 0 0 0 0 0
## 1332 1 0 0 0 0 0 0 0 0 0
## 1333 1 0 0 0 0 0 0 0 0 0
## 1334 1 0 0 0 0 0 0 0 0 0
## 1335 1 0 0 0 0 0 0 0 0 0
## 1336 0 1 0 0 0 0 0 0 0 0
## 1337 0 0 0 0 0 0 0 0 0 0
## 1338 1 0 0 0 0 0 0 0 0 0
## 1339 1 0 0 0 0 0 0 0 0 0
## 1340 0 0 0 0 0 0 1 0 0 0
## 1341 1 0 0 0 0 0 0 0 0 0
## 1342 1 0 0 0 0 0 0 0 0 0
## 1343 1 0 0 0 0 0 0 0 0 0
## 1344 1 0 0 0 0 0 0 0 0 0
## 1345 1 0 0 0 0 0 0 0 0 0
## 1346 1 0 0 0 0 0 0 0 0 0
## 1347 1 0 0 0 0 0 0 0 0 0
## 1348 1 0 0 0 0 0 0 0 0 0
## 1349 0 0 0 0 0 0 0 0 0 0
## 1350 1 0 0 0 0 0 0 0 0 0
## 1351 0 0 0 0 0 0 0 0 0 0
## 1352 1 0 0 0 0 0 0 0 0 0
## 1353 0 0 0 0 0 0 1 0 0 0
## 1354 1 0 0 0 0 0 0 0 0 0
## 1355 1 0 0 0 0 0 0 0 0 0
## 1356 0 0 0 0 0 0 0 0 0 0
## 1357 0 0 0 0 0 0 1 0 0 1
## 1358 0 0 0 0 0 0 0 0 0 0
## 1359 1 0 0 0 0 0 0 0 0 0
## 1360 0 0 0 0 0 0 0 0 0 0
## 1361 0 0 0 0 0 0 0 0 0 0
## 1362 0 0 0 0 0 0 0 0 0 0
## 1363 0 0 0 0 0 0 0 0 0 0
## 1364 0 0 0 0 0 0 0 0 0 0
## 1365 1 0 0 0 0 0 0 0 0 0
## 1366 1 0 0 0 0 0 0 0 0 0
## 1367 0 0 0 0 0 0 0 0 0 0
## 1368 1 0 0 0 0 0 0 0 0 0
## 1369 1 0 0 0 0 0 0 0 0 0
## 1370 1 0 0 0 0 0 0 0 1 0
## 1371 0 0 0 1 0 0 0 0 0 0
## 1372 0 0 0 0 0 0 0 0 0 0
## 1373 0 0 0 0 0 0 0 0 0 0
## 1374 0 0 0 0 0 0 0 0 0 0
## 1375 1 0 0 0 0 0 0 0 0 0
## 1376 0 0 0 0 0 0 0 0 0 0
## 1377 0 0 0 0 0 0 1 0 0 0
## 1378 0 0 0 0 0 0 0 0 0 0
## 1379 0 0 0 0 0 0 1 0 0 0
## 1380 1 0 0 0 0 0 0 0 0 0
## 1381 1 0 0 0 0 0 0 0 0 0
## 1382 1 0 0 0 0 0 0 0 0 0
## 1383 0 0 0 0 0 0 0 0 0 0
## 1384 1 0 0 0 0 0 0 0 0 0
## 1385 0 0 0 0 0 0 1 0 0 0
## 1386 0 0 0 0 0 0 0 1 0 0
## 1387 0 0 0 0 0 0 1 0 0 0
## 1388 1 0 0 0 0 0 0 0 0 0
## 1389 1 0 0 0 0 0 0 0 0 0
## 1390 0 0 0 0 0 0 0 0 0 0
## 1391 1 0 0 0 0 0 0 0 0 0
## 1392 1 0 0 0 0 0 0 0 0 0
## 1393 0 0 0 0 0 0 0 0 1 0
## 1394 0 0 0 0 0 0 1 0 0 0
## 1395 1 0 0 0 0 0 0 0 0 0
## 1396 1 0 0 0 0 0 0 0 0 0
## 1397 1 0 0 0 0 0 0 0 0 0
## 1398 1 0 0 0 0 0 0 0 0 0
## 1399 0 0 0 0 0 0 0 0 1 0
## 1400 1 0 0 0 0 0 1 0 0 0
## 1401 1 0 0 0 0 0 0 0 0 0
## 1402 1 0 0 0 0 0 0 0 0 0
## 1403 1 0 0 0 0 0 0 0 0 0
## 1404 0 0 0 0 0 0 0 0 0 0
## 1405 1 0 0 0 0 0 0 0 0 0
## 1406 1 0 0 0 0 0 1 0 0 0
## 1407 0 0 0 0 0 0 0 0 0 0
## 1408 0 0 0 0 0 0 0 0 0 0
## 1409 0 0 0 0 0 0 0 0 0 0
## 1410 1 0 0 0 0 0 0 0 0 0
## 1411 0 0 0 0 0 0 0 1 0 0
## 1412 0 0 0 0 0 0 0 0 0 0
## 1413 0 0 0 0 0 0 0 0 0 0
## 1414 0 0 0 0 0 0 0 0 0 0
## 1415 0 0 0 0 0 0 0 0 0 0
## 1416 0 0 0 0 0 0 0 1 0 0
## 1417 1 0 0 0 0 0 0 0 0 0
## 1418 1 0 0 0 0 0 0 0 0 0
## 1419 0 0 0 0 0 0 0 1 0 0
## 1420 0 0 0 0 0 0 0 0 0 0
## 1421 1 0 0 0 0 0 0 0 0 0
## 1422 0 0 1 0 0 0 0 0 1 0
## 1423 1 0 0 0 0 0 0 0 0 1
## 1424 1 0 0 0 0 0 1 0 0 0
## 1425 1 0 0 0 0 0 0 0 0 0
## 1426 1 0 0 0 0 0 0 0 0 0
## 1427 1 0 0 0 0 0 0 0 0 0
## 1428 0 0 0 0 0 0 0 0 0 0
## 1429 1 0 0 0 0 0 1 0 0 0
## 1430 1 0 0 0 0 0 0 0 0 0
## 1431 0 0 0 0 0 0 0 0 1 0
## 1432 1 0 0 0 0 0 0 0 0 0
## 1433 1 0 0 0 0 0 0 0 0 0
## 1434 0 0 0 0 0 0 1 0 0 0
## 1435 0 0 0 0 0 0 0 0 0 0
## 1436 1 0 0 0 0 0 1 0 0 0
## 1437 0 0 0 0 0 0 0 0 0 0
## 1438 1 0 0 0 0 0 0 0 0 0
## 1439 1 0 0 0 0 0 0 0 0 0
## 1440 1 0 0 0 0 0 0 0 0 0
## 1441 1 0 0 0 0 0 1 0 0 0
## 1442 1 0 0 0 0 0 0 0 0 0
## 1443 1 0 0 0 0 0 0 0 0 0
## 1444 0 0 0 0 0 1 0 0 0 0
## 1445 1 0 0 0 0 0 0 0 0 0
## 1446 0 0 0 0 0 0 0 0 0 0
## 1447 1 0 0 0 0 0 0 0 0 0
## 1448 1 0 0 0 0 0 0 0 0 0
## 1449 1 0 0 0 0 0 0 0 0 0
## 1450 0 0 0 0 0 0 1 0 0 0
## 1451 0 0 0 0 0 0 0 0 1 0
## 1452 0 0 0 0 0 1 0 0 0 0
## 1453 1 0 0 0 0 0 0 0 0 0
## 1454 0 0 0 0 0 0 0 0 0 0
## 1455 0 0 0 0 0 0 0 0 0 0
## 1456 1 0 0 0 0 0 0 0 0 0
## 1457 1 0 0 0 0 0 0 0 0 0
## 1458 0 0 0 0 1 0 1 0 0 0
## 1459 0 0 0 0 1 0 0 0 0 0
## 1460 1 0 0 0 0 0 0 0 0 0
## 1461 0 0 0 0 0 0 0 0 0 0
## 1462 1 0 0 0 0 0 1 0 0 0
## 1463 0 0 0 0 0 0 0 0 0 0
## 1464 1 0 0 0 0 0 0 0 0 0
## 1465 1 0 0 0 0 0 0 0 0 0
## 1466 1 0 0 0 0 0 0 0 0 0
## 1467 1 0 0 0 0 0 0 0 0 0
## 1468 1 0 0 0 0 0 0 0 0 0
## 1469 0 0 0 0 0 0 0 0 0 0
## 1470 0 0 0 0 0 0 0 0 0 0
## 1471 0 0 0 0 0 0 0 0 1 0
## 1472 0 0 0 0 0 0 0 1 0 0
## 1473 1 0 0 0 0 0 0 0 0 0
## 1474 0 0 0 0 0 0 1 0 0 0
## 1475 1 0 0 0 0 0 0 0 0 0
## 1476 0 0 1 0 0 0 0 0 0 0
## 1477 0 0 0 1 0 0 0 0 1 0
## 1478 1 0 0 0 0 0 0 0 0 0
## 1479 0 0 0 0 0 0 0 0 0 0
## 1480 0 0 0 0 0 0 0 0 0 0
## 1481 1 0 0 0 0 0 0 0 0 0
## 1482 0 0 0 0 0 0 0 0 0 0
## 1483 1 0 0 0 0 0 1 0 0 0
## 1484 0 0 0 0 0 0 0 0 0 0
## 1485 1 0 0 0 0 0 1 0 0 1
## 1486 1 0 0 0 0 0 0 0 0 0
## 1487 0 0 0 0 0 0 1 0 0 0
## 1488 1 0 0 0 0 0 0 0 0 0
## 1489 0 0 0 0 0 0 0 0 0 0
## 1490 0 0 0 0 0 0 0 0 0 0
## 1491 1 0 0 0 0 0 0 0 1 0
## 1492 0 0 0 0 0 0 0 0 0 0
## 1493 0 0 0 0 0 0 1 0 0 0
## 1494 0 0 0 0 0 0 0 0 0 0
## 1495 1 0 0 0 0 0 0 0 0 0
## 1496 0 0 0 0 0 0 0 0 0 0
## 1497 0 0 0 0 0 0 0 0 0 0
## 1498 0 0 0 0 0 0 0 0 0 0
## 1499 0 0 0 0 0 0 0 0 0 0
## 1500 0 0 0 0 0 0 0 0 0 0
## 1501 0 0 0 0 0 0 0 0 0 1
## 1502 0 0 0 0 0 0 1 0 0 0
## 1503 0 0 0 0 0 0 0 0 0 0
## 1504 0 0 0 0 0 0 0 0 0 0
## 1505 1 0 0 0 0 0 0 0 0 0
## 1506 1 0 0 0 0 0 0 0 0 0
## 1507 0 0 0 0 0 0 0 0 0 0
## 1508 1 0 0 0 0 0 0 0 1 0
## 1509 0 0 0 0 0 0 0 0 0 0
## 1510 0 0 0 0 0 0 0 0 0 0
## 1511 0 0 0 0 0 0 0 0 0 0
## 1512 1 0 0 0 0 0 0 0 0 0
## 1513 0 0 0 0 0 0 0 0 0 0
## 1514 1 0 0 0 0 0 0 0 0 0
## 1515 0 0 0 0 0 0 1 0 0 0
## 1516 1 0 0 0 0 0 0 0 0 0
## 1517 1 0 0 0 0 0 0 0 0 0
## 1518 1 0 0 0 0 0 0 0 0 0
## 1519 1 0 0 0 0 0 0 0 0 0
## 1520 0 0 0 1 0 0 0 0 0 0
## 1521 0 0 0 0 0 0 1 0 0 0
## 1522 0 0 0 0 0 0 0 0 1 0
## 1523 0 0 0 0 0 0 0 0 0 0
## 1524 1 0 0 0 0 0 0 0 0 0
## 1525 0 0 0 0 0 0 1 0 0 0
## 1526 1 0 0 0 0 0 1 0 1 0
## 1527 0 0 0 0 0 0 0 0 0 0
## 1528 1 0 0 0 0 0 0 0 0 0
## 1529 0 0 0 0 0 0 0 0 0 1
## 1530 1 0 0 0 0 0 0 0 0 0
## 1531 0 0 0 0 0 0 0 0 0 0
## 1532 1 0 0 0 0 0 0 0 0 0
## 1533 1 0 0 0 0 0 0 0 0 0
## 1534 0 0 0 0 0 0 0 0 0 0
## 1535 1 0 0 0 0 0 0 0 0 0
## 1536 1 0 0 0 0 0 0 0 0 0
## 1537 0 0 0 0 0 0 0 0 0 0
## 1538 1 0 0 0 0 0 0 0 0 0
## 1539 1 0 0 0 0 0 0 0 0 0
## 1540 0 0 0 0 0 0 0 0 0 0
## 1541 1 0 0 0 0 0 0 0 0 0
## 1542 1 0 0 0 0 0 0 0 0 0
## 1543 1 0 0 0 0 0 0 0 0 0
## 1544 0 0 0 0 0 0 0 0 0 0
## 1545 1 0 0 0 0 0 1 0 0 0
## 1546 1 0 0 0 0 0 0 0 0 0
## 1547 0 0 0 0 0 0 0 0 0 0
## 1548 0 0 0 0 0 0 0 0 1 0
## 1549 0 0 0 0 0 0 0 0 1 0
## 1550 0 0 0 0 0 0 0 0 0 0
## 1551 1 0 0 0 0 0 0 0 0 0
## 1552 0 0 0 0 0 0 0 0 0 0
## 1553 0 0 0 0 0 1 0 0 1 0
## 1554 1 0 0 0 0 0 0 0 0 0
## 1555 0 0 0 0 0 0 0 0 0 0
## 1556 1 0 0 0 0 0 0 0 1 0
## 1557 1 0 0 0 0 0 0 0 0 0
## 1558 1 0 0 0 0 0 0 0 0 0
## 1559 1 0 0 0 0 0 0 0 1 0
## 1560 0 0 0 0 0 0 0 0 0 0
## 1561 1 0 0 0 0 0 0 0 0 0
## 1562 0 0 0 0 0 0 0 0 0 0
## 1563 0 0 0 0 0 0 1 0 0 0
## 1564 1 0 0 0 0 0 0 0 0 0
## 1565 1 0 0 0 0 0 0 0 0 0
## 1566 1 0 0 0 0 0 0 0 0 0
## 1567 0 0 0 0 0 0 0 0 0 0
## 1568 0 0 0 0 0 0 1 0 0 0
## 1569 1 0 0 0 0 0 0 0 0 0
## 1570 0 0 0 0 0 0 0 0 0 0
## 1571 1 0 0 0 0 0 0 0 0 0
## 1572 1 0 0 0 0 0 0 0 0 0
## 1573 0 0 0 1 0 0 0 0 0 0
## 1574 0 0 0 0 0 0 0 0 0 1
## 1575 1 0 0 0 0 0 0 0 0 0
## 1576 0 1 0 0 0 0 0 0 0 0
## 1577 1 0 0 0 0 0 0 0 0 0
## 1578 1 0 0 0 0 0 0 0 0 0
## 1579 0 0 0 0 0 0 0 0 1 0
## 1580 0 0 0 0 0 0 1 0 0 0
## 1581 0 0 0 0 0 1 0 0 0 0
## 1582 0 0 1 0 0 0 0 0 0 0
## 1583 1 0 0 0 0 0 0 0 0 0
## 1584 1 0 0 0 0 0 0 0 0 0
## 1585 0 0 0 0 0 0 0 0 0 0
## 1586 1 0 0 0 0 0 0 0 0 0
## 1587 0 0 0 0 0 0 0 0 0 0
## 1588 1 0 0 0 0 0 0 0 0 0
## 1589 0 0 0 0 0 0 0 0 0 0
## 1590 1 0 0 0 0 0 0 0 0 0
## 1591 1 0 0 0 0 0 0 0 0 0
## 1592 1 0 0 0 0 0 0 0 0 0
## 1593 0 0 0 0 0 0 0 0 0 0
## 1594 0 0 0 0 0 0 0 0 0 0
## 1595 0 0 0 0 0 0 0 0 1 0
## 1596 0 0 0 0 0 0 0 1 1 0
## 1597 1 0 0 0 0 0 0 0 0 0
## 1598 0 0 0 0 0 0 0 0 1 0
## 1599 1 0 0 0 0 0 0 0 0 0
## 1600 0 0 0 0 0 0 0 0 0 0
## 1601 0 0 0 0 0 0 0 0 1 0
## 1602 1 0 0 0 0 0 0 0 0 0
## 1603 1 0 0 0 0 0 0 0 0 0
## 1604 0 0 1 0 0 0 0 0 1 0
## 1605 0 0 0 0 0 0 0 0 0 0
## 1608 1 0 0 0 0 0 0 0 0 0
## 1609 0 0 0 0 0 0 0 0 0 0
## 1610 0 0 0 0 0 0 1 0 0 0
## 1611 0 0 0 0 0 0 0 0 0 0
## 1612 0 0 0 0 0 0 1 0 0 0
## 1613 1 0 0 0 0 0 0 0 0 0
## 1614 1 0 0 0 0 0 0 0 0 0
## 1615 0 1 0 0 0 0 0 0 0 0
## 1616 1 0 0 0 0 0 0 0 0 0
## 1618 0 0 0 0 0 0 0 0 0 0
## 1619 1 0 0 0 0 0 0 0 0 0
## 1620 0 0 0 0 0 0 0 0 0 0
## 1621 0 0 0 0 0 0 0 0 1 0
## 1622 0 0 0 0 0 0 0 0 0 0
## 1623 1 0 0 0 0 0 0 0 0 0
## 1624 0 0 0 0 0 0 0 0 1 0
## 1626 1 0 0 0 0 0 0 0 0 0
## 1627 1 0 0 0 0 0 0 0 0 0
## 1628 1 0 0 0 0 0 0 0 0 0
## 1629 0 0 0 0 0 0 0 0 0 0
## 1630 1 0 0 0 0 0 0 0 0 0
## 1631 1 0 0 0 0 0 0 0 0 0
## 1632 0 0 0 0 0 0 0 0 0 1
## 1633 1 0 0 0 0 0 0 0 0 0
## 1634 1 0 0 0 0 0 0 0 0 0
## 1635 1 0 0 0 0 0 0 0 0 0
## 1636 1 0 0 0 0 0 0 0 0 0
## 1637 1 0 0 0 0 0 0 0 0 0
## 1638 1 0 0 0 0 0 0 0 0 0
## 1639 1 0 0 0 0 0 0 0 0 0
## 1640 1 0 0 0 0 0 0 0 0 0
## 1641 0 0 0 0 0 0 0 0 0 0
## 1642 1 0 0 0 0 0 0 0 0 0
## 1643 1 0 0 0 0 0 0 0 0 0
## 1644 0 0 0 0 0 0 0 0 0 0
## 1645 1 0 0 0 0 0 0 0 0 0
## 1646 1 0 0 0 0 0 0 0 0 0
## 1647 1 0 0 0 0 0 0 0 0 0
## 1648 1 0 0 0 0 0 0 0 0 0
## 1649 0 0 0 0 0 0 0 0 0 0
## 1651 1 0 0 0 0 0 0 0 1 0
## 1652 0 0 0 0 0 0 1 0 0 0
## 1653 1 0 0 0 0 0 0 0 0 0
## 1655 0 0 0 0 0 0 1 0 0 0
## 1656 0 0 0 0 0 0 1 0 0 0
## 1657 1 0 0 0 0 0 0 0 0 0
## 1659 0 0 0 0 0 0 0 0 0 0
## 1660 1 0 0 0 0 0 0 0 0 0
## 1661 1 0 0 0 0 0 0 0 0 0
## 1662 1 0 0 0 0 0 1 0 0 0
## 1663 1 0 0 0 0 0 0 0 0 1
## 1664 0 0 0 0 0 0 0 0 0 0
## 1665 1 0 0 0 0 0 0 0 0 0
## 1666 1 0 0 0 0 0 0 0 0 0
## 1667 1 0 0 0 0 0 0 0 0 0
## 1668 0 0 0 0 0 0 0 0 0 0
## 1669 1 0 0 0 0 1 0 0 0 0
## 1670 0 0 0 0 0 0 0 0 1 0
## 1671 1 0 0 0 0 0 0 0 0 0
## 1672 1 0 0 0 0 0 0 0 0 0
## 1673 0 0 0 0 0 0 0 0 1 0
## 1674 1 0 0 0 0 0 0 0 0 0
## 1675 1 0 0 0 0 0 0 0 0 0
## 1676 1 0 0 0 0 0 0 0 0 0
## 1677 1 0 0 0 0 0 0 0 0 0
## 1678 1 0 0 0 0 0 0 0 0 0
## 1679 0 0 0 0 0 0 1 0 1 0
## 1681 0 0 0 0 0 0 0 0 0 0
## 1682 1 0 0 0 0 0 0 0 0 0
## Western
## 1 0
## 2 0
## 3 0
## 4 0
## 5 0
## 6 0
## 7 0
## 8 0
## 9 0
## 10 0
## 11 0
## 12 0
## 13 0
## 14 0
## 15 0
## 16 0
## 17 0
## 18 0
## 19 0
## 20 0
## 21 0
## 22 0
## 23 0
## 24 0
## 25 0
## 26 0
## 27 0
## 28 0
## 29 0
## 30 0
## 31 0
## 32 0
## 33 0
## 34 0
## 35 0
## 36 0
## 37 0
## 38 0
## 39 0
## 40 0
## 41 0
## 42 0
## 43 0
## 44 0
## 45 0
## 46 0
## 47 0
## 48 0
## 49 0
## 50 0
## 51 1
## 52 0
## 53 0
## 54 0
## 55 0
## 56 0
## 57 0
## 58 0
## 59 0
## 60 0
## 61 0
## 62 0
## 63 0
## 64 0
## 65 0
## 66 0
## 67 0
## 68 0
## 69 0
## 70 0
## 71 0
## 72 0
## 73 1
## 74 0
## 75 0
## 76 0
## 77 0
## 78 0
## 79 0
## 80 0
## 81 0
## 82 0
## 83 0
## 84 0
## 85 0
## 86 0
## 87 0
## 88 0
## 89 0
## 90 0
## 91 0
## 92 0
## 93 0
## 94 0
## 95 0
## 96 0
## 97 1
## 98 0
## 99 0
## 100 0
## 101 0
## 102 0
## 103 0
## 104 0
## 105 0
## 106 0
## 107 0
## 108 0
## 109 0
## 110 0
## 111 0
## 112 0
## 113 0
## 114 0
## 115 0
## 116 0
## 117 0
## 118 0
## 119 0
## 120 0
## 121 0
## 122 0
## 123 0
## 124 0
## 125 0
## 126 0
## 127 0
## 128 0
## 129 0
## 130 0
## 131 0
## 132 0
## 133 0
## 134 0
## 135 0
## 136 0
## 137 0
## 138 0
## 139 0
## 140 0
## 141 0
## 142 0
## 143 0
## 144 0
## 145 0
## 146 0
## 147 0
## 148 0
## 149 0
## 150 0
## 151 0
## 152 0
## 153 0
## 154 0
## 155 0
## 156 0
## 157 0
## 158 0
## 159 0
## 160 0
## 161 0
## 162 0
## 163 0
## 164 0
## 165 0
## 166 0
## 167 0
## 168 0
## 169 0
## 170 0
## 171 0
## 172 0
## 173 0
## 174 0
## 175 0
## 176 0
## 177 1
## 178 0
## 179 0
## 180 0
## 181 0
## 182 0
## 183 0
## 184 0
## 185 0
## 186 0
## 187 0
## 188 0
## 189 0
## 190 0
## 191 0
## 192 0
## 193 0
## 194 0
## 195 0
## 196 0
## 197 0
## 198 0
## 199 0
## 200 0
## 201 0
## 202 0
## 203 1
## 204 0
## 205 0
## 206 0
## 207 0
## 208 0
## 209 0
## 210 0
## 211 0
## 212 0
## 213 0
## 214 0
## 215 0
## 216 0
## 217 0
## 218 0
## 219 0
## 220 0
## 221 0
## 222 0
## 223 0
## 224 0
## 225 0
## 226 0
## 227 0
## 228 0
## 229 0
## 230 0
## 231 0
## 232 1
## 233 0
## 234 0
## 235 0
## 236 0
## 237 0
## 238 0
## 239 0
## 240 0
## 241 0
## 242 0
## 243 0
## 244 0
## 245 0
## 246 0
## 247 0
## 248 0
## 249 0
## 250 0
## 251 0
## 252 0
## 253 0
## 254 0
## 255 0
## 256 0
## 257 0
## 258 0
## 259 0
## 260 0
## 261 0
## 262 0
## 263 0
## 264 0
## 265 0
## 266 0
## 267 0
## 269 0
## 270 0
## 271 0
## 272 0
## 273 0
## 274 0
## 275 0
## 276 0
## 277 0
## 278 0
## 279 0
## 280 0
## 281 0
## 282 0
## 283 0
## 284 0
## 285 0
## 286 0
## 287 0
## 288 0
## 289 0
## 290 0
## 291 0
## 292 0
## 293 0
## 294 0
## 295 0
## 296 0
## 297 0
## 298 0
## 299 0
## 300 0
## 301 0
## 302 0
## 304 0
## 305 0
## 306 0
## 307 0
## 308 0
## 309 0
## 310 0
## 311 0
## 312 0
## 313 0
## 314 0
## 315 0
## 316 0
## 317 0
## 318 0
## 319 0
## 320 0
## 321 0
## 322 0
## 323 0
## 324 0
## 325 0
## 326 0
## 327 0
## 328 0
## 329 0
## 330 0
## 331 0
## 332 0
## 333 0
## 334 0
## 335 0
## 336 0
## 337 0
## 338 0
## 339 0
## 340 0
## 341 0
## 342 0
## 343 0
## 344 0
## 345 0
## 346 0
## 347 0
## 349 0
## 350 0
## 351 0
## 352 0
## 353 0
## 354 0
## 355 0
## 356 0
## 357 0
## 358 0
## 359 0
## 360 0
## 361 0
## 362 0
## 363 0
## 364 0
## 365 0
## 366 0
## 367 0
## 368 0
## 369 0
## 370 0
## 371 0
## 372 0
## 373 0
## 374 0
## 375 0
## 376 0
## 377 0
## 378 0
## 379 0
## 380 0
## 381 0
## 382 0
## 383 0
## 384 0
## 385 0
## 386 0
## 387 0
## 388 0
## 389 0
## 390 0
## 391 0
## 392 0
## 393 0
## 394 0
## 395 0
## 396 0
## 397 0
## 398 0
## 399 0
## 400 0
## 401 0
## 402 0
## 403 0
## 404 0
## 405 0
## 406 0
## 407 0
## 408 0
## 409 0
## 410 0
## 411 0
## 412 0
## 413 0
## 414 0
## 415 1
## 416 0
## 417 0
## 418 0
## 419 0
## 420 0
## 421 0
## 422 0
## 423 0
## 424 0
## 425 0
## 426 0
## 427 0
## 428 0
## 429 0
## 430 0
## 431 0
## 432 0
## 433 0
## 434 0
## 435 1
## 436 0
## 437 0
## 438 0
## 439 0
## 440 0
## 441 0
## 442 0
## 443 0
## 444 0
## 445 0
## 446 0
## 447 0
## 448 0
## 449 0
## 450 0
## 451 0
## 452 0
## 453 0
## 454 0
## 455 0
## 456 0
## 457 0
## 458 0
## 459 0
## 460 0
## 461 0
## 462 0
## 463 0
## 464 0
## 465 0
## 466 0
## 467 0
## 468 0
## 469 0
## 470 1
## 471 0
## 472 0
## 473 0
## 474 0
## 475 0
## 476 0
## 477 0
## 478 0
## 479 0
## 480 0
## 481 0
## 482 0
## 483 0
## 484 0
## 485 0
## 486 0
## 487 0
## 488 0
## 489 0
## 490 0
## 491 0
## 492 0
## 493 0
## 494 0
## 495 0
## 496 0
## 497 0
## 498 0
## 499 0
## 501 0
## 502 0
## 503 0
## 504 0
## 505 0
## 506 0
## 507 0
## 508 0
## 509 0
## 510 1
## 511 0
## 512 0
## 513 0
## 514 0
## 515 0
## 516 0
## 517 0
## 518 0
## 519 0
## 520 0
## 521 0
## 522 0
## 523 0
## 524 0
## 525 0
## 526 0
## 527 0
## 528 0
## 529 0
## 530 0
## 531 0
## 532 0
## 533 0
## 534 0
## 535 0
## 536 0
## 537 0
## 538 0
## 539 0
## 540 0
## 541 0
## 542 0
## 543 0
## 544 0
## 545 0
## 546 0
## 547 0
## 548 0
## 549 0
## 550 0
## 551 0
## 552 0
## 553 0
## 554 0
## 555 0
## 556 1
## 557 0
## 558 0
## 559 0
## 560 0
## 561 0
## 562 1
## 563 0
## 564 0
## 565 0
## 566 0
## 567 0
## 568 0
## 569 0
## 570 1
## 571 0
## 572 0
## 573 0
## 574 0
## 575 1
## 576 0
## 577 0
## 578 0
## 579 0
## 580 0
## 581 0
## 582 0
## 583 0
## 584 0
## 585 0
## 586 0
## 587 0
## 588 0
## 589 1
## 590 0
## 591 0
## 592 0
## 593 0
## 594 0
## 595 0
## 596 0
## 597 0
## 598 0
## 599 0
## 600 0
## 601 0
## 602 0
## 603 0
## 604 0
## 605 0
## 606 0
## 607 0
## 608 0
## 609 0
## 610 0
## 611 0
## 612 0
## 613 0
## 614 0
## 615 0
## 616 0
## 617 0
## 618 0
## 619 0
## 620 0
## 621 1
## 622 0
## 623 0
## 624 0
## 625 0
## 626 0
## 627 0
## 628 0
## 629 0
## 630 0
## 631 0
## 632 0
## 633 0
## 634 0
## 635 0
## 636 0
## 637 0
## 638 0
## 639 0
## 640 0
## 641 0
## 642 0
## 643 0
## 644 0
## 645 0
## 646 1
## 647 0
## 648 0
## 649 0
## 650 0
## 651 0
## 652 0
## 653 0
## 654 0
## 655 0
## 656 0
## 657 0
## 658 0
## 659 0
## 660 0
## 661 1
## 662 0
## 663 0
## 664 0
## 665 0
## 666 0
## 667 0
## 668 0
## 669 0
## 671 0
## 672 0
## 673 0
## 674 0
## 675 0
## 676 0
## 677 0
## 678 0
## 679 0
## 681 0
## 682 0
## 683 0
## 684 0
## 685 0
## 686 0
## 687 0
## 688 0
## 689 0
## 690 0
## 691 0
## 692 0
## 693 0
## 694 0
## 695 0
## 696 0
## 697 0
## 698 0
## 699 0
## 700 0
## 701 0
## 702 0
## 703 0
## 704 0
## 705 0
## 706 0
## 707 0
## 708 0
## 709 0
## 710 0
## 711 0
## 712 0
## 713 0
## 714 0
## 715 0
## 716 0
## 717 0
## 718 0
## 719 0
## 720 0
## 721 0
## 722 0
## 723 0
## 724 0
## 725 0
## 726 0
## 727 0
## 728 0
## 729 0
## 730 0
## 731 0
## 732 0
## 733 0
## 734 0
## 735 0
## 736 0
## 737 0
## 738 0
## 739 0
## 740 0
## 741 0
## 742 0
## 743 0
## 744 0
## 745 0
## 746 0
## 747 0
## 748 0
## 749 0
## 750 0
## 751 0
## 752 0
## 753 0
## 754 0
## 755 0
## 756 0
## 757 0
## 758 0
## 759 0
## 760 0
## 761 0
## 762 0
## 763 0
## 764 0
## 765 0
## 766 0
## 767 0
## 768 0
## 769 0
## 770 0
## 771 0
## 772 0
## 773 0
## 774 0
## 775 0
## 776 0
## 777 0
## 778 0
## 779 0
## 780 0
## 781 0
## 782 0
## 783 0
## 784 0
## 785 0
## 786 0
## 787 0
## 788 0
## 789 0
## 790 0
## 791 0
## 792 0
## 793 0
## 794 0
## 795 0
## 796 0
## 797 0
## 798 0
## 799 0
## 800 0
## 801 0
## 802 0
## 803 0
## 804 0
## 805 0
## 806 0
## 807 0
## 808 0
## 809 0
## 810 0
## 811 0
## 812 0
## 813 0
## 814 0
## 815 0
## 816 0
## 817 0
## 818 0
## 819 0
## 820 0
## 821 0
## 822 0
## 823 0
## 824 0
## 825 0
## 826 0
## 827 0
## 828 0
## 829 0
## 830 0
## 831 0
## 832 0
## 833 0
## 834 0
## 835 0
## 836 0
## 837 0
## 838 0
## 839 0
## 840 1
## 841 0
## 842 0
## 843 0
## 844 0
## 845 0
## 846 0
## 847 0
## 848 0
## 849 0
## 850 0
## 851 0
## 852 0
## 853 0
## 854 0
## 855 0
## 856 0
## 857 0
## 858 0
## 859 0
## 860 0
## 861 0
## 862 0
## 863 0
## 864 0
## 866 0
## 867 0
## 868 0
## 869 0
## 870 0
## 871 0
## 872 0
## 873 0
## 874 0
## 875 0
## 876 0
## 877 0
## 878 0
## 879 0
## 880 0
## 882 0
## 883 0
## 884 0
## 885 0
## 886 0
## 887 0
## 888 0
## 889 0
## 890 0
## 891 0
## 892 0
## 893 0
## 894 0
## 895 0
## 896 0
## 897 0
## 898 0
## 899 0
## 900 0
## 901 0
## 902 0
## 903 0
## 904 0
## 905 0
## 906 0
## 907 0
## 908 0
## 909 0
## 910 0
## 911 0
## 912 0
## 913 0
## 914 0
## 915 0
## 916 0
## 917 0
## 918 0
## 919 0
## 920 0
## 921 0
## 922 1
## 923 0
## 924 0
## 925 0
## 926 0
## 927 0
## 928 0
## 929 0
## 930 0
## 931 0
## 932 0
## 933 0
## 934 0
## 935 0
## 936 0
## 937 0
## 938 0
## 939 0
## 940 0
## 941 0
## 942 0
## 943 0
## 944 0
## 945 0
## 946 0
## 947 0
## 948 0
## 949 0
## 950 0
## 951 0
## 952 0
## 953 0
## 954 0
## 955 0
## 956 0
## 957 0
## 958 0
## 959 0
## 960 0
## 961 0
## 962 0
## 963 0
## 964 0
## 965 0
## 966 0
## 967 0
## 968 0
## 969 0
## 970 0
## 971 0
## 972 0
## 973 0
## 974 0
## 975 0
## 976 0
## 977 0
## 978 0
## 979 0
## 980 0
## 981 0
## 982 0
## 983 0
## 984 0
## 985 0
## 986 0
## 987 0
## 988 0
## 989 0
## 990 0
## 991 0
## 992 0
## 993 0
## 994 0
## 995 0
## 996 0
## 997 0
## 998 0
## 999 0
## 1000 1
## 1001 0
## 1002 0
## 1004 1
## 1005 0
## 1006 0
## 1007 0
## 1008 0
## 1009 0
## 1010 0
## 1011 0
## 1012 0
## 1013 0
## 1014 0
## 1015 0
## 1016 0
## 1017 0
## 1018 0
## 1019 0
## 1020 0
## 1021 0
## 1022 0
## 1023 0
## 1024 0
## 1025 0
## 1026 0
## 1027 0
## 1028 0
## 1029 0
## 1030 0
## 1031 0
## 1032 0
## 1033 0
## 1034 0
## 1035 0
## 1036 0
## 1037 0
## 1038 0
## 1039 0
## 1040 0
## 1041 0
## 1042 0
## 1043 0
## 1044 0
## 1045 0
## 1046 0
## 1047 0
## 1048 0
## 1049 0
## 1050 0
## 1051 0
## 1052 0
## 1053 0
## 1054 0
## 1055 0
## 1056 0
## 1057 0
## 1058 0
## 1059 0
## 1060 0
## 1061 0
## 1062 0
## 1063 0
## 1064 0
## 1065 0
## 1066 0
## 1067 0
## 1068 0
## 1069 0
## 1070 0
## 1071 0
## 1072 0
## 1073 0
## 1074 0
## 1075 0
## 1076 0
## 1077 0
## 1078 0
## 1079 0
## 1080 0
## 1081 0
## 1082 0
## 1083 0
## 1084 0
## 1085 0
## 1086 0
## 1087 0
## 1088 0
## 1089 0
## 1090 0
## 1091 0
## 1092 0
## 1093 0
## 1094 0
## 1095 0
## 1096 0
## 1097 0
## 1098 0
## 1099 0
## 1100 0
## 1101 0
## 1102 0
## 1103 0
## 1104 0
## 1105 0
## 1106 0
## 1107 0
## 1108 0
## 1109 0
## 1110 0
## 1111 0
## 1112 0
## 1113 0
## 1114 0
## 1115 0
## 1116 0
## 1117 0
## 1118 0
## 1119 0
## 1120 0
## 1121 0
## 1122 0
## 1123 0
## 1124 0
## 1125 0
## 1126 0
## 1127 0
## 1128 0
## 1129 0
## 1130 0
## 1131 0
## 1132 0
## 1133 0
## 1134 0
## 1135 0
## 1136 0
## 1137 0
## 1138 0
## 1139 0
## 1140 0
## 1141 0
## 1142 0
## 1143 0
## 1144 0
## 1145 0
## 1146 0
## 1147 0
## 1148 0
## 1149 0
## 1150 0
## 1151 0
## 1152 0
## 1153 0
## 1154 0
## 1155 0
## 1156 0
## 1157 0
## 1158 0
## 1159 0
## 1160 0
## 1161 0
## 1162 0
## 1163 0
## 1164 0
## 1165 0
## 1166 0
## 1167 0
## 1168 0
## 1169 0
## 1170 0
## 1171 0
## 1172 0
## 1173 0
## 1174 0
## 1175 0
## 1176 0
## 1177 0
## 1178 0
## 1179 0
## 1180 0
## 1181 0
## 1182 0
## 1183 0
## 1184 0
## 1185 0
## 1186 0
## 1187 0
## 1188 1
## 1189 0
## 1190 0
## 1191 0
## 1192 0
## 1193 0
## 1194 0
## 1195 0
## 1196 0
## 1197 0
## 1198 0
## 1199 0
## 1200 0
## 1201 0
## 1202 0
## 1203 0
## 1204 0
## 1205 0
## 1206 0
## 1207 0
## 1208 0
## 1209 0
## 1210 0
## 1211 0
## 1212 0
## 1213 0
## 1214 0
## 1215 0
## 1216 0
## 1217 0
## 1218 0
## 1219 0
## 1220 0
## 1221 0
## 1222 0
## 1223 0
## 1224 0
## 1225 0
## 1226 0
## 1227 0
## 1228 0
## 1229 0
## 1230 0
## 1231 0
## 1232 0
## 1233 0
## 1234 0
## 1235 0
## 1236 0
## 1237 0
## 1238 0
## 1239 0
## 1240 0
## 1241 0
## 1242 0
## 1243 0
## 1244 0
## 1245 0
## 1246 0
## 1247 1
## 1248 0
## 1249 0
## 1250 0
## 1251 0
## 1252 0
## 1253 0
## 1254 0
## 1255 0
## 1256 0
## 1258 0
## 1259 0
## 1260 0
## 1261 0
## 1262 0
## 1263 0
## 1264 0
## 1265 0
## 1266 0
## 1267 0
## 1268 0
## 1269 0
## 1270 0
## 1271 0
## 1272 0
## 1273 0
## 1274 0
## 1275 0
## 1276 0
## 1277 0
## 1278 0
## 1279 0
## 1280 0
## 1281 0
## 1282 0
## 1283 0
## 1284 0
## 1285 0
## 1286 0
## 1287 0
## 1288 0
## 1289 0
## 1290 0
## 1291 0
## 1292 0
## 1293 0
## 1294 0
## 1295 0
## 1296 0
## 1297 0
## 1298 0
## 1299 0
## 1300 0
## 1301 0
## 1302 0
## 1303 0
## 1304 0
## 1305 0
## 1306 0
## 1307 0
## 1308 0
## 1309 0
## 1310 0
## 1311 0
## 1312 0
## 1313 0
## 1314 0
## 1315 0
## 1316 0
## 1317 0
## 1318 0
## 1319 0
## 1320 0
## 1321 0
## 1322 0
## 1323 0
## 1324 0
## 1325 0
## 1326 0
## 1327 0
## 1328 0
## 1329 0
## 1330 0
## 1331 0
## 1332 0
## 1333 0
## 1334 0
## 1335 0
## 1336 0
## 1337 0
## 1338 0
## 1339 0
## 1340 0
## 1341 0
## 1342 0
## 1343 0
## 1344 0
## 1345 0
## 1346 0
## 1347 0
## 1348 0
## 1349 0
## 1350 0
## 1351 0
## 1352 0
## 1353 0
## 1354 0
## 1355 0
## 1356 0
## 1357 0
## 1358 0
## 1359 0
## 1360 0
## 1361 0
## 1362 0
## 1363 0
## 1364 0
## 1365 0
## 1366 0
## 1367 0
## 1368 0
## 1369 0
## 1370 0
## 1371 0
## 1372 0
## 1373 0
## 1374 0
## 1375 0
## 1376 0
## 1377 0
## 1378 0
## 1379 0
## 1380 0
## 1381 0
## 1382 0
## 1383 0
## 1384 0
## 1385 0
## 1386 0
## 1387 0
## 1388 0
## 1389 0
## 1390 0
## 1391 0
## 1392 0
## 1393 0
## 1394 0
## 1395 0
## 1396 0
## 1397 0
## 1398 0
## 1399 0
## 1400 0
## 1401 0
## 1402 0
## 1403 0
## 1404 0
## 1405 0
## 1406 0
## 1407 0
## 1408 0
## 1409 0
## 1410 0
## 1411 0
## 1412 0
## 1413 0
## 1414 0
## 1415 0
## 1416 0
## 1417 0
## 1418 0
## 1419 0
## 1420 0
## 1421 0
## 1422 0
## 1423 0
## 1424 0
## 1425 0
## 1426 0
## 1427 0
## 1428 0
## 1429 0
## 1430 0
## 1431 0
## 1432 0
## 1433 0
## 1434 0
## 1435 0
## 1436 0
## 1437 0
## 1438 0
## 1439 0
## 1440 0
## 1441 0
## 1442 0
## 1443 0
## 1444 0
## 1445 0
## 1446 0
## 1447 0
## 1448 0
## 1449 0
## 1450 0
## 1451 0
## 1452 0
## 1453 0
## 1454 1
## 1455 1
## 1456 0
## 1457 0
## 1458 0
## 1459 0
## 1460 0
## 1461 0
## 1462 0
## 1463 0
## 1464 0
## 1465 0
## 1466 0
## 1467 0
## 1468 0
## 1469 0
## 1470 0
## 1471 0
## 1472 0
## 1473 0
## 1474 0
## 1475 0
## 1476 0
## 1477 0
## 1478 0
## 1479 0
## 1480 0
## 1481 0
## 1482 0
## 1483 0
## 1484 0
## 1485 0
## 1486 0
## 1487 0
## 1488 0
## 1489 0
## 1490 0
## 1491 0
## 1492 0
## 1493 0
## 1494 0
## 1495 0
## 1496 0
## 1497 0
## 1498 0
## 1499 0
## 1500 0
## 1501 0
## 1502 0
## 1503 0
## 1504 0
## 1505 0
## 1506 0
## 1507 0
## 1508 0
## 1509 0
## 1510 0
## 1511 0
## 1512 0
## 1513 0
## 1514 0
## 1515 0
## 1516 0
## 1517 0
## 1518 0
## 1519 0
## 1520 0
## 1521 0
## 1522 0
## 1523 0
## 1524 0
## 1525 0
## 1526 0
## 1527 0
## 1528 0
## 1529 0
## 1530 0
## 1531 0
## 1532 0
## 1533 0
## 1534 0
## 1535 0
## 1536 0
## 1537 0
## 1538 0
## 1539 0
## 1540 0
## 1541 0
## 1542 0
## 1543 0
## 1544 0
## 1545 0
## 1546 0
## 1547 0
## 1548 0
## 1549 0
## 1550 0
## 1551 0
## 1552 0
## 1553 0
## 1554 0
## 1555 0
## 1556 0
## 1557 0
## 1558 0
## 1559 0
## 1560 0
## 1561 0
## 1562 0
## 1563 0
## 1564 0
## 1565 0
## 1566 0
## 1567 0
## 1568 0
## 1569 0
## 1570 0
## 1571 0
## 1572 0
## 1573 0
## 1574 0
## 1575 0
## 1576 0
## 1577 0
## 1578 0
## 1579 0
## 1580 0
## 1581 0
## 1582 0
## 1583 0
## 1584 0
## 1585 0
## 1586 0
## 1587 1
## 1588 0
## 1589 0
## 1590 0
## 1591 0
## 1592 0
## 1593 0
## 1594 0
## 1595 0
## 1596 0
## 1597 0
## 1598 0
## 1599 0
## 1600 0
## 1601 0
## 1602 0
## 1603 0
## 1604 0
## 1605 0
## 1608 0
## 1609 0
## 1610 0
## 1611 0
## 1612 0
## 1613 0
## 1614 0
## 1615 0
## 1616 0
## 1618 0
## 1619 0
## 1620 0
## 1621 0
## 1622 0
## 1623 0
## 1624 0
## 1626 0
## 1627 0
## 1628 0
## 1629 0
## 1630 0
## 1631 0
## 1632 0
## 1633 0
## 1634 0
## 1635 0
## 1636 0
## 1637 0
## 1638 0
## 1639 0
## 1640 0
## 1641 0
## 1642 0
## 1643 0
## 1644 0
## 1645 0
## 1646 0
## 1647 0
## 1648 0
## 1649 0
## 1651 0
## 1652 0
## 1653 0
## 1655 0
## 1656 0
## 1657 0
## 1659 0
## 1660 0
## 1661 0
## 1662 0
## 1663 0
## 1664 0
## 1665 0
## 1666 0
## 1667 0
## 1668 0
## 1669 0
## 1670 0
## 1671 0
## 1672 0
## 1673 0
## 1674 0
## 1675 0
## 1676 0
## 1677 0
## 1678 0
## 1679 0
## 1681 0
## 1682 0
colnames(movie_data)
## [1] "user" "item" "rating"
movie_data
## user
## 1 1
## 453 1
## 584 1
## 674 1
## 883 1
## 969 1
## 995 1
## 1387 1
## 1606 1
## 1905 1
## 1994 1
## 2230 1
## 2497 1
## 2681 1
## 2864 1
## 3157 1
## 3196 1
## 3288 1
## 3298 1
## 3367 1
## 3439 1
## 3523 1
## 3820 1
## 4002 1
## 4176 1
## 4469 1
## 4542 1
## 4599 1
## 4875 1
## 4989 1
## 5026 1
## 5180 1
## 5261 1
## 5358 1
## 5365 1
## 5376 1
## 5389 1
## 5397 1
## 5517 1
## 5604 1
## 5661 1
## 5698 1
## 5846 1
## 5886 1
## 5965 1
## 6045 1
## 6072 1
## 6205 1
## 6322 1
## 6403 1
## 6986 1
## 7067 1
## 7158 1
## 7286 1
## 7390 1
## 7539 1
## 7933 1
## 7973 1
## 8148 1
## 8231 1
## 8295 1
## 8354 1
## 8481 1
## 8563 1
## 8846 1
## 8961 1
## 9123 1
## 9226 1
## 9360 1
## 9681 1
## 9932 1
## 10152 1
## 10281 1
## 10409 1
## 10416 1
## 10421 1
## 10475 1
## 10626 1
## 10659 1
## 10995 1
## 11063 1
## 11173 1
## 11434 1
## 11610 1
## 11628 1
## 11686 1
## 11836 1
## 11974 1
## 12187 1
## 12462 1
## 12557 1
## 12700 1
## 12804 1
## 12916 1
## 13053 1
## 13272 1
## 13567 1
## 13823 1
## 14213 1
## 14385 1
## 14893 1
## 14966 1
## 15020 1
## 15035 1
## 15040 1
## 15114 1
## 15185 1
## 15227 1
## 15292 1
## 15422 1
## 15453 1
## 15725 1
## 15745 1
## 15754 1
## 15821 1
## 15836 1
## 15961 1
## 16339 1
## 16632 1
## 16636 1
## 16703 1
## 17132 1
## 17238 1
## 17353 1
## 17540 1
## 17784 1
## 17881 1
## 18294 1
## 18359 1
## 18488 1
## 18511 1
## 18606 1
## 18852 1
## 19023 1
## 19221 1
## 19480 1
## 19585 1
## 19756 1
## 19775 1
## 19825 1
## 19886 1
## 19958 1
## 20015 1
## 20237 1
## 20480 1
## 20545 1
## 20555 1
## 20740 1
## 20868 1
## 20891 1
## 21048 1
## 21374 1
## 21456 1
## 21703 1
## 21877 1
## 21975 1
## 22123 1
## 22250 1
## 22310 1
## 22411 1
## 22480 1
## 22700 1
## 22806 1
## 22898 1
## 23049 1
## 23113 1
## 23171 1
## 23238 1
## 23554 1
## 23672 1
## 23793 1
## 23858 1
## 24225 1
## 24549 1
## 24969 1
## 25177 1
## 25461 1
## 25598 1
## 25723 1
## 25944 1
## 26165 1
## 26672 1
## 26898 1
## 27189 1
## 27305 1
## 27544 1
## 27795 1
## 28004 1
## 28174 1
## 28240 1
## 28364 1
## 28640 1
## 28756 1
## 28913 1
## 29154 1
## 29455 1
## 29706 1
## 29945 1
## 30072 1
## 30237 1
## 30443 1
## 30532 1
## 30812 1
## 30994 1
## 31344 1
## 31480 1
## 31530 1
## 31596 1
## 31796 1
## 31987 1
## 32318 1
## 32524 1
## 32616 1
## 32750 1
## 32864 1
## 33076 1
## 33366 1
## 33486 1
## 33657 1
## 33768 1
## 33834 1
## 33908 1
## 34273 1
## 34409 1
## 34453 1
## 34562 1
## 34728 1
## 34889 1
## 35133 1
## 35304 1
## 35503 1
## 35645 1
## 35746 1
## 35870 1
## 36150 1
## 36367 1
## 36412 1
## 36796 1
## 37052 1
## 37202 1
## 37358 1
## 37486 1
## 37603 1
## 37735 1
## 37783 1
## 38023 1
## 38147 1
## 38152 1
## 38312 1
## 38442 1
## 38639 1
## 38685 1
## 38843 1
## 38869 1
## 38931 1
## 39103 1
## 39119 1
## 39422 1
## 39931 1
## 40093 1
## 40220 1
## 40263 1
## 40329 1
## 40348 1
## 40449 1
## 40676 1
## 40711 1
## 40720 1
## 41035 1
## 41171 1
## 41382 1
## 2 2
## 1906 2
## 2498 2
## 2682 2
## 3299 2
## 4177 2
## 6404 2
## 14386 2
## 15454 2
## 17882 2
## 36413 2
## 37487 2
## 38640 2
## 38932 2
## 39120 2
## 39423 2
## 40721 2
## 41383 2
## 41580 2
## 41803 2
## 41993 2
## 42261 2
## 42559 2
## 42630 2
## 42690 2
## 42718 2
## 42803 2
## 42949 2
## 43181 2
## 43358 2
## 43551 2
## 43713 2
## 44194 2
## 44272 2
## 44750 2
## 45009 2
## 45105 2
## 45232 2
## 45346 2
## 45493 2
## 45978 2
## 46055 2
## 46061 2
## 46111 2
## 46305 2
## 46378 2
## 46809 2
## 47039 2
## 47336 2
## 47485 2
## 47572 2
## 47668 2
## 47856 2
## 47886 2
## 47914 2
## 48059 2
## 48134 2
## 48214 2
## 48564 2
## 48569 2
## 48729 2
## 26166 3
## 37784 3
## 39424 3
## 40094 3
## 40349 3
## 41172 3
## 41384 3
## 44273 3
## 45494 3
## 46306 3
## 46379 3
## 47040 3
## 47669 3
## 48841 3
## 48943 3
## 49241 3
## 49409 3
## 49429 3
## 49598 3
## 49816 3
## 50056 3
## 50181 3
## 50309 3
## 50484 3
## 50659 3
## 50954 3
## 50999 3
## 51040 3
## 51153 3
## 51296 3
## 51547 3
## 51611 3
## 51632 3
## 51675 3
## 51693 3
## 51784 3
## 51831 3
## 52020 3
## 52031 3
## 52083 3
## 52207 3
## 52262 3
## 52327 3
## 52453 3
## 52590 3
## 52621 3
## 52662 3
## 52682 3
## 52708 3
## 52722 3
## 52794 3
## 1995 4
## 6405 4
## 31988 4
## 39425 4
## 40095 4
## 40350 4
## 41173 4
## 44274 4
## 45495 4
## 46380 4
## 46810 4
## 50057 4
## 50485 4
## 50660 4
## 50955 4
## 52723 4
## 52835 4
## 52932 4
## 53196 4
## 53339 4
## 53357 4
## 53367 4
## 53377 4
## 3 5
## 454 5
## 3197 5
## 3440 5
## 4003 5
## 4178 5
## 4876 5
## 5605 5
## 5699 5
## 6406 5
## 8355 5
## 8482 5
## 8962 5
## 9361 5
## 9682 5
## 10660 5
## 10996 5
## 12188 5
## 12463 5
## 12917 5
## 13054 5
## 13824 5
## 14214 5
## 14387 5
## 14894 5
## 14967 5
## 15041 5
## 15293 5
## 15423 5
## 16704 5
## 19222 5
## 19776 5
## 20016 5
## 20238 5
## 20481 5
## 21049 5
## 21457 5
## 21704 5
## 22701 5
## 22807 5
## 23172 5
## 23239 5
## 23555 5
## 23859 5
## 24226 5
## 24550 5
## 25178 5
## 26167 5
## 26899 5
## 27306 5
## 27545 5
## 28175 5
## 28914 5
## 30238 5
## 30995 5
## 31597 5
## 31797 5
## 31989 5
## 32319 5
## 32751 5
## 33077 5
## 33658 5
## 33909 5
## 34454 5
## 34563 5
## 34729 5
## 34890 5
## 35134 5
## 35305 5
## 35504 5
## 35747 5
## 35871 5
## 36151 5
## 37053 5
## 37359 5
## 37604 5
## 38443 5
## 39121 5
## 39932 5
## 40712 5
## 53405 5
## 53452 5
## 53489 5
## 53537 5
## 53584 5
## 53754 5
## 53785 5
## 53840 5
## 53879 5
## 53946 5
## 53980 5
## 54019 5
## 54030 5
## 54053 5
## 54077 5
## 54090 5
## 54191 5
## 54234 5
## 54350 5
## 54450 5
## 54561 5
## 54592 5
## 54661 5
## 54869 5
## 54956 5
## 55021 5
## 55049 5
## 55076 5
## 55086 5
## 55145 5
## 55213 5
## 55405 5
## 55417 5
## 55473 5
## 55527 5
## 55539 5
## 55565 5
## 55654 5
## 55672 5
## 55748 5
## 55918 5
## 56119 5
## 56220 5
## 56564 5
## 56613 5
## 56656 5
## 56768 5
## 56838 5
## 57000 5
## 57163 5
## 57256 5
## 57311 5
## 57373 5
## 57398 5
## 57462 5
## 57535 5
## 57664 5
## 57842 5
## 57923 5
## 58029 5
## 58055 5
## 58355 5
## 58374 5
## 58459 5
## 58491 5
## 58710 5
## 58831 5
## 58928 5
## 59021 5
## 59174 5
## 59348 5
## 59519 5
## 59586 5
## 59802 5
## 59901 5
## 59906 5
## 59912 5
## 59917 5
## 59931 5
## 59984 5
## 59988 5
## 60150 5
## 60196 5
## 60218 5
## 60227 5
## 60348 5
## 60433 5
## 60550 5
## 60613 5
## 60783 5
## 60849 5
## 60865 5
## 60881 5
## 61026 5
## 61074 5
## 4 6
## 996 6
## 1388 6
## 1607 6
## 2231 6
## 2499 6
## 2683 6
## 2865 6
## 3300 6
## 3441 6
## 3524 6
## 3821 6
## 4600 6
## 5181 6
## 6073 6
## 6407 6
## 7540 6
## 8149 6
## 8564 6
## 9362 6
## 9683 6
## 9933 6
## 10661 6
## 11064 6
## 11687 6
## 11837 6
## 12189 6
## 13055 6
## 13825 6
## 14388 6
## 15455 6
## 15962 6
## 17354 6
## 17541 6
## 17883 6
## 18512 6
## 18607 6
## 18853 6
## 19024 6
## 19223 6
## 19481 6
## 19586 6
## 20017 6
## 21050 6
## 21458 6
## 21705 6
## 21976 6
## 23050 6
## 23114 6
## 23240 6
## 23556 6
## 23673 6
## 24227 6
## 24551 6
## 24970 6
## 25462 6
## 25599 6
## 25945 6
## 26673 6
## 26900 6
## 27307 6
## 27546 6
## 27796 6
## 28005 6
## 28176 6
## 28365 6
## 28641 6
## 28757 6
## 28915 6
## 29155 6
## 29707 6
## 30073 6
## 30239 6
## 30533 6
## 30813 6
## 30996 6
## 31345 6
## 31598 6
## 31798 6
## 32320 6
## 32617 6
## 33078 6
## 33835 6
## 34274 6
## 36414 6
## 36797 6
## 37488 6
## 38024 6
## 38153 6
## 39122 6
## 39426 6
## 39933 6
## 40221 6
## 40722 6
## 41385 6
## 41804 6
## 41994 6
## 42262 6
## 43359 6
## 43552 6
## 43714 6
## 45347 6
## 45496 6
## 46062 6
## 46112 6
## 46811 6
## 47041 6
## 47337 6
## 47573 6
## 47857 6
## 47887 6
## 47915 6
## 48842 6
## 48944 6
## 49430 6
## 51832 6
## 52933 6
## 53585 6
## 56221 6
## 56657 6
## 56839 6
## 57665 6
## 58056 6
## 58375 6
## 58492 6
## 59175 6
## 59587 6
## 61101 6
## 61191 6
## 61215 6
## 61243 6
## 61317 6
## 61465 6
## 61536 6
## 61563 6
## 61648 6
## 61700 6
## 61748 6
## 61812 6
## 61879 6
## 61987 6
## 62208 6
## 62366 6
## 62492 6
## 62686 6
## 62936 6
## 63096 6
## 63191 6
## 63295 6
## 63474 6
## 63653 6
## 63716 6
## 63844 6
## 64087 6
## 64225 6
## 64350 6
## 64414 6
## 64482 6
## 64547 6
## 64599 6
## 64649 6
## 64716 6
## 64775 6
## 64835 6
## 64891 6
## 64950 6
## 65181 6
## 65249 6
## 65401 6
## 65463 6
## 65586 6
## 65643 6
## 65682 6
## 65804 6
## 65872 6
## 65962 6
## 66060 6
## 66275 6
## 66396 6
## 66517 6
## 66690 6
## 66747 6
## 66819 6
## 66999 6
## 67200 6
## 67263 6
## 67354 6
## 67443 6
## 67523 6
## 67647 6
## 67767 6
## 67802 6
## 67966 6
## 68012 6
## 68085 6
## 68209 6
## 68404 6
## 68525 6
## 68618 6
## 68698 6
## 68827 6
## 68849 6
## 68864 6
## 68877 6
## 68931 6
## 68941 6
## 68971 6
## 69037 6
## 675 7
## 997 7
## 1389 7
## 1608 7
## 1907 7
## 1996 7
## 2232 7
## 3525 7
## 3822 7
## 4179 7
## 4543 7
## 4601 7
## 4877 7
## 5027 7
## 5182 7
## 5518 7
## 5887 7
## 6074 7
## 6408 7
## 6987 7
## 7068 7
## 7159 7
## 7287 7
## 7541 7
## 8356 7
## 8565 7
## 9227 7
## 9363 7
## 9684 7
## 9934 7
## 10153 7
## 10282 7
## 10476 7
## 10627 7
## 10662 7
## 10997 7
## 11065 7
## 11174 7
## 11688 7
## 12190 7
## 12464 7
## 12558 7
## 12701 7
## 12805 7
## 13273 7
## 13568 7
## 13826 7
## 14215 7
## 14389 7
## 14895 7
## 15115 7
## 16340 7
## 16705 7
## 17542 7
## 17785 7
## 17884 7
## 18513 7
## 18608 7
## 18854 7
## 19025 7
## 19224 7
## 19482 7
## 19777 7
## 19826 7
## 19887 7
## 19959 7
## 20018 7
## 20239 7
## 20482 7
## 21051 7
## 21375 7
## 21459 7
## 21706 7
## 21977 7
## 22124 7
## 22481 7
## 22702 7
## 22808 7
## 22899 7
## 23115 7
## 23241 7
## 23794 7
## 23860 7
## 24228 7
## 24552 7
## 24971 7
## 25179 7
## 25463 7
## 25600 7
## 25724 7
## 25946 7
## 26168 7
## 26674 7
## 26901 7
## 27308 7
## 27547 7
## 27797 7
## 28006 7
## 28241 7
## 28366 7
## 28642 7
## 28758 7
## 28916 7
## 29156 7
## 29456 7
## 29708 7
## 29946 7
## 30074 7
## 30240 7
## 30444 7
## 30534 7
## 30814 7
## 30997 7
## 31346 7
## 31531 7
## 31599 7
## 31990 7
## 32321 7
## 32525 7
## 32618 7
## 32752 7
## 32865 7
## 33079 7
## 33367 7
## 33659 7
## 34275 7
## 34564 7
## 34730 7
## 34891 7
## 35135 7
## 35306 7
## 35505 7
## 35646 7
## 35872 7
## 36415 7
## 36798 7
## 37360 7
## 39427 7
## 39934 7
## 40096 7
## 40351 7
## 40450 7
## 40677 7
## 40723 7
## 41581 7
## 41995 7
## 42804 7
## 43553 7
## 43715 7
## 44275 7
## 45497 7
## 46381 7
## 47670 7
## 47888 7
## 48843 7
## 48945 7
## 50058 7
## 51548 7
## 52021 7
## 52836 7
## 52934 7
## 53490 7
## 53586 7
## 54091 7
## 54192 7
## 54235 7
## 54451 7
## 54593 7
## 54662 7
## 54870 7
## 54957 7
## 55050 7
## 55087 7
## 55214 7
## 55474 7
## 55566 7
## 55673 7
## 55749 7
## 55919 7
## 56120 7
## 56222 7
## 57374 7
## 57399 7
## 57463 7
## 57536 7
## 57666 7
## 57843 7
## 57924 7
## 58057 7
## 58493 7
## 58711 7
## 58832 7
## 58929 7
## 59022 7
## 59176 7
## 59349 7
## 59520 7
## 59588 7
## 59803 7
## 59918 7
## 59932 7
## 59989 7
## 60151 7
## 60219 7
## 60228 7
## 60349 7
## 60434 7
## 60551 7
## 60614 7
## 60784 7
## 60882 7
## 61244 7
## 61466 7
## 61564 7
## 61880 7
## 61988 7
## 62209 7
## 62493 7
## 63296 7
## 63475 7
## 63654 7
## 63717 7
## 63845 7
## 64088 7
## 64226 7
## 64415 7
## 64483 7
## 64548 7
## 64650 7
## 64717 7
## 64892 7
## 64951 7
## 65182 7
## 65250 7
## 65402 7
## 65464 7
## 65587 7
## 65644 7
## 65683 7
## 65805 7
## 65873 7
## 65963 7
## 66276 7
## 66397 7
## 66518 7
## 66748 7
## 66820 7
## 67000 7
## 67444 7
## 67524 7
## 67648 7
## 67803 7
## 68086 7
## 68210 7
## 68405 7
## 68526 7
## 68619 7
## 68942 7
## 69081 7
## 69124 7
## 69173 7
## 69224 7
## 69245 7
## 69316 7
## 69328 7
## 69582 7
## 69623 7
## 69635 7
## 69727 7
## 69878 7
## 69902 7
## 69947 7
## 70010 7
## 70112 7
## 70122 7
## 70134 7
## 70151 7
## 70221 7
## 70358 7
## 70380 7
## 70439 7
## 70487 7
## 70516 7
## 70543 7
## 70565 7
## 70744 7
## 70779 7
## 71009 7
## 71076 7
## 71126 7
## 71154 7
## 71183 7
## 71216 7
## 71231 7
## 71275 7
## 71368 7
## 71409 7
## 71501 7
## 71520 7
## 71552 7
## 71611 7
## 71779 7
## 71816 7
## 71895 7
## 71934 7
## 71968 7
## 71982 7
## 72184 7
## 72227 7
## 72245 7
## 72423 7
## 72432 7
## 72444 7
## 72449 7
## 72513 7
## 72640 7
## 72846 7
## 72850 7
## 72851 7
## 72853 7
## 72873 7
## 72923 7
## 73132 7
## 73213 7
## 73244 7
## 73310 7
## 73376 7
## 73406 7
## 73466 7
## 73507 7
## 73547 7
## 73581 7
## 73608 7
## 73659 7
## 73718 7
## 73782 7
## 73800 7
## 73818 7
## 73882 7
## 73925 7
## 73936 7
## 73975 7
## 74014 7
## 74036 7
## 74118 7
## 74122 7
## 74197 7
## 74366 7
## 74443 7
## 74474 7
## 74593 7
## 74651 7
## 74720 7
## 74744 7
## 74767 7
## 74858 7
## 74896 7
## 74940 7
## 74980 7
## 75062 7
## 75095 7
## 75184 7
## 75188 7
## 75223 7
## 75250 7
## 75288 7
## 75358 7
## 75425 7
## 75475 7
## 75547 7
## 75718 7
## 75808 7
## 75842 7
## 75989 7
## 76216 7
## 76260 7
## 76391 7
## 76470 7
## 76585 7
## 76738 7
## 76826 7
## 76908 7
## 77024 7
## 77070 7
## 77170 7
## 77175 7
## 77187 7
## 77193 7
## 77206 7
## 77252 7
## 77317 7
## 77403 7
## 77451 7
## 77505 7
## 77582 7
## 77583 7
## 77802 7
## 77909 7
## 77936 7
## 78036 7
## 998 8
## 1997 8
## 3526 8
## 6409 8
## 7391 8
## 7542 8
## 10663 8
## 11175 8
## 12191 8
## 13274 8
## 17885 8
## 20240 8
## 23861 8
## 24553 8
## 25180 8
## 25464 8
## 26169 8
## 26675 8
## 26902 8
## 27798 8
## 28007 8
## 28242 8
## 29157 8
## 31991 8
## 33910 8
## 34731 8
## 34892 8
## 35136 8
## 35748 8
## 37361 8
## 37605 8
## 39428 8
## 39935 8
## 40097 8
## 41582 8
## 45498 8
## 46812 8
## 51633 8
## 51694 8
## 52022 8
## 53197 8
## 54663 8
## 55920 8
## 59023 8
## 59589 8
## 61075 8
## 66398 8
## 66519 8
## 67355 8
## 69728 8
## 70566 8
## 70780 8
## 75548 8
## 78085 8
## 78254 8
## 78411 8
## 78461 8
## 78530 8
## 78574 8
## 970 9
## 999 9
## 6410 9
## 30445 9
## 37489 9
## 42263 9
## 43716 9
## 45499 9
## 46113 9
## 51833 9
## 53880 9
## 54664 9
## 55750 9
## 63297 9
## 63846 9
## 64416 9
## 65964 9
## 67649 9
## 68211 9
## 73660 9
## 78661 9
## 78816 9
## 5 10
## 676 10
## 1000 10
## 1609 10
## 1998 10
## 2233 10
## 2500 10
## 3158 10
## 3527 10
## 3823 10
## 5183 10
## 5262 10
## 5606 10
## 6206 10
## 6411 10
## 7543 10
## 8150 10
## 8232 10
## 8566 10
## 9364 10
## 9685 10
## 11176 10
## 11629 10
## 12806 10
## 13827 10
## 14216 10
## 14390 10
## 15837 10
## 17355 10
## 17886 10
## 18360 10
## 18609 10
## 18855 10
## 19026 10
## 19225 10
## 19587 10
## 20241 10
## 21460 10
## 21878 10
## 21978 10
## 22125 10
## 22412 10
## 22482 10
## 22703 10
## 22900 10
## 23242 10
## 23674 10
## 24554 10
## 24972 10
## 25181 10
## 25601 10
## 25725 10
## 25947 10
## 26676 10
## 26903 10
## 27309 10
## 27548 10
## 28367 10
## 28643 10
## 28917 10
## 29158 10
## 29709 10
## 29947 10
## 30075 10
## 30241 10
## 30815 10
## 31347 10
## 32322 10
## 33080 10
## 33487 10
## 33836 10
## 34276 10
## 35307 10
## 35873 10
## 36799 10
## 37785 10
## 40724 10
## 41583 10
## 41805 10
## 41996 10
## 42264 10
## 43182 10
## 43554 10
## 43717 10
## 44751 10
## 45500 10
## 47042 10
## 49242 10
## 49431 10
## 51297 10
## 51549 10
## 51834 10
## 52935 10
## 53587 10
## 53881 10
## 54665 10
## 56121 10
## 57312 10
## 57537 10
## 57844 10
## 58930 10
## 59177 10
## 59590 10
## 60229 10
## 61245 10
## 61318 10
## 61467 10
## 61701 10
## 61881 10
## 62494 10
## 62687 10
## 63192 10
## 63298 10
## 63476 10
## 63718 10
## 63847 10
## 64089 10
## 64351 10
## 64484 10
## 64549 10
## 64776 10
## 64893 10
## 64952 10
## 65183 10
## 65251 10
## 65403 10
## 65588 10
## 65684 10
## 65806 10
## 66277 10
## 66399 10
## 66520 10
## 66749 10
## 67356 10
## 67445 10
## 67650 10
## 68013 10
## 68212 10
## 68527 10
## 68620 10
## 68699 10
## 70152 10
## 71612 10
## 71983 10
## 72185 10
## 72874 10
## 72924 10
## 73133 10
## 73245 10
## 73467 10
## 73508 10
## 73661 10
## 73783 10
## 74367 10
## 75549 10
## 75719 10
## 75843 10
## 75990 10
## 76217 10
## 76261 10
## 76909 10
## 77025 10
## 78412 10
## 78832 10
## 78996 10
## 79087 10
## 79131 10
## 79144 10
## 79223 10
## 79263 10
## 79273 10
## 79375 10
## 79390 10
## 79400 10
## 79453 10
## 79472 10
## 79496 10
## 79633 10
## 79639 10
## 79709 10
## 79810 10
## 79914 10
## 79993 10
## 79994 10
## 1390 11
## 1610 11
## 1999 11
## 2234 11
## 2866 11
## 3528 11
## 4004 11
## 4180 11
## 4602 11
## 4878 11
## 5398 11
## 5519 11
## 5607 11
## 5700 11
## 6075 11
## 6988 11
## 7069 11
## 7288 11
## 7544 11
## 7934 11
## 7974 11
## 9365 11
## 9686 11
## 10664 11
## 11435 11
## 11689 11
## 11975 11
## 12465 11
## 12918 11
## 13569 11
## 13828 11
## 14391 11
## 15186 11
## 15294 11
## 15424 11
## 15456 11
## 16637 11
## 16706 11
## 17239 11
## 17543 11
## 19226 11
## 23243 11
## 24229 11
## 24973 11
## 25182 11
## 25948 11
## 27310 11
## 28243 11
## 28368 11
## 28918 11
## 29457 11
## 30816 11
## 30998 11
## 31600 11
## 32323 11
## 32619 11
## 32866 11
## 33081 11
## 33911 11
## 34732 11
## 34893 11
## 35137 11
## 35308 11
## 36416 11
## 36800 11
## 37054 11
## 37362 11
## 39429 11
## 39936 11
## 40098 11
## 41806 11
## 42560 11
## 43718 11
## 45010 11
## 45106 11
## 46382 11
## 46813 11
## 48135 11
## 48844 11
## 48946 11
## 50059 11
## 51154 11
## 52622 11
## 52837 11
## 52936 11
## 53491 11
## 53588 11
## 53841 11
## 53947 11
## 54452 11
## 54562 11
## 54871 11
## 55215 11
## 55418 11
## 55567 11
## 55674 11
## 55751 11
## 56223 11
## 57313 11
## 58058 11
## 58376 11
## 58494 11
## 58712 11
## 58833 11
## 58931 11
## 59024 11
## 59350 11
## 59521 11
## 59591 11
## 60435 11
## 60615 11
## 60883 11
## 65685 11
## 66061 11
## 67264 11
## 67651 11
## 67967 11
## 68087 11
## 68213 11
## 69246 11
## 69636 11
## 70153 11
## 70381 11
## 71184 11
## 71369 11
## 71521 11
## 72641 11
## 72925 11
## 75251 11
## 75720 11
## 75844 11
## 76471 11
## 76586 11
## 76827 11
## 76910 11
## 78662 11
## 78833 11
## 79274 11
## 79640 11
## 79915 11
## 80045 11
## 80117 11
## 80130 11
## 80217 11
## 80275 11
## 80357 11
## 80373 11
## 80402 11
## 80488 11
## 80542 11
## 80600 11
## 80634 11
## 80710 11
## 80726 11
## 80740 11
## 80803 11
## 80848 11
## 80929 11
## 80953 11
## 80992 11
## 81172 11
## 81187 11
## 81214 11
## 81351 11
## 81429 11
## 81488 11
## 81519 11
## 81683 11
## 81746 11
## 81804 11
## 82071 11
## 82110 11
## 82202 11
## 82218 11
## 82337 11
## 82439 11
## 82755 11
## 82806 11
## 82930 11
## 83110 11
## 677 12
## 2867 12
## 4603 12
## 6412 12
## 9366 12
## 9935 12
## 11177 12
## 11976 12
## 13275 12
## 13570 12
## 13829 12
## 17887 12
## 18610 12
## 18856 12
## 20019 12
## 22126 12
## 22311 12
## 22483 12
## 23244 12
## 23675 12
## 23862 12
## 24555 12
## 28369 12
## 29159 12
## 29458 12
## 30242 12
## 30535 12
## 30817 12
## 30999 12
## 32867 12
## 33082 12
## 34894 12
## 36801 12
## 37490 12
## 42265 12
## 42950 12
## 46383 12
## 48947 12
## 50661 12
## 54351 12
## 55146 12
## 55752 12
## 57400 12
## 61989 12
## 63477 12
## 72246 12
## 78086 12
## 79710 12
## 81215 12
## 83149 12
## 83173 12
## 6 13
## 455 13
## 678 13
## 884 13
## 1001 13
## 1391 13
## 1611 13
## 2000 13
## 2235 13
## 2501 13
## 2684 13
## 3198 13
## 3442 13
## 3529 13
## 3824 13
## 4005 13
## 4181 13
## 4544 13
## 4604 13
## 4879 13
## 5184 13
## 5263 13
## 5390 13
## 5399 13
## 5520 13
## 5608 13
## 5701 13
## 5966 13
## 6207 13
## 6323 13
## 6413 13
## 6989 13
## 7160 13
## 7545 13
## 7975 13
## 8151 13
## 8233 13
## 8296 13
## 8357 13
## 8567 13
## 8963 13
## 9124 13
## 9228 13
## 9367 13
## 9687 13
## 9936 13
## 10154 13
## 10283 13
## 10628 13
## 10665 13
## 11178 13
## 11436 13
## 11690 13
## 11838 13
## 11977 13
## 12192 13
## 12466 13
## 12559 13
## 12702 13
## 12919 13
## 13056 13
## 13276 13
## 13571 13
## 13830 13
## 14217 13
## 14392 13
## 15295 13
## 15425 13
## 15457 13
## 15838 13
## 15963 13
## 16341 13
## 16707 13
## 17356 13
## 17888 13
## 18295 13
## 18611 13
## 19227 13
## 19588 13
## 19757 13
## 19888 13
## 20020 13
## 20242 13
## 20483 13
## 20556 13
## 20892 13
## 21376 13
## 21461 13
## 21707 13
## 21879 13
## 22127 13
## 22251 13
## 22413 13
## 22484 13
## 22809 13
## 22901 13
## 23051 13
## 23116 13
## 23173 13
## 23245 13
## 23676 13
## 23863 13
## 24230 13
## 24556 13
## 24974 13
## 25183 13
## 25465 13
## 25602 13
## 25726 13
## 25949 13
## 26170 13
## 26677 13
## 26904 13
## 27190 13
## 27311 13
## 27549 13
## 27799 13
## 28008 13
## 28244 13
## 28370 13
## 28759 13
## 28919 13
## 29160 13
## 29459 13
## 29710 13
## 29948 13
## 30076 13
## 30243 13
## 30446 13
## 30536 13
## 31000 13
## 31348 13
## 31601 13
## 31799 13
## 31992 13
## 32324 13
## 32526 13
## 32868 13
## 33083 13
## 33368 13
## 33488 13
## 33660 13
## 33912 13
## 34277 13
## 34410 13
## 34455 13
## 34565 13
## 34733 13
## 34895 13
## 35138 13
## 35309 13
## 35506 13
## 35647 13
## 35749 13
## 35874 13
## 36152 13
## 36417 13
## 36802 13
## 37055 13
## 37363 13
## 37491 13
## 37606 13
## 39430 13
## 40099 13
## 40222 13
## 40264 13
## 40330 13
## 40352 13
## 40451 13
## 40725 13
## 41036 13
## 41174 13
## 41386 13
## 41584 13
## 41807 13
## 41997 13
## 42266 13
## 42691 13
## 42719 13
## 42805 13
## 43555 13
## 43719 13
## 44195 13
## 44276 13
## 44752 13
## 45011 13
## 45233 13
## 45501 13
## 46307 13
## 46384 13
## 46814 13
## 47043 13
## 47486 13
## 47574 13
## 47671 13
## 47858 13
## 47916 13
## 48060 13
## 48136 13
## 48215 13
## 48565 13
## 48570 13
## 48730 13
## 48845 13
## 48948 13
## 49243 13
## 49410 13
## 49432 13
## 49599 13
## 49817 13
## 50310 13
## 50486 13
## 50662 13
## 50956 13
## 51041 13
## 51155 13
## 51298 13
## 51550 13
## 51634 13
## 51695 13
## 51785 13
## 51835 13
## 52023 13
## 52032 13
## 52084 13
## 52208 13
## 52263 13
## 52328 13
## 52454 13
## 52591 13
## 52623 13
## 52663 13
## 52709 13
## 52724 13
## 52795 13
## 52937 13
## 53198 13
## 53358 13
## 53378 13
## 53406 13
## 53589 13
## 53842 13
## 53882 13
## 54078 13
## 54193 13
## 54453 13
## 54594 13
## 54666 13
## 54958 13
## 55088 13
## 55216 13
## 55406 13
## 55475 13
## 55540 13
## 55655 13
## 55675 13
## 55753 13
## 55921 13
## 56122 13
## 56224 13
## 56565 13
## 56769 13
## 56840 13
## 57001 13
## 57257 13
## 57314 13
## 57401 13
## 57464 13
## 57538 13
## 57667 13
## 57845 13
## 57925 13
## 58059 13
## 58356 13
## 58495 13
## 58713 13
## 58834 13
## 58932 13
## 59025 13
## 59178 13
## 59351 13
## 59592 13
## 59804 13
## 59902 13
## 59907 13
## 59913 13
## 59919 13
## 59933 13
## 59985 13
## 59990 13
## 60152 13
## 60197 13
## 60220 13
## 60230 13
## 60350 13
## 60436 13
## 60552 13
## 60616 13
## 60785 13
## 60850 13
## 60884 13
## 61076 13
## 61319 13
## 61468 13
## 61702 13
## 61990 13
## 62210 13
## 62367 13
## 62495 13
## 62688 13
## 62937 13
## 63097 13
## 63193 13
## 63478 13
## 63655 13
## 63719 13
## 63848 13
## 64090 13
## 64227 13
## 64485 13
## 64651 13
## 64718 13
## 64777 13
## 64836 13
## 65184 13
## 65252 13
## 65465 13
## 65589 13
## 65686 13
## 65807 13
## 65874 13
## 65965 13
## 66062 13
## 66278 13
## 66400 13
## 66521 13
## 66821 13
## 67001 13
## 67201 13
## 67265 13
## 67357 13
## 67446 13
## 67525 13
## 67768 13
## 67804 13
## 67968 13
## 68014 13
## 68088 13
## 68214 13
## 68528 13
## 68621 13
## 68700 13
## 68972 13
## 69038 13
## 69082 13
## 69125 13
## 69329 13
## 69583 13
## 69624 13
## 69637 13
## 69729 13
## 69879 13
## 69948 13
## 70011 13
## 70154 13
## 70222 13
## 70382 13
## 70488 13
## 70517 13
## 70544 13
## 70567 13
## 70745 13
## 70781 13
## 71010 13
## 71077 13
## 71155 13
## 71185 13
## 71276 13
## 71410 13
## 71896 13
## 71935 13
## 71984 13
## 72186 13
## 72228 13
## 72514 13
## 72642 13
## 72854 13
## 72875 13
## 72926 13
## 73134 13
## 73246 13
## 73468 13
## 73548 13
## 73582 13
## 73609 13
## 73662 13
## 73784 13
## 73819 13
## 73926 13
## 74015 13
## 74037 13
## 74368 13
## 74444 13
## 74475 13
## 74594 13
## 74745 13
## 74768 13
## 74859 13
## 74897 13
## 74941 13
## 75252 13
## 75289 13
## 75476 13
## 75550 13
## 75721 13
## 75845 13
## 75991 13
## 76218 13
## 76262 13
## 76472 13
## 76739 13
## 76828 13
## 76911 13
## 77071 13
## 77176 13
## 77188 13
## 77194 13
## 77207 13
## 77253 13
## 77318 13
## 77404 13
## 77452 13
## 77584 13
## 77803 13
## 77937 13
## 78037 13
## 78087 13
## 78255 13
## 78413 13
## 78462 13
## 78531 13
## 78575 13
## 78663 13
## 78817 13
## 78834 13
## 79088 13
## 79497 13
## 79634 13
## 79811 13
## 79995 13
## 80218 13
## 80403 13
## 80543 13
## 80993 13
## 81173 13
## 81216 13
## 81352 13
## 81430 13
## 81520 13
## 81684 13
## 82219 13
## 82338 13
## 82440 13
## 82756 13
## 82807 13
## 82931 13
## 83111 13
## 83174 13
## 83230 13
## 83326 13
## 83454 13
## 83458 13
## 83479 13
## 83490 13
## 83536 13
## 83580 13
## 83695 13
## 83844 13
## 83873 13
## 83905 13
## 83914 13
## 83925 13
## 83977 13
## 84019 13
## 84076 13
## 84117 13
## 84166 13
## 84183 13
## 84215 13
## 84241 13
## 84250 13
## 84254 13
## 84330 13
## 84361 13
## 84430 13
## 84514 13
## 84524 13
## 84561 13
## 84563 13
## 84602 13
## 84616 13
## 84629 13
## 84632 13
## 84679 13
## 84745 13
## 84755 13
## 84841 13
## 84851 13
## 84897 13
## 84918 13
## 84954 13
## 84985 13
## 84994 13
## 84999 13
## 85025 13
## 85041 13
## 85081 13
## 85090 13
## 85098 13
## 85125 13
## 85175 13
## 85184 13
## 85215 13
## 85258 13
## 85303 13
## 85321 13
## 85339 13
## 85395 13
## 85396 13
## 85508 13
## 85529 13
## 85532 13
## 85557 13
## 85597 13
## 85690 13
## 85712 13
## 85716 13
## 85798 13
## 85847 13
## 85930 13
## 86010 13
## 86067 13
## 86080 13
## 86114 13
## 86115 13
## 86206 13
## 86228 13
## 86277 13
## 86302 13
## 86317 13
## 86343 13
## 86368 13
## 86372 13
## 86376 13
## 86429 13
## 86477 13
## 86504 13
## 86534 13
## 86576 13
## 86752 13
## 86796 13
## 86851 13
## 86860 13
## 86913 13
## 86917 13
## 86921 13
## 86922 13
## 86936 13
## 86952 13
## 87018 13
## 87054 13
## 87055 13
## 87058 13
## 87073 13
## 87089 13
## 87092 13
## 87110 13
## 87134 13
## 87220 13
## 87339 13
## 87345 13
## 87350 13
## 87374 13
## 87383 13
## 87458 13
## 87500 13
## 87581 13
## 87620 13
## 87673 13
## 87720 13
## 87772 13
## 87805 13
## 87941 13
## 88000 13
## 88034 13
## 88047 13
## 88054 13
## 88067 13
## 88120 13
## 88184 13
## 88199 13
## 88212 13
## 88255 13
## 88261 13
## 88314 13
## 88328 13
## 88347 13
## 88453 13
## 88497 13
## 88499 13
## 88557 13
## 88566 13
## 88608 13
## 88620 13
## 88662 13
## 88680 13
## 88700 13
## 88727 13
## 88748 13
## 88750 13
## 88770 13
## 88783 13
## 88787 13
## 88791 13
## 88800 13
## 88802 13
## 88813 13
## 88826 13
## 88844 13
## 88851 13
## 1002 14
## 1612 14
## 2236 14
## 2502 14
## 2685 14
## 2868 14
## 3289 14
## 3301 14
## 3530 14
## 3825 14
## 4182 14
## 5185 14
## 5702 14
## 6414 14
## 7546 14
## 9688 14
## 11066 14
## 12807 14
## 13277 14
## 13831 14
## 14393 14
## 15458 14
## 15839 14
## 16708 14
## 17357 14
## 17889 14
## 21052 14
## 23246 14
## 23864 14
## 24231 14
## 24557 14
## 24975 14
## 25184 14
## 26171 14
## 27550 14
## 28371 14
## 29161 14
## 30537 14
## 31001 14
## 31993 14
## 32325 14
## 32620 14
## 33913 14
## 36803 14
## 37203 14
## 37492 14
## 40452 14
## 40726 14
## 41998 14
## 42267 14
## 43183 14
## 43556 14
## 44277 14
## 47044 14
## 48216 14
## 49244 14
## 52938 14
## 54454 14
## 56658 14
## 58496 14
## 58714 14
## 58933 14
## 60885 14
## 62368 14
## 62496 14
## 62689 14
## 63098 14
## 64719 14
## 65253 14
## 65966 14
## 66279 14
## 66822 14
## 67266 14
## 67447 14
## 67805 14
## 67969 14
## 68015 14
## 68622 14
## 71985 14
## 72515 14
## 72927 14
## 74198 14
## 75846 14
## 75992 14
## 76912 14
## 79812 14
## 80219 14
## 82808 14
## 83581 14
## 84756 14
## 85340 14
## 85598 14
## 86577 14
## 88859 14
## 88955 14
## 88960 14
## 89006 14
## 89040 14
## 7 15
## 1003 15
## 1613 15
## 2503 15
## 2686 15
## 2869 15
## 3290 15
## 3368 15
## 4183 15
## 6415 15
## 15459 15
## 16342 15
## 16709 15
## 17544 15
## 17890 15
## 19589 15
## 20741 15
## 26172 15
## 33769 15
## 33914 15
## 34456 15
## 36153 15
## 36418 15
## 37607 15
## 37736 15
## 38154 15
## 38313 15
## 38641 15
## 38686 15
## 38933 15
## 39123 15
## 39431 15
## 40727 15
## 41808 15
## 41999 15
## 42631 15
## 42720 15
## 42951 15
## 43184 15
## 43557 15
## 43720 15
## 44753 15
## 45107 15
## 45234 15
## 46063 15
## 46385 15
## 46815 15
## 47045 15
## 47575 15
## 47672 15
## 47859 15
## 47917 15
## 49600 15
## 49818 15
## 50663 15
## 51042 15
## 51299 15
## 56225 15
## 56770 15
## 57002 15
## 60886 15
## 61102 15
## 61192 15
## 61991 15
## 62211 15
## 62369 15
## 62938 15
## 66063 15
## 69330 15
## 72247 15
## 73883 15
## 77506 15
## 77585 15
## 78256 15
## 78664 15
## 79145 15
## 81805 15
## 82111 15
## 82441 15
## 82757 15
## 83175 15
## 85397 15
## 85717 15
## 86578 15
## 87135 15
## 87221 15
## 87806 15
## 88200 15
## 89098 15
## 89183 15
## 89217 15
## 89318 15
## 89324 15
## 89428 15
## 89468 15
## 89548 15
## 89605 15
## 89645 15
## 89666 15
## 89734 15
## 89741 15
## 89773 15
## 89810 15
## 8 16
## 679 16
## 1004 16
## 1392 16
## 1614 16
## 2001 16
## 2237 16
## 2870 16
## 3531 16
## 4545 16
## 4605 16
## 5028 16
## 5264 16
## 5521 16
## 6990 16
## 7392 16
## 7547 16
## 7976 16
## 8568 16
## 8964 16
## 9368 16
## 9689 16
## 9937 16
## 10422 16
## 10666 16
## 11839 16
## 12193 16
## 12703 16
## 13057 16
## 13278 16
## 13832 16
## 14218 16
## 14394 16
## 15296 16
## 17545 16
## 17891 16
## 19027 16
## 19228 16
## 20021 16
## 20243 16
## 21053 16
## 21377 16
## 21880 16
## 21979 16
## 22252 16
## 22414 16
## 22485 16
## 22902 16
## 23247 16
## 23865 16
## 24558 16
## 25603 16
## 25950 16
## 26678 16
## 26905 16
## 28372 16
## 28920 16
## 29162 16
## 29711 16
## 30077 16
## 30244 16
## 30538 16
## 31002 16
## 31602 16
## 31800 16
## 33084 16
## 34734 16
## 34896 16
## 35310 16
## 35750 16
## 35875 16
## 36419 16
## 37204 16
## 41585 16
## 42952 16
## 43360 16
## 43721 16
## 44278 16
## 45502 16
## 46386 16
## 47046 16
## 48949 16
## 49433 16
## 52939 16
## 53590 16
## 54667 16
## 56123 16
## 56841 16
## 57539 16
## 58060 16
## 58497 16
## 59991 16
## 60231 16
## 60351 16
## 61703 16
## 61813 16
## 61992 16
## 62939 16
## 63299 16
## 63479 16
## 63720 16
## 64953 16
## 65254 16
## 65590 16
## 65687 16
## 66280 16
## 66401 16
## 68701 16
## 69331 16
## 70518 16
## 71780 16
## 72248 16
## 72876 16
## 72928 16
## 73247 16
## 74369 16
## 75096 16
## 75847 16
## 75993 16
## 76263 16
## 76740 16
## 78088 16
## 78835 16
## 78997 16
## 79498 16
## 80994 16
## 81217 16
## 83537 16
## 84020 16
## 85322 16
## 89835 16
## 89895 16
## 89927 16
## 89973 16
## 90018 16
## 90058 16
## 90101 16
## 90141 16
## 90202 16
## 90219 16
## 9 17
## 1005 17
## 1615 17
## 2504 17
## 14395 17
## 15460 17
## 15964 17
## 17546 17
## 17786 17
## 19590 17
## 20893 17
## 21054 17
## 33837 17
## 33915 17
## 36420 17
## 37608 17
## 37786 17
## 40728 17
## 42268 17
## 43722 17
## 45503 17
## 49819 17
## 61993 17
## 62690 17
## 66064 17
## 74199 17
## 82112 17
## 88860 17
## 10 18
## 680 18
## 971 18
## 1393 18
## 1616 18
## 2238 18
## 2505 18
## 2687 18
## 2871 18
## 3302 18
## 3532 18
## 3826 18
## 4184 18
## 4470 18
## 4606 18
## 5186 18
## 5703 18
## 5967 18
## 6076 18
## 6208 18
## 6416 18
## 7070 18
## 7548 18
## 7935 18
## 7977 18
## 8152 18
## 8234 18
## 8297 18
## 8569 18
## 8847 18
## 8965 18
## 9369 18
## 9690 18
## 9938 18
## 10155 18
## 10667 18
## 11067 18
## 11179 18
## 11437 18
## 11691 18
## 11978 18
## 12194 18
## 12560 18
## 12920 18
## 13058 18
## 13572 18
## 13833 18
## 14219 18
## 14396 18
## 15461 18
## 15746 18
## 15840 18
## 17547 18
## 17787 18
## 17892 18
## 18514 18
## 18612 18
## 18857 18
## 19028 18
## 19229 18
## 19483 18
## 19591 18
## 19960 18
## 20022 18
## 21055 18
## 21378 18
## 21462 18
## 21708 18
## 22128 18
## 22704 18
## 23052 18
## 23117 18
## 23248 18
## 23557 18
## 23677 18
## 23866 18
## 24559 18
## 24976 18
## 25466 18
## 25604 18
## 25727 18
## 25951 18
## 26173 18
## 26679 18
## 27312 18
## 27551 18
## 27800 18
## 28009 18
## 28177 18
## 28245 18
## 28373 18
## 28760 18
## 28921 18
## 29163 18
## 29460 18
## 29712 18
## 29949 18
## 30078 18
## 30245 18
## 30539 18
## 31003 18
## 31603 18
## 31801 18
## 31994 18
## 32326 18
## 32527 18
## 32621 18
## 32753 18
## 32869 18
## 33085 18
## 33838 18
## 34278 18
## 34411 18
## 35876 18
## 36368 18
## 36421 18
## 36804 18
## 37364 18
## 37493 18
## 40729 18
## 42000 18
## 42269 18
## 43185 18
## 43361 18
## 43558 18
## 43723 18
## 44196 18
## 48846 18
## 48950 18
## 49245 18
## 52940 18
## 53591 18
## 54092 18
## 54352 18
## 54455 18
## 54872 18
## 54959 18
## 55147 18
## 55217 18
## 55754 18
## 55922 18
## 56124 18
## 56659 18
## 57003 18
## 57315 18
## 57402 18
## 57540 18
## 57668 18
## 58061 18
## 58377 18
## 58498 18
## 58715 18
## 58934 18
## 59179 18
## 59522 18
## 59593 18
## 59992 18
## 60617 18
## 61246 18
## 61320 18
## 61469 18
## 62497 18
## 62940 18
## 63194 18
## 63300 18
## 63480 18
## 63721 18
## 63849 18
## 64228 18
## 64352 18
## 64417 18
## 64486 18
## 64550 18
## 64720 18
## 64778 18
## 64837 18
## 64954 18
## 65185 18
## 65255 18
## 65688 18
## 66281 18
## 66402 18
## 66691 18
## 66750 18
## 66823 18
## 67002 18
## 67202 18
## 67267 18
## 67448 18
## 67526 18
## 67806 18
## 67970 18
## 68089 18
## 68215 18
## 68406 18
## 68529 18
## 68623 18
## 69638 18
## 71613 18
## 71986 18
## 72877 18
## 72929 18
## 73135 18
## 73311 18
## 73407 18
## 73469 18
## 73549 18
## 73583 18
## 73610 18
## 74123 18
## 74370 18
## 74445 18
## 74476 18
## 74652 18
## 74942 18
## 75290 18
## 75426 18
## 75848 18
## 76473 18
## 76587 18
## 76913 18
## 78836 18
## 79275 18
## 79401 18
## 79473 18
## 79499 18
## 79641 18
## 79711 18
## 79813 18
## 80118 18
## 80220 18
## 80635 18
## 80849 18
## 80995 18
## 81218 18
## 81353 18
## 81431 18
## 81521 18
## 82339 18
## 83150 18
## 83582 18
## 84216 18
## 84255 18
## 84431 18
## 84757 18
## 84852 18
## 85099 18
## 86579 18
## 87019 18
## 87111 18
## 88961 18
## 89041 18
## 90267 18
## 90338 18
## 90368 18
## 90407 18
## 90452 18
## 90474 18
## 90485 18
## 90534 18
## 90580 18
## 90582 18
## 90596 18
## 90660 18
## 90685 18
## 90719 18
## 90742 18
## 90783 18
## 90792 18
## 90813 18
## 90839 18
## 90851 18
## 90869 18
## 90944 18
## 90952 18
## 90986 18
## 91014 18
## 681 19
## 1394 19
## 21463 19
## 30447 19
## 30540 19
## 31995 19
## 32327 19
## 39432 19
## 44279 19
## 45504 19
## 47918 19
## 48217 19
## 49246 19
## 50182 19
## 54456 19
## 59594 19
## 75994 19
## 78837 19
## 88121 19
## 11 20
## 2002 20
## 2872 20
## 3533 20
## 6417 20
## 9370 20
## 11180 20
## 11840 20
## 12921 20
## 13059 20
## 13834 20
## 16343 20
## 16710 20
## 20023 20
## 20244 20
## 20742 20
## 21056 20
## 23867 20
## 24560 20
## 25185 20
## 26174 20
## 27552 20
## 28922 20
## 31004 20
## 31604 20
## 31996 20
## 37609 20
## 38687 20
## 41809 20
## 44280 20
## 49820 20
## 52941 20
## 54093 20
## 56226 20
## 58062 20
## 64955 20
## 65256 20
## 70782 20
## 71987 20
## 72643 20
## 74653 20
## 77586 20
## 81806 20
## 83696 20
## 85599 20
## 87222 20
## 89549 20
## 89667 20
## 12 21
## 885 21
## 1006 21
## 1617 21
## 2873 21
## 3199 21
## 6418 21
## 7161 21
## 7549 21
## 13835 21
## 14397 21
## 15021 21
## 15116 21
## 16344 21
## 16711 21
## 17240 21
## 17893 21
## 18361 21
## 20484 21
## 20743 21
## 22903 21
## 27191 21
## 27313 21
## 30246 21
## 30448 21
## 33369 21
## 33489 21
## 33661 21
## 33916 21
## 35877 21
## 37205 21
## 37494 21
## 37610 21
## 37737 21
## 37787 21
## 39433 21
## 39937 21
## 40100 21
## 40223 21
## 40265 21
## 40331 21
## 40353 21
## 41586 21
## 42806 21
## 43724 21
## 44281 21
## 44754 21
## 45108 21
## 45235 21
## 45505 21
## 45979 21
## 46114 21
## 46308 21
## 46387 21
## 46816 21
## 49247 21
## 49411 21
## 49434 21
## 49601 21
## 49821 21
## 50060 21
## 50183 21
## 50311 21
## 50487 21
## 50664 21
## 51000 21
## 53199 21
## 53843 21
## 54194 21
## 55476 21
## 56566 21
## 56660 21
## 57258 21
## 58357 21
## 59805 21
## 59903 21
## 59908 21
## 59914 21
## 59920 21
## 59934 21
## 59993 21
## 60153 21
## 60198 21
## 60232 21
## 60352 21
## 60786 21
## 60851 21
## 61077 21
## 62370 21
## 69584 21
## 69880 21
## 70155 21
## 70223 21
## 70383 21
## 70489 21
## 70519 21
## 70545 21
## 70746 21
## 71011 21
## 71186 21
## 72229 21
## 72249 21
## 72450 21
## 72516 21
## 73820 21
## 74200 21
## 74746 21
## 74860 21
## 76219 21
## 77072 21
## 77189 21
## 77195 21
## 77208 21
## 77254 21
## 77405 21
## 77453 21
## 77587 21
## 78463 21
## 78532 21
## 79146 21
## 79635 21
## 80276 21
## 81747 21
## 81807 21
## 82442 21
## 83459 21
## 83491 21
## 83915 21
## 83978 21
## 84167 21
## 84184 21
## 85000 21
## 85509 21
## 85530 21
## 85600 21
## 86278 21
## 86373 21
## 86535 21
## 86923 21
## 86937 21
## 87056 21
## 87059 21
## 87074 21
## 87459 21
## 87501 21
## 87582 21
## 87621 21
## 87674 21
## 87721 21
## 87773 21
## 89184 21
## 89325 21
## 89469 21
## 89550 21
## 90220 21
## 91018 21
## 91050 21
## 91094 21
## 91106 21
## 91155 21
## 91182 21
## 91217 21
## 91239 21
## 91247 21
## 91267 21
## 91282 21
## 91326 21
## 91348 21
## 91371 21
## 91375 21
## 91461 21
## 91493 21
## 91526 21
## 91551 21
## 91555 21
## 91621 21
## 91628 21
## 456 22
## 682 22
## 3200 22
## 3443 22
## 4006 22
## 4880 22
## 6419 22
## 7162 22
## 8358 22
## 9229 22
## 10668 22
## 10998 22
## 11630 22
## 12195 22
## 12922 22
## 13279 22
## 15042 22
## 15297 22
## 15426 22
## 15965 22
## 16345 22
## 16712 22
## 17894 22
## 18296 22
## 20245 22
## 21464 22
## 21709 22
## 22486 22
## 22810 22
## 23174 22
## 23249 22
## 23868 22
## 24232 22
## 24561 22
## 24977 22
## 25186 22
## 26175 22
## 27192 22
## 27553 22
## 27801 22
## 28923 22
## 29164 22
## 30449 22
## 30541 22
## 31005 22
## 31605 22
## 31802 22
## 31997 22
## 32328 22
## 33086 22
## 33917 22
## 34566 22
## 34735 22
## 34897 22
## 35139 22
## 35311 22
## 35507 22
## 35751 22
## 36805 22
## 37365 22
## 38444 22
## 39434 22
## 40453 22
## 45012 22
## 45506 22
## 53200 22
## 53592 22
## 54054 22
## 54079 22
## 54595 22
## 54668 22
## 54873 22
## 55218 22
## 55568 22
## 55923 22
## 56227 22
## 56614 22
## 57004 22
## 58935 22
## 59026 22
## 59352 22
## 59595 22
## 60437 22
## 60618 22
## 60887 22
## 61027 22
## 65591 22
## 66403 22
## 66522 22
## 67003 22
## 67807 22
## 68090 22
## 69332 22
## 69730 22
## 70012 22
## 70568 22
## 70783 22
## 74769 22
## 75359 22
## 75551 22
## 77073 22
## 78038 22
## 78089 22
## 78464 22
## 78533 22
## 78838 22
## 79996 22
## 80954 22
## 80996 22
## 84362 22
## 84746 22
## 84758 22
## 86377 22
## 87093 22
## 87384 22
## 87774 22
## 89218 22
## 89606 22
## 90221 22
## 91376 22
## 91659 22
## 91673 22
## 91689 22
## 91705 22
## 91715 22
## 91725 22
## 91742 22
## 13 23
## 1007 23
## 1395 23
## 2506 23
## 2688 23
## 3303 23
## 4607 23
## 5187 23
## 6420 23
## 7393 23
## 7550 23
## 8153 23
## 8359 23
## 9691 23
## 9939 23
## 10284 23
## 10669 23
## 11181 23
## 11438 23
## 11979 23
## 12196 23
## 12467 23
## 12561 23
## 13060 23
## 13280 23
## 13836 23
## 14220 23
## 14398 23
## 14968 23
## 15298 23
## 15841 23
## 17358 23
## 18515 23
## 18613 23
## 18858 23
## 19029 23
## 20024 23
## 20246 23
## 20485 23
## 21057 23
## 21465 23
## 21710 23
## 21881 23
## 21980 23
## 22487 23
## 22705 23
## 23678 23
## 23795 23
## 23869 23
## 24233 23
## 24562 23
## 24978 23
## 25187 23
## 25467 23
## 26176 23
## 26906 23
## 27314 23
## 28010 23
## 28178 23
## 28374 23
## 28924 23
## 29165 23
## 29461 23
## 30542 23
## 30818 23
## 31006 23
## 31803 23
## 32329 23
## 32622 23
## 32754 23
## 32870 23
## 33087 23
## 33370 23
## 33662 23
## 33918 23
## 34412 23
## 34736 23
## 34898 23
## 35140 23
## 35312 23
## 35878 23
## 36154 23
## 36806 23
## 38445 23
## 39124 23
## 39435 23
## 40730 23
## 42001 23
## 43186 23
## 45507 23
## 48571 23
## 49822 23
## 52942 23
## 53593 23
## 54236 23
## 54353 23
## 54669 23
## 54874 23
## 54960 23
## 56125 23
## 56228 23
## 56661 23
## 57316 23
## 57541 23
## 57669 23
## 57926 23
## 58063 23
## 58499 23
## 59180 23
## 59353 23
## 60438 23
## 60619 23
## 61470 23
## 62212 23
## 63301 23
## 63850 23
## 65689 23
## 66523 23
## 66692 23
## 67203 23
## 67358 23
## 67769 23
## 68091 23
## 68216 23
## 68407 23
## 68624 23
## 69126 23
## 69333 23
## 69639 23
## 71988 23
## 72644 23
## 72930 23
## 74371 23
## 75097 23
## 75722 23
## 75995 23
## 76829 23
## 77804 23
## 79089 23
## 79500 23
## 79916 23
## 80046 23
## 81522 23
## 82340 23
## 84363 23
## 87020 23
## 88861 23
## 90686 23
## 91750 23
## 91759 23
## 91781 23
## 1008 24
## 1396 24
## 1618 24
## 2003 24
## 2239 24
## 4185 24
## 5662 24
## 7394 24
## 7551 24
## 7978 24
## 8570 24
## 9371 24
## 9940 24
## 10670 24
## 12704 24
## 13573 24
## 13837 24
## 14399 24
## 15299 24
## 15966 24
## 17895 24
## 18362 24
## 18614 24
## 21058 24
## 21466 24
## 24234 24
## 25188 24
## 25605 24
## 25952 24
## 28375 24
## 30247 24
## 33088 24
## 34279 24
## 36422 24
## 36807 24
## 38314 24
## 39436 24
## 42002 24
## 42270 24
## 43725 24
## 44282 24
## 44755 24
## 45508 24
## 46388 24
## 48951 24
## 50061 24
## 52943 24
## 53201 24
## 53594 24
## 53948 24
## 55755 24
## 57927 24
## 58500 24
## 62691 24
## 63099 24
## 64353 24
## 66065 24
## 67359 24
## 71614 24
## 75996 24
## 76830 24
## 79276 24
## 80741 24
## 80850 24
## 81808 24
## 83697 24
## 88862 24
## 91804 24
## 14 25
## 1009 25
## 1397 25
## 2507 25
## 3827 25
## 4186 25
## 6421 25
## 10671 25
## 11182 25
## 11692 25
## 13838 25
## 15755 25
## 15842 25
## 16713 25
## 17548 25
## 17896 25
## 18516 25
## 18859 25
## 19030 25
## 19230 25
## 19889 25
## 20025 25
## 21059 25
## 23558 25
## 24235 25
## 24563 25
## 25189 25
## 25468 25
## 26177 25
## 26907 25
## 27554 25
## 28179 25
## 29166 25
## 29713 25
## 31007 25
## 31606 25
## 33919 25
## 34899 25
## 36808 25
## 37056 25
## 39125 25
## 39437 25
## 40454 25
## 40731 25
## 42003 25
## 52944 25
## 56126 25
## 56662 25
## 57670 25
## 58501 25
## 58936 25
## 59181 25
## 60888 25
## 61471 25
## 62498 25
## 63100 25
## 63195 25
## 63302 25
## 63481 25
## 64894 25
## 65257 25
## 65466 25
## 67527 25
## 68217 25
## 70784 25
## 73136 25
## 73550 25
## 73663 25
## 74654 25
## 75997 25
## 76264 25
## 78839 25
## 80851 25
## 81809 25
## 86344 25
## 89429 25
## 90852 25
## 90870 25
## 15 26
## 1010 26
## 1619 26
## 2508 26
## 2689 26
## 2874 26
## 4007 26
## 4187 26
## 6422 26
## 14400 26
## 15300 26
## 15462 26
## 15843 26
## 15967 26
## 16346 26
## 16714 26
## 17133 26
## 17549 26
## 17788 26
## 17897 26
## 18363 26
## 20744 26
## 20894 26
## 21060 26
## 26178 26
## 33920 26
## 36155 26
## 36423 26
## 37206 26
## 38025 26
## 38155 26
## 38315 26
## 38446 26
## 38688 26
## 38934 26
## 39126 26
## 39438 26
## 40732 26
## 41175 26
## 41810 26
## 42271 26
## 42953 26
## 43187 26
## 43362 26
## 43726 26
## 44283 26
## 45109 26
## 45236 26
## 45348 26
## 45509 26
## 46115 26
## 46389 26
## 47047 26
## 47338 26
## 48218 26
## 48572 26
## 48731 26
## 49435 26
## 49602 26
## 49823 26
## 50665 26
## 51300 26
## 52085 26
## 53786 26
## 56229 26
## 56842 26
## 57259 26
## 60889 26
## 61028 26
## 61103 26
## 61994 26
## 62692 26
## 62941 26
## 66066 26
## 67004 26
## 69334 26
## 72250 26
## 72645 26
## 74201 26
## 77588 26
## 78039 26
## 78257 26
## 81810 26
## 82443 26
## 82809 26
## 82932 26
## 83492 26
## 85398 26
## 86116 26
## 86378 26
## 86430 26
## 86580 26
## 87136 26
## 87385 26
## 89219 26
## 89470 26
## 89742 26
## 91183 26
## 91851 26
## 91888 26
## 91952 26
## 91996 26
## 92089 26
## 92189 26
## 92227 26
## 92325 26
## 92337 26
## 1620 27
## 6423 27
## 14401 27
## 16347 27
## 16715 27
## 17241 27
## 20745 27
## 37738 27
## 38026 27
## 42807 27
## 43727 27
## 44284 27
## 45980 27
## 46116 27
## 50184 27
## 53844 27
## 62693 27
## 66067 27
## 67005 27
## 72517 27
## 81811 27
## 89185 27
## 89471 27
## 91156 27
## 92474 27
## 886 28
## 1011 28
## 2004 28
## 2240 28
## 4608 28
## 5029 28
## 6424 28
## 7552 28
## 9692 28
## 10672 28
## 12197 28
## 13061 28
## 13281 28
## 13839 28
## 14402 28
## 15968 28
## 20026 28
## 20486 28
## 21467 28
## 22904 28
## 24236 28
## 24564 28
## 25190 28
## 27193 28
## 27315 28
## 29167 28
## 29462 28
## 30248 28
## 30450 28
## 31804 28
## 33371 28
## 33490 28
## 33663 28
## 33921 28
## 34280 28
## 34737 28
## 34900 28
## 35141 28
## 35313 28
## 35879 28
## 39439 28
## 41176 28
## 42954 28
## 43728 28
## 44285 28
## 45510 28
## 49603 28
## 49824 28
## 51156 28
## 54237 28
## 58064 28
## 58835 28
## 59523 28
## 59806 28
## 59935 28
## 59994 28
## 60154 28
## 60233 28
## 60353 28
## 60439 28
## 60553 28
## 63303 28
## 63482 28
## 68530 28
## 70747 28
## 70785 28
## 71187 28
## 71989 28
## 72931 28
## 73408 28
## 75253 28
## 77074 28
## 77255 28
## 77589 28
## 83493 28
## 85001 28
## 87060 28
## 88348 28
## 2241 29
## 10673 29
## 13840 29
## 25953 29
## 26680 29
## 28180 29
## 37788 29
## 39938 29
## 40354 29
## 40733 29
## 41037 29
## 43729 29
## 45511 29
## 46390 29
## 47048 29
## 47576 29
## 48137 29
## 50312 29
## 51157 29
## 52086 29
## 53202 29
## 63483 29
## 69039 29
## 76265 29
## 76741 29
## 77590 29
## 78576 29
## 82444 29
## 87583 29
## 87807 29
## 92524 29
## 92556 29
## 457 30
## 1012 30
## 4609 30
## 4881 30
## 6425 30
## 9372 30
## 11183 30
## 19231 30
## 22488 30
## 22905 30
## 23870 30
## 24565 30
## 26179 30
## 35508 30
## 37495 30
## 38689 30
## 38935 30
## 39127 30
## 39440 30
## 39939 30
## 43730 30
## 44756 30
## 45512 30
## 46817 30
## 47339 30
## 48219 30
## 48573 30
## 49248 30
## 49436 30
## 55924 30
## 59596 30
## 68702 30
## 68973 30
## 69040 30
## 77591 30
## 78040 30
## 78534 30
## 82933 30
## 84364 30
## 87502 30
## 88262 30
## 91805 30
## 92190 30
## 5188 31
## 10674 31
## 17359 31
## 19232 31
## 19484 31
## 21468 31
## 24979 31
## 28644 31
## 40266 31
## 41177 31
## 46309 31
## 47049 31
## 47577 31
## 49249 31
## 49437 31
## 50666 31
## 51836 31
## 64091 31
## 64600 31
## 64779 31
## 65258 31
## 65690 31
## 66824 31
## 67449 31
## 73509 31
## 77938 31
## 79501 31
## 85304 31
## 87622 31
## 88068 31
## 92557 31
## 92587 31
## 92622 31
## 92660 31
## 1013 32
## 1621 32
## 6426 32
## 14403 32
## 15463 32
## 15969 32
## 16348 32
## 17134 32
## 21061 32
## 26180 32
## 33922 32
## 36156 32
## 37207 32
## 37789 32
## 38027 32
## 38156 32
## 38316 32
## 38447 32
## 39128 32
## 39940 32
## 41178 32
## 42272 32
## 44286 32
## 45013 32
## 45513 32
## 46117 32
## 47673 32
## 48220 32
## 56230 32
## 56663 32
## 60890 32
## 62694 32
## 66068 32
## 72251 32
## 74202 32
## 81812 32
## 87223 32
## 92090 32
## 92338 32
## 92692 32
## 37790 33
## 39441 33
## 40101 33
## 41179 33
## 44287 33
## 45237 33
## 45514 33
## 46391 33
## 47674 33
## 48221 33
## 49825 33
## 50667 33
## 50957 33
## 51301 33
## 51786 33
## 52087 33
## 77592 33
## 77939 33
## 82934 33
## 87460 33
## 87808 33
## 87942 33
## 88349 33
## 37496 34
## 37791 34
## 39941 34
## 43731 34
## 44288 34
## 44757 34
## 45238 34
## 45515 34
## 46310 34
## 47919 34
## 48138 34
## 50062 34
## 50958 34
## 51158 34
## 78665 34
## 88500 34
## 88558 34
## 91494 34
## 91527 34
## 92723 34
## 37497 35
## 37611 35
## 39442 35
## 39942 35
## 40224 35
## 40355 35
## 40678 35
## 46392 35
## 49438 35
## 49604 35
## 50313 35
## 50488 35
## 50668 35
## 51159 35
## 51302 35
## 53203 35
## 77593 35
## 82445 35
## 87675 35
## 87722 35
## 87809 35
## 89774 35
## 92738 35
## 40225 36
## 40734 36
## 44289 36
## 44758 36
## 47675 36
## 47920 36
## 49250 36
## 51303 36
## 51787 36
## 53204 36
## 77940 36
## 82446 36
## 87503 36
## 87623 36
## 87775 36
## 88001 36
## 88035 36
## 88055 36
## 92782 36
## 1014 37
## 2005 37
## 3534 37
## 4008 37
## 4546 37
## 6427 37
## 7395 37
## 7553 37
## 8360 37
## 9230 37
## 10675 37
## 11184 37
## 12198 37
## 12705 37
## 13282 37
## 15970 37
## 16349 37
## 16716 37
## 17898 37
## 20557 37
## 22489 37
## 23871 37
## 24566 37
## 25191 37
## 26908 37
## 29168 37
## 31998 37
## 33923 37
## 34567 37
## 35314 37
## 35509 37
## 35752 37
## 40455 37
## 41587 37
## 44290 37
## 53407 37
## 54670 37
## 55925 37
## 56231 37
## 62213 37
## 69083 37
## 69335 37
## 69731 37
## 70569 37
## 70786 37
## 71411 37
## 72646 37
## 77075 37
## 78258 37
## 85848 37
## 86011 37
## 86117 37
## 86229 37
## 86431 37
## 89472 37
## 90222 37
## 92786 37
## 16 38
## 3535 38
## 4610 38
## 5366 38
## 9125 38
## 9373 38
## 9693 38
## 9941 38
## 10629 38
## 10676 38
## 11185 38
## 11611 38
## 11980 38
## 12923 38
## 13062 38
## 13574 38
## 14221 38
## 15043 38
## 15726 38
## 16350 38
## 17135 38
## 17899 38
## 18860 38
## 19778 38
## 19827 38
## 20247 38
## 20487 38
## 21469 38
## 21882 38
## 22490 38
## 22706 38
## 27316 38
## 28011 38
## 29169 38
## 30249 38
## 30543 38
## 32330 38
## 33089 38
## 33491 38
## 34457 38
## 34568 38
## 35880 38
## 37612 38
## 38148 38
## 38690 38
## 39129 38
## 39943 38
## 44291 38
## 45516 38
## 48222 38
## 48952 38
## 50314 38
## 50669 38
## 52838 38
## 54563 38
## 54596 38
## 55051 38
## 55148 38
## 55219 38
## 55419 38
## 55656 38
## 55676 38
## 55756 38
## 55926 38
## 56127 38
## 56232 38
## 56567 38
## 56771 38
## 56843 38
## 57005 38
## 57260 38
## 57542 38
## 57671 38
## 57846 38
## 58065 38
## 58358 38
## 59182 38
## 59354 38
## 60155 38
## 60199 38
## 60234 38
## 60554 38
## 60620 38
## 60787 38
## 61565 38
## 65467 38
## 66069 38
## 68092 38
## 69732 38
## 71188 38
## 71990 38
## 72230 38
## 73719 38
## 74124 38
## 74861 38
## 77256 38
## 77319 38
## 77594 38
## 77805 38
## 77910 38
## 80277 38
## 80404 38
## 81813 38
## 83460 38
## 83926 38
## 84365 38
## 86369 38
## 88827 38
## 89896 38
## 92228 38
## 92339 38
## 92789 38
## 92937 38
## 92951 38
## 92971 38
## 92978 38
## 92994 38
## 93026 38
## 93053 38
## 93121 38
## 93145 38
## 39443 39
## 40735 39
## 41038 39
## 41387 39
## 44292 39
## 45517 39
## 46393 39
## 46818 39
## 47050 39
## 47578 39
## 47676 39
## 48223 39
## 48574 39
## 49251 39
## 51304 39
## 51788 39
## 52264 39
## 52455 39
## 52683 39
## 82447 39
## 88567 39
## 89775 39
## 37498 40
## 37613 40
## 37792 40
## 39444 40
## 39944 40
## 40736 40
## 41039 40
## 41180 40
## 41388 40
## 43732 40
## 45518 40
## 46394 40
## 47051 40
## 47487 40
## 47921 40
## 48732 40
## 49439 40
## 50670 40
## 51305 40
## 51676 40
## 51837 40
## 52088 40
## 52265 40
## 52329 40
## 52456 40
## 53205 40
## 82810 40
## 83176 40
## 87676 40
## 87810 40
## 87943 40
## 88454 40
## 93169 40
## 17 41
## 4611 41
## 5030 41
## 6428 41
## 7554 41
## 7979 41
## 9374 41
## 13283 41
## 13575 41
## 13841 41
## 14404 41
## 19233 41
## 21379 41
## 21470 41
## 21981 41
## 23250 41
## 23679 41
## 24237 41
## 24567 41
## 24980 41
## 25954 41
## 26181 41
## 28012 41
## 28376 41
## 28925 41
## 29170 41
## 29463 41
## 30544 41
## 31349 41
## 31805 41
## 33090 41
## 36809 41
## 40456 41
## 42273 41
## 43733 41
## 44759 41
## 48224 41
## 48953 41
## 52945 41
## 57317 41
## 58066 41
## 58937 41
## 59597 41
## 62499 41
## 64354 41
## 66825 41
## 67204 41
## 67360 41
## 82220 41
## 82935 41
## 90871 41
## 93186 41
## 18 42
## 458 42
## 2242 42
## 2875 42
## 4188 42
## 4612 42
## 5400 42
## 5847 42
## 5888 42
## 6209 42
## 6429 42
## 7289 42
## 7980 42
## 8483 42
## 8571 42
## 8966 42
## 9375 42
## 9694 42
## 9942 42
## 10156 42
## 10285 42
## 10477 42
## 10677 42
## 11186 42
## 11439 42
## 11693 42
## 11841 42
## 11981 42
## 13063 42
## 13284 42
## 13576 42
## 13842 42
## 14222 42
## 14969 42
## 15022 42
## 15464 42
## 16351 42
## 16717 42
## 17550 42
## 18517 42
## 18615 42
## 19234 42
## 19485 42
## 19890 42
## 19961 42
## 20027 42
## 21062 42
## 22491 42
## 23251 42
## 23872 42
## 24238 42
## 24568 42
## 24981 42
## 25192 42
## 26182 42
## 26909 42
## 27317 42
## 28926 42
## 29171 42
## 29464 42
## 30545 42
## 30819 42
## 31008 42
## 31999 42
## 32331 42
## 32871 42
## 33091 42
## 33664 42
## 33924 42
## 34738 42
## 34901 42
## 35142 42
## 35315 42
## 35881 42
## 36424 42
## 37057 42
## 40457 42
## 41588 42
## 41811 42
## 42274 42
## 42721 42
## 42808 42
## 42955 42
## 43188 42
## 43363 42
## 45014 42
## 45519 42
## 48954 42
## 52946 42
## 53595 42
## 53787 42
## 53883 42
## 54238 42
## 54671 42
## 54961 42
## 55757 42
## 55927 42
## 56128 42
## 56233 42
## 56772 42
## 56844 42
## 57006 42
## 57261 42
## 57543 42
## 57672 42
## 58067 42
## 58502 42
## 58716 42
## 59183 42
## 59355 42
## 59995 42
## 60621 42
## 61029 42
## 61321 42
## 61704 42
## 61749 42
## 61814 42
## 61995 42
## 63304 42
## 64652 42
## 64956 42
## 65468 42
## 65875 42
## 67652 42
## 67808 42
## 69336 42
## 70224 42
## 70570 42
## 70787 42
## 71615 42
## 71991 42
## 72252 42
## 72451 42
## 72932 42
## 73248 42
## 74038 42
## 74125 42
## 75998 42
## 76392 42
## 76588 42
## 77806 42
## 78090 42
## 78259 42
## 78840 42
## 80405 42
## 80852 42
## 80997 42
## 81219 42
## 81354 42
## 81814 42
## 82221 42
## 83231 42
## 83327 42
## 84432 42
## 84564 42
## 84853 42
## 85931 42
## 86279 42
## 86581 42
## 87224 42
## 89099 42
## 89186 42
## 89220 42
## 89668 42
## 89836 42
## 89928 42
## 90453 42
## 90872 42
## 91107 42
## 91706 42
## 92790 42
## 93276 42
## 93301 42
## 93363 42
## 93391 42
## 93399 42
## 93439 42
## 93464 42
## 93510 42
## 93644 42
## 93717 42
## 93742 42
## 93785 42
## 19 43
## 585 43
## 683 43
## 887 43
## 1015 43
## 1398 43
## 1622 43
## 2006 43
## 2243 43
## 2690 43
## 2876 43
## 3201 43
## 4189 43
## 4471 43
## 4613 43
## 5609 43
## 6077 43
## 6324 43
## 6430 43
## 6991 43
## 7071 43
## 7290 43
## 7555 43
## 7981 43
## 8484 43
## 8572 43
## 8967 43
## 9376 43
## 9695 43
## 9943 43
## 10286 43
## 10478 43
## 10678 43
## 11187 43
## 11694 43
## 11982 43
## 12562 43
## 13064 43
## 13577 43
## 13843 43
## 14405 43
## 14970 43
## 15465 43
## 15756 43
## 15971 43
## 16352 43
## 16638 43
## 16718 43
## 17136 43
## 17242 43
## 17360 43
## 17900 43
## 18518 43
## 18861 43
## 19592 43
## 19828 43
## 20028 43
## 20248 43
## 21063 43
## 21471 43
## 21883 43
## 22492 43
## 23252 43
## 23559 43
## 23873 43
## 24239 43
## 24569 43
## 24982 43
## 26183 43
## 27555 43
## 28181 43
## 28377 43
## 29465 43
## 30546 43
## 30820 43
## 31009 43
## 31607 43
## 32000 43
## 32332 43
## 32872 43
## 33092 43
## 33372 43
## 33925 43
## 34458 43
## 34569 43
## 35510 43
## 36157 43
## 36425 43
## 36810 43
## 37366 43
## 38157 43
## 38448 43
## 38691 43
## 38870 43
## 39130 43
## 39445 43
## 40737 43
## 41181 43
## 41389 43
## 41812 43
## 42004 43
## 42275 43
## 42561 43
## 42632 43
## 42722 43
## 43189 43
## 43364 43
## 43559 43
## 43734 43
## 44760 43
## 45015 43
## 45110 43
## 45520 43
## 46118 43
## 46395 43
## 46819 43
## 47052 43
## 48139 43
## 48225 43
## 48575 43
## 48733 43
## 48847 43
## 48955 43
## 49440 43
## 49826 43
## 50671 43
## 51635 43
## 52457 43
## 52725 43
## 53596 43
## 53884 43
## 54457 43
## 54672 43
## 55220 43
## 55758 43
## 55928 43
## 56234 43
## 56664 43
## 56773 43
## 57007 43
## 57544 43
## 57928 43
## 58068 43
## 59184 43
## 61996 43
## 62371 43
## 63305 43
## 63722 43
## 64355 43
## 64653 43
## 64957 43
## 65259 43
## 65469 43
## 67205 43
## 68703 43
## 69041 43
## 69174 43
## 69337 43
## 69733 43
## 69949 43
## 70225 43
## 70571 43
## 70788 43
## 71522 43
## 71553 43
## 71992 43
## 72253 43
## 72518 43
## 72647 43
## 74039 43
## 74203 43
## 74477 43
## 75360 43
## 76589 43
## 78091 43
## 78414 43
## 78841 43
## 79277 43
## 79502 43
## 80636 43
## 80853 43
## 80955 43
## 80998 43
## 81220 43
## 81815 43
## 82341 43
## 82936 43
## 83232 43
## 83328 43
## 84256 43
## 84433 43
## 84565 43
## 84759 43
## 85399 43
## 85601 43
## 86582 43
## 86797 43
## 87225 43
## 87811 43
## 88263 43
## 89221 43
## 89551 43
## 89837 43
## 90059 43
## 90142 43
## 90339 43
## 90369 43
## 90535 43
## 90814 43
## 90873 43
## 91556 43
## 92693 43
## 93054 43
## 93511 43
## 93645 43
## 93826 43
## 93851 43
## 93875 43
## 93898 43
## 93908 43
## 93918 43
## 20 44
## 888 44
## 1016 44
## 1623 44
## 2007 44
## 2877 44
## 3444 44
## 3536 44
## 4009 44
## 4190 44
## 5031 44
## 6431 44
## 7396 44
## 7556 44
## 8573 44
## 9126 44
## 9377 44
## 9944 44
## 11068 44
## 11188 44
## 11842 44
## 11983 44
## 12199 44
## 12468 44
## 12563 44
## 13065 44
## 13285 44
## 13578 44
## 13844 44
## 14223 44
## 14406 44
## 14971 44
## 15117 44
## 15301 44
## 16353 44
## 16639 44
## 16719 44
## 17243 44
## 18616 44
## 18862 44
## 19235 44
## 20029 44
## 20249 44
## 20558 44
## 20746 44
## 21064 44
## 21472 44
## 21884 44
## 22129 44
## 22312 44
## 22493 44
## 22811 44
## 22906 44
## 23253 44
## 23874 44
## 24240 44
## 24570 44
## 24983 44
## 25193 44
## 26184 44
## 26910 44
## 27318 44
## 28246 44
## 28378 44
## 28761 44
## 28927 44
## 29172 44
## 29466 44
## 29714 44
## 29950 44
## 30250 44
## 30451 44
## 30547 44
## 31010 44
## 31608 44
## 31806 44
## 32333 44
## 32755 44
## 33093 44
## 33926 44
## 34739 44
## 34902 44
## 35143 44
## 35316 44
## 35511 44
## 36426 44
## 36811 44
## 37208 44
## 37793 44
## 38317 44
## 38449 44
## 38692 44
## 39131 44
## 39446 44
## 40102 44
## 41813 44
## 45521 44
## 46119 44
## 47677 44
## 48226 44
## 48848 44
## 48956 44
## 50672 44
## 52947 44
## 54094 44
## 54239 44
## 54673 44
## 56235 44
## 57164 44
## 57673 44
## 58069 44
## 58503 44
## 58836 44
## 59185 44
## 59356 44
## 59524 44
## 59996 44
## 60235 44
## 60354 44
## 60440 44
## 60555 44
## 61882 44
## 62500 44
## 63484 44
## 64958 44
## 65967 44
## 67528 44
## 67809 44
## 68625 44
## 69175 44
## 69950 44
## 71993 44
## 72254 44
## 72933 44
## 74040 44
## 74478 44
## 74655 44
## 74770 44
## 75189 44
## 75999 44
## 76590 44
## 77076 44
## 77595 44
## 78842 44
## 80278 44
## 81432 44
## 83233 44
## 83329 44
## 87386 44
## 90143 44
## 93940 44
## 21 45
## 1017 45
## 2509 45
## 2878 45
## 3445 45
## 4010 45
## 4191 45
## 6432 45
## 14407 45
## 15228 45
## 15302 45
## 15466 45
## 16354 45
## 16720 45
## 17901 45
## 21065 45
## 26185 45
## 34459 45
## 36427 45
## 39132 45
## 42276 45
## 42633 45
## 42956 45
## 43365 45
## 44293 45
## 57008 45
## 62214 45
## 62372 45
## 62942 45
## 72519 45
## 72648 45
## 81816 45
## 83330 45
## 83583 45
## 83698 45
## 83845 45
## 85602 45
## 85718 45
## 85932 45
## 86583 45
## 89222 45
## 89669 45
## 90408 45
## 91557 45
## 91726 45
## 93955 45
## 93990 45
## 94029 45
## 1018 46
## 6433 46
## 12808 46
## 14408 46
## 17551 46
## 17902 46
## 21066 46
## 26186 46
## 37794 46
## 40267 46
## 43735 46
## 44294 46
## 45522 46
## 46396 46
## 47488 46
## 47678 46
## 48227 46
## 50489 46
## 50673 46
## 51160 46
## 51306 46
## 68974 46
## 78666 46
## 82448 46
## 88771 46
## 92724 46
## 94058 46
## 39447 47
## 40268 47
## 40738 47
## 43736 47
## 44295 47
## 44761 47
## 45239 47
## 46820 47
## 47053 47
## 47340 47
## 47489 47
## 47579 47
## 47679 47
## 49441 47
## 49605 47
## 49827 47
## 50063 47
## 50490 47
## 51838 47
## 78041 47
## 87584 47
## 91629 47
## 92661 47
## 4614 48
## 6434 48
## 7557 48
## 9945 48
## 13845 48
## 18617 48
## 19486 48
## 23680 48
## 23875 48
## 24571 48
## 26187 48
## 26911 48
## 27319 48
## 27802 48
## 28379 48
## 28762 48
## 28928 48
## 29173 48
## 30548 48
## 31807 48
## 32001 48
## 32873 48
## 34903 48
## 37614 48
## 39945 48
## 40679 48
## 40739 48
## 43737 48
## 44762 48
## 45523 48
## 47054 48
## 47580 48
## 47860 48
## 47889 48
## 49828 48
## 52948 48
## 58070 48
## 58378 48
## 58504 48
## 58717 48
## 59357 48
## 63306 48
## 63485 48
## 63851 48
## 64959 48
## 66524 48
## 67450 48
## 67770 48
## 67810 48
## 67971 48
## 68218 48
## 68408 48
## 68531 48
## 72934 48
## 73409 48
## 75291 48
## 75477 48
## 75849 48
## 76220 48
## 76742 48
## 78667 48
## 91377 48
## 94070 48
## 94111 48
## 94115 48
## 22 49
## 459 49
## 586 49
## 684 49
## 1019 49
## 1399 49
## 1908 49
## 2008 49
## 2244 49
## 2510 49
## 3202 49
## 4192 49
## 5401 49
## 5522 49
## 5610 49
## 5704 49
## 6078 49
## 6325 49
## 6435 49
## 7072 49
## 7163 49
## 7291 49
## 7397 49
## 7558 49
## 7936 49
## 8361 49
## 9231 49
## 9696 49
## 9946 49
## 10157 49
## 10479 49
## 10999 49
## 11189 49
## 11631 49
## 12469 49
## 12564 49
## 12809 49
## 13066 49
## 13286 49
## 13846 49
## 14224 49
## 14409 49
## 14896 49
## 14972 49
## 15229 49
## 15467 49
## 15844 49
## 15972 49
## 16721 49
## 17137 49
## 17244 49
## 18364 49
## 20030 49
## 20488 49
## 20559 49
## 20747 49
## 21067 49
## 21711 49
## 22313 49
## 22494 49
## 23254 49
## 23796 49
## 23876 49
## 24241 49
## 24572 49
## 24984 49
## 25728 49
## 26188 49
## 26681 49
## 27320 49
## 30251 49
## 30549 49
## 31011 49
## 31609 49
## 31808 49
## 32623 49
## 33373 49
## 33492 49
## 33665 49
## 34460 49
## 35512 49
## 36158 49
## 36812 49
## 37058 49
## 37209 49
## 39104 49
## 39448 49
## 40269 49
## 41040 49
## 43190 49
## 44197 49
## 44763 49
## 45016 49
## 45524 49
## 46311 49
## 46397 49
## 46821 49
## 47055 49
## 48140 49
## 48228 49
## 49412 49
## 50064 49
## 50185 49
## 50674 49
## 51551 49
## 52089 49
## 52330 49
## 52458 49
## 53206 49
## 53597 49
## 53788 49
## 53949 49
## 54458 49
## 54674 49
## 54875 49
## 55477 49
## 55677 49
## 55929 49
## 56129 49
## 56568 49
## 57262 49
## 57545 49
## 57674 49
## 57847 49
## 58071 49
## 58718 49
## 59186 49
## 59358 49
## 60891 49
## 61322 49
## 61566 49
## 62373 49
## 62695 49
## 62943 49
## 63101 49
## 65470 49
## 66070 49
## 66826 49
## 67361 49
## 68704 49
## 69176 49
## 69338 49
## 69585 49
## 70135 49
## 70226 49
## 70384 49
## 71012 49
## 71370 49
## 71554 49
## 71781 49
## 71994 49
## 72231 49
## 72445 49
## 74041 49
## 74126 49
## 74204 49
## 74981 49
## 75723 49
## 76266 49
## 78843 49
## 79132 49
## 79264 49
## 79402 49
## 80047 49
## 80131 49
## 80279 49
## 80489 49
## 80711 49
## 80999 49
## 81433 49
## 81489 49
## 81748 49
## 83461 49
## 84185 49
## 84633 49
## 85341 49
## 85603 49
## 85691 49
## 87776 49
## 88681 49
## 88863 49
## 89223 49
## 89326 49
## 89552 49
## 90144 49
## 90597 49
## 91630 49
## 91674 49
## 91690 49
## 91889 49
## 92475 49
## 92525 49
## 92623 49
## 92791 49
## 93122 49
## 94168 49
## 94184 49
## 94228 49
## 94240 49
## 94258 49
## 94285 49
## 94301 49
## 94308 49
## 94374 49
## 94451 49
## 94458 49
## 94470 49
## 94478 49
## 94500 49
## 94545 49
## 94547 49
## 94555 49
## 94563 49
## 1624 50
## 2879 50
## 14410 50
## 17245 50
## 17361 50
## 17552 50
## 38028 50
## 38844 50
## 42277 50
## 43738 50
## 44296 50
## 49252 50
## 50065 50
## 50186 50
## 50491 50
## 62696 50
## 66071 50
## 69247 50
## 69586 50
## 85719 50
## 91852 50
## 91953 50
## 94569 50
## 6436 51
## 8574 51
## 11440 51
## 18618 51
## 19031 51
## 19487 51
## 20250 51
## 20748 51
## 23877 51
## 24242 51
## 26189 51
## 26682 51
## 27194 51
## 30821 51
## 32002 51
## 63307 51
## 64229 51
## 64960 51
## 72935 51
## 76000 51
## 77807 51
## 78844 51
## 79503 51
## 1020 52
## 2511 52
## 2880 52
## 3304 52
## 3537 52
## 4193 52
## 12810 52
## 13067 52
## 14411 52
## 15187 52
## 15468 52
## 15845 52
## 15973 52
## 16722 52
## 17789 52
## 21068 52
## 28380 52
## 31012 52
## 36159 52
## 36428 52
## 38450 52
## 39133 52
## 39449 52
## 42005 52
## 42562 52
## 42723 52
## 42957 52
## 43560 52
## 44198 52
## 44297 52
## 47056 52
## 48957 52
## 51307 52
## 56236 52
## 58505 52
## 61472 52
## 61997 52
## 62374 52
## 62697 52
## 65260 52
## 68219 52
## 68705 52
## 71995 52
## 76267 52
## 81749 52
## 81817 52
## 82449 52
## 83584 52
## 85400 52
## 86584 52
## 87137 52
## 88864 52
## 91890 52
## 91997 52
## 94590 52
## 94601 52
## 1021 53
## 2881 53
## 4011 53
## 4194 53
## 6437 53
## 8575 53
## 13287 53
## 14412 53
## 16355 53
## 16723 53
## 21069 53
## 21982 53
## 24573 53
## 26190 53
## 30079 53
## 34904 53
## 38451 53
## 39134 53
## 39450 53
## 42809 53
## 43366 53
## 69339 53
## 70789 53
## 74205 53
## 82450 53
## 86585 53
## 89100 53
## 94622 53
## 23 54
## 1022 54
## 4012 54
## 4195 54
## 6438 54
## 14413 54
## 15118 54
## 15974 54
## 16356 54
## 16724 54
## 17903 54
## 20560 54
## 20749 54
## 21070 54
## 26191 54
## 36429 54
## 37210 54
## 37795 54
## 38452 54
## 38693 54
## 38936 54
## 39135 54
## 39451 54
## 40103 54
## 41390 54
## 41589 54
## 42278 54
## 44298 54
## 45111 54
## 45981 54
## 46120 54
## 47057 54
## 47680 54
## 48229 54
## 50187 54
## 50492 54
## 50675 54
## 51308 54
## 51696 54
## 51839 54
## 52331 54
## 56237 54
## 56569 54
## 57009 54
## 61998 54
## 62698 54
## 69340 54
## 72452 54
## 72649 54
## 74721 54
## 77507 54
## 78260 54
## 81750 54
## 81818 54
## 82451 54
## 85604 54
## 85720 54
## 86012 54
## 86081 54
## 87387 54
## 89473 54
## 92091 54
## 92340 54
## 94632 54
## 1023 55
## 3538 55
## 6439 55
## 7559 55
## 10679 55
## 12200 55
## 15975 55
## 16357 55
## 16725 55
## 20251 55
## 24574 55
## 26192 55
## 38871 55
## 39136 55
## 41590 55
## 56238 55
## 72650 55
## 77596 55
## 78261 55
## 92341 55
## 94645 55
## 24 56
## 1024 56
## 2009 56
## 3539 56
## 4196 56
## 4615 56
## 4882 56
## 5032 56
## 5402 56
## 5705 56
## 5889 56
## 6440 56
## 6992 56
## 7164 56
## 7560 56
## 8362 56
## 8485 56
## 8576 56
## 8968 56
## 9127 56
## 9232 56
## 9378 56
## 9697 56
## 9947 56
## 10287 56
## 10480 56
## 10630 56
## 10680 56
## 11190 56
## 11843 56
## 11984 56
## 12201 56
## 12470 56
## 12565 56
## 12924 56
## 13068 56
## 13288 56
## 13579 56
## 13847 56
## 15469 56
## 15757 56
## 15976 56
## 16358 56
## 16726 56
## 17138 56
## 20031 56
## 20252 56
## 21071 56
## 21473 56
## 21712 56
## 22253 56
## 22495 56
## 22907 56
## 23175 56
## 23255 56
## 23560 56
## 23878 56
## 24243 56
## 24575 56
## 25194 56
## 25729 56
## 26193 56
## 26912 56
## 27195 56
## 27556 56
## 28182 56
## 28381 56
## 28763 56
## 28929 56
## 29174 56
## 29467 56
## 30252 56
## 30452 56
## 30550 56
## 31013 56
## 32003 56
## 32874 56
## 33094 56
## 33666 56
## 33927 56
## 34461 56
## 34570 56
## 34740 56
## 34905 56
## 35144 56
## 35317 56
## 35513 56
## 35648 56
## 35753 56
## 35882 56
## 36160 56
## 36430 56
## 36813 56
## 37059 56
## 39452 56
## 40458 56
## 42724 56
## 42810 56
## 45525 56
## 45982 56
## 46121 56
## 46398 56
## 49829 56
## 53755 56
## 53950 56
## 53981 56
## 54055 56
## 54564 56
## 54675 56
## 54876 56
## 55089 56
## 55149 56
## 55221 56
## 55420 56
## 55569 56
## 55759 56
## 55930 56
## 56239 56
## 56665 56
## 56845 56
## 57929 56
## 58072 56
## 58460 56
## 59187 56
## 59359 56
## 59598 56
## 59936 56
## 59997 56
## 60236 56
## 60441 56
## 60556 56
## 60622 56
## 62375 56
## 63852 56
## 65471 56
## 67811 56
## 69341 56
## 69734 56
## 70013 56
## 70227 56
## 70790 56
## 71232 56
## 71412 56
## 71897 56
## 71996 56
## 72520 56
## 72651 56
## 73976 56
## 74771 56
## 76001 56
## 77597 56
## 78845 56
## 80132 56
## 80406 56
## 80804 56
## 81000 56
## 81221 56
## 81490 56
## 82222 56
## 82342 56
## 82452 56
## 83234 56
## 83538 56
## 83979 56
## 84257 56
## 84434 56
## 84854 56
## 84955 56
## 85401 56
## 85605 56
## 86861 56
## 87094 56
## 87351 56
## 87388 56
## 89474 56
## 90145 56
## 90874 56
## 91558 56
## 92792 56
## 93055 56
## 93123 56
## 93512 56
## 93919 56
## 94375 56
## 94683 56
## 94720 56
## 94763 56
## 25 57
## 1025 57
## 1400 57
## 2010 57
## 2882 57
## 4013 57
## 4616 57
## 5706 57
## 6441 57
## 7561 57
## 8577 57
## 10681 57
## 14414 57
## 15044 57
## 15303 57
## 15470 57
## 15977 57
## 16727 57
## 17553 57
## 17790 57
## 20253 57
## 21072 57
## 23256 57
## 24244 57
## 26194 57
## 28930 57
## 29175 57
## 30080 57
## 31014 57
## 33928 57
## 34462 57
## 36431 57
## 37211 57
## 37615 57
## 37796 57
## 38158 57
## 38318 57
## 38453 57
## 38694 57
## 39137 57
## 39453 57
## 40356 57
## 41182 57
## 42811 57
## 42958 57
## 43367 57
## 44299 57
## 45526 57
## 45983 57
## 46122 57
## 47341 57
## 48958 57
## 49442 57
## 49830 57
## 56240 57
## 56774 57
## 56846 57
## 57010 57
## 57675 57
## 61030 57
## 61999 57
## 62215 57
## 62376 57
## 62699 57
## 62944 57
## 63102 57
## 64961 57
## 69342 57
## 71997 57
## 72652 57
## 77598 57
## 77941 57
## 79917 57
## 80280 57
## 82113 57
## 82453 57
## 83331 57
## 83494 57
## 83699 57
## 85606 57
## 85849 57
## 85933 57
## 86118 57
## 86230 57
## 86536 57
## 86586 57
## 87138 57
## 87226 57
## 87389 57
## 89224 57
## 89475 57
## 89607 57
## 91051 57
## 91378 57
## 91727 57
## 91998 57
## 92342 57
## 92793 57
## 93513 57
## 93956 57
## 94286 57
## 94309 57
## 94775 57
## 94798 57
## 94810 57
## 94839 57
## 26 58
## 1026 58
## 1401 58
## 1625 58
## 2011 58
## 2245 58
## 2512 58
## 3369 58
## 4197 58
## 5189 58
## 5707 58
## 5968 58
## 6442 58
## 7562 58
## 8298 58
## 8578 58
## 9379 58
## 9698 58
## 12202 58
## 13848 58
## 14415 58
## 15304 58
## 15471 58
## 15846 58
## 16640 58
## 16728 58
## 17246 58
## 17362 58
## 17904 58
## 19032 58
## 19236 58
## 19593 58
## 20254 58
## 20895 58
## 21073 58
## 21474 58
## 21983 58
## 23257 58
## 23561 58
## 23797 58
## 23879 58
## 24245 58
## 24576 58
## 24985 58
## 25195 58
## 26195 58
## 26683 58
## 27321 58
## 28183 58
## 28382 58
## 28764 58
## 28931 58
## 29176 58
## 29951 58
## 30081 58
## 30253 58
## 30822 58
## 31015 58
## 31809 58
## 32004 58
## 32624 58
## 32756 58
## 33095 58
## 33929 58
## 34281 58
## 34906 58
## 36432 58
## 36814 58
## 37212 58
## 38029 58
## 38159 58
## 38319 58
## 38937 58
## 39138 58
## 40740 58
## 41391 58
## 42006 58
## 43191 58
## 43368 58
## 46399 58
## 47922 58
## 48061 58
## 48230 58
## 48959 58
## 51840 58
## 52459 58
## 52726 58
## 53598 58
## 54354 58
## 56241 58
## 56666 58
## 58379 58
## 59360 58
## 61323 58
## 61473 58
## 62501 58
## 62700 58
## 63486 58
## 63853 58
## 64601 58
## 64654 58
## 64962 58
## 65186 58
## 65472 58
## 66525 58
## 66693 58
## 66827 58
## 69343 58
## 70156 58
## 70791 58
## 71817 58
## 72936 58
## 74982 58
## 75224 58
## 75552 58
## 75724 58
## 75850 58
## 76002 58
## 76914 58
## 78092 58
## 78846 58
## 79814 58
## 80930 58
## 81001 58
## 81751 58
## 84168 58
## 85342 58
## 85721 58
## 86914 58
## 89042 58
## 90340 58
## 90486 58
## 90661 58
## 91782 58
## 91853 58
## 92092 58
## 92558 58
## 93646 58
## 94071 58
## 94241 58
## 94259 58
## 94570 58
## 94646 58
## 94842 58
## 94860 58
## 94902 58
## 94915 58
## 94923 58
## 94997 58
## 95004 58
## 95023 58
## 95027 58
## 95045 58
## 27 59
## 587 59
## 685 59
## 1027 59
## 1626 59
## 1909 59
## 2012 59
## 2246 59
## 2513 59
## 2691 59
## 2883 59
## 3291 59
## 3540 59
## 3828 59
## 4014 59
## 4198 59
## 4617 59
## 4990 59
## 5190 59
## 5265 59
## 5523 59
## 5708 59
## 5890 59
## 5969 59
## 6079 59
## 6210 59
## 6443 59
## 6993 59
## 7073 59
## 7165 59
## 7292 59
## 7398 59
## 7563 59
## 7982 59
## 8154 59
## 8235 59
## 8299 59
## 8579 59
## 8848 59
## 9233 59
## 9380 59
## 9699 59
## 9948 59
## 10288 59
## 10481 59
## 10682 59
## 11069 59
## 11191 59
## 11441 59
## 11695 59
## 11844 59
## 12203 59
## 12471 59
## 12566 59
## 12706 59
## 13069 59
## 13289 59
## 13580 59
## 13849 59
## 14225 59
## 14416 59
## 14897 59
## 14973 59
## 15119 59
## 15305 59
## 15472 59
## 15847 59
## 16359 59
## 16729 59
## 17247 59
## 17554 59
## 17791 59
## 17905 59
## 18365 59
## 18519 59
## 18619 59
## 18863 59
## 19033 59
## 19237 59
## 19488 59
## 19594 59
## 19829 59
## 19891 59
## 19962 59
## 20032 59
## 20561 59
## 20750 59
## 20869 59
## 21074 59
## 22496 59
## 23258 59
## 23562 59
## 23681 59
## 23880 59
## 24246 59
## 24577 59
## 24986 59
## 25196 59
## 25469 59
## 25730 59
## 25955 59
## 26196 59
## 26684 59
## 26913 59
## 27196 59
## 27322 59
## 27557 59
## 27803 59
## 28013 59
## 28247 59
## 28383 59
## 28765 59
## 28932 59
## 29177 59
## 29468 59
## 29715 59
## 29952 59
## 30082 59
## 30254 59
## 30453 59
## 30551 59
## 30823 59
## 31016 59
## 31350 59
## 31610 59
## 31810 59
## 32005 59
## 32334 59
## 32528 59
## 32875 59
## 33096 59
## 33493 59
## 33667 59
## 33770 59
## 34571 59
## 34741 59
## 34907 59
## 35145 59
## 35318 59
## 35649 59
## 35883 59
## 36161 59
## 36433 59
## 36815 59
## 37213 59
## 37367 59
## 37616 59
## 39454 59
## 40459 59
## 41591 59
## 41814 59
## 42279 59
## 42563 59
## 43369 59
## 43561 59
## 43739 59
## 44199 59
## 44300 59
## 45017 59
## 48231 59
## 48960 59
## 49443 59
## 49831 59
## 52949 59
## 53599 59
## 53789 59
## 53885 59
## 54240 59
## 54355 59
## 54459 59
## 54676 59
## 54962 59
## 55150 59
## 55222 59
## 55760 59
## 55931 59
## 56130 59
## 56242 59
## 56847 59
## 57403 59
## 57546 59
## 57676 59
## 57930 59
## 58073 59
## 58380 59
## 58506 59
## 58719 59
## 58837 59
## 58938 59
## 59027 59
## 59188 59
## 59361 59
## 59525 59
## 59599 59
## 59807 59
## 59998 59
## 60237 59
## 60355 59
## 60623 59
## 61104 59
## 61324 59
## 61567 59
## 61649 59
## 61750 59
## 61883 59
## 62216 59
## 62377 59
## 62502 59
## 62945 59
## 63103 59
## 63308 59
## 63487 59
## 63854 59
## 64092 59
## 64230 59
## 64487 59
## 64551 59
## 64602 59
## 64655 59
## 64721 59
## 64963 59
## 65261 59
## 65473 59
## 65645 59
## 65691 59
## 65808 59
## 65876 59
## 65968 59
## 66072 59
## 66404 59
## 66526 59
## 66751 59
## 66828 59
## 67006 59
## 67206 59
## 67268 59
## 67451 59
## 67653 59
## 67812 59
## 67972 59
## 68016 59
## 68093 59
## 68220 59
## 68409 59
## 68532 59
## 69587 59
## 69640 59
## 69735 59
## 70228 59
## 70440 59
## 70520 59
## 70572 59
## 70748 59
## 70792 59
## 71013 59
## 71078 59
## 71555 59
## 71616 59
## 71782 59
## 71818 59
## 71998 59
## 72255 59
## 72453 59
## 72653 59
## 72878 59
## 72937 59
## 73137 59
## 73249 59
## 73377 59
## 73410 59
## 73470 59
## 73510 59
## 73551 59
## 73664 59
## 73720 59
## 73801 59
## 73884 59
## 73937 59
## 74042 59
## 74656 59
## 74983 59
## 75098 59
## 75190 59
## 75292 59
## 75427 59
## 75478 59
## 75553 59
## 75851 59
## 76003 59
## 76268 59
## 76393 59
## 76474 59
## 76591 59
## 76831 59
## 76915 59
## 77026 59
## 77257 59
## 77320 59
## 77454 59
## 77808 59
## 78093 59
## 78465 59
## 78847 59
## 79278 59
## 79403 59
## 79504 59
## 79642 59
## 79712 59
## 79815 59
## 79918 59
## 80048 59
## 80133 59
## 80281 59
## 80637 59
## 80742 59
## 80854 59
## 81002 59
## 81222 59
## 81355 59
## 81523 59
## 81752 59
## 81819 59
## 82223 59
## 82343 59
## 83235 59
## 83332 59
## 83495 59
## 83585 59
## 83846 59
## 84021 59
## 84186 59
## 84435 59
## 84634 59
## 84760 59
## 85722 59
## 85850 59
## 86587 59
## 86753 59
## 86953 59
## 87227 59
## 87390 59
## 88568 59
## 88865 59
## 89225 59
## 89327 59
## 89430 59
## 89553 59
## 90146 59
## 90370 59
## 90454 59
## 90598 59
## 90743 59
## 90875 59
## 90987 59
## 91019 59
## 91052 59
## 91760 59
## 91891 59
## 92624 59
## 92794 59
## 93514 59
## 93647 59
## 93743 59
## 94116 59
## 94376 59
## 94776 59
## 94924 59
## 95049 59
## 95067 59
## 95072 59
## 95100 59
## 95141 59
## 95148 59
## 95163 59
## 95185 59
## 95195 59
## 95224 59
## 95237 59
## 95256 59
## 95303 59
## 95362 59
## 1028 60
## 1402 60
## 1627 60
## 2247 60
## 2514 60
## 2884 60
## 3446 60
## 3829 60
## 4618 60
## 4991 60
## 6080 60
## 6444 60
## 7564 60
## 8155 60
## 8236 60
## 8300 60
## 8580 60
## 9381 60
## 9700 60
## 9949 60
## 10289 60
## 10482 60
## 10683 60
## 11192 60
## 11985 60
## 12204 60
## 13070 60
## 13290 60
## 13581 60
## 13850 60
## 16730 60
## 18297 60
## 18520 60
## 18620 60
## 18864 60
## 19034 60
## 19238 60
## 19489 60
## 19758 60
## 19892 60
## 20033 60
## 20255 60
## 21075 60
## 21380 60
## 21475 60
## 22415 60
## 22497 60
## 22707 60
## 22812 60
## 23118 60
## 23259 60
## 23881 60
## 24247 60
## 24578 60
## 24987 60
## 25197 60
## 25606 60
## 25731 60
## 25956 60
## 26197 60
## 26914 60
## 27323 60
## 27558 60
## 28933 60
## 29178 60
## 29716 60
## 30083 60
## 30255 60
## 31017 60
## 31351 60
## 31532 60
## 31611 60
## 31811 60
## 32006 60
## 32335 60
## 32529 60
## 32876 60
## 33097 60
## 33494 60
## 33930 60
## 34463 60
## 34742 60
## 34908 60
## 35146 60
## 35319 60
## 35884 60
## 36434 60
## 40460 60
## 41392 60
## 42007 60
## 43740 60
## 50493 60
## 52950 60
## 53538 60
## 54095 60
## 54677 60
## 55223 60
## 55932 60
## 56131 60
## 56243 60
## 57011 60
## 57404 60
## 57465 60
## 57547 60
## 57677 60
## 57848 60
## 58074 60
## 58507 60
## 58838 60
## 58939 60
## 59362 60
## 59526 60
## 59600 60
## 59999 60
## 60200 60
## 62503 60
## 63196 60
## 63309 60
## 63488 60
## 63723 60
## 63855 60
## 64093 60
## 64231 60
## 64552 60
## 64603 60
## 64656 60
## 64722 60
## 64780 60
## 64838 60
## 64895 60
## 64964 60
## 65262 60
## 65404 60
## 65474 60
## 65592 60
## 65809 60
## 65877 60
## 65969 60
## 66073 60
## 66405 60
## 66527 60
## 66752 60
## 66829 60
## 67007 60
## 67269 60
## 67452 60
## 67813 60
## 67973 60
## 68017 60
## 68410 60
## 68533 60
## 69344 60
## 70157 60
## 71617 60
## 72424 60
## 72433 60
## 72855 60
## 72879 60
## 72938 60
## 73138 60
## 73214 60
## 73250 60
## 73378 60
## 73411 60
## 73584 60
## 73665 60
## 73721 60
## 73785 60
## 73802 60
## 74372 60
## 74657 60
## 74862 60
## 74898 60
## 75063 60
## 75479 60
## 75852 60
## 76221 60
## 76475 60
## 76592 60
## 76743 60
## 77077 60
## 77209 60
## 77321 60
## 77455 60
## 78094 60
## 79279 60
## 79505 60
## 79713 60
## 80855 60
## 81223 60
## 81356 60
## 82203 60
## 82937 60
## 83236 60
## 84995 60
## 85259 60
## 86303 60
## 86478 60
## 92588 60
## 92625 60
## 93744 60
## 93991 60
## 95379 60
## 95400 60
## 95401 60
## 95404 60
## 95416 60
## 95420 60
## 37617 61
## 39455 61
## 40741 61
## 41183 61
## 45527 61
## 46400 61
## 46822 61
## 47342 61
## 47923 61
## 49832 61
## 50494 61
## 50676 61
## 51043 61
## 51309 61
## 52033 61
## 52460 61
## 77599 61
## 78668 61
## 82454 61
## 82938 61
## 95452 61
## 28 62
## 588 62
## 686 62
## 1029 62
## 1403 62
## 1628 62
## 2248 62
## 2515 62
## 2692 62
## 2885 62
## 3370 62
## 3447 62
## 3541 62
## 4015 62
## 4619 62
## 5266 62
## 5891 62
## 6081 62
## 6445 62
## 7166 62
## 7399 62
## 7565 62
## 8156 62
## 8363 62
## 8581 62
## 8849 62
## 9234 62
## 9382 62
## 9701 62
## 9950 62
## 10158 62
## 10423 62
## 10631 62
## 11070 62
## 11193 62
## 11442 62
## 11696 62
## 12205 62
## 12567 62
## 13291 62
## 13582 62
## 13851 62
## 14417 62
## 15473 62
## 15758 62
## 15848 62
## 15978 62
## 16360 62
## 16731 62
## 17555 62
## 17906 62
## 18298 62
## 18366 62
## 18621 62
## 19035 62
## 19239 62
## 19759 62
## 20256 62
## 20562 62
## 21076 62
## 21476 62
## 21885 62
## 22130 62
## 22314 62
## 22708 62
## 22908 62
## 23176 62
## 23260 62
## 23682 62
## 23798 62
## 23882 62
## 24248 62
## 24579 62
## 25198 62
## 25732 62
## 25957 62
## 26198 62
## 26685 62
## 26915 62
## 28014 62
## 28248 62
## 28384 62
## 29179 62
## 29469 62
## 30084 62
## 31018 62
## 31533 62
## 31812 62
## 32007 62
## 32625 62
## 32877 62
## 33098 62
## 33374 62
## 33931 62
## 34464 62
## 34743 62
## 34909 62
## 35147 62
## 35320 62
## 35650 62
## 36162 62
## 36435 62
## 36816 62
## 37368 62
## 37797 62
## 38320 62
## 38454 62
## 38695 62
## 39139 62
## 39456 62
## 41041 62
## 41184 62
## 41592 62
## 42008 62
## 42280 62
## 42812 62
## 43192 62
## 43562 62
## 43741 62
## 44301 62
## 45018 62
## 45528 62
## 46123 62
## 47058 62
## 47581 62
## 48961 62
## 50677 62
## 52951 62
## 53492 62
## 54241 62
## 54460 62
## 54963 62
## 55678 62
## 55761 62
## 55933 62
## 56244 62
## 57931 62
## 58075 62
## 59028 62
## 59363 62
## 59808 62
## 60000 62
## 60356 62
## 60624 62
## 60892 62
## 61325 62
## 61474 62
## 61537 62
## 61650 62
## 62217 62
## 62378 62
## 62504 62
## 62701 62
## 63856 62
## 65263 62
## 66074 62
## 66282 62
## 66528 62
## 66694 62
## 66830 62
## 67654 62
## 68221 62
## 68411 62
## 69127 62
## 69345 62
## 70014 62
## 70229 62
## 70793 62
## 71014 62
## 71618 62
## 72654 62
## 73215 62
## 75554 62
## 75725 62
## 76004 62
## 76593 62
## 77027 62
## 77078 62
## 77322 62
## 77508 62
## 78262 62
## 79224 62
## 79280 62
## 79404 62
## 79474 62
## 79714 62
## 79919 62
## 79997 62
## 80134 62
## 80221 62
## 80601 62
## 80856 62
## 81524 62
## 81820 62
## 82114 62
## 82344 62
## 83700 62
## 84187 62
## 85402 62
## 86013 62
## 86588 62
## 87021 62
## 87228 62
## 87624 62
## 88962 62
## 89101 62
## 89554 62
## 90268 62
## 90409 62
## 90487 62
## 90599 62
## 91892 62
## 92093 62
## 92343 62
## 92526 62
## 92795 62
## 93992 62
## 94310 62
## 94377 62
## 94471 62
## 94721 62
## 95050 62
## 95257 62
## 95463 62
## 95476 62
## 95504 62
## 95505 62
## 95518 62
## 95550 62
## 95580 62
## 95618 62
## 95664 62
## 29 63
## 589 63
## 972 63
## 1910 63
## 2516 63
## 2693 63
## 2886 63
## 3371 63
## 4199 63
## 6446 63
## 10684 63
## 14418 63
## 15120 63
## 15230 63
## 15306 63
## 15474 63
## 15849 63
## 16732 63
## 17792 63
## 19595 63
## 20896 63
## 26199 63
## 33932 63
## 34413 63
## 34465 63
## 36436 63
## 37499 63
## 38030 63
## 38455 63
## 38642 63
## 38938 63
## 39140 63
## 39457 63
## 39946 63
## 40270 63
## 40742 63
## 42281 63
## 42564 63
## 42959 63
## 43193 63
## 43370 63
## 43563 63
## 43742 63
## 44200 63
## 44302 63
## 44764 63
## 45529 63
## 46401 63
## 46823 63
## 47059 63
## 47582 63
## 49444 63
## 49606 63
## 49833 63
## 50188 63
## 50678 63
## 51310 63
## 56245 63
## 56667 63
## 57165 63
## 62379 63
## 62702 63
## 63489 63
## 66075 63
## 69346 63
## 72256 63
## 72521 63
## 77509 63
## 77600 63
## 80049 63
## 81753 63
## 82455 63
## 83586 63
## 85343 63
## 86068 63
## 86432 63
## 89102 63
## 89431 63
## 90223 63
## 90410 63
## 91184 63
## 91559 63
## 91806 63
## 91854 63
## 91893 63
## 91954 63
## 91999 63
## 92094 63
## 92796 63
## 94185 63
## 95693 63
## 95722 63
## 30 64
## 460 64
## 687 64
## 1030 64
## 1404 64
## 1629 64
## 1911 64
## 2013 64
## 2249 64
## 3203 64
## 3542 64
## 4620 64
## 5033 64
## 5191 64
## 5403 64
## 6211 64
## 6447 64
## 7074 64
## 7566 64
## 7983 64
## 8364 64
## 8582 64
## 9383 64
## 9702 64
## 9951 64
## 10159 64
## 10483 64
## 10685 64
## 11071 64
## 11194 64
## 11443 64
## 11845 64
## 12206 64
## 12568 64
## 12811 64
## 13071 64
## 13292 64
## 13583 64
## 13852 64
## 14419 64
## 14898 64
## 15475 64
## 16733 64
## 17556 64
## 17907 64
## 18622 64
## 19240 64
## 19893 64
## 20034 64
## 20257 64
## 21077 64
## 21477 64
## 21713 64
## 21984 64
## 22131 64
## 22416 64
## 22498 64
## 22709 64
## 23261 64
## 23883 64
## 24249 64
## 24580 64
## 24988 64
## 25199 64
## 25733 64
## 26200 64
## 26686 64
## 26916 64
## 27197 64
## 27324 64
## 27559 64
## 27804 64
## 28015 64
## 28249 64
## 28385 64
## 28934 64
## 29180 64
## 29470 64
## 29717 64
## 30085 64
## 30552 64
## 30824 64
## 31813 64
## 32008 64
## 32336 64
## 32530 64
## 32757 64
## 32878 64
## 33099 64
## 33375 64
## 33495 64
## 33933 64
## 34744 64
## 34910 64
## 35148 64
## 35321 64
## 35514 64
## 35651 64
## 35885 64
## 36163 64
## 36437 64
## 36817 64
## 37060 64
## 37214 64
## 37369 64
## 39458 64
## 40461 64
## 40743 64
## 41185 64
## 41593 64
## 42009 64
## 43371 64
## 44303 64
## 46402 64
## 47924 64
## 48062 64
## 48232 64
## 48962 64
## 50315 64
## 51311 64
## 51841 64
## 52461 64
## 52839 64
## 53600 64
## 54356 64
## 54597 64
## 54678 64
## 55052 64
## 55151 64
## 55934 64
## 56246 64
## 57678 64
## 57849 64
## 58076 64
## 58381 64
## 58839 64
## 59029 64
## 59364 64
## 59527 64
## 59601 64
## 59809 64
## 60238 64
## 60625 64
## 61475 64
## 62703 64
## 62946 64
## 63490 64
## 64965 64
## 65646 64
## 66283 64
## 66529 64
## 67008 64
## 67207 64
## 67529 64
## 68222 64
## 68706 64
## 69042 64
## 69347 64
## 70230 64
## 70573 64
## 70794 64
## 71015 64
## 71619 64
## 71999 64
## 72257 64
## 72939 64
## 74043 64
## 74658 64
## 74772 64
## 75480 64
## 75555 64
## 75726 64
## 76005 64
## 76832 64
## 76916 64
## 77809 64
## 78095 64
## 78998 64
## 79506 64
## 80358 64
## 80956 64
## 81003 64
## 81357 64
## 82224 64
## 82456 64
## 82939 64
## 83927 64
## 84258 64
## 86798 64
## 87812 64
## 88501 64
## 88866 64
## 90600 64
## 90876 64
## 94072 64
## 94117 64
## 95551 64
## 95727 64
## 95760 64
## 95777 64
## 31 65
## 1031 65
## 1630 65
## 2887 65
## 4200 65
## 4621 65
## 6082 65
## 6212 65
## 6448 65
## 7567 65
## 8486 65
## 8583 65
## 8850 65
## 8969 65
## 9384 65
## 9703 65
## 10290 65
## 10484 65
## 11846 65
## 11986 65
## 13584 65
## 13853 65
## 14420 65
## 15476 65
## 16734 65
## 17557 65
## 19241 65
## 23262 65
## 24250 65
## 25607 65
## 25734 65
## 27325 65
## 28386 65
## 28935 65
## 29471 65
## 29718 65
## 30553 65
## 32009 65
## 32337 65
## 32879 65
## 33100 65
## 36438 65
## 36818 65
## 37061 65
## 38939 65
## 39459 65
## 45530 65
## 48963 65
## 50679 65
## 52840 65
## 53493 65
## 54096 65
## 55152 65
## 55224 65
## 55762 65
## 58077 65
## 58508 65
## 58840 65
## 59602 65
## 62000 65
## 62947 65
## 66530 65
## 66831 65
## 68094 65
## 68707 65
## 71620 65
## 75556 65
## 76006 65
## 76594 65
## 76744 65
## 77510 65
## 81224 65
## 81358 65
## 84259 65
## 85126 65
## 90536 65
## 93302 65
## 93400 65
## 95477 65
## 95786 65
## 32 66
## 1032 66
## 1631 66
## 2888 66
## 3448 66
## 4016 66
## 6449 66
## 15979 66
## 16735 66
## 17908 66
## 26201 66
## 36439 66
## 38160 66
## 38321 66
## 39141 66
## 39460 66
## 42725 66
## 42813 66
## 42960 66
## 43372 66
## 43743 66
## 44304 66
## 45531 66
## 45984 66
## 46124 66
## 46403 66
## 56247 66
## 62001 66
## 62704 66
## 66076 66
## 68878 66
## 72655 66
## 81754 66
## 81821 66
## 83701 66
## 85851 66
## 87723 66
## 92344 66
## 33 67
## 1033 67
## 4017 67
## 4201 67
## 8584 67
## 15045 67
## 15980 67
## 16736 67
## 17139 67
## 17248 67
## 17558 67
## 20563 67
## 21078 67
## 36164 67
## 37215 67
## 41594 67
## 42282 67
## 56248 67
## 57166 67
## 62218 67
## 69348 67
## 82072 67
## 83333 67
## 86014 67
## 86231 67
## 87391 67
## 93515 67
## 93827 67
## 94777 67
## 94811 67
## 1034 68
## 1632 68
## 4202 68
## 6450 68
## 15477 68
## 15981 68
## 16361 68
## 16737 68
## 17559 68
## 17909 68
## 25608 68
## 26202 68
## 36440 68
## 37798 68
## 39461 68
## 42010 68
## 42283 68
## 42961 68
## 43744 68
## 44305 68
## 56249 68
## 56775 68
## 57012 68
## 61105 68
## 62002 68
## 62705 68
## 72522 68
## 80050 68
## 81822 68
## 83702 68
## 89226 68
## 92797 68
## 93516 68
## 94647 68
## 1035 69
## 1633 69
## 2250 69
## 5709 69
## 6213 69
## 6451 69
## 7568 69
## 10686 69
## 13854 69
## 14421 69
## 15307 69
## 15982 69
## 17249 69
## 17363 69
## 18367 69
## 20564 69
## 20897 69
## 21079 69
## 23884 69
## 24581 69
## 24989 69
## 26203 69
## 26687 69
## 29719 69
## 33934 69
## 35886 69
## 36165 69
## 36369 69
## 36441 69
## 37216 69
## 37799 69
## 38031 69
## 39105 69
## 39462 69
## 40462 69
## 41595 69
## 42962 69
## 44306 69
## 44765 69
## 45532 69
## 46125 69
## 46404 69
## 47060 69
## 47681 69
## 49445 69
## 51312 69
## 51552 69
## 58509 69
## 62706 69
## 66077 69
## 72258 69
## 74206 69
## 78577 69
## 81823 69
## 82457 69
## 83703 69
## 87813 69
## 88069 69
## 92345 69
## 92476 69
## 95581 69
## 95787 69
## 95830 69
## 95845 69
## 34 70
## 1405 70
## 2889 70
## 4018 70
## 4622 70
## 6214 70
## 6452 70
## 8487 70
## 9385 70
## 9952 70
## 10687 70
## 11195 70
## 11444 70
## 11987 70
## 12207 70
## 12569 70
## 12925 70
## 13072 70
## 13293 70
## 14226 70
## 14899 70
## 15308 70
## 16738 70
## 18299 70
## 18623 70
## 19242 70
## 19779 70
## 19963 70
## 20035 70
## 20898 70
## 21080 70
## 21381 70
## 22499 70
## 23263 70
## 23563 70
## 23885 70
## 24251 70
## 24582 70
## 24990 70
## 25200 70
## 26204 70
## 26917 70
## 27326 70
## 27560 70
## 28184 70
## 28387 70
## 28766 70
## 29720 70
## 30554 70
## 31019 70
## 31481 70
## 31612 70
## 32010 70
## 32338 70
## 32758 70
## 33376 70
## 33935 70
## 34466 70
## 34745 70
## 34911 70
## 35149 70
## 35322 70
## 35515 70
## 39142 70
## 40104 70
## 40357 70
## 40463 70
## 44766 70
## 46126 70
## 46405 70
## 48233 70
## 51697 70
## 52090 70
## 54242 70
## 54565 70
## 55225 70
## 55541 70
## 55570 70
## 55935 70
## 56132 70
## 56250 70
## 56668 70
## 57013 70
## 57466 70
## 57548 70
## 57679 70
## 58078 70
## 58841 70
## 59030 70
## 59189 70
## 60442 70
## 60557 70
## 60626 70
## 62219 70
## 62380 70
## 63724 70
## 63857 70
## 64966 70
## 65475 70
## 65970 70
## 66531 70
## 68223 70
## 68975 70
## 69177 70
## 69349 70
## 70015 70
## 70231 70
## 70795 70
## 71277 70
## 71819 70
## 72000 70
## 72523 70
## 72656 70
## 74044 70
## 76007 70
## 77601 70
## 78096 70
## 81525 70
## 82225 70
## 82940 70
## 83237 70
## 83587 70
## 85607 70
## 90147 70
## 91560 70
## 92952 70
## 93056 70
## 94118 70
## 95552 70
## 95848 70
## 95857 70
## 973 71
## 2694 71
## 6453 71
## 7075 71
## 7569 71
## 8585 71
## 8851 71
## 12208 71
## 13855 71
## 14422 71
## 19036 71
## 19243 71
## 21081 71
## 21478 71
## 21714 71
## 23264 71
## 24583 71
## 24991 71
## 25470 71
## 26205 71
## 29721 71
## 33936 71
## 38161 71
## 39143 71
## 42284 71
## 42963 71
## 43564 71
## 43745 71
## 44767 71
## 47061 71
## 52332 71
## 52952 71
## 58842 71
## 61326 71
## 62707 71
## 66832 71
## 82115 71
## 89043 71
## 35 72
## 461 72
## 889 72
## 1036 72
## 1634 72
## 2251 72
## 2890 72
## 3830 72
## 4203 72
## 4623 72
## 5404 72
## 5970 72
## 6215 72
## 6454 72
## 6994 72
## 7293 72
## 7570 72
## 7984 72
## 8586 72
## 9235 72
## 9386 72
## 9704 72
## 10485 72
## 10688 72
## 11072 72
## 11196 72
## 11847 72
## 12209 72
## 13294 72
## 13585 72
## 13856 72
## 14423 72
## 15121 72
## 15983 72
## 16362 72
## 16739 72
## 17364 72
## 17910 72
## 18368 72
## 19037 72
## 19244 72
## 20565 72
## 22500 72
## 23683 72
## 23886 72
## 24584 72
## 25201 72
## 25471 72
## 25958 72
## 26206 72
## 26688 72
## 27805 72
## 28016 72
## 28388 72
## 28936 72
## 29181 72
## 29472 72
## 29722 72
## 29953 72
## 30825 72
## 31020 72
## 32011 72
## 32531 72
## 32880 72
## 33771 72
## 33937 72
## 34572 72
## 34912 72
## 35150 72
## 35323 72
## 35754 72
## 35887 72
## 36442 72
## 37370 72
## 40464 72
## 41186 72
## 48964 72
## 52841 72
## 52953 72
## 54243 72
## 54461 72
## 55763 72
## 55936 72
## 56251 72
## 58079 72
## 58510 72
## 59603 72
## 60001 72
## 61247 72
## 61651 72
## 62003 72
## 62948 72
## 63310 72
## 63491 72
## 64094 72
## 64781 72
## 65692 72
## 66284 72
## 67009 72
## 67362 72
## 67530 72
## 67655 72
## 68018 72
## 68095 72
## 68224 72
## 68412 72
## 68626 72
## 69736 72
## 69951 72
## 70574 72
## 70796 72
## 71556 72
## 71621 72
## 72259 72
## 72940 72
## 74207 72
## 75099 72
## 75191 72
## 75293 72
## 75428 72
## 75853 72
## 76008 72
## 77028 72
## 77810 72
## 78097 72
## 78263 72
## 79281 72
## 79715 72
## 84022 72
## 84761 72
## 86537 72
## 87229 72
## 90988 72
## 93786 72
## 95101 72
## 95860 72
## 95881 72
## 36 73
## 1037 73
## 2252 73
## 4624 73
## 5192 73
## 6216 73
## 7571 73
## 8157 73
## 8587 73
## 11073 73
## 11197 73
## 12210 73
## 12926 73
## 13295 73
## 14424 73
## 17911 73
## 18369 73
## 19245 73
## 21382 73
## 21479 73
## 21715 73
## 21985 73
## 23799 73
## 24252 73
## 24992 73
## 25735 73
## 25959 73
## 26918 73
## 27806 73
## 28017 73
## 29473 73
## 29723 73
## 30555 73
## 31482 73
## 32626 73
## 38032 73
## 38940 73
## 40744 73
## 41187 73
## 41393 73
## 43565 73
## 43746 73
## 44307 73
## 44768 73
## 48965 73
## 52954 73
## 54462 73
## 59365 73
## 62505 73
## 62708 73
## 63311 73
## 63492 73
## 65971 73
## 66833 73
## 67363 73
## 72001 73
## 75481 73
## 76269 73
## 76595 73
## 78042 73
## 82458 73
## 88329 73
## 89044 73
## 94311 73
## 95890 73
## 1038 74
## 1635 74
## 2517 74
## 2891 74
## 14425 74
## 16740 74
## 17365 74
## 17793 74
## 18370 74
## 19596 74
## 20899 74
## 36443 74
## 37800 74
## 39463 74
## 41394 74
## 42285 74
## 43566 74
## 44308 74
## 45533 74
## 46406 74
## 46824 74
## 47062 74
## 47682 74
## 48234 74
## 48576 74
## 50066 74
## 50316 74
## 50680 74
## 51044 74
## 51313 74
## 51842 74
## 52664 74
## 52727 74
## 53207 74
## 66078 74
## 69043 74
## 78669 74
## 94571 74
## 37 75
## 2518 75
## 4204 75
## 7572 75
## 10689 75
## 14426 75
## 15231 75
## 15478 75
## 15759 75
## 15984 75
## 16363 75
## 16741 75
## 17250 75
## 17560 75
## 18371 75
## 19597 75
## 20566 75
## 21082 75
## 28250 75
## 29474 75
## 33772 75
## 33938 75
## 34467 75
## 36166 75
## 36444 75
## 37217 75
## 41188 75
## 41596 75
## 43373 75
## 44769 75
## 45019 75
## 45112 75
## 45534 75
## 46825 75
## 47343 75
## 49607 75
## 49834 75
## 56252 75
## 56669 75
## 56776 75
## 56848 75
## 57014 75
## 57263 75
## 58511 75
## 61216 75
## 62220 75
## 62381 75
## 62709 75
## 62949 75
## 63104 75
## 64967 75
## 66079 75
## 69350 75
## 72657 75
## 77602 75
## 78264 75
## 79147 75
## 81824 75
## 83334 75
## 85608 75
## 85799 75
## 85852 75
## 86119 75
## 86232 75
## 86589 75
## 87139 75
## 87230 75
## 89227 75
## 90411 75
## 91379 75
## 91728 75
## 92477 75
## 92798 75
## 93517 75
## 93648 75
## 93957 75
## 95916 75
## 95925 75
## 95932 75
## 974 76
## 1039 76
## 2253 76
## 3831 76
## 4019 76
## 5710 76
## 7573 76
## 8158 76
## 8237 76
## 8301 76
## 8588 76
## 9705 76
## 10486 76
## 12211 76
## 12707 76
## 12812 76
## 13296 76
## 13857 76
## 14427 76
## 16742 76
## 18372 76
## 19246 76
## 19598 76
## 20900 76
## 21986 76
## 23887 76
## 24993 76
## 26689 76
## 28645 76
## 29724 76
## 30256 76
## 30826 76
## 33101 76
## 34282 76
## 39464 76
## 40358 76
## 41042 76
## 42286 76
## 43747 76
## 44309 76
## 45349 76
## 48966 76
## 50067 76
## 50189 76
## 50495 76
## 51314 76
## 52091 76
## 53208 76
## 54679 76
## 57932 76
## 62506 76
## 66753 76
## 66834 76
## 67270 76
## 67364 76
## 68708 76
## 69588 76
## 71622 76
## 72941 76
## 74208 76
## 78670 76
## 83980 76
## 84118 76
## 85127 76
## 85305 76
## 86918 76
## 88867 76
## 90488 76
## 90662 76
## 91783 76
## 91807 76
## 92559 76
## 93649 76
## 94287 76
## 95478 76
## 95960 76
## 95979 76
## 95991 76
## 95994 76
## 95995 76
## 96020 76
## 96024 76
## 38 77
## 688 77
## 2892 77
## 3832 77
## 4205 77
## 4625 77
## 5034 77
## 5711 77
## 6455 77
## 7076 77
## 7574 77
## 9387 77
## 12212 77
## 12570 77
## 13297 77
## 13586 77
## 13858 77
## 14428 77
## 16743 77
## 17561 77
## 17912 77
## 18624 77
## 18865 77
## 19038 77
## 20258 77
## 21480 77
## 21716 77
## 21987 77
## 23265 77
## 23888 77
## 24253 77
## 24585 77
## 24994 77
## 25202 77
## 25736 77
## 26207 77
## 26919 77
## 28389 77
## 28646 77
## 29182 77
## 30086 77
## 30454 77
## 31814 77
## 32012 77
## 32881 77
## 33939 77
## 34913 77
## 36819 77
## 38033 77
## 38456 77
## 38696 77
## 40465 77
## 42287 77
## 52955 77
## 56253 77
## 59031 77
## 60893 77
## 62507 77
## 63858 77
## 64095 77
## 65264 77
## 66532 77
## 67365 77
## 67453 77
## 67814 77
## 68225 77
## 74773 77
## 75064 77
## 84260 77
## 86233 77
## 92799 77
## 4206 78
## 12813 78
## 36445 78
## 38941 78
## 39144 78
## 40745 78
## 44310 78
## 44770 78
## 45535 78
## 46127 78
## 46826 78
## 49835 78
## 50496 78
## 57015 78
## 57167 78
## 62950 78
## 85344 78
## 87392 78
## 87944 78
## 93518 78
## 96035 78
## 39 79
## 975 79
## 1040 79
## 1912 79
## 2519 79
## 3305 79
## 6456 79
## 12814 79
## 14429 79
## 15850 79
## 17366 79
## 19599 79
## 20901 79
## 33940 79
## 36370 79
## 38034 79
## 38643 79
## 39145 79
## 39465 79
## 40271 79
## 40746 79
## 42011 79
## 42288 79
## 43194 79
## 43567 79
## 43748 79
## 44311 79
## 45020 79
## 46827 79
## 47583 79
## 48063 79
## 48235 79
## 49253 79
## 50190 79
## 51315 79
## 51843 79
## 53845 79
## 66080 79
## 67010 79
## 71623 79
## 77511 79
## 78671 79
## 81685 79
## 83704 79
## 85345 79
## 88569 79
## 88621 79
## 88728 79
## 89776 79
## 91855 79
## 92478 79
## 92662 79
## 96061 79
## 5971 80
## 6457 80
## 7985 80
## 8589 80
## 10690 80
## 11697 80
## 11848 80
## 14430 80
## 21717 80
## 28937 80
## 30087 80
## 31352 80
## 31613 80
## 32627 80
## 32882 80
## 35888 80
## 36446 80
## 40105 80
## 40747 80
## 58080 80
## 61652 80
## 63859 80
## 66835 80
## 68709 80
## 71624 80
## 79282 80
## 88070 80
## 88122 80
## 40 81
## 590 81
## 1041 81
## 4207 81
## 5712 81
## 10691 81
## 12815 81
## 13859 81
## 14431 81
## 15479 81
## 15851 81
## 16364 81
## 16744 81
## 17367 81
## 20567 81
## 20902 81
## 21083 81
## 23564 81
## 27561 81
## 32013 81
## 33941 81
## 36447 81
## 40748 81
## 41597 81
## 41815 81
## 42012 81
## 42289 81
## 42726 81
## 42964 81
## 43195 81
## 43374 81
## 44312 81
## 44771 81
## 48967 81
## 56254 81
## 56849 81
## 57016 81
## 57168 81
## 59190 81
## 61031 81
## 62004 81
## 62710 81
## 62951 81
## 69248 81
## 72260 81
## 72454 81
## 72524 81
## 73821 81
## 80282 81
## 80727 81
## 81825 81
## 83335 81
## 85800 81
## 89228 81
## 89328 81
## 92800 81
## 93519 81
## 93958 81
## 41 82
## 591 82
## 1042 82
## 1406 82
## 1636 82
## 2014 82
## 2520 82
## 2695 82
## 2893 82
## 3449 82
## 3543 82
## 4208 82
## 4626 82
## 6458 82
## 7575 82
## 8590 82
## 9388 82
## 9706 82
## 9953 82
## 10291 82
## 10692 82
## 11074 82
## 11849 82
## 13587 82
## 14227 82
## 14432 82
## 15023 82
## 15309 82
## 15480 82
## 15727 82
## 16365 82
## 16745 82
## 17562 82
## 17913 82
## 18866 82
## 19039 82
## 19247 82
## 19830 82
## 20568 82
## 21084 82
## 23266 82
## 23565 82
## 23684 82
## 24586 82
## 24995 82
## 25609 82
## 26208 82
## 26920 82
## 27327 82
## 28390 82
## 28938 82
## 29725 82
## 30088 82
## 30556 82
## 31614 82
## 32339 82
## 32532 82
## 33102 82
## 33496 82
## 33773 82
## 33942 82
## 34468 82
## 34914 82
## 35324 82
## 35516 82
## 36167 82
## 36448 82
## 36820 82
## 37218 82
## 37371 82
## 40466 82
## 41816 82
## 42013 82
## 42290 82
## 42814 82
## 43196 82
## 43375 82
## 43749 82
## 44313 82
## 44772 82
## 45536 82
## 47344 82
## 47925 82
## 48968 82
## 50317 82
## 51698 82
## 52092 82
## 52956 82
## 53601 82
## 56255 82
## 56777 82
## 57017 82
## 57169 82
## 57264 82
## 57318 82
## 57549 82
## 58359 82
## 58940 82
## 59191 82
## 59604 82
## 60894 82
## 61032 82
## 61106 82
## 61327 82
## 62221 82
## 62382 82
## 62508 82
## 62711 82
## 62952 82
## 63105 82
## 63312 82
## 63493 82
## 63656 82
## 63725 82
## 63860 82
## 64096 82
## 64896 82
## 64968 82
## 65693 82
## 66081 82
## 66533 82
## 66754 82
## 66836 82
## 67366 82
## 67454 82
## 67531 82
## 67815 82
## 68226 82
## 68534 82
## 69044 82
## 69351 82
## 71625 82
## 72002 82
## 72525 82
## 72658 82
## 72942 82
## 74984 82
## 76270 82
## 76596 82
## 76745 82
## 77210 82
## 77603 82
## 79507 82
## 80283 82
## 81686 82
## 83336 82
## 84023 82
## 85609 82
## 85713 82
## 85934 82
## 86280 82
## 87231 82
## 88350 82
## 88868 82
## 90148 82
## 91729 82
## 92801 82
## 92995 82
## 93959 82
## 94073 82
## 94479 82
## 94925 82
## 95421 82
## 95464 82
## 95582 82
## 96074 82
## 96079 82
## 96104 82
## 42 83
## 462 83
## 689 83
## 2894 83
## 3544 83
## 4209 83
## 4627 83
## 5035 83
## 5367 83
## 5405 83
## 5848 83
## 6459 83
## 7576 83
## 8488 83
## 8591 83
## 8970 83
## 9389 83
## 9707 83
## 9954 83
## 10487 83
## 10632 83
## 10693 83
## 11198 83
## 11988 83
## 12927 83
## 13073 83
## 13588 83
## 15046 83
## 15122 83
## 15427 83
## 15481 83
## 15985 83
## 16366 83
## 16746 83
## 17140 83
## 17563 83
## 17914 83
## 19780 83
## 21085 83
## 22501 83
## 24587 83
## 26209 83
## 27562 83
## 28391 83
## 29475 83
## 31021 83
## 32014 83
## 32883 83
## 33103 83
## 34469 83
## 35755 83
## 35889 83
## 36168 83
## 37219 83
## 37618 83
## 37801 83
## 38162 83
## 38322 83
## 38697 83
## 38872 83
## 38942 83
## 39947 83
## 40467 83
## 41817 83
## 42815 83
## 45537 83
## 46128 83
## 46407 83
## 46828 83
## 49254 83
## 49608 83
## 49836 83
## 51699 83
## 52842 83
## 53453 83
## 53886 83
## 54680 83
## 55090 83
## 55226 83
## 56256 83
## 56570 83
## 56615 83
## 56778 83
## 57018 83
## 57170 83
## 57265 83
## 58081 83
## 60788 83
## 61568 83
## 61751 83
## 62005 83
## 62953 83
## 63106 83
## 63313 83
## 66082 83
## 68227 83
## 69225 83
## 69352 83
## 70575 83
## 70797 83
## 71233 83
## 71278 83
## 71523 83
## 71820 83
## 72261 83
## 72659 83
## 73412 83
## 73977 83
## 74479 83
## 74985 83
## 76597 83
## 76917 83
## 78098 83
## 78265 83
## 78848 83
## 79475 83
## 80284 83
## 80407 83
## 80544 83
## 80805 83
## 81004 83
## 81526 83
## 82459 83
## 82941 83
## 83238 83
## 83337 83
## 83928 83
## 84436 83
## 84525 83
## 84898 83
## 85610 83
## 86069 83
## 86207 83
## 86590 83
## 86754 83
## 87095 83
## 87140 83
## 87232 83
## 87393 83
## 88264 83
## 89432 83
## 89608 83
## 90060 83
## 91108 83
## 91561 83
## 92346 83
## 92802 83
## 93057 83
## 93303 83
## 93392 83
## 93520 83
## 93718 83
## 93993 83
## 94926 83
## 96110 83
## 43 84
## 690 84
## 1043 84
## 2254 84
## 2895 84
## 4210 84
## 5036 84
## 8592 84
## 9708 84
## 10694 84
## 11850 84
## 13074 84
## 13860 84
## 14433 84
## 15482 84
## 15986 84
## 16747 84
## 20751 84
## 21086 84
## 28939 84
## 30827 84
## 33943 84
## 34470 84
## 36449 84
## 37802 84
## 39466 84
## 40468 84
## 41598 84
## 41818 84
## 42291 84
## 42965 84
## 43376 84
## 43750 84
## 44773 84
## 45113 84
## 45538 84
## 46408 84
## 48849 84
## 48969 84
## 49609 84
## 54681 84
## 56257 84
## 56670 84
## 57019 84
## 61653 84
## 63107 84
## 64356 84
## 67816 84
## 68413 84
## 68535 84
## 69226 84
## 69353 84
## 72262 84
## 72660 84
## 74209 84
## 78266 84
## 81826 84
## 82116 84
## 82460 84
## 83338 84
## 85403 84
## 85723 84
## 87233 84
## 87814 84
## 92803 84
## 92996 84
## 93277 84
## 93521 84
## 1407 85
## 1637 85
## 1913 85
## 2521 85
## 2696 85
## 3833 85
## 4211 85
## 4547 85
## 4628 85
## 4992 85
## 5713 85
## 5972 85
## 6460 85
## 6995 85
## 7077 85
## 7167 85
## 7577 85
## 7937 85
## 7986 85
## 8593 85
## 8852 85
## 9390 85
## 9709 85
## 9955 85
## 10695 85
## 11199 85
## 11445 85
## 11698 85
## 11851 85
## 12213 85
## 12928 85
## 13075 85
## 13589 85
## 13861 85
## 14228 85
## 14434 85
## 15232 85
## 16748 85
## 17368 85
## 17915 85
## 18625 85
## 18867 85
## 19040 85
## 19248 85
## 19490 85
## 19894 85
## 20036 85
## 20903 85
## 21383 85
## 21481 85
## 21718 85
## 22132 85
## 22417 85
## 22502 85
## 22710 85
## 22813 85
## 23267 85
## 23685 85
## 23889 85
## 24254 85
## 24588 85
## 24996 85
## 25737 85
## 25960 85
## 26210 85
## 26690 85
## 27563 85
## 27807 85
## 28018 85
## 28251 85
## 28392 85
## 28647 85
## 28767 85
## 28940 85
## 29183 85
## 29476 85
## 29726 85
## 30089 85
## 30828 85
## 31022 85
## 31353 85
## 31615 85
## 31815 85
## 32015 85
## 32340 85
## 32533 85
## 32628 85
## 32884 85
## 33104 85
## 33839 85
## 33944 85
## 34915 85
## 35151 85
## 35325 85
## 35517 85
## 35652 85
## 35890 85
## 36450 85
## 36821 85
## 37372 85
## 38035 85
## 38457 85
## 39467 85
## 39948 85
## 40749 85
## 41043 85
## 41395 85
## 42014 85
## 42565 85
## 42816 85
## 42966 85
## 43197 85
## 43377 85
## 43751 85
## 44774 85
## 45114 85
## 46129 85
## 46409 85
## 46829 85
## 47926 85
## 48236 85
## 48734 85
## 48850 85
## 48970 85
## 49255 85
## 50191 85
## 50497 85
## 50681 85
## 51316 85
## 51844 85
## 52266 85
## 52957 85
## 53951 85
## 54097 85
## 54244 85
## 54463 85
## 54682 85
## 55053 85
## 55227 85
## 56133 85
## 56258 85
## 57171 85
## 57319 85
## 57405 85
## 57467 85
## 57550 85
## 57680 85
## 57850 85
## 58082 85
## 58382 85
## 58512 85
## 58720 85
## 59192 85
## 59366 85
## 59605 85
## 60002 85
## 60239 85
## 60443 85
## 60627 85
## 61107 85
## 61328 85
## 61538 85
## 61569 85
## 62509 85
## 62954 85
## 63197 85
## 63314 85
## 63494 85
## 63657 85
## 63726 85
## 63861 85
## 64232 85
## 64488 85
## 64723 85
## 64897 85
## 64969 85
## 65265 85
## 65405 85
## 65476 85
## 65593 85
## 65694 85
## 65878 85
## 65972 85
## 66083 85
## 66285 85
## 66406 85
## 66534 85
## 66695 85
## 66755 85
## 66837 85
## 67011 85
## 67208 85
## 67271 85
## 67455 85
## 67532 85
## 67656 85
## 67817 85
## 68096 85
## 68228 85
## 68414 85
## 68536 85
## 68627 85
## 68710 85
## 70576 85
## 70798 85
## 71626 85
## 72003 85
## 72187 85
## 72526 85
## 73139 85
## 73251 85
## 73471 85
## 73938 85
## 74373 85
## 74446 85
## 74480 85
## 74595 85
## 74943 85
## 75065 85
## 75100 85
## 75294 85
## 75854 85
## 76009 85
## 76271 85
## 76394 85
## 76476 85
## 76598 85
## 76746 85
## 76918 85
## 77029 85
## 78672 85
## 78849 85
## 79225 85
## 79405 85
## 79508 85
## 79643 85
## 79716 85
## 79816 85
## 79920 85
## 79998 85
## 80135 85
## 81005 85
## 81225 85
## 82204 85
## 82942 85
## 84515 85
## 84762 85
## 85346 85
## 85714 85
## 86479 85
## 86591 85
## 86954 85
## 88963 85
## 89045 85
## 89103 85
## 90489 85
## 90953 85
## 91283 85
## 91784 85
## 91894 85
## 91955 85
## 92527 85
## 92626 85
## 93187 85
## 94119 85
## 94260 85
## 94378 85
## 94452 85
## 94861 85
## 94927 85
## 95005 85
## 95164 85
## 95380 85
## 95506 85
## 95665 85
## 95694 85
## 95891 85
## 95961 85
## 96124 85
## 96136 85
## 96147 85
## 96169 85
## 96179 85
## 96206 85
## 96220 85
## 96235 85
## 96242 85
## 37500 86
## 39468 86
## 39949 86
## 40750 86
## 41044 86
## 43752 86
## 44314 86
## 44775 86
## 46410 86
## 47345 86
## 49256 86
## 50318 86
## 50498 86
## 50682 86
## 51700 86
## 78043 86
## 87461 86
## 87815 86
## 88185 86
## 88201 86
## 96250 86
## 96255 86
## 463 87
## 691 87
## 1044 87
## 1408 87
## 1638 87
## 2522 87
## 3450 87
## 3545 87
## 4212 87
## 4548 87
## 5267 87
## 5406 87
## 5524 87
## 5611 87
## 6083 87
## 6217 87
## 6326 87
## 6461 87
## 7400 87
## 7578 87
## 8365 87
## 8489 87
## 8594 87
## 8971 87
## 9128 87
## 9236 87
## 9710 87
## 10160 87
## 10292 87
## 10696 87
## 11000 87
## 11200 87
## 11852 87
## 11989 87
## 12214 87
## 12472 87
## 12929 87
## 13298 87
## 13590 87
## 14435 87
## 15483 87
## 16367 87
## 16641 87
## 16749 87
## 17916 87
## 18300 87
## 18626 87
## 19041 87
## 19249 87
## 20259 87
## 21384 87
## 21482 87
## 21719 87
## 22133 87
## 22254 87
## 22503 87
## 22814 87
## 23177 87
## 23890 87
## 24589 87
## 25472 87
## 25738 87
## 25961 87
## 26211 87
## 26691 87
## 26921 87
## 27564 87
## 28019 87
## 28648 87
## 28941 87
## 29184 87
## 29477 87
## 30090 87
## 30455 87
## 30557 87
## 31023 87
## 31616 87
## 31816 87
## 32016 87
## 32341 87
## 33105 87
## 33945 87
## 34916 87
## 35152 87
## 35326 87
## 35518 87
## 35653 87
## 35756 87
## 36169 87
## 36822 87
## 37062 87
## 38698 87
## 38873 87
## 41599 87
## 41819 87
## 42817 87
## 46064 87
## 46411 87
## 48971 87
## 49446 87
## 49837 87
## 53602 87
## 53952 87
## 54464 87
## 54598 87
## 54683 87
## 54877 87
## 55228 87
## 55478 87
## 55679 87
## 55937 87
## 56259 87
## 56779 87
## 56850 87
## 57020 87
## 57320 87
## 58083 87
## 58513 87
## 59367 87
## 59606 87
## 60444 87
## 60628 87
## 62222 87
## 62955 87
## 63108 87
## 64657 87
## 64970 87
## 65594 87
## 66407 87
## 66838 87
## 67012 87
## 67456 87
## 67657 87
## 67818 87
## 68879 87
## 69354 87
## 69737 87
## 70016 87
## 70577 87
## 70799 87
## 71079 87
## 71234 87
## 71279 87
## 71371 87
## 71413 87
## 71898 87
## 72847 87
## 74210 87
## 74374 87
## 75361 87
## 75557 87
## 76272 87
## 77811 87
## 78099 87
## 78267 87
## 78850 87
## 79406 87
## 79509 87
## 79817 87
## 80136 87
## 80545 87
## 80806 87
## 81006 87
## 83874 87
## 84217 87
## 84366 87
## 84437 87
## 84526 87
## 84635 87
## 84680 87
## 84747 87
## 84919 87
## 85026 87
## 85042 87
## 85091 87
## 85185 87
## 85260 87
## 85801 87
## 86592 87
## 86862 87
## 87234 87
## 87394 87
## 89229 87
## 90061 87
## 91660 87
## 91716 87
## 92347 87
## 92804 87
## 93304 87
## 93522 87
## 93719 87
## 94302 87
## 94379 87
## 94501 87
## 94648 87
## 95258 87
## 96277 87
## 96284 87
## 96303 87
## 96312 87
## 96322 87
## 96332 87
## 96345 87
## 96364 87
## 96374 87
## 96392 87
## 96395 87
## 96408 87
## 96452 87
## 96455 87
## 40226 88
## 43753 88
## 46412 88
## 46830 88
## 47063 88
## 47861 88
## 48064 88
## 48237 88
## 48577 88
## 49257 88
## 49447 88
## 50319 88
## 52728 88
## 78673 88
## 82811 88
## 87945 88
## 88071 88
## 88502 88
## 88682 88
## 96466 88
## 44 89
## 1045 89
## 2523 89
## 2697 89
## 2896 89
## 4213 89
## 4472 89
## 6327 89
## 6462 89
## 8972 89
## 11446 89
## 11699 89
## 11990 89
## 12816 89
## 14436 89
## 15188 89
## 15484 89
## 15987 89
## 16750 89
## 17917 89
## 19600 89
## 20904 89
## 21087 89
## 24255 89
## 26212 89
## 27808 89
## 29727 89
## 30558 89
## 32534 89
## 32629 89
## 33106 89
## 33840 89
## 33946 89
## 36170 89
## 36371 89
## 36451 89
## 37220 89
## 38036 89
## 39146 89
## 40751 89
## 42015 89
## 42566 89
## 43198 89
## 46831 89
## 49448 89
## 54357 89
## 54964 89
## 55764 89
## 56260 89
## 60629 89
## 62712 89
## 67272 89
## 79090 89
## 79407 89
## 79644 89
## 79818 89
## 80222 89
## 80638 89
## 80957 89
## 81007 89
## 81359 89
## 81434 89
## 81527 89
## 83588 89
## 85347 89
## 85404 89
## 86593 89
## 87625 89
## 87946 89
## 89743 89
## 90269 89
## 90412 89
## 93650 89
## 94380 89
## 95304 89
## 976 90
## 1409 90
## 1639 90
## 1914 90
## 2015 90
## 2255 90
## 2698 90
## 3204 90
## 3292 90
## 3306 90
## 3372 90
## 3546 90
## 3834 90
## 4214 90
## 4473 90
## 4993 90
## 5037 90
## 5268 90
## 5714 90
## 5973 90
## 7078 90
## 7579 90
## 7938 90
## 8159 90
## 8238 90
## 8595 90
## 8853 90
## 9391 90
## 9711 90
## 10697 90
## 11447 90
## 11700 90
## 12215 90
## 13299 90
## 13591 90
## 13862 90
## 14437 90
## 15988 90
## 17794 90
## 17918 90
## 18521 90
## 18627 90
## 18868 90
## 19042 90
## 19250 90
## 19491 90
## 19601 90
## 19895 90
## 20037 90
## 20752 90
## 20870 90
## 20905 90
## 21088 90
## 21483 90
## 21720 90
## 21886 90
## 21988 90
## 22711 90
## 23119 90
## 23686 90
## 23800 90
## 24590 90
## 24997 90
## 25473 90
## 25610 90
## 25739 90
## 25962 90
## 26692 90
## 27328 90
## 27809 90
## 28252 90
## 28393 90
## 28649 90
## 28768 90
## 28942 90
## 29478 90
## 29728 90
## 29954 90
## 30091 90
## 30559 90
## 30829 90
## 31617 90
## 31817 90
## 32342 90
## 32535 90
## 32630 90
## 32885 90
## 33107 90
## 33497 90
## 33774 90
## 33841 90
## 34283 90
## 35891 90
## 36452 90
## 37373 90
## 37501 90
## 37803 90
## 39469 90
## 39950 90
## 40752 90
## 41045 90
## 41396 90
## 41600 90
## 42016 90
## 42292 90
## 43568 90
## 43754 90
## 44201 90
## 44776 90
## 46413 90
## 46832 90
## 47064 90
## 47584 90
## 47683 90
## 47927 90
## 48065 90
## 48141 90
## 48238 90
## 48735 90
## 48851 90
## 48972 90
## 49610 90
## 49838 90
## 50683 90
## 51845 90
## 52462 90
## 52729 90
## 52843 90
## 52958 90
## 53603 90
## 54465 90
## 54684 90
## 54965 90
## 55765 90
## 57933 90
## 58084 90
## 58383 90
## 58514 90
## 58941 90
## 59368 90
## 59607 90
## 60003 90
## 60240 90
## 60866 90
## 61329 90
## 61539 90
## 62006 90
## 62510 90
## 62713 90
## 63198 90
## 63315 90
## 63495 90
## 63658 90
## 63727 90
## 63862 90
## 64233 90
## 64357 90
## 64489 90
## 64553 90
## 64604 90
## 64658 90
## 64782 90
## 64839 90
## 64971 90
## 65187 90
## 65266 90
## 65406 90
## 65477 90
## 65810 90
## 65879 90
## 65973 90
## 66286 90
## 66535 90
## 66696 90
## 66839 90
## 67013 90
## 67209 90
## 67273 90
## 67367 90
## 67457 90
## 67658 90
## 67819 90
## 68097 90
## 68229 90
## 68415 90
## 68537 90
## 68628 90
## 68711 90
## 69227 90
## 69589 90
## 69952 90
## 70800 90
## 72880 90
## 72943 90
## 73140 90
## 73252 90
## 73312 90
## 73413 90
## 73472 90
## 73511 90
## 73585 90
## 73611 90
## 73786 90
## 73803 90
## 74481 90
## 74596 90
## 74944 90
## 75192 90
## 75295 90
## 75362 90
## 75482 90
## 75558 90
## 75727 90
## 75855 90
## 76222 90
## 76273 90
## 76477 90
## 76599 90
## 76747 90
## 76833 90
## 77512 90
## 78100 90
## 78674 90
## 78851 90
## 78999 90
## 79283 90
## 79454 90
## 79510 90
## 79645 90
## 79717 90
## 79819 90
## 80051 90
## 80490 90
## 80931 90
## 81008 90
## 81528 90
## 82812 90
## 83151 90
## 83589 90
## 85306 90
## 85348 90
## 85692 90
## 86318 90
## 86345 90
## 86799 90
## 86955 90
## 87112 90
## 87626 90
## 87816 90
## 88202 90
## 88455 90
## 88570 90
## 88663 90
## 88683 90
## 88701 90
## 88729 90
## 89046 90
## 89974 90
## 90102 90
## 90475 90
## 90583 90
## 90720 90
## 90784 90
## 90793 90
## 90815 90
## 90954 90
## 90989 90
## 91495 90
## 91631 90
## 91761 90
## 92589 90
## 93188 90
## 93440 90
## 93651 90
## 94602 90
## 94843 90
## 94928 90
## 95073 90
## 95417 90
## 95583 90
## 95666 90
## 95695 90
## 96469 90
## 96482 90
## 96492 90
## 96523 90
## 96534 90
## 96537 90
## 96582 90
## 96589 90
## 96612 90
## 96619 90
## 96620 90
## 96628 90
## 96649 90
## 96667 90
## 96673 90
## 3547 91
## 4629 91
## 5038 91
## 6463 91
## 7580 91
## 8596 91
## 9392 91
## 10698 91
## 11201 91
## 13592 91
## 13863 91
## 14229 91
## 17919 91
## 18522 91
## 18628 91
## 19043 91
## 19251 91
## 19492 91
## 20038 91
## 22504 91
## 23891 91
## 24591 91
## 25203 91
## 26213 91
## 26693 91
## 26922 91
## 27810 91
## 28650 91
## 28769 91
## 29185 91
## 31024 91
## 31354 91
## 32017 91
## 32343 91
## 35327 91
## 35892 91
## 40359 91
## 40469 91
## 44777 91
## 45539 91
## 46414 91
## 48239 91
## 48973 91
## 49611 91
## 49839 91
## 50320 91
## 50499 91
## 50684 91
## 51045 91
## 51317 91
## 51701 91
## 52093 91
## 52665 91
## 52959 91
## 55054 91
## 57551 91
## 58085 91
## 58515 91
## 58843 91
## 59608 91
## 62511 91
## 63316 91
## 63496 91
## 63728 91
## 63863 91
## 64097 91
## 64898 91
## 65267 91
## 65478 91
## 65695 91
## 65974 91
## 66408 91
## 66536 91
## 67014 91
## 67533 91
## 68098 91
## 68230 91
## 68538 91
## 70801 91
## 72856 91
## 72944 91
## 73552 91
## 73612 91
## 73722 91
## 73804 91
## 75559 91
## 76274 91
## 76834 91
## 77942 91
## 78044 91
## 78578 91
## 81226 91
## 82461 91
## 82813 91
## 91380 91
## 93745 91
## 95422 91
## 96470 91
## 45 92
## 464 92
## 692 92
## 890 92
## 1046 92
## 1410 92
## 1640 92
## 2016 92
## 2256 92
## 2524 92
## 2897 92
## 3548 92
## 4020 92
## 4215 92
## 4630 92
## 4883 92
## 5039 92
## 5193 92
## 5407 92
## 5525 92
## 5612 92
## 5715 92
## 5849 92
## 5892 92
## 6046 92
## 6084 92
## 6218 92
## 6328 92
## 6464 92
## 6996 92
## 7168 92
## 7294 92
## 7401 92
## 7581 92
## 7987 92
## 8366 92
## 8490 92
## 8597 92
## 8854 92
## 8973 92
## 9129 92
## 9237 92
## 9393 92
## 9956 92
## 10161 92
## 10293 92
## 10488 92
## 10633 92
## 10699 92
## 11001 92
## 11075 92
## 11202 92
## 11632 92
## 11853 92
## 11991 92
## 12216 92
## 12571 92
## 12708 92
## 12817 92
## 12930 92
## 13076 92
## 13300 92
## 13864 92
## 14438 92
## 14900 92
## 14974 92
## 15123 92
## 15233 92
## 15310 92
## 15485 92
## 15822 92
## 15852 92
## 15989 92
## 16368 92
## 16642 92
## 16751 92
## 17141 92
## 17251 92
## 17369 92
## 17564 92
## 18373 92
## 18629 92
## 19044 92
## 19252 92
## 20039 92
## 20260 92
## 20489 92
## 20569 92
## 20753 92
## 20871 92
## 21484 92
## 21721 92
## 21887 92
## 21989 92
## 22134 92
## 22315 92
## 22418 92
## 22505 92
## 22909 92
## 23178 92
## 23268 92
## 23566 92
## 23801 92
## 23892 92
## 24256 92
## 24592 92
## 24998 92
## 25204 92
## 25740 92
## 25963 92
## 26214 92
## 26694 92
## 26923 92
## 27198 92
## 27565 92
## 28185 92
## 28253 92
## 28394 92
## 28770 92
## 29186 92
## 29479 92
## 29955 92
## 30092 92
## 30257 92
## 30456 92
## 30560 92
## 30830 92
## 31025 92
## 31618 92
## 31818 92
## 32018 92
## 32536 92
## 32759 92
## 32886 92
## 33108 92
## 33377 92
## 33498 92
## 33668 92
## 33775 92
## 33947 92
## 34284 92
## 34471 92
## 34573 92
## 34746 92
## 34917 92
## 35153 92
## 35328 92
## 35519 92
## 35757 92
## 35893 92
## 36171 92
## 36453 92
## 36823 92
## 37063 92
## 37221 92
## 37374 92
## 37619 92
## 37804 92
## 38037 92
## 38163 92
## 38323 92
## 38458 92
## 38699 92
## 39147 92
## 39470 92
## 40106 92
## 40470 92
## 41189 92
## 41601 92
## 41820 92
## 42293 92
## 42634 92
## 42818 92
## 42967 92
## 43378 92
## 44315 92
## 44778 92
## 45115 92
## 45540 92
## 45985 92
## 47346 92
## 47684 92
## 48240 92
## 48974 92
## 49612 92
## 50685 92
## 52844 92
## 53408 92
## 53454 92
## 53604 92
## 53756 92
## 53790 92
## 53846 92
## 54056 92
## 54466 92
## 54566 92
## 54685 92
## 54878 92
## 55229 92
## 55479 92
## 55680 92
## 55766 92
## 55938 92
## 56261 92
## 56571 92
## 56671 92
## 56780 92
## 56851 92
## 57021 92
## 57172 92
## 57552 92
## 57934 92
## 58086 92
## 58384 92
## 58721 92
## 59032 92
## 59193 92
## 59369 92
## 59810 92
## 60445 92
## 60558 92
## 60630 92
## 60789 92
## 60852 92
## 60895 92
## 61033 92
## 61476 92
## 61654 92
## 62007 92
## 62512 92
## 62714 92
## 62956 92
## 65479 92
## 65696 92
## 66084 92
## 67015 92
## 67368 92
## 67659 92
## 68231 92
## 68416 92
## 68712 92
## 69084 92
## 69355 92
## 69881 92
## 69903 92
## 70017 92
## 70158 92
## 70232 92
## 70385 92
## 70578 92
## 70802 92
## 71235 92
## 71280 92
## 71372 92
## 71557 92
## 71627 92
## 71783 92
## 71969 92
## 72263 92
## 72455 92
## 72527 92
## 72661 92
## 73822 92
## 73885 92
## 74127 92
## 74211 92
## 74482 92
## 74774 92
## 74986 92
## 75101 92
## 75560 92
## 76010 92
## 76395 92
## 76600 92
## 76919 92
## 77079 92
## 77258 92
## 77323 92
## 77406 92
## 77604 92
## 77812 92
## 78101 92
## 78268 92
## 78852 92
## 79408 92
## 79476 92
## 79646 92
## 79718 92
## 79820 92
## 79999 92
## 80137 92
## 80285 92
## 80408 92
## 80546 92
## 80712 92
## 80743 92
## 80807 92
## 80857 92
## 80958 92
## 81009 92
## 81227 92
## 81435 92
## 81529 92
## 81827 92
## 82073 92
## 82345 92
## 82462 92
## 83239 92
## 83339 92
## 83462 92
## 83539 92
## 83705 92
## 84077 92
## 84261 92
## 84367 92
## 84438 92
## 84527 92
## 84566 92
## 84636 92
## 84681 92
## 84855 92
## 85002 92
## 85043 92
## 85611 92
## 85724 92
## 85853 92
## 85935 92
## 86120 92
## 86281 92
## 86433 92
## 86594 92
## 86755 92
## 86956 92
## 89007 92
## 89187 92
## 89230 92
## 89329 92
## 89476 92
## 89555 92
## 89670 92
## 90203 92
## 90270 92
## 90490 92
## 90687 92
## 90744 92
## 91020 92
## 91109 92
## 91218 92
## 91284 92
## 91349 92
## 91562 92
## 91691 92
## 92000 92
## 92095 92
## 92229 92
## 92348 92
## 92528 92
## 92694 92
## 92805 92
## 92997 92
## 93146 92
## 93278 92
## 93305 92
## 93364 92
## 93465 92
## 93523 92
## 93720 92
## 93828 92
## 94312 92
## 94381 92
## 94502 92
## 94684 92
## 94812 92
## 95788 92
## 95996 92
## 96493 92
## 96692 92
## 96709 92
## 96729 92
## 96744 92
## 96782 92
## 96794 92
## 96800 92
## 96806 92
## 96815 92
## 96845 92
## 46 93
## 2699 93
## 2898 93
## 16369 93
## 16752 93
## 17565 93
## 21089 93
## 33948 93
## 36172 93
## 42017 93
## 42294 93
## 43199 93
## 57173 93
## 62957 93
## 63109 93
## 85405 93
## 85612 93
## 86595 93
## 87235 93
## 89671 93
## 47 94
## 693 94
## 1047 94
## 1411 94
## 1641 94
## 2017 94
## 2257 94
## 3205 94
## 3549 94
## 3835 94
## 4021 94
## 4216 94
## 4631 94
## 4884 94
## 5040 94
## 5194 94
## 5269 94
## 5359 94
## 5408 94
## 5526 94
## 5663 94
## 5716 94
## 5974 94
## 6085 94
## 6329 94
## 6465 94
## 6997 94
## 7079 94
## 7169 94
## 7295 94
## 7402 94
## 7582 94
## 7988 94
## 8302 94
## 8367 94
## 8491 94
## 8598 94
## 8974 94
## 9130 94
## 9238 94
## 9394 94
## 9712 94
## 9957 94
## 10162 94
## 10424 94
## 10489 94
## 10700 94
## 11002 94
## 11076 94
## 11203 94
## 11448 94
## 11701 94
## 11992 94
## 12217 94
## 12473 94
## 12572 94
## 12709 94
## 12818 94
## 12931 94
## 13301 94
## 13593 94
## 13865 94
## 14230 94
## 14439 94
## 14901 94
## 14975 94
## 15311 94
## 15486 94
## 16370 94
## 16753 94
## 17566 94
## 17920 94
## 18630 94
## 18869 94
## 19045 94
## 19253 94
## 19964 94
## 20040 94
## 20261 94
## 21090 94
## 21485 94
## 21722 94
## 21888 94
## 21990 94
## 22135 94
## 22316 94
## 22419 94
## 22506 94
## 22910 94
## 23269 94
## 23687 94
## 23893 94
## 24257 94
## 24593 94
## 24999 94
## 25205 94
## 25474 94
## 25741 94
## 25964 94
## 26215 94
## 26695 94
## 26924 94
## 27199 94
## 27329 94
## 27566 94
## 27811 94
## 28020 94
## 28254 94
## 28395 94
## 28651 94
## 28771 94
## 28943 94
## 29187 94
## 29480 94
## 30258 94
## 30457 94
## 30561 94
## 30831 94
## 31026 94
## 31483 94
## 31619 94
## 31819 94
## 32019 94
## 32344 94
## 32760 94
## 32887 94
## 33109 94
## 33378 94
## 33499 94
## 33669 94
## 33949 94
## 34285 94
## 34472 94
## 34574 94
## 34747 94
## 34918 94
## 35154 94
## 35329 94
## 35654 94
## 35758 94
## 35894 94
## 36173 94
## 36824 94
## 37375 94
## 37805 94
## 38038 94
## 38164 94
## 38459 94
## 39148 94
## 39471 94
## 40107 94
## 40471 94
## 41602 94
## 41821 94
## 42819 94
## 42968 94
## 43755 94
## 44316 94
## 45350 94
## 47065 94
## 48241 94
## 48852 94
## 48975 94
## 50686 94
## 51553 94
## 51702 94
## 52094 94
## 52333 94
## 52463 94
## 52796 94
## 52845 94
## 52960 94
## 53494 94
## 53539 94
## 53605 94
## 53757 94
## 53791 94
## 53953 94
## 54245 94
## 54358 94
## 54686 94
## 54879 94
## 55077 94
## 55091 94
## 55153 94
## 55230 94
## 55571 94
## 55681 94
## 55767 94
## 55939 94
## 56134 94
## 56262 94
## 56852 94
## 57022 94
## 57174 94
## 57468 94
## 57553 94
## 57681 94
## 57851 94
## 57935 94
## 58087 94
## 58385 94
## 58722 94
## 59033 94
## 59194 94
## 59370 94
## 59609 94
## 59811 94
## 60004 94
## 60241 94
## 60357 94
## 60631 94
## 60896 94
## 61108 94
## 61540 94
## 61570 94
## 61705 94
## 61815 94
## 61884 94
## 62008 94
## 62223 94
## 62513 94
## 62715 94
## 63110 94
## 63864 94
## 64098 94
## 64972 94
## 65480 94
## 65697 94
## 65880 94
## 66085 94
## 66287 94
## 66409 94
## 67369 94
## 68019 94
## 68232 94
## 68417 94
## 68943 94
## 69128 94
## 69249 94
## 69356 94
## 69641 94
## 69738 94
## 69953 94
## 70123 94
## 70233 94
## 70386 94
## 70441 94
## 70579 94
## 70803 94
## 71016 94
## 71156 94
## 71281 94
## 71558 94
## 71784 94
## 71821 94
## 71899 94
## 71936 94
## 71970 94
## 72004 94
## 72188 94
## 72662 94
## 72945 94
## 73723 94
## 73939 94
## 74016 94
## 74045 94
## 74128 94
## 74375 94
## 74483 94
## 74775 94
## 74863 94
## 75102 94
## 75193 94
## 75254 94
## 75296 94
## 75483 94
## 75561 94
## 75728 94
## 75856 94
## 76011 94
## 76275 94
## 76396 94
## 77080 94
## 77324 94
## 77407 94
## 77813 94
## 78102 94
## 78269 94
## 78415 94
## 78675 94
## 78853 94
## 79000 94
## 79148 94
## 79376 94
## 79455 94
## 79921 94
## 80138 94
## 80223 94
## 80409 94
## 80491 94
## 80547 94
## 80602 94
## 80744 94
## 80808 94
## 80959 94
## 81010 94
## 81228 94
## 81360 94
## 81436 94
## 81491 94
## 81530 94
## 81755 94
## 81828 94
## 82117 94
## 82226 94
## 82814 94
## 83706 94
## 83875 94
## 83929 94
## 84368 94
## 84528 94
## 84603 94
## 84637 94
## 84763 94
## 84956 94
## 85003 94
## 85128 94
## 85186 94
## 85216 94
## 85261 94
## 85349 94
## 85613 94
## 85725 94
## 85802 94
## 86082 94
## 87075 94
## 87141 94
## 88964 94
## 89047 94
## 89330 94
## 89477 94
## 89609 94
## 89838 94
## 89975 94
## 90019 94
## 90062 94
## 90149 94
## 90271 94
## 90371 94
## 90601 94
## 90688 94
## 90877 94
## 91563 94
## 91675 94
## 91751 94
## 91808 94
## 91895 94
## 91956 94
## 92001 94
## 92096 94
## 92230 94
## 92806 94
## 92979 94
## 93401 94
## 93441 94
## 93466 94
## 93652 94
## 93941 94
## 94120 94
## 94313 94
## 94382 94
## 94649 94
## 94722 94
## 94929 94
## 95102 94
## 95259 94
## 95305 94
## 95619 94
## 95761 94
## 95861 94
## 95962 94
## 96409 94
## 96590 94
## 96674 94
## 96730 94
## 96745 94
## 96783 94
## 96851 94
## 96890 94
## 96916 94
## 96936 94
## 96966 94
## 97005 94
## 97030 94
## 97034 94
## 97046 94
## 97060 94
## 48 95
## 465 95
## 592 95
## 1048 95
## 1412 95
## 2700 95
## 2899 95
## 3550 95
## 4022 95
## 4217 95
## 4474 95
## 4632 95
## 5041 95
## 5195 95
## 5270 95
## 5850 95
## 6219 95
## 6330 95
## 6466 95
## 6998 95
## 7080 95
## 7989 95
## 8368 95
## 8492 95
## 8599 95
## 8855 95
## 9131 95
## 9239 95
## 9395 95
## 9713 95
## 9958 95
## 10163 95
## 10294 95
## 10490 95
## 10634 95
## 10701 95
## 11204 95
## 11449 95
## 11993 95
## 12218 95
## 12474 95
## 12573 95
## 12932 95
## 13077 95
## 13302 95
## 13594 95
## 13866 95
## 14231 95
## 14902 95
## 14976 95
## 15428 95
## 15487 95
## 15990 95
## 16754 95
## 17921 95
## 18301 95
## 18631 95
## 18870 95
## 19254 95
## 19602 95
## 19781 95
## 19831 95
## 19896 95
## 19965 95
## 20041 95
## 20262 95
## 21091 95
## 21486 95
## 22507 95
## 23270 95
## 23688 95
## 23894 95
## 24258 95
## 24594 95
## 25000 95
## 25206 95
## 25475 95
## 25611 95
## 25742 95
## 25965 95
## 26216 95
## 26696 95
## 26925 95
## 27330 95
## 27567 95
## 28021 95
## 28255 95
## 28396 95
## 28772 95
## 28944 95
## 29188 95
## 29481 95
## 29729 95
## 29956 95
## 30093 95
## 30259 95
## 30562 95
## 30832 95
## 31027 95
## 31355 95
## 31534 95
## 31620 95
## 31820 95
## 32020 95
## 32345 95
## 32888 95
## 33110 95
## 33670 95
## 34575 95
## 34748 95
## 34919 95
## 35155 95
## 35655 95
## 35759 95
## 35895 95
## 36454 95
## 36825 95
## 37064 95
## 37376 95
## 38460 95
## 39149 95
## 40472 95
## 41822 95
## 42018 95
## 42969 95
## 43756 95
## 44779 95
## 45021 95
## 45541 95
## 50687 95
## 52846 95
## 52961 95
## 53540 95
## 53887 95
## 54098 95
## 54359 95
## 54687 95
## 54880 95
## 55055 95
## 55092 95
## 55154 95
## 55231 95
## 55421 95
## 55542 95
## 55572 95
## 55768 95
## 55940 95
## 56135 95
## 56263 95
## 57375 95
## 57406 95
## 57469 95
## 57682 95
## 57852 95
## 58030 95
## 58088 95
## 59034 95
## 59195 95
## 59371 95
## 59812 95
## 60005 95
## 60201 95
## 60242 95
## 60358 95
## 60446 95
## 60559 95
## 60632 95
## 61330 95
## 61477 95
## 61571 95
## 62009 95
## 62224 95
## 62383 95
## 62514 95
## 63865 95
## 64234 95
## 64659 95
## 64899 95
## 64973 95
## 65268 95
## 65811 95
## 65881 95
## 65975 95
## 66288 95
## 66410 95
## 66537 95
## 66840 95
## 67016 95
## 67370 95
## 67534 95
## 67820 95
## 68233 95
## 68828 95
## 69045 95
## 69178 95
## 69357 95
## 69739 95
## 69904 95
## 70018 95
## 70359 95
## 70580 95
## 70804 95
## 71189 95
## 71937 95
## 72005 95
## 72264 95
## 72528 95
## 72663 95
## 73940 95
## 73978 95
## 74046 95
## 74129 95
## 74484 95
## 74776 95
## 74987 95
## 75363 95
## 75429 95
## 75484 95
## 75562 95
## 76012 95
## 76276 95
## 76601 95
## 77081 95
## 77211 95
## 77408 95
## 77456 95
## 77814 95
## 78045 95
## 78854 95
## 79284 95
## 79511 95
## 79647 95
## 79719 95
## 80000 95
## 80139 95
## 80224 95
## 80410 95
## 80809 95
## 81361 95
## 81437 95
## 81531 95
## 81829 95
## 82346 95
## 83930 95
## 84331 95
## 84439 95
## 84617 95
## 84748 95
## 85406 95
## 86505 95
## 86957 95
## 87096 95
## 87777 95
## 88265 95
## 90150 95
## 90663 95
## 90853 95
## 90955 95
## 91095 95
## 92529 95
## 93524 95
## 94685 95
## 94723 95
## 94930 95
## 95225 95
## 95423 95
## 95553 95
## 96410 95
## 96675 95
## 96852 95
## 96917 95
## 96967 95
## 97006 95
## 97092 95
## 97100 95
## 97148 95
## 97161 95
## 97179 95
## 49 96
## 1049 96
## 1413 96
## 3836 96
## 5717 96
## 6467 96
## 7583 96
## 8600 96
## 10702 96
## 11450 96
## 11854 96
## 12219 96
## 12574 96
## 13303 96
## 13867 96
## 14440 96
## 17922 96
## 20263 96
## 21487 96
## 21991 96
## 23689 96
## 24259 96
## 24595 96
## 25207 96
## 26217 96
## 26697 96
## 26926 96
## 27331 96
## 27812 96
## 28256 96
## 28945 96
## 29189 96
## 29482 96
## 29957 96
## 30260 96
## 33111 96
## 35896 96
## 36826 96
## 40473 96
## 48976 96
## 58089 96
## 59610 96
## 60202 96
## 62515 96
## 63199 96
## 63317 96
## 63866 96
## 64099 96
## 64358 96
## 66841 96
## 67458 96
## 68020 96
## 75225 96
## 77325 96
## 95980 96
## 97201 96
## 50 97
## 1050 97
## 3837 97
## 4633 97
## 5196 97
## 6468 97
## 9396 97
## 10703 97
## 11205 97
## 11451 97
## 12220 97
## 13304 97
## 13595 97
## 13868 97
## 14441 97
## 15823 97
## 18632 97
## 18871 97
## 19255 97
## 21488 97
## 23271 97
## 23567 97
## 23895 97
## 24260 97
## 24596 97
## 25001 97
## 26927 97
## 27568 97
## 28186 97
## 28397 97
## 28652 97
## 28773 97
## 28946 97
## 29190 97
## 29730 97
## 30563 97
## 31028 97
## 31356 97
## 31621 97
## 33950 97
## 34920 97
## 52962 97
## 56672 97
## 58090 97
## 58723 97
## 58844 97
## 58942 97
## 59035 97
## 59196 97
## 59528 97
## 59611 97
## 61655 97
## 63729 97
## 64100 97
## 64974 97
## 68099 97
## 72946 97
## 76013 97
## 76748 97
## 76920 97
## 88869 97
## 95424 97
## 4218 98
## 6086 98
## 9714 98
## 11994 98
## 15853 98
## 21385 98
## 22815 98
## 23272 98
## 24261 98
## 28947 98
## 31821 98
## 32021 98
## 32346 98
## 49449 98
## 49613 98
## 58724 98
## 59612 98
## 65595 98
## 66842 98
## 67274 98
## 67821 98
## 74376 98
## 76014 98
## 76478 98
## 82205 98
## 89811 98
## 91381 98
## 51 99
## 593 99
## 694 99
## 1051 99
## 2018 99
## 2258 99
## 3551 99
## 4219 99
## 4634 99
## 6469 99
## 7584 99
## 8601 99
## 8975 99
## 9397 99
## 10704 99
## 12710 99
## 13869 99
## 14442 99
## 15047 99
## 15189 99
## 15488 99
## 15854 99
## 15991 99
## 16371 99
## 16643 99
## 16755 99
## 17252 99
## 17370 99
## 17567 99
## 20570 99
## 23273 99
## 23896 99
## 24262 99
## 24597 99
## 26218 99
## 26698 99
## 29483 99
## 30458 99
## 30833 99
## 31029 99
## 32022 99
## 35656 99
## 36455 99
## 36827 99
## 37222 99
## 37806 99
## 38039 99
## 38943 99
## 39472 99
## 40474 99
## 41603 99
## 41823 99
## 42019 99
## 42295 99
## 42970 99
## 44317 99
## 45022 99
## 45542 99
## 46415 99
## 47928 99
## 48142 99
## 48242 99
## 48578 99
## 49614 99
## 50321 99
## 50688 99
## 50959 99
## 51046 99
## 51161 99
## 51703 99
## 52034 99
## 52267 99
## 52334 99
## 52730 99
## 53209 99
## 53409 99
## 53606 99
## 53792 99
## 55769 99
## 55941 99
## 56264 99
## 56572 99
## 56781 99
## 56853 99
## 57266 99
## 57936 99
## 59372 99
## 61034 99
## 62010 99
## 62225 99
## 62384 99
## 62716 99
## 66086 99
## 69250 99
## 69358 99
## 72265 99
## 72456 99
## 72664 99
## 73823 99
## 74212 99
## 75563 99
## 77513 99
## 77605 99
## 77943 99
## 78270 99
## 79091 99
## 81756 99
## 81830 99
## 82463 99
## 82943 99
## 83590 99
## 83707 99
## 84369 99
## 84638 99
## 85407 99
## 86015 99
## 86083 99
## 86596 99
## 87395 99
## 87504 99
## 88351 99
## 89231 99
## 89556 99
## 90745 99
## 91053 99
## 91157 99
## 92349 99
## 93525 99
## 93653 99
## 93829 99
## 94186 99
## 94503 99
## 95306 99
## 95519 99
## 39473 100
## 40680 100
## 40753 100
## 41046 100
## 41190 100
## 41397 100
## 43757 100
## 44318 100
## 44780 100
## 45240 100
## 45543 100
## 46416 100
## 47066 100
## 47929 100
## 48243 100
## 48579 100
## 48736 100
## 49450 100
## 49840 100
## 50322 100
## 50689 100
## 51318 100
## 51846 100
## 52035 100
## 52209 100
## 52335 100
## 52464 100
## 52592 100
## 52731 100
## 52797 100
## 77606 100
## 78579 100
## 78676 100
## 78818 100
## 82815 100
## 82944 100
## 83112 100
## 87585 100
## 87817 100
## 87947 100
## 88056 100
## 88072 100
## 88123 100
## 88266 100
## 88352 100
## 88503 100
## 88571 100
## 88702 100
## 88751 100
## 91496 100
## 97218 100
## 97224 100
## 97232 100
## 97233 100
## 97234 100
## 97240 100
## 52 101
## 1052 101
## 4023 101
## 6470 101
## 15312 101
## 15489 101
## 15992 101
## 16372 101
## 16756 101
## 17142 101
## 17253 101
## 17568 101
## 20571 101
## 21092 101
## 26219 101
## 33951 101
## 34473 101
## 36456 101
## 38700 101
## 38944 101
## 39150 101
## 42635 101
## 42727 101
## 42820 101
## 42971 101
## 43379 101
## 44319 101
## 47347 101
## 53793 101
## 53847 101
## 56265 101
## 57023 101
## 57175 101
## 62011 101
## 62226 101
## 69359 101
## 72457 101
## 72529 101
## 72665 101
## 80286 101
## 81831 101
## 83340 101
## 83708 101
## 85408 101
## 85558 101
## 85614 101
## 85936 101
## 86084 101
## 86121 101
## 86379 101
## 86434 101
## 86597 101
## 86756 101
## 87236 101
## 89104 101
## 89232 101
## 89331 101
## 91054 101
## 91185 101
## 91896 101
## 92807 101
## 93027 101
## 93526 101
## 93787 101
## 93920 101
## 94778 101
## 95520 101
## 53 102
## 466 102
## 695 102
## 891 102
## 1053 102
## 2019 102
## 2525 102
## 4885 102
## 5409 102
## 6087 102
## 6331 102
## 6471 102
## 7170 102
## 7403 102
## 7585 102
## 8369 102
## 8976 102
## 9132 102
## 9240 102
## 9715 102
## 10164 102
## 10295 102
## 10705 102
## 11206 102
## 11452 102
## 11995 102
## 12221 102
## 12575 102
## 12933 102
## 13078 102
## 13305 102
## 13870 102
## 14232 102
## 14903 102
## 14977 102
## 15993 102
## 16373 102
## 16757 102
## 17923 102
## 20264 102
## 21489 102
## 21723 102
## 22508 102
## 22816 102
## 22911 102
## 23179 102
## 23274 102
## 23897 102
## 24263 102
## 24598 102
## 25002 102
## 25208 102
## 26220 102
## 26699 102
## 26928 102
## 27200 102
## 27332 102
## 27569 102
## 27813 102
## 28022 102
## 28948 102
## 29191 102
## 30261 102
## 30459 102
## 30564 102
## 31030 102
## 31622 102
## 32023 102
## 32347 102
## 33379 102
## 33500 102
## 33671 102
## 33952 102
## 34576 102
## 34749 102
## 34921 102
## 35156 102
## 35330 102
## 35520 102
## 35760 102
## 35897 102
## 36174 102
## 37065 102
## 37377 102
## 37807 102
## 38165 102
## 39474 102
## 40108 102
## 40360 102
## 40475 102
## 40754 102
## 41191 102
## 41398 102
## 41604 102
## 43758 102
## 44320 102
## 45544 102
## 46130 102
## 46417 102
## 46833 102
## 47067 102
## 47685 102
## 48244 102
## 48737 102
## 49258 102
## 49615 102
## 50323 102
## 50500 102
## 50690 102
## 51162 102
## 51554 102
## 51704 102
## 52624 102
## 53210 102
## 53410 102
## 53982 102
## 54599 102
## 54688 102
## 54881 102
## 55093 102
## 55232 102
## 55480 102
## 55573 102
## 55942 102
## 56266 102
## 56782 102
## 57024 102
## 57554 102
## 59036 102
## 59197 102
## 59613 102
## 59813 102
## 60006 102
## 60156 102
## 60203 102
## 60243 102
## 60359 102
## 60447 102
## 60560 102
## 62958 102
## 65481 102
## 65596 102
## 66411 102
## 66538 102
## 67017 102
## 67771 102
## 67974 102
## 68629 102
## 69129 102
## 69360 102
## 69625 102
## 69740 102
## 70019 102
## 70234 102
## 70546 102
## 70581 102
## 70805 102
## 71282 102
## 71373 102
## 71414 102
## 72006 102
## 72530 102
## 72666 102
## 73553 102
## 74047 102
## 74377 102
## 74747 102
## 74777 102
## 75485 102
## 75729 102
## 76015 102
## 76921 102
## 77082 102
## 77177 102
## 77212 102
## 77259 102
## 77457 102
## 78103 102
## 78271 102
## 78416 102
## 78580 102
## 80411 102
## 81011 102
## 81188 102
## 82227 102
## 82464 102
## 82945 102
## 83496 102
## 83931 102
## 84078 102
## 84262 102
## 84567 102
## 84764 102
## 84957 102
## 85217 102
## 85262 102
## 85726 102
## 86016 102
## 86122 102
## 86380 102
## 86435 102
## 87022 102
## 87237 102
## 87818 102
## 88267 102
## 89478 102
## 90204 102
## 91350 102
## 91564 102
## 92739 102
## 92953 102
## 93830 102
## 94459 102
## 97101 102
## 97248 102
## 97266 102
## 4024 103
## 6472 103
## 7586 103
## 9398 103
## 13306 103
## 13871 103
## 15994 103
## 16374 103
## 16758 103
## 17795 103
## 17924 103
## 20265 103
## 26221 103
## 31031 103
## 32348 103
## 33953 103
## 35898 103
## 38461 103
## 38701 103
## 38945 103
## 39151 103
## 45545 103
## 46418 103
## 46834 103
## 56267 103
## 62012 103
## 64418 103
## 68234 103
## 94650 103
## 594 104
## 1054 104
## 1642 104
## 1915 104
## 2526 104
## 2900 104
## 4220 104
## 6473 104
## 14443 104
## 15490 104
## 15995 104
## 16759 104
## 17143 104
## 17371 104
## 17796 104
## 17925 104
## 18489 104
## 20572 104
## 20906 104
## 26222 104
## 33954 104
## 36175 104
## 36457 104
## 37808 104
## 38040 104
## 38166 104
## 38324 104
## 38462 104
## 38946 104
## 39152 104
## 39475 104
## 40755 104
## 41047 104
## 41192 104
## 41399 104
## 41605 104
## 42296 104
## 42972 104
## 43200 104
## 43569 104
## 43759 104
## 44202 104
## 44321 104
## 44781 104
## 45023 104
## 45351 104
## 45546 104
## 46312 104
## 46419 104
## 46835 104
## 47068 104
## 47686 104
## 47930 104
## 48066 104
## 48143 104
## 48245 104
## 48738 104
## 50068 104
## 50192 104
## 50501 104
## 50691 104
## 51001 104
## 51047 104
## 51163 104
## 51319 104
## 51847 104
## 52036 104
## 52268 104
## 52336 104
## 52465 104
## 52732 104
## 56268 104
## 56616 104
## 57025 104
## 57176 104
## 61035 104
## 62013 104
## 62717 104
## 66087 104
## 68865 104
## 69251 104
## 69361 104
## 72266 104
## 74213 104
## 77607 104
## 80052 104
## 82118 104
## 82465 104
## 82816 104
## 82946 104
## 83341 104
## 85727 104
## 85854 104
## 86017 104
## 86381 104
## 86598 104
## 86800 104
## 87396 104
## 88353 104
## 89233 104
## 91285 104
## 91957 104
## 92002 104
## 92097 104
## 92350 104
## 92479 104
## 92808 104
## 95196 104
## 97061 104
## 97292 104
## 39476 105
## 40361 105
## 40756 105
## 41048 105
## 41193 105
## 41400 105
## 43760 105
## 44322 105
## 47069 105
## 47687 105
## 48246 105
## 50069 105
## 50502 105
## 51320 105
## 51848 105
## 52095 105
## 52466 105
## 78677 105
## 82466 105
## 82947 105
## 83113 105
## 87948 105
## 54 106
## 1414 106
## 1643 106
## 2259 106
## 2701 106
## 2901 106
## 3552 106
## 4221 106
## 4635 106
## 5975 106
## 6220 106
## 8160 106
## 8602 106
## 9399 106
## 9716 106
## 10491 106
## 11207 106
## 11702 106
## 11996 106
## 13596 106
## 14444 106
## 15190 106
## 22509 106
## 22712 106
## 23053 106
## 28398 106
## 28949 106
## 29484 106
## 32024 106
## 32349 106
## 32631 106
## 33112 106
## 34286 106
## 37739 106
## 41606 106
## 41824 106
## 42020 106
## 42728 106
## 43570 106
## 43761 106
## 48247 106
## 48977 106
## 59614 106
## 61478 106
## 64900 106
## 68100 106
## 70582 106
## 71628 106
## 71822 106
## 75297 106
## 76602 106
## 78104 106
## 78855 106
## 79285 106
## 79456 106
## 80001 106
## 81532 106
## 84263 106
## 86070 106
## 89048 106
## 90537 106
## 92809 106
## 95197 106
## 97298 106
## 39477 107
## 39951 107
## 40362 107
## 40757 107
## 41194 107
## 43762 107
## 44323 107
## 46420 107
## 47070 107
## 47490 107
## 48144 107
## 48248 107
## 49451 107
## 49616 107
## 49841 107
## 50193 107
## 50503 107
## 51321 107
## 51849 107
## 88622 107
## 97303 107
## 55 108
## 1055 108
## 1916 108
## 2527 108
## 2702 108
## 3451 108
## 6474 108
## 14445 108
## 16760 108
## 17372 108
## 17569 108
## 17926 108
## 19603 108
## 26223 108
## 33955 108
## 36458 108
## 38702 108
## 38947 108
## 42021 108
## 42821 108
## 42973 108
## 43380 108
## 45024 108
## 45547 108
## 47348 108
## 49259 108
## 56269 108
## 62014 108
## 67018 108
## 80359 108
## 81687 108
## 82467 108
## 89557 108
## 56 109
## 696 109
## 892 109
## 1056 109
## 1415 109
## 1644 109
## 2020 109
## 2260 109
## 2902 109
## 3206 109
## 3553 109
## 4222 109
## 4636 109
## 4886 109
## 5042 109
## 5718 109
## 6475 109
## 7171 109
## 7296 109
## 7404 109
## 7587 109
## 7990 109
## 8370 109
## 8493 109
## 8603 109
## 9133 109
## 9241 109
## 9400 109
## 9717 109
## 9959 109
## 10165 109
## 10492 109
## 10706 109
## 11077 109
## 11208 109
## 11997 109
## 12222 109
## 12475 109
## 12576 109
## 12934 109
## 13079 109
## 13307 109
## 13597 109
## 13872 109
## 14446 109
## 14904 109
## 15491 109
## 15996 109
## 16375 109
## 16761 109
## 17144 109
## 17570 109
## 17927 109
## 18523 109
## 20266 109
## 20573 109
## 21093 109
## 21724 109
## 21992 109
## 22136 109
## 22255 109
## 22317 109
## 22510 109
## 22713 109
## 22912 109
## 23275 109
## 23898 109
## 24264 109
## 24599 109
## 25003 109
## 25209 109
## 25476 109
## 25612 109
## 25743 109
## 25966 109
## 26224 109
## 26929 109
## 27570 109
## 28399 109
## 29192 109
## 29485 109
## 30262 109
## 30565 109
## 31032 109
## 31822 109
## 32025 109
## 32350 109
## 32761 109
## 32889 109
## 33113 109
## 33501 109
## 33956 109
## 34287 109
## 34577 109
## 34750 109
## 34922 109
## 35157 109
## 35331 109
## 35521 109
## 35761 109
## 35899 109
## 36459 109
## 36828 109
## 37066 109
## 37809 109
## 38167 109
## 38463 109
## 38703 109
## 39153 109
## 39478 109
## 40476 109
## 42636 109
## 42822 109
## 42974 109
## 44324 109
## 45116 109
## 45548 109
## 45986 109
## 48853 109
## 48978 109
## 49617 109
## 49842 109
## 51164 109
## 52847 109
## 52963 109
## 53211 109
## 53495 109
## 53607 109
## 53983 109
## 54246 109
## 54689 109
## 54882 109
## 55022 109
## 55094 109
## 55155 109
## 55233 109
## 55422 109
## 55770 109
## 55943 109
## 56270 109
## 56783 109
## 56854 109
## 57026 109
## 57267 109
## 58091 109
## 58386 109
## 59037 109
## 59937 109
## 60448 109
## 60633 109
## 60790 109
## 62227 109
## 62718 109
## 62959 109
## 66088 109
## 67535 109
## 68235 109
## 68713 109
## 69179 109
## 69317 109
## 69362 109
## 69741 109
## 69905 109
## 70235 109
## 70521 109
## 70583 109
## 70806 109
## 71157 109
## 71283 109
## 71823 109
## 72007 109
## 72458 109
## 72667 109
## 74130 109
## 74214 109
## 74485 109
## 74778 109
## 76016 109
## 77083 109
## 77260 109
## 77815 109
## 80140 109
## 80548 109
## 81012 109
## 81229 109
## 81533 109
## 81832 109
## 82468 109
## 83240 109
## 83591 109
## 83709 109
## 84682 109
## 84920 109
## 84958 109
## 85218 109
## 85263 109
## 85615 109
## 85728 109
## 85937 109
## 86123 109
## 86282 109
## 86599 109
## 86863 109
## 87238 109
## 87397 109
## 89105 109
## 89332 109
## 89479 109
## 89558 109
## 89897 109
## 90063 109
## 90272 109
## 91055 109
## 91351 109
## 92003 109
## 92098 109
## 92191 109
## 92231 109
## 92351 109
## 92695 109
## 92810 109
## 93058 109
## 93189 109
## 93994 109
## 94383 109
## 95620 109
## 95728 109
## 95997 109
## 96062 109
## 96746 109
## 97007 109
## 97102 109
## 97310 109
## 97346 109
## 467 110
## 2021 110
## 2261 110
## 3554 110
## 4637 110
## 4887 110
## 5043 110
## 5271 110
## 5410 110
## 5664 110
## 5851 110
## 7297 110
## 7405 110
## 7588 110
## 8494 110
## 8604 110
## 9134 110
## 9242 110
## 9401 110
## 10493 110
## 10707 110
## 11209 110
## 11998 110
## 12935 110
## 13308 110
## 22511 110
## 24265 110
## 27201 110
## 28023 110
## 29193 110
## 29486 110
## 30566 110
## 31033 110
## 32537 110
## 32890 110
## 34578 110
## 35332 110
## 35522 110
## 35657 110
## 35762 110
## 36829 110
## 37810 110
## 39479 110
## 41401 110
## 44325 110
## 45549 110
## 46421 110
## 46836 110
## 47688 110
## 48249 110
## 48580 110
## 50194 110
## 50324 110
## 50504 110
## 51165 110
## 51322 110
## 51705 110
## 51850 110
## 53455 110
## 53541 110
## 53608 110
## 54057 110
## 54600 110
## 54690 110
## 55234 110
## 55528 110
## 55682 110
## 55771 110
## 55944 110
## 57937 110
## 58092 110
## 60634 110
## 61752 110
## 69085 110
## 69742 110
## 70584 110
## 70807 110
## 71017 110
## 71236 110
## 71284 110
## 71415 110
## 71900 110
## 71938 110
## 75103 110
## 75564 110
## 76397 110
## 77944 110
## 78105 110
## 78535 110
## 78581 110
## 78856 110
## 80141 110
## 80549 110
## 81013 110
## 81189 110
## 81534 110
## 82469 110
## 82948 110
## 83480 110
## 83876 110
## 84332 110
## 84370 110
## 84529 110
## 84683 110
## 84749 110
## 84856 110
## 85044 110
## 85129 110
## 85187 110
## 86864 110
## 87505 110
## 88354 110
## 88703 110
## 89839 110
## 90064 110
## 90205 110
## 93899 110
## 94686 110
## 96304 110
## 96333 110
## 96411 110
## 96676 110
## 96747 110
## 96891 110
## 97008 110
## 97103 110
## 97149 110
## 97180 110
## 97365 110
## 97372 110
## 97378 110
## 97397 110
## 97409 110
## 37502 111
## 39480 111
## 40758 111
## 41402 111
## 43763 111
## 46837 111
## 47071 111
## 47349 111
## 47491 111
## 47689 111
## 48067 111
## 48250 111
## 48581 111
## 49452 111
## 50325 111
## 50692 111
## 51323 111
## 51851 111
## 52210 111
## 52733 111
## 88124 111
## 88456 111
## 92725 111
## 37811 112
## 39481 112
## 40759 112
## 41403 112
## 43764 112
## 44782 112
## 45550 112
## 46422 112
## 46838 112
## 47072 112
## 47585 112
## 47690 112
## 47931 112
## 48145 112
## 48251 112
## 48582 112
## 48739 112
## 49453 112
## 49618 112
## 49843 112
## 50195 112
## 50505 112
## 50693 112
## 51048 112
## 51166 112
## 51324 112
## 51789 112
## 52337 112
## 52467 112
## 52734 112
## 77608 112
## 78582 112
## 78678 112
## 82470 112
## 82817 112
## 82949 112
## 83177 112
## 87819 112
## 88125 112
## 88186 112
## 88256 112
## 88664 112
## 89777 112
## 91286 112
## 95046 112
## 1057 113
## 1645 113
## 6476 113
## 14447 113
## 15855 113
## 17373 113
## 17797 113
## 17928 113
## 33957 113
## 36460 113
## 37503 113
## 37812 113
## 38041 113
## 38948 113
## 39154 113
## 39482 113
## 40272 113
## 41607 113
## 42567 113
## 43765 113
## 44326 113
## 44783 113
## 45241 113
## 45551 113
## 46313 113
## 46423 113
## 49260 113
## 49454 113
## 49619 113
## 49844 113
## 50070 113
## 50196 113
## 50326 113
## 50506 113
## 50694 113
## 50960 113
## 51325 113
## 58360 113
## 66089 113
## 72459 113
## 77609 113
## 81833 113
## 87586 113
## 90224 113
## 91056 113
## 91096 113
## 91186 113
## 97415 113
## 97423 113
## 7589 114
## 12223 114
## 13309 114
## 13873 114
## 14448 114
## 19256 114
## 21490 114
## 21993 114
## 22137 114
## 23276 114
## 23802 114
## 23899 114
## 25004 114
## 25210 114
## 25744 114
## 25967 114
## 26700 114
## 26930 114
## 27571 114
## 28400 114
## 29194 114
## 29731 114
## 30263 114
## 31034 114
## 32026 114
## 34414 114
## 40760 114
## 48979 114
## 52964 114
## 62516 114
## 63730 114
## 63867 114
## 64235 114
## 64975 114
## 65812 114
## 65976 114
## 67536 114
## 67772 114
## 68236 114
## 73666 114
## 74988 114
## 75255 114
## 75857 114
## 76017 114
## 76479 114
## 77816 114
## 86958 114
## 95024 114
## 697 115
## 1058 115
## 1416 115
## 1646 115
## 2022 115
## 2262 115
## 2528 115
## 3373 115
## 3555 115
## 3838 115
## 5197 115
## 5272 115
## 6221 115
## 6477 115
## 7590 115
## 9402 115
## 10494 115
## 10708 115
## 11210 115
## 11453 115
## 12224 115
## 12711 115
## 12819 115
## 13310 115
## 13874 115
## 14449 115
## 15997 115
## 16762 115
## 17374 115
## 17929 115
## 19604 115
## 23900 115
## 24600 115
## 25211 115
## 25477 115
## 25613 115
## 26225 115
## 26931 115
## 27333 115
## 27814 115
## 28653 115
## 33502 115
## 34923 115
## 35158 115
## 35900 115
## 36461 115
## 37223 115
## 40477 115
## 40761 115
## 41608 115
## 42692 115
## 42975 115
## 43381 115
## 47073 115
## 47932 115
## 48854 115
## 52965 115
## 59038 115
## 60007 115
## 61331 115
## 61656 115
## 61885 115
## 62015 115
## 62719 115
## 63318 115
## 64976 115
## 66090 115
## 66539 115
## 68630 115
## 69228 115
## 70159 115
## 72531 115
## 74215 115
## 75104 115
## 75194 115
## 75858 115
## 76277 115
## 77326 115
## 78106 115
## 79149 115
## 81757 115
## 83592 115
## 83710 115
## 84119 115
## 86801 115
## 89008 115
## 90413 115
## 90878 115
## 91219 115
## 91856 115
## 94187 115
## 94314 115
## 1059 116
## 2023 116
## 3374 116
## 6088 116
## 6478 116
## 7591 116
## 8856 116
## 15856 116
## 17375 116
## 17930 116
## 19605 116
## 20490 116
## 25968 116
## 26226 116
## 27334 116
## 27815 116
## 28401 116
## 28774 116
## 29195 116
## 30094 116
## 30834 116
## 33842 116
## 38042 116
## 38168 116
## 38325 116
## 38464 116
## 38704 116
## 38845 116
## 38949 116
## 39155 116
## 39483 116
## 39952 116
## 40109 116
## 40273 116
## 40363 116
## 40762 116
## 41049 116
## 41195 116
## 41404 116
## 42022 116
## 43571 116
## 43766 116
## 44327 116
## 44784 116
## 45242 116
## 45552 116
## 45987 116
## 46065 116
## 46131 116
## 46314 116
## 46424 116
## 46839 116
## 47074 116
## 47350 116
## 47586 116
## 47691 116
## 47933 116
## 48068 116
## 48252 116
## 48583 116
## 49620 116
## 49845 116
## 50071 116
## 50197 116
## 50327 116
## 50695 116
## 51049 116
## 51167 116
## 51326 116
## 51852 116
## 52096 116
## 52211 116
## 52338 116
## 52468 116
## 52593 116
## 52625 116
## 52798 116
## 53212 116
## 55078 116
## 57938 116
## 63319 116
## 64101 116
## 66540 116
## 67019 116
## 67459 116
## 68714 116
## 68829 116
## 69046 116
## 71629 116
## 72532 116
## 72947 116
## 73141 116
## 73313 116
## 74989 116
## 75486 116
## 76018 116
## 76749 116
## 77610 116
## 78679 116
## 80932 116
## 82471 116
## 82818 116
## 82950 116
## 83463 116
## 83497 116
## 85130 116
## 86382 116
## 87462 116
## 87820 116
## 87949 116
## 88126 116
## 88187 116
## 88355 116
## 88457 116
## 88572 116
## 88623 116
## 88665 116
## 88704 116
## 88803 116
## 88828 116
## 89976 116
## 91565 116
## 92192 116
## 92352 116
## 92590 116
## 93190 116
## 94556 116
## 94651 116
## 95584 116
## 95789 116
## 96807 116
## 96846 116
## 96937 116
## 97062 116
## 97311 116
## 97432 116
## 97439 116
## 97450 116
## 97458 116
## 97461 116
## 57 117
## 1060 117
## 2024 117
## 2263 117
## 2903 117
## 4223 117
## 5273 117
## 6479 117
## 7592 117
## 13311 117
## 13875 117
## 15313 117
## 15998 117
## 16763 117
## 17145 117
## 18633 117
## 20042 117
## 20267 117
## 20907 117
## 21094 117
## 21994 117
## 22913 117
## 23277 117
## 23901 117
## 24266 117
## 24601 117
## 25212 117
## 25745 117
## 26227 117
## 27202 117
## 29196 117
## 32027 117
## 32762 117
## 33958 117
## 36462 117
## 37224 117
## 38326 117
## 38705 117
## 39156 117
## 39484 117
## 40478 117
## 41196 117
## 42976 117
## 44328 117
## 46132 117
## 47692 117
## 48253 117
## 51706 117
## 53213 117
## 53758 117
## 56271 117
## 56573 117
## 56855 117
## 57027 117
## 57939 117
## 58093 117
## 62720 117
## 69363 117
## 72008 117
## 72533 117
## 72668 117
## 74216 117
## 77611 117
## 81834 117
## 82074 117
## 82472 117
## 82951 117
## 83464 117
## 83711 117
## 84120 117
## 84639 117
## 86085 117
## 88073 117
## 88356 117
## 89333 117
## 89559 117
## 91110 117
## 92099 117
## 92232 117
## 92353 117
## 93527 117
## 93921 117
## 93960 117
## 94813 117
## 96111 117
## 893 118
## 1061 118
## 3207 118
## 3556 118
## 3839 118
## 5198 118
## 7172 118
## 7406 118
## 7593 118
## 10709 118
## 13876 118
## 14450 118
## 18634 118
## 19046 118
## 19257 118
## 21995 118
## 22914 118
## 23803 118
## 23902 118
## 24602 118
## 25005 118
## 25213 118
## 25746 118
## 25969 118
## 27203 118
## 27335 118
## 28024 118
## 28775 118
## 30264 118
## 30460 118
## 32028 118
## 33380 118
## 33503 118
## 34288 118
## 35901 118
## 39485 118
## 44329 118
## 48855 118
## 49413 118
## 50072 118
## 55481 118
## 57268 118
## 57940 118
## 58516 118
## 59373 118
## 59814 118
## 62517 118
## 62721 118
## 66091 118
## 66541 118
## 66756 118
## 68418 118
## 69590 118
## 69882 118
## 70160 118
## 70236 118
## 70522 118
## 72948 118
## 75066 118
## 75859 118
## 76019 118
## 77261 118
## 77458 118
## 84188 118
## 85004 118
## 85510 118
## 86538 118
## 86924 118
## 88870 118
## 90664 118
## 94504 118
## 1062 119
## 1647 119
## 2025 119
## 2264 119
## 3557 119
## 3840 119
## 4025 119
## 4224 119
## 4638 119
## 5044 119
## 5613 119
## 6480 119
## 7081 119
## 7298 119
## 7594 119
## 8605 119
## 9718 119
## 11211 119
## 11454 119
## 11703 119
## 11855 119
## 12225 119
## 12820 119
## 13312 119
## 14451 119
## 15048 119
## 15314 119
## 15492 119
## 15999 119
## 16764 119
## 17376 119
## 17571 119
## 18635 119
## 19606 119
## 20268 119
## 20574 119
## 21725 119
## 23278 119
## 23903 119
## 24603 119
## 26228 119
## 26701 119
## 28025 119
## 28776 119
## 28950 119
## 29487 119
## 30095 119
## 31035 119
## 31823 119
## 32029 119
## 32632 119
## 33959 119
## 34579 119
## 36176 119
## 36463 119
## 37813 119
## 38465 119
## 38706 119
## 38874 119
## 38950 119
## 39157 119
## 39486 119
## 39953 119
## 40763 119
## 41197 119
## 41405 119
## 41825 119
## 42023 119
## 42297 119
## 42568 119
## 42977 119
## 43767 119
## 44203 119
## 44330 119
## 45553 119
## 46133 119
## 46315 119
## 46425 119
## 46840 119
## 47934 119
## 48254 119
## 48584 119
## 48740 119
## 49621 119
## 49846 119
## 50696 119
## 50961 119
## 51168 119
## 51707 119
## 51853 119
## 52594 119
## 52735 119
## 54467 119
## 54691 119
## 55156 119
## 56272 119
## 56617 119
## 56856 119
## 57177 119
## 60449 119
## 60635 119
## 60897 119
## 61109 119
## 61193 119
## 62016 119
## 62228 119
## 62385 119
## 62722 119
## 64359 119
## 64724 119
## 65882 119
## 66542 119
## 68101 119
## 68944 119
## 69252 119
## 69364 119
## 69743 119
## 70442 119
## 70808 119
## 72267 119
## 72460 119
## 72669 119
## 73724 119
## 74217 119
## 76020 119
## 76398 119
## 78107 119
## 78272 119
## 78583 119
## 79226 119
## 79922 119
## 80225 119
## 80287 119
## 80360 119
## 80745 119
## 81758 119
## 81835 119
## 82952 119
## 83241 119
## 83593 119
## 85350 119
## 85729 119
## 85855 119
## 85938 119
## 86018 119
## 86086 119
## 86124 119
## 86600 119
## 87239 119
## 87821 119
## 88829 119
## 88845 119
## 89106 119
## 89480 119
## 89560 119
## 91111 119
## 91248 119
## 91352 119
## 91632 119
## 92354 119
## 93028 119
## 93831 119
## 94603 119
## 94931 119
## 95696 119
## 95963 119
## 96036 119
## 96125 119
## 96180 119
## 96538 119
## 96621 119
## 97312 119
## 97484 119
## 97488 119
## 97492 119
## 97496 119
## 97504 119
## 97519 119
## 97526 119
## 58 120
## 1648 120
## 2904 120
## 4225 120
## 6481 120
## 16000 120
## 16376 120
## 16765 120
## 17572 120
## 17931 120
## 20754 120
## 36464 120
## 37814 120
## 38707 120
## 39158 120
## 39487 120
## 42978 120
## 43768 120
## 56273 120
## 66092 120
## 67020 120
## 69365 120
## 81836 120
## 82119 120
## 86019 120
## 89107 120
## 59 121
## 1649 121
## 2026 121
## 2265 121
## 2703 121
## 4226 121
## 6482 121
## 7939 121
## 11455 121
## 11704 121
## 13877 121
## 14452 121
## 16001 121
## 16377 121
## 16766 121
## 17146 121
## 17377 121
## 17573 121
## 17798 121
## 17932 121
## 19258 121
## 19607 121
## 21996 121
## 23054 121
## 23904 121
## 24604 121
## 25970 121
## 26229 121
## 28654 121
## 29732 121
## 36177 121
## 36465 121
## 38327 121
## 38466 121
## 39159 121
## 42024 121
## 42298 121
## 42979 121
## 45117 121
## 45243 121
## 45554 121
## 46134 121
## 46426 121
## 48255 121
## 48585 121
## 48980 121
## 52469 121
## 52966 121
## 56274 121
## 57028 121
## 58517 121
## 58725 121
## 61110 121
## 62229 121
## 63320 121
## 66093 121
## 66289 121
## 66843 121
## 67021 121
## 69366 121
## 71630 121
## 72461 121
## 74218 121
## 74486 121
## 75195 121
## 80288 121
## 81362 121
## 81688 121
## 81837 121
## 82120 121
## 84765 121
## 89778 121
## 96494 121
## 97545 121
## 2027 122
## 4639 122
## 6047 122
## 7940 122
## 9403 122
## 9719 122
## 11456 122
## 11705 122
## 17933 122
## 19259 122
## 25006 122
## 25971 122
## 27816 122
## 28257 122
## 28402 122
## 28777 122
## 29733 122
## 32538 122
## 32763 122
## 32891 122
## 37067 122
## 40764 122
## 52967 122
## 54099 122
## 54468 122
## 54966 122
## 55945 122
## 58094 122
## 58518 122
## 58845 122
## 61541 122
## 61816 122
## 61886 122
## 66290 122
## 66412 122
## 66543 122
## 66757 122
## 67460 122
## 69954 122
## 71080 122
## 71631 122
## 76603 122
## 76750 122
## 77327 122
## 79286 122
## 79720 122
## 80142 122
## 80639 122
## 80746 122
## 81363 122
## 81438 122
## 84766 122
## 90538 122
## 93402 122
## 93442 122
## 94384 122
## 95165 122
## 95307 122
## 96148 122
## 97557 122
## 97590 122
## 1650 123
## 2529 123
## 2704 123
## 3558 123
## 3841 123
## 6483 123
## 8606 123
## 13878 123
## 14453 123
## 17934 123
## 18636 123
## 19047 123
## 19260 123
## 20043 123
## 23055 123
## 26702 123
## 27336 123
## 27817 123
## 28655 123
## 29734 123
## 37504 123
## 38951 123
## 42025 123
## 42299 123
## 43572 123
## 43769 123
## 44331 123
## 44785 123
## 45555 123
## 49261 123
## 49455 123
## 58519 123
## 59198 123
## 59615 123
## 61332 123
## 63321 123
## 63497 123
## 63731 123
## 63868 123
## 64236 123
## 64419 123
## 65698 123
## 66544 123
## 66844 123
## 67822 123
## 68715 123
## 73253 123
## 76278 123
## 79477 123
## 79648 123
## 81230 123
## 86802 123
## 90721 123
## 97600 123
## 60 124
## 1063 124
## 2028 124
## 4640 124
## 6484 124
## 10710 124
## 13313 124
## 13879 124
## 16002 124
## 20269 124
## 21726 124
## 22138 124
## 23120 124
## 23279 124
## 23905 124
## 24267 124
## 24605 124
## 29197 124
## 31824 124
## 34580 124
## 62518 124
## 64977 124
## 69744 124
## 73725 124
## 61 125
## 1417 125
## 3452 125
## 3559 125
## 4227 125
## 4641 125
## 5665 125
## 6332 125
## 6485 125
## 7595 125
## 8495 125
## 8607 125
## 8977 125
## 9135 125
## 9404 125
## 9720 125
## 10166 125
## 10296 125
## 10711 125
## 11003 125
## 11212 125
## 11457 125
## 11633 125
## 11856 125
## 11999 125
## 12476 125
## 12936 125
## 13080 125
## 13598 125
## 13880 125
## 15049 125
## 15315 125
## 15493 125
## 15857 125
## 16003 125
## 16644 125
## 17147 125
## 19048 125
## 19493 125
## 20044 125
## 20270 125
## 20908 125
## 21386 125
## 21491 125
## 22256 125
## 22817 125
## 23280 125
## 23906 125
## 24268 125
## 24606 125
## 25007 125
## 25214 125
## 26230 125
## 27572 125
## 28258 125
## 28403 125
## 28951 125
## 29198 125
## 29958 125
## 30461 125
## 30567 125
## 31036 125
## 31357 125
## 31623 125
## 31825 125
## 32030 125
## 32351 125
## 33114 125
## 33960 125
## 36178 125
## 36372 125
## 36830 125
## 37068 125
## 37620 125
## 39488 125
## 40765 125
## 41050 125
## 42026 125
## 43201 125
## 44786 125
## 45025 125
## 45556 125
## 46427 125
## 48981 125
## 49847 125
## 51854 125
## 52339 125
## 52968 125
## 53456 125
## 53609 125
## 53794 125
## 53954 125
## 54058 125
## 54469 125
## 54567 125
## 54601 125
## 54883 125
## 55023 125
## 55235 125
## 55423 125
## 55574 125
## 55683 125
## 56618 125
## 57029 125
## 57178 125
## 58520 125
## 58943 125
## 59529 125
## 59616 125
## 60636 125
## 60898 125
## 62519 125
## 62723 125
## 63200 125
## 63322 125
## 63732 125
## 63869 125
## 64237 125
## 64783 125
## 64978 125
## 65269 125
## 66094 125
## 66545 125
## 66758 125
## 67537 125
## 70809 125
## 71127 125
## 71374 125
## 71901 125
## 73667 125
## 75364 125
## 76279 125
## 76480 125
## 76922 125
## 78466 125
## 78857 125
## 79512 125
## 79821 125
## 79923 125
## 80550 125
## 80810 125
## 81014 125
## 81190 125
## 82228 125
## 82473 125
## 82953 125
## 83342 125
## 83712 125
## 84371 125
## 84440 125
## 84568 125
## 84684 125
## 84921 125
## 85027 125
## 85351 125
## 87142 125
## 88804 125
## 89234 125
## 89898 125
## 90103 125
## 90273 125
## 91661 125
## 91676 125
## 91707 125
## 91717 125
## 93124 125
## 93147 125
## 93832 125
## 93995 125
## 94385 125
## 94779 125
## 95198 125
## 96181 125
## 96313 125
## 96346 125
## 96375 125
## 96650 125
## 97366 125
## 97398 125
## 97610 125
## 97617 125
## 97624 125
## 37621 126
## 37815 126
## 39489 126
## 40110 126
## 40274 126
## 40681 126
## 41406 126
## 43770 126
## 44332 126
## 44787 126
## 45557 126
## 46428 126
## 47075 126
## 47935 126
## 48069 126
## 48256 126
## 48586 126
## 48741 126
## 49262 126
## 49622 126
## 49848 126
## 50328 126
## 50507 126
## 50697 126
## 51169 126
## 51327 126
## 51677 126
## 51855 126
## 52212 126
## 52340 126
## 52626 126
## 52710 126
## 77612 126
## 77911 126
## 77945 126
## 78680 126
## 82954 126
## 83114 126
## 87778 126
## 88048 126
## 88705 126
## 91497 126
## 96251 126
## 6486 127
## 8371 127
## 33961 127
## 34751 127
## 34924 127
## 35159 127
## 35333 127
## 37622 127
## 39490 127
## 41198 127
## 43771 127
## 44333 127
## 45558 127
## 46429 127
## 52097 127
## 54247 127
## 60450 127
## 60561 127
## 78681 127
## 82474 127
## 82819 127
## 88609 127
## 62 128
## 2705 128
## 2905 128
## 4228 128
## 4475 128
## 4642 128
## 6222 128
## 6487 128
## 7299 128
## 7596 128
## 7991 128
## 8608 128
## 8857 128
## 8978 128
## 9405 128
## 9721 128
## 9960 128
## 10297 128
## 10495 128
## 10712 128
## 11213 128
## 11458 128
## 11706 128
## 12000 128
## 13599 128
## 13881 128
## 14233 128
## 15494 128
## 16004 128
## 16378 128
## 16767 128
## 18524 128
## 18637 128
## 18872 128
## 19494 128
## 19832 128
## 20045 128
## 21095 128
## 22318 128
## 22512 128
## 23281 128
## 23907 128
## 24269 128
## 24607 128
## 25747 128
## 25972 128
## 26231 128
## 26703 128
## 27573 128
## 28259 128
## 28404 128
## 28778 128
## 29488 128
## 29735 128
## 30568 128
## 31037 128
## 31826 128
## 32031 128
## 32633 128
## 32892 128
## 33115 128
## 33504 128
## 33776 128
## 33962 128
## 34289 128
## 34752 128
## 34925 128
## 35160 128
## 36466 128
## 36831 128
## 37816 128
## 39491 128
## 40479 128
## 41826 128
## 42027 128
## 42300 128
## 42729 128
## 42980 128
## 43202 128
## 43382 128
## 45559 128
## 46430 128
## 48856 128
## 49263 128
## 49623 128
## 50698 128
## 51856 128
## 53610 128
## 53888 128
## 54100 128
## 54248 128
## 54360 128
## 54967 128
## 55157 128
## 55236 128
## 55772 128
## 56136 128
## 56275 128
## 57407 128
## 57470 128
## 57555 128
## 57683 128
## 58031 128
## 58095 128
## 58387 128
## 58521 128
## 59199 128
## 59374 128
## 60637 128
## 61111 128
## 61333 128
## 61572 128
## 61753 128
## 62017 128
## 63201 128
## 63733 128
## 63870 128
## 64238 128
## 64420 128
## 64605 128
## 64840 128
## 64979 128
## 65188 128
## 65407 128
## 65482 128
## 65813 128
## 65883 128
## 65977 128
## 66095 128
## 68716 128
## 69955 128
## 70810 128
## 72009 128
## 72268 128
## 72881 128
## 72949 128
## 73216 128
## 73414 128
## 73613 128
## 73941 128
## 74659 128
## 75565 128
## 75730 128
## 76021 128
## 76604 128
## 78108 128
## 78273 128
## 78417 128
## 78682 128
## 78858 128
## 79409 128
## 79513 128
## 80143 128
## 80603 128
## 80858 128
## 81015 128
## 81364 128
## 81535 128
## 81838 128
## 82347 128
## 83713 128
## 84024 128
## 84569 128
## 84685 128
## 85409 128
## 86370 128
## 87352 128
## 87506 128
## 89108 128
## 89977 128
## 90274 128
## 90491 128
## 90794 128
## 90816 128
## 93059 128
## 93191 128
## 93654 128
## 93852 128
## 94074 128
## 95667 128
## 95778 128
## 96471 128
## 96968 128
## 37505 129
## 37817 129
## 39492 129
## 40766 129
## 41051 129
## 41407 129
## 43772 129
## 44334 129
## 46431 129
## 47076 129
## 47351 129
## 47693 129
## 47936 129
## 48070 129
## 48257 129
## 49849 129
## 50508 129
## 51050 129
## 51790 129
## 77613 129
## 82475 129
## 87507 129
## 88002 129
## 88666 129
## 88730 129
## 91498 129
## 91633 129
## 96256 129
## 63 130
## 468 130
## 595 130
## 698 130
## 894 130
## 1064 130
## 2029 130
## 2266 130
## 3208 130
## 3560 130
## 4026 130
## 4549 130
## 4643 130
## 4888 130
## 5045 130
## 5274 130
## 5411 130
## 5527 130
## 5666 130
## 5719 130
## 5893 130
## 6089 130
## 6333 130
## 6488 130
## 7173 130
## 7300 130
## 7407 130
## 7597 130
## 7992 130
## 8372 130
## 8496 130
## 8609 130
## 8858 130
## 8979 130
## 9136 130
## 9243 130
## 9406 130
## 9961 130
## 10496 130
## 10713 130
## 11214 130
## 11612 130
## 12001 130
## 12226 130
## 12477 130
## 12821 130
## 12937 130
## 13081 130
## 13314 130
## 13882 130
## 14234 130
## 14454 130
## 15050 130
## 15316 130
## 15495 130
## 16005 130
## 16379 130
## 16768 130
## 17148 130
## 17254 130
## 17574 130
## 18302 130
## 18638 130
## 19049 130
## 20046 130
## 20271 130
## 20575 130
## 20755 130
## 20909 130
## 21997 130
## 22257 130
## 22319 130
## 22513 130
## 23282 130
## 23908 130
## 24270 130
## 24608 130
## 25215 130
## 25748 130
## 26232 130
## 26932 130
## 27204 130
## 27337 130
## 28026 130
## 29199 130
## 29489 130
## 30265 130
## 30569 130
## 30835 130
## 31038 130
## 31484 130
## 32032 130
## 32893 130
## 33116 130
## 33381 130
## 33505 130
## 33672 130
## 33963 130
## 34581 130
## 34753 130
## 34926 130
## 35161 130
## 35334 130
## 35523 130
## 35763 130
## 35902 130
## 36179 130
## 36373 130
## 36467 130
## 37069 130
## 37225 130
## 37623 130
## 37818 130
## 38043 130
## 38169 130
## 38328 130
## 38467 130
## 38708 130
## 38875 130
## 38952 130
## 39160 130
## 39493 130
## 40227 130
## 40275 130
## 40713 130
## 40767 130
## 41052 130
## 41199 130
## 41408 130
## 42301 130
## 42823 130
## 42981 130
## 43383 130
## 43773 130
## 44335 130
## 44788 130
## 45026 130
## 45118 130
## 45352 130
## 45560 130
## 45988 130
## 46135 130
## 46316 130
## 46432 130
## 47492 130
## 47694 130
## 48258 130
## 48587 130
## 48742 130
## 49456 130
## 49624 130
## 50329 130
## 50699 130
## 50962 130
## 51002 130
## 51051 130
## 51170 130
## 51328 130
## 51612 130
## 52037 130
## 52098 130
## 52341 130
## 52470 130
## 52627 130
## 52711 130
## 52736 130
## 52799 130
## 52848 130
## 52969 130
## 53214 130
## 53411 130
## 53542 130
## 53611 130
## 53984 130
## 54020 130
## 54195 130
## 54692 130
## 55056 130
## 55158 130
## 55237 130
## 55543 130
## 55946 130
## 56137 130
## 56276 130
## 56619 130
## 56857 130
## 57030 130
## 57179 130
## 57269 130
## 57556 130
## 57684 130
## 57853 130
## 58096 130
## 58461 130
## 58522 130
## 59375 130
## 59815 130
## 60008 130
## 60157 130
## 60451 130
## 60562 130
## 60791 130
## 60853 130
## 60899 130
## 61573 130
## 61817 130
## 61887 130
## 62018 130
## 62230 130
## 62724 130
## 63111 130
## 64980 130
## 65483 130
## 66096 130
## 68237 130
## 68717 130
## 68830 130
## 68866 130
## 68976 130
## 69130 130
## 69180 130
## 69367 130
## 69745 130
## 69906 130
## 70020 130
## 70113 130
## 70523 130
## 70547 130
## 70585 130
## 70749 130
## 70811 130
## 71018 130
## 71158 130
## 71416 130
## 72010 130
## 72189 130
## 72534 130
## 72670 130
## 73824 130
## 73942 130
## 74048 130
## 74131 130
## 75105 130
## 76399 130
## 77084 130
## 77196 130
## 77262 130
## 77614 130
## 77912 130
## 77946 130
## 78109 130
## 78274 130
## 78584 130
## 78859 130
## 80289 130
## 80492 130
## 80859 130
## 80960 130
## 81536 130
## 81839 130
## 82075 130
## 82229 130
## 82476 130
## 82955 130
## 83115 130
## 83343 130
## 83540 130
## 83714 130
## 83877 130
## 83981 130
## 84079 130
## 84121 130
## 84333 130
## 84857 130
## 84986 130
## 85005 130
## 85045 130
## 85131 130
## 85188 130
## 85410 130
## 85511 130
## 85559 130
## 85616 130
## 85803 130
## 86020 130
## 86234 130
## 87143 130
## 87677 130
## 88188 130
## 88213 130
## 88268 130
## 88330 130
## 88357 130
## 88610 130
## 89334 130
## 89433 130
## 89481 130
## 89561 130
## 89610 130
## 89672 130
## 89840 130
## 89899 130
## 90065 130
## 90151 130
## 90275 130
## 90602 130
## 91021 130
## 91057 130
## 91249 130
## 91566 130
## 92193 130
## 92233 130
## 92355 130
## 92480 130
## 92560 130
## 92811 130
## 93029 130
## 93192 130
## 93467 130
## 93528 130
## 93721 130
## 93942 130
## 94505 130
## 94633 130
## 94652 130
## 94814 130
## 95668 130
## 95790 130
## 95926 130
## 95998 130
## 96693 130
## 96710 130
## 96748 130
## 96816 130
## 96853 130
## 96938 130
## 97104 130
## 97181 130
## 97313 130
## 97347 130
## 97367 130
## 97379 130
## 97558 130
## 97629 130
## 97644 130
## 97655 130
## 97659 130
## 97667 130
## 97686 130
## 97702 130
## 97711 130
## 64 131
## 1651 131
## 2706 131
## 3307 131
## 14455 131
## 17378 131
## 17799 131
## 17935 131
## 19608 131
## 33843 131
## 37506 131
## 38170 131
## 38644 131
## 40768 131
## 41827 131
## 42028 131
## 42302 131
## 43573 131
## 43774 131
## 44204 131
## 45353 131
## 46066 131
## 47077 131
## 48259 131
## 68932 131
## 82121 131
## 82820 131
## 85352 131
## 86601 131
## 97727 131
## 2267 132
## 6489 132
## 7598 132
## 14456 132
## 17379 132
## 17936 132
## 19609 132
## 21096 132
## 21727 132
## 25008 132
## 38645 132
## 42029 132
## 43574 132
## 43775 132
## 64102 132
## 67660 132
## 67823 132
## 77030 132
## 85132 132
## 89009 132
## 92561 132
## 95981 132
## 37624 133
## 37819 133
## 39494 133
## 40111 133
## 40769 133
## 41200 133
## 41409 133
## 43776 133
## 45561 133
## 46433 133
## 47352 133
## 47587 133
## 47862 133
## 48260 133
## 48588 133
## 48743 133
## 49625 133
## 50700 133
## 52099 133
## 52342 133
## 52800 133
## 69047 133
## 82758 133
## 82821 133
## 82956 133
## 88624 133
## 65 134
## 2906 134
## 39495 134
## 39954 134
## 40770 134
## 43777 134
## 45562 134
## 46434 134
## 46841 134
## 47078 134
## 48261 134
## 48589 134
## 48744 134
## 49850 134
## 50330 134
## 50701 134
## 51708 134
## 51791 134
## 66097 134
## 69048 134
## 77615 134
## 82477 134
## 82957 134
## 87822 134
## 88269 134
## 895 135
## 2268 135
## 3842 135
## 5275 135
## 5412 135
## 5528 135
## 7301 135
## 7408 135
## 7599 135
## 10497 135
## 10714 135
## 13883 135
## 24271 135
## 25216 135
## 26933 135
## 27338 135
## 30836 135
## 34582 135
## 34754 135
## 34927 135
## 35162 135
## 35335 135
## 35764 135
## 35903 135
## 39496 135
## 40112 135
## 40480 135
## 44336 135
## 45563 135
## 49457 135
## 50073 135
## 50198 135
## 50509 135
## 54196 135
## 59039 135
## 60009 135
## 60452 135
## 60792 135
## 61888 135
## 62725 135
## 65699 135
## 70021 135
## 70524 135
## 70586 135
## 71559 135
## 72950 135
## 75106 135
## 75809 135
## 82122 135
## 85046 135
## 89841 135
## 90020 135
## 93468 135
## 96711 135
## 96854 135
## 1652 136
## 2707 136
## 2907 136
## 3308 136
## 5720 136
## 7600 136
## 12227 136
## 14457 136
## 15858 136
## 16006 136
## 17380 136
## 17937 136
## 19610 136
## 31039 136
## 34290 136
## 36468 136
## 39161 136
## 39497 136
## 40771 136
## 42030 136
## 42303 136
## 43203 136
## 43778 136
## 46136 136
## 48262 136
## 48982 136
## 62726 136
## 67022 136
## 68021 136
## 75298 136
## 82123 136
## 82348 136
## 86803 136
## 95791 136
## 66 137
## 2908 137
## 6490 137
## 6999 137
## 7409 137
## 10715 137
## 12228 137
## 13315 137
## 16007 137
## 16380 137
## 16769 137
## 20272 137
## 23909 137
## 24609 137
## 26233 137
## 26934 137
## 29200 137
## 32033 137
## 33964 137
## 36180 137
## 36469 137
## 37625 137
## 38329 137
## 38468 137
## 39162 137
## 40113 137
## 40228 137
## 40682 137
## 44789 137
## 46435 137
## 50510 137
## 54693 137
## 56277 137
## 57031 137
## 62231 137
## 62960 137
## 69368 137
## 72671 137
## 78275 137
## 78467 137
## 78683 137
## 82478 137
## 87240 137
## 88270 137
## 92812 137
## 95238 137
## 67 138
## 2269 138
## 2530 138
## 2708 138
## 2909 138
## 4476 138
## 5976 138
## 7601 138
## 13884 138
## 14458 138
## 15496 138
## 15859 138
## 16008 138
## 16770 138
## 18873 138
## 19611 138
## 20576 138
## 20910 138
## 21097 138
## 26704 138
## 27339 138
## 27818 138
## 28952 138
## 31827 138
## 32352 138
## 33965 138
## 36832 138
## 43575 138
## 48983 138
## 52970 138
## 59617 138
## 62520 138
## 63871 138
## 64103 138
## 64421 138
## 64784 138
## 64981 138
## 65189 138
## 66291 138
## 66759 138
## 66845 138
## 67275 138
## 67371 138
## 67461 138
## 67824 138
## 72882 138
## 72951 138
## 73614 138
## 73787 138
## 76835 138
## 81840 138
## 14459 139
## 17938 139
## 20911 139
## 33966 139
## 36470 139
## 37507 139
## 38044 139
## 43779 139
## 44337 139
## 46056 139
## 46067 139
## 47079 139
## 47695 139
## 61112 139
## 61217 139
## 62727 139
## 66098 139
## 77514 139
## 81689 139
## 82124 139
## 96257 139
## 97219 139
## 37820 140
## 39498 140
## 43780 140
## 44338 140
## 44790 140
## 45564 140
## 46842 140
## 47080 140
## 47353 140
## 49264 140
## 49458 140
## 49626 140
## 50199 140
## 51171 140
## 51555 140
## 87463 140
## 87508 140
## 87950 140
## 91382 140
## 68 141
## 1065 141
## 2910 141
## 4229 141
## 6491 141
## 14460 141
## 15124 141
## 16009 141
## 16381 141
## 16645 141
## 16771 141
## 17575 141
## 17800 141
## 17939 141
## 20577 141
## 21098 141
## 26234 141
## 33967 141
## 34474 141
## 36181 141
## 36471 141
## 37740 141
## 37821 141
## 38171 141
## 38330 141
## 38469 141
## 38709 141
## 38953 141
## 39163 141
## 39499 141
## 39955 141
## 40229 141
## 41828 141
## 42304 141
## 42693 141
## 42824 141
## 42982 141
## 43384 141
## 43781 141
## 44339 141
## 45027 141
## 45119 141
## 45244 141
## 45354 141
## 45565 141
## 45989 141
## 46137 141
## 46436 141
## 48263 141
## 49627 141
## 49851 141
## 50702 141
## 51003 141
## 51329 141
## 51613 141
## 52343 141
## 56278 141
## 56620 141
## 56784 141
## 56858 141
## 62019 141
## 62232 141
## 62961 141
## 68880 141
## 69369 141
## 72269 141
## 72672 141
## 73825 141
## 77515 141
## 77616 141
## 79150 141
## 80290 141
## 81841 141
## 82125 141
## 82479 141
## 82822 141
## 83344 141
## 85411 141
## 85730 141
## 85856 141
## 85939 141
## 86125 141
## 87144 141
## 87241 141
## 87398 141
## 87464 141
## 87951 141
## 89235 141
## 89482 141
## 89611 141
## 91022 141
## 91287 141
## 91327 141
## 91383 141
## 92194 141
## 92234 141
## 92696 141
## 92813 141
## 93279 141
## 93529 141
## 93961 141
## 95792 141
## 97314 141
## 97462 141
## 97712 141
## 97740 141
## 97749 141
## 1066 142
## 4644 142
## 5721 142
## 7410 142
## 11215 142
## 12229 142
## 12577 142
## 17381 142
## 19050 142
## 20578 142
## 23568 142
## 25217 142
## 26235 142
## 27574 142
## 28187 142
## 37626 142
## 39956 142
## 44340 142
## 45566 142
## 48590 142
## 49628 142
## 51330 142
## 51709 142
## 52344 142
## 52628 142
## 53215 142
## 53379 142
## 56673 142
## 58388 142
## 61479 142
## 66846 142
## 88358 142
## 39500 143
## 41201 143
## 41410 143
## 43782 143
## 44341 143
## 45567 143
## 47696 143
## 48264 143
## 48591 143
## 49629 143
## 49852 143
## 50200 143
## 50331 143
## 50703 143
## 51052 143
## 51331 143
## 52471 143
## 77947 143
## 78684 143
## 93170 143
## 69 144
## 699 144
## 1067 144
## 1418 144
## 1653 144
## 2270 144
## 2709 144
## 2911 144
## 3309 144
## 3375 144
## 3561 144
## 4027 144
## 5046 144
## 5199 144
## 5276 144
## 6223 144
## 6492 144
## 7302 144
## 7411 144
## 7602 144
## 7993 144
## 8161 144
## 8303 144
## 8373 144
## 8610 144
## 8859 144
## 8980 144
## 9244 144
## 9407 144
## 9722 144
## 10167 144
## 10298 144
## 11857 144
## 12230 144
## 12578 144
## 12822 144
## 13316 144
## 13885 144
## 14461 144
## 15051 144
## 15125 144
## 15860 144
## 16010 144
## 17382 144
## 17576 144
## 17801 144
## 17940 144
## 18374 144
## 19261 144
## 19612 144
## 20273 144
## 20579 144
## 21492 144
## 22420 144
## 23056 144
## 23690 144
## 23910 144
## 24272 144
## 24610 144
## 25218 144
## 25973 144
## 26236 144
## 26705 144
## 26935 144
## 27819 144
## 28260 144
## 28405 144
## 28779 144
## 28953 144
## 29201 144
## 29490 144
## 29736 144
## 29959 144
## 31040 144
## 31828 144
## 32539 144
## 32634 144
## 32894 144
## 33117 144
## 33844 144
## 34291 144
## 35904 144
## 36182 144
## 36472 144
## 37508 144
## 37741 144
## 38172 144
## 38646 144
## 39164 144
## 39501 144
## 40276 144
## 41202 144
## 41609 144
## 41829 144
## 42305 144
## 42730 144
## 42825 144
## 42983 144
## 43385 144
## 43576 144
## 43783 144
## 44342 144
## 45355 144
## 45568 144
## 46068 144
## 46138 144
## 46437 144
## 47081 144
## 47354 144
## 47697 144
## 48265 144
## 48745 144
## 48984 144
## 49265 144
## 50332 144
## 50511 144
## 50704 144
## 51332 144
## 52100 144
## 52971 144
## 55238 144
## 55947 144
## 56279 144
## 56859 144
## 57032 144
## 58097 144
## 59618 144
## 60867 144
## 60900 144
## 61248 144
## 61657 144
## 61889 144
## 62020 144
## 62521 144
## 62728 144
## 62962 144
## 63202 144
## 63498 144
## 66099 144
## 66847 144
## 67210 144
## 67372 144
## 67661 144
## 67825 144
## 67975 144
## 68238 144
## 68419 144
## 68718 144
## 68850 144
## 72011 144
## 72270 144
## 72673 144
## 74597 144
## 75299 144
## 75566 144
## 75860 144
## 76022 144
## 78276 144
## 78685 144
## 79287 144
## 79649 144
## 79822 144
## 80053 144
## 80747 144
## 80860 144
## 81842 144
## 82349 144
## 82823 144
## 82958 144
## 83498 144
## 83594 144
## 84264 144
## 84570 144
## 85412 144
## 85731 144
## 86126 144
## 86602 144
## 86804 144
## 86959 144
## 87952 144
## 88573 144
## 89978 144
## 90539 144
## 90665 144
## 90689 144
## 90722 144
## 90746 144
## 91958 144
## 92100 144
## 92195 144
## 92356 144
## 92814 144
## 93193 144
## 94121 144
## 94932 144
## 95723 144
## 95793 144
## 95862 144
## 96170 144
## 96539 144
## 97063 144
## 97768 144
## 97794 144
## 97809 144
## 70 145
## 596 145
## 896 145
## 1068 145
## 1654 145
## 2030 145
## 2271 145
## 2531 145
## 2912 145
## 3209 145
## 3562 145
## 3843 145
## 4230 145
## 5047 145
## 5413 145
## 5529 145
## 5722 145
## 5894 145
## 6334 145
## 6493 145
## 7000 145
## 7174 145
## 7303 145
## 7412 145
## 7603 145
## 8162 145
## 8374 145
## 8611 145
## 8981 145
## 9408 145
## 10498 145
## 10716 145
## 12002 145
## 12231 145
## 13317 145
## 13600 145
## 13886 145
## 14462 145
## 15052 145
## 15126 145
## 15317 145
## 15497 145
## 16011 145
## 16382 145
## 16646 145
## 16772 145
## 17149 145
## 17255 145
## 19051 145
## 19262 145
## 20912 145
## 21889 145
## 21998 145
## 22320 145
## 22915 145
## 23911 145
## 24273 145
## 24611 145
## 25219 145
## 26237 145
## 26706 145
## 26936 145
## 27340 145
## 29202 145
## 30266 145
## 30570 145
## 30837 145
## 31829 145
## 32540 145
## 33118 145
## 33382 145
## 33506 145
## 33673 145
## 33968 145
## 34583 145
## 34755 145
## 34928 145
## 35163 145
## 35336 145
## 35905 145
## 36183 145
## 36374 145
## 36473 145
## 36833 145
## 37226 145
## 37509 145
## 38045 145
## 38331 145
## 38470 145
## 39165 145
## 39502 145
## 39957 145
## 40114 145
## 40481 145
## 40683 145
## 40772 145
## 41053 145
## 41203 145
## 41610 145
## 41830 145
## 42031 145
## 42306 145
## 42637 145
## 42826 145
## 42984 145
## 43386 145
## 43784 145
## 45356 145
## 45569 145
## 46139 145
## 46317 145
## 46438 145
## 46843 145
## 47082 145
## 47355 145
## 47863 145
## 47937 145
## 48146 145
## 48266 145
## 48592 145
## 48746 145
## 50512 145
## 50705 145
## 50963 145
## 51053 145
## 51333 145
## 51710 145
## 51792 145
## 52038 145
## 52101 145
## 52345 145
## 52472 145
## 52684 145
## 52737 145
## 52801 145
## 52849 145
## 53216 145
## 53412 145
## 53759 145
## 54197 145
## 54249 145
## 55239 145
## 55407 145
## 56280 145
## 56574 145
## 56621 145
## 56860 145
## 57033 145
## 57180 145
## 57270 145
## 59040 145
## 59816 145
## 60010 145
## 60244 145
## 60360 145
## 60453 145
## 60563 145
## 60793 145
## 60868 145
## 61218 145
## 61890 145
## 62021 145
## 62233 145
## 63112 145
## 64360 145
## 66413 145
## 67023 145
## 69253 145
## 69370 145
## 69642 145
## 69907 145
## 69956 145
## 70022 145
## 70161 145
## 70237 145
## 70490 145
## 70587 145
## 71019 145
## 71159 145
## 71217 145
## 72232 145
## 72271 145
## 72425 145
## 72462 145
## 72674 145
## 72952 145
## 73886 145
## 74219 145
## 74487 145
## 74748 145
## 74779 145
## 74864 145
## 75107 145
## 75487 145
## 75731 145
## 77085 145
## 77263 145
## 77328 145
## 77409 145
## 77617 145
## 77948 145
## 78046 145
## 78110 145
## 78277 145
## 78468 145
## 78536 145
## 78686 145
## 78860 145
## 79151 145
## 80054 145
## 80291 145
## 80748 145
## 80811 145
## 80961 145
## 81016 145
## 81439 145
## 81492 145
## 81537 145
## 81690 145
## 81843 145
## 82076 145
## 82824 145
## 82959 145
## 83116 145
## 83178 145
## 83345 145
## 83499 145
## 83541 145
## 83595 145
## 83715 145
## 83847 145
## 83916 145
## 83982 145
## 84025 145
## 84080 145
## 84640 145
## 84922 145
## 85006 145
## 85512 145
## 85617 145
## 85693 145
## 85732 145
## 85857 145
## 85940 145
## 86021 145
## 86127 145
## 87061 145
## 87353 145
## 87724 145
## 87823 145
## 88214 145
## 88271 145
## 88331 145
## 88359 145
## 88458 145
## 88504 145
## 88611 145
## 89109 145
## 89188 145
## 89236 145
## 89335 145
## 89434 145
## 89483 145
## 89646 145
## 89673 145
## 89842 145
## 90021 145
## 90276 145
## 91023 145
## 91112 145
## 91187 145
## 91268 145
## 91384 145
## 91567 145
## 91730 145
## 91743 145
## 91897 145
## 92004 145
## 92101 145
## 92697 145
## 92740 145
## 92815 145
## 92998 145
## 93280 145
## 93306 145
## 93469 145
## 93530 145
## 93788 145
## 93876 145
## 93922 145
## 94315 145
## 94472 145
## 94623 145
## 94687 145
## 94998 145
## 95521 145
## 96712 145
## 96749 145
## 96795 145
## 96817 145
## 96847 145
## 96855 145
## 97348 145
## 97380 145
## 97630 145
## 97703 145
## 97750 145
## 97826 145
## 97832 145
## 97839 145
## 97846 145
## 97848 145
## 97863 145
## 37822 146
## 39503 146
## 40277 146
## 40773 146
## 41204 146
## 41411 146
## 43785 146
## 45570 146
## 46439 146
## 46844 146
## 47083 146
## 47698 146
## 48071 146
## 48267 146
## 48593 146
## 49266 146
## 50513 146
## 50706 146
## 51054 146
## 51636 146
## 51857 146
## 52039 146
## 52269 146
## 52346 146
## 52473 146
## 78537 146
## 92663 146
## 97866 146
## 97869 146
## 39504 147
## 40774 147
## 41054 147
## 43786 147
## 45245 147
## 46845 147
## 47084 147
## 47356 147
## 47493 147
## 48268 147
## 49267 147
## 51793 147
## 51858 147
## 52270 147
## 78687 147
## 82825 147
## 82960 147
## 88505 147
## 88684 147
## 89779 147
## 71 148
## 1069 148
## 1419 148
## 6494 148
## 7604 148
## 9409 148
## 9723 148
## 9962 148
## 10635 148
## 12232 148
## 13887 148
## 15760 148
## 15861 148
## 17941 148
## 18639 148
## 18874 148
## 19263 148
## 19833 148
## 21099 148
## 22818 148
## 22916 148
## 23283 148
## 23569 148
## 23912 148
## 24274 148
## 24612 148
## 25009 148
## 25478 148
## 26238 148
## 27341 148
## 28188 148
## 28261 148
## 28406 148
## 28954 148
## 31041 148
## 31830 148
## 32764 148
## 33969 148
## 34756 148
## 34929 148
## 35906 148
## 36834 148
## 52972 148
## 56674 148
## 57557 148
## 59200 148
## 62386 148
## 62522 148
## 64901 148
## 64982 148
## 65484 148
## 65978 148
## 66292 148
## 67662 148
## 68539 148
## 69643 148
## 72012 148
## 72535 148
## 76923 148
## 80055 148
## 90879 148
## 91568 148
## 92102 148
## 93194 148
## 95892 148
## 37823 149
## 39505 149
## 40278 149
## 40775 149
## 41412 149
## 43787 149
## 46440 149
## 46846 149
## 47085 149
## 47494 149
## 47864 149
## 47938 149
## 48072 149
## 48147 149
## 48269 149
## 49268 149
## 49459 149
## 49853 149
## 50201 149
## 50333 149
## 50514 149
## 50707 149
## 51334 149
## 51678 149
## 51711 149
## 51859 149
## 52271 149
## 52347 149
## 77618 149
## 78585 149
## 87587 149
## 88459 149
## 97876 149
## 97883 149
## 72 150
## 2532 150
## 2710 150
## 6495 150
## 12823 150
## 14463 150
## 16773 150
## 17256 150
## 17383 150
## 17942 150
## 18375 150
## 20580 150
## 20913 150
## 21100 150
## 26239 150
## 33845 150
## 36184 150
## 38046 150
## 41611 150
## 42307 150
## 42638 150
## 44343 150
## 45120 150
## 45357 150
## 49269 150
## 50074 150
## 50202 150
## 56861 150
## 61113 150
## 62729 150
## 74220 150
## 73 151
## 700 151
## 1070 151
## 1655 151
## 1917 151
## 2272 151
## 2533 151
## 2711 151
## 2913 151
## 4231 151
## 4477 151
## 4645 151
## 5048 151
## 5277 151
## 5895 151
## 6090 151
## 6335 151
## 6496 151
## 7001 151
## 7082 151
## 7605 151
## 7994 151
## 8612 151
## 8860 151
## 8982 151
## 9410 151
## 9724 151
## 10299 151
## 10717 151
## 11078 151
## 11216 151
## 11459 151
## 11707 151
## 11858 151
## 12003 151
## 12233 151
## 12579 151
## 12824 151
## 13601 151
## 13888 151
## 14464 151
## 15498 151
## 15761 151
## 16383 151
## 16774 151
## 17384 151
## 17577 151
## 18525 151
## 18640 151
## 18875 151
## 19052 151
## 19264 151
## 19495 151
## 19613 151
## 20047 151
## 20581 151
## 21101 151
## 21387 151
## 21493 151
## 21728 151
## 22421 151
## 22714 151
## 22819 151
## 22917 151
## 23284 151
## 23570 151
## 23691 151
## 23804 151
## 23913 151
## 24275 151
## 24613 151
## 25010 151
## 25220 151
## 25614 151
## 26240 151
## 26937 151
## 27342 151
## 27575 151
## 28189 151
## 28262 151
## 28407 151
## 28780 151
## 28955 151
## 29203 151
## 29491 151
## 29737 151
## 29960 151
## 30096 151
## 30267 151
## 30571 151
## 30838 151
## 31042 151
## 31624 151
## 31831 151
## 32034 151
## 32353 151
## 32635 151
## 32895 151
## 33119 151
## 33970 151
## 34292 151
## 34415 151
## 34757 151
## 34930 151
## 35337 151
## 35524 151
## 35907 151
## 36835 151
## 37378 151
## 39506 151
## 40115 151
## 40482 151
## 41831 151
## 42032 151
## 42569 151
## 43788 151
## 44205 151
## 45028 151
## 46441 151
## 46847 151
## 47086 151
## 48857 151
## 48985 151
## 49460 151
## 49630 151
## 50708 151
## 52850 151
## 52973 151
## 53889 151
## 53955 151
## 54101 151
## 54250 151
## 54361 151
## 54470 151
## 54694 151
## 54968 151
## 55240 151
## 55773 151
## 56281 151
## 56675 151
## 57034 151
## 57321 151
## 57471 151
## 57558 151
## 57685 151
## 57854 151
## 58098 151
## 58389 151
## 58523 151
## 58726 151
## 58846 151
## 58944 151
## 59201 151
## 59376 151
## 59619 151
## 59817 151
## 60011 151
## 60361 151
## 60638 151
## 61249 151
## 61334 151
## 61480 151
## 61542 151
## 61658 151
## 61818 151
## 61891 151
## 62387 151
## 62523 151
## 62963 151
## 63203 151
## 63499 151
## 63659 151
## 63734 151
## 63872 151
## 64104 151
## 64239 151
## 64361 151
## 64422 151
## 64490 151
## 64554 151
## 64606 151
## 64660 151
## 64725 151
## 64841 151
## 64983 151
## 65190 151
## 65270 151
## 65408 151
## 65647 151
## 65700 151
## 65814 151
## 65884 151
## 65979 151
## 66293 151
## 66697 151
## 66848 151
## 67211 151
## 67276 151
## 67773 151
## 67826 151
## 68022 151
## 68420 151
## 68540 151
## 68719 151
## 69371 151
## 69644 151
## 70238 151
## 70387 151
## 70588 151
## 71632 151
## 71824 151
## 72883 151
## 72953 151
## 73217 151
## 73254 151
## 73415 151
## 73473 151
## 73512 151
## 73615 151
## 74132 151
## 74221 151
## 74378 151
## 74488 151
## 74598 151
## 74660 151
## 74899 151
## 75108 151
## 75732 151
## 75861 151
## 76023 151
## 76280 151
## 76481 151
## 76605 151
## 76751 151
## 76836 151
## 76924 151
## 77031 151
## 77459 151
## 78111 151
## 78418 151
## 78861 151
## 79288 151
## 79410 151
## 79457 151
## 79514 151
## 79650 151
## 79823 151
## 80226 151
## 80640 151
## 80861 151
## 81017 151
## 81231 151
## 81365 151
## 81759 151
## 82350 151
## 82480 151
## 83242 151
## 83542 151
## 84026 151
## 84218 151
## 84441 151
## 84516 151
## 84767 151
## 85100 151
## 85353 151
## 85941 151
## 86304 151
## 86319 151
## 86346 151
## 86603 151
## 86805 151
## 88871 151
## 89010 151
## 89435 151
## 89843 151
## 90104 151
## 90414 151
## 90455 151
## 90540 151
## 90723 151
## 90795 151
## 90817 151
## 90880 151
## 90956 151
## 90990 151
## 91785 151
## 92481 151
## 93195 151
## 93307 151
## 93403 151
## 93531 151
## 93746 151
## 94122 151
## 94261 151
## 94386 151
## 94862 151
## 94933 151
## 95074 151
## 95166 151
## 96540 151
## 96629 151
## 97520 151
## 97601 151
## 97810 151
## 97903 151
## 97915 151
## 97924 151
## 1420 152
## 2914 152
## 3453 152
## 3563 152
## 4232 152
## 5278 152
## 6336 152
## 7002 152
## 8983 152
## 9137 152
## 9411 152
## 9963 152
## 11004 152
## 12004 152
## 13602 152
## 13889 152
## 15499 152
## 16012 152
## 16647 152
## 16775 152
## 17578 152
## 18641 152
## 18876 152
## 20048 152
## 20582 152
## 21102 152
## 21494 152
## 21890 152
## 22139 152
## 22514 152
## 22715 152
## 23180 152
## 24276 152
## 28408 152
## 31043 152
## 32896 152
## 33777 152
## 35908 152
## 36474 152
## 37379 152
## 38954 152
## 41413 152
## 41832 152
## 42033 152
## 42639 152
## 42731 152
## 43204 152
## 43387 152
## 43789 152
## 45571 152
## 46848 152
## 48270 152
## 49270 152
## 52738 152
## 53457 152
## 53612 152
## 53890 152
## 55241 152
## 55684 152
## 55774 152
## 56862 152
## 57035 152
## 57181 152
## 58099 152
## 60639 152
## 63873 152
## 64423 152
## 65701 152
## 68239 152
## 69645 152
## 70239 152
## 70812 152
## 72536 152
## 74599 152
## 76606 152
## 78278 152
## 78862 152
## 79289 152
## 80227 152
## 80412 152
## 80641 152
## 81538 152
## 81691 152
## 83716 152
## 84219 152
## 84265 152
## 84372 152
## 84442 152
## 84530 152
## 84571 152
## 84686 152
## 84858 152
## 86604 152
## 87242 152
## 87399 152
## 90066 152
## 90818 152
## 92235 152
## 92816 152
## 93060 152
## 93308 152
## 93853 152
## 93877 152
## 95669 152
## 97932 152
## 97941 152
## 3564 153
## 6497 153
## 7606 153
## 8613 153
## 10718 153
## 17943 153
## 23914 153
## 24614 153
## 26241 153
## 26707 153
## 27820 153
## 33120 153
## 39507 153
## 40483 153
## 45572 153
## 49461 153
## 49631 153
## 49854 153
## 50203 153
## 52974 153
## 66414 153
## 70813 153
## 77619 153
## 6498 154
## 8304 154
## 12234 154
## 19265 154
## 19614 154
## 20049 154
## 21388 154
## 23915 154
## 24615 154
## 25011 154
## 26708 154
## 27343 154
## 27821 154
## 28409 154
## 29738 154
## 30268 154
## 30572 154
## 32354 154
## 33971 154
## 36836 154
## 37510 154
## 39508 154
## 43790 154
## 44344 154
## 44791 154
## 47087 154
## 50075 154
## 51335 154
## 52975 154
## 57322 154
## 61335 154
## 62524 154
## 62730 154
## 63323 154
## 63500 154
## 63735 154
## 64105 154
## 64491 154
## 64984 154
## 67024 154
## 67827 154
## 68240 154
## 74990 154
## 75067 154
## 75109 154
## 75567 154
## 79721 154
## 85133 154
## 87588 154
## 88872 154
## 90105 154
## 37824 155
## 43791 155
## 44345 155
## 45246 155
## 45573 155
## 46442 155
## 47588 155
## 49271 155
## 49462 155
## 49632 155
## 49855 155
## 50076 155
## 50204 155
## 50334 155
## 50515 155
## 50709 155
## 51055 155
## 51172 155
## 82481 155
## 87465 155
## 91385 155
## 91499 155
## 1656 156
## 2031 156
## 2273 156
## 3565 156
## 6224 156
## 7995 156
## 8614 156
## 10499 156
## 11460 156
## 11708 156
## 14465 156
## 17385 156
## 19615 156
## 22140 156
## 25615 156
## 25974 156
## 27822 156
## 28656 156
## 29739 156
## 31358 156
## 32355 156
## 42308 156
## 48858 156
## 48986 156
## 52348 156
## 52976 156
## 63501 156
## 66415 156
## 67025 156
## 68421 156
## 75068 156
## 75256 156
## 75568 156
## 76024 156
## 76752 156
## 84122 156
## 85134 156
## 74 157
## 597 157
## 4233 157
## 6499 157
## 12825 157
## 14466 157
## 15500 157
## 16013 157
## 16384 157
## 16648 157
## 17944 157
## 19616 157
## 20583 157
## 20914 157
## 36185 157
## 37742 157
## 38471 157
## 38955 157
## 39509 157
## 40776 157
## 41612 157
## 41833 157
## 42309 157
## 43205 157
## 43792 157
## 44792 157
## 45029 157
## 45358 157
## 46140 157
## 48271 157
## 51860 157
## 56282 157
## 56622 157
## 56863 157
## 62731 157
## 62964 157
## 66100 157
## 67026 157
## 72675 157
## 78279 157
## 81692 157
## 82482 157
## 89674 157
## 92357 157
## 93789 157
## 95522 157
## 97315 157
## 97463 157
## 97751 157
## 97946 157
## 75 158
## 701 158
## 1071 158
## 1421 158
## 1918 158
## 2032 158
## 3376 158
## 3566 158
## 4028 158
## 4889 158
## 5414 158
## 5530 158
## 5723 158
## 6500 158
## 7175 158
## 7413 158
## 7607 158
## 8375 158
## 9245 158
## 9725 158
## 10168 158
## 10719 158
## 11217 158
## 11461 158
## 11634 158
## 12235 158
## 12712 158
## 13318 158
## 14467 158
## 15191 158
## 15501 158
## 15862 158
## 16014 158
## 16385 158
## 16649 158
## 16776 158
## 17257 158
## 17386 158
## 17579 158
## 17945 158
## 18303 158
## 18376 158
## 19617 158
## 20274 158
## 20756 158
## 20872 158
## 21729 158
## 22515 158
## 22820 158
## 23285 158
## 23916 158
## 24277 158
## 24616 158
## 25012 158
## 25221 158
## 25479 158
## 26242 158
## 26709 158
## 26938 158
## 27205 158
## 27576 158
## 27823 158
## 28027 158
## 28263 158
## 28956 158
## 29204 158
## 30573 158
## 31044 158
## 31625 158
## 31832 158
## 32035 158
## 33121 158
## 33383 158
## 33846 158
## 33972 158
## 34584 158
## 34758 158
## 34931 158
## 35164 158
## 35338 158
## 35525 158
## 35658 158
## 35765 158
## 36186 158
## 36837 158
## 37070 158
## 37380 158
## 37743 158
## 38472 158
## 38710 158
## 41205 158
## 41613 158
## 42034 158
## 42570 158
## 43206 158
## 43388 158
## 43577 158
## 43793 158
## 45030 158
## 45359 158
## 45574 158
## 46141 158
## 47088 158
## 50205 158
## 53613 158
## 53985 158
## 54695 158
## 55575 158
## 55948 158
## 56676 158
## 56864 158
## 57323 158
## 58945 158
## 59041 158
## 59377 158
## 59620 158
## 60454 158
## 60564 158
## 60901 158
## 62022 158
## 62234 158
## 63874 158
## 65597 158
## 66416 158
## 66546 158
## 66849 158
## 67212 158
## 67373 158
## 68023 158
## 68631 158
## 69254 158
## 69372 158
## 69746 158
## 70443 158
## 70589 158
## 70814 158
## 71081 158
## 71285 158
## 71524 158
## 71785 158
## 72434 158
## 74780 158
## 75365 158
## 75569 158
## 75733 158
## 76482 158
## 77086 158
## 78112 158
## 78419 158
## 79092 158
## 79824 158
## 80862 158
## 80962 158
## 81844 158
## 82126 158
## 82206 158
## 84027 158
## 84959 158
## 84987 158
## 85082 158
## 85219 158
## 85264 158
## 85733 158
## 85858 158
## 87243 158
## 91158 158
## 91328 158
## 92005 158
## 92358 158
## 93532 158
## 94188 158
## 94863 158
## 97951 158
## 1072 159
## 1657 159
## 2915 159
## 4029 159
## 4234 159
## 9138 159
## 10169 159
## 13319 159
## 15024 159
## 15502 159
## 16015 159
## 16386 159
## 16777 159
## 17580 159
## 17802 159
## 17946 159
## 18490 159
## 29205 159
## 33778 159
## 34475 159
## 36475 159
## 37627 159
## 37825 159
## 38332 159
## 38473 159
## 38876 159
## 38956 159
## 39510 159
## 39958 159
## 40116 159
## 41414 159
## 41614 159
## 41834 159
## 42310 159
## 43794 159
## 44346 159
## 44793 159
## 45121 159
## 45360 159
## 45575 159
## 46142 159
## 46318 159
## 46849 159
## 47939 159
## 49272 159
## 49633 159
## 49856 159
## 50335 159
## 50710 159
## 51336 159
## 53217 159
## 53458 159
## 56283 159
## 57036 159
## 57182 159
## 60640 159
## 61036 159
## 62023 159
## 62965 159
## 69373 159
## 72013 159
## 72272 159
## 72463 159
## 72676 159
## 74222 159
## 77620 159
## 78280 159
## 81845 159
## 82483 159
## 83346 159
## 85413 159
## 86087 159
## 86128 159
## 86208 159
## 86605 159
## 87244 159
## 87400 159
## 87466 159
## 87509 159
## 87678 159
## 87725 159
## 87953 159
## 88852 159
## 89484 159
## 89612 159
## 90225 159
## 91386 159
## 91744 159
## 92103 159
## 92196 159
## 92236 159
## 92698 159
## 92741 159
## 92817 159
## 93148 159
## 93655 159
## 93722 159
## 94764 159
## 94815 159
## 95523 159
## 95933 159
## 96456 159
## 96969 159
## 97440 159
## 97464 159
## 97687 159
## 76 160
## 598 160
## 702 160
## 1073 160
## 1658 160
## 2033 160
## 2534 160
## 2916 160
## 3454 160
## 3844 160
## 4030 160
## 5200 160
## 6501 160
## 7414 160
## 7608 160
## 8163 160
## 8305 160
## 10720 160
## 12826 160
## 14468 160
## 15318 160
## 16016 160
## 16387 160
## 17258 160
## 17387 160
## 17803 160
## 17947 160
## 18377 160
## 19266 160
## 19618 160
## 20915 160
## 21103 160
## 21495 160
## 22141 160
## 22422 160
## 22516 160
## 23286 160
## 23571 160
## 24617 160
## 25013 160
## 26710 160
## 27344 160
## 27824 160
## 28657 160
## 29206 160
## 30462 160
## 30574 160
## 31833 160
## 32356 160
## 32636 160
## 33507 160
## 34932 160
## 35339 160
## 35909 160
## 36476 160
## 37227 160
## 38173 160
## 38474 160
## 41615 160
## 42311 160
## 42985 160
## 43578 160
## 44347 160
## 45361 160
## 47089 160
## 50206 160
## 50711 160
## 56284 160
## 56677 160
## 56865 160
## 57183 160
## 58946 160
## 59202 160
## 60245 160
## 60902 160
## 61114 160
## 61219 160
## 61250 160
## 61336 160
## 61481 160
## 62525 160
## 62732 160
## 63875 160
## 64106 160
## 64492 160
## 65191 160
## 66101 160
## 66850 160
## 68720 160
## 69255 160
## 70525 160
## 72190 160
## 72954 160
## 73142 160
## 74223 160
## 74991 160
## 77213 160
## 79001 160
## 80374 160
## 83596 160
## 83717 160
## 84028 160
## 85859 160
## 86209 160
## 86539 160
## 87145 160
## 89011 160
## 89237 160
## 89647 160
## 90415 160
## 90492 160
## 90881 160
## 92104 160
## 92359 160
## 92562 160
## 94316 160
## 95585 160
## 95794 160
## 96541 160
## 97031 160
## 2712 161
## 2917 161
## 3567 161
## 6225 161
## 6502 161
## 7609 161
## 9412 161
## 9726 161
## 13890 161
## 14469 161
## 16388 161
## 17948 161
## 18642 161
## 18877 161
## 19267 161
## 22716 161
## 23287 161
## 24618 161
## 25480 161
## 26243 161
## 27577 161
## 27825 161
## 28410 161
## 28957 161
## 29740 161
## 30575 161
## 31045 161
## 32036 161
## 32637 161
## 32897 161
## 34476 161
## 39166 161
## 40484 161
## 41415 161
## 41835 161
## 42312 161
## 43389 161
## 43795 161
## 47890 161
## 48594 161
## 48747 161
## 48987 161
## 58727 161
## 59621 161
## 62388 161
## 63876 161
## 64362 161
## 64424 161
## 64985 161
## 66102 161
## 67828 161
## 71633 161
## 74992 161
## 75862 161
## 88506 161
## 89436 161
## 95239 161
## 97546 161
## 77 162
## 1074 162
## 2034 162
## 4235 162
## 4646 162
## 5724 162
## 6503 162
## 7415 162
## 10721 162
## 15053 162
## 16017 162
## 16778 162
## 17150 162
## 20275 162
## 20584 162
## 21104 162
## 24619 162
## 25749 162
## 26244 162
## 31626 162
## 33973 162
## 35340 162
## 36477 162
## 38877 162
## 45576 162
## 46143 162
## 53218 162
## 55949 162
## 62526 162
## 66103 162
## 69256 162
## 72677 162
## 74224 162
## 78281 162
## 79924 162
## 81846 162
## 85942 162
## 90022 162
## 92006 162
## 92105 162
## 92563 162
## 93533 162
## 4647 163
## 7610 163
## 8615 163
## 13603 163
## 13891 163
## 30576 163
## 33122 163
## 35910 163
## 39511 163
## 40777 163
## 41416 163
## 43796 163
## 44348 163
## 46443 163
## 46850 163
## 47495 163
## 48748 163
## 48988 163
## 50336 163
## 52474 163
## 52977 163
## 59378 163
## 87824 163
## 1659 164
## 14470 164
## 16018 164
## 16389 164
## 16779 164
## 17581 164
## 20757 164
## 26245 164
## 33974 164
## 36478 164
## 37826 164
## 38174 164
## 38711 164
## 39512 164
## 42313 164
## 42827 164
## 42986 164
## 45122 164
## 45362 164
## 46144 164
## 46319 164
## 46444 164
## 47699 164
## 48272 164
## 49634 164
## 49857 164
## 50337 164
## 50712 164
## 50964 164
## 51056 164
## 51337 164
## 52040 164
## 53848 164
## 56285 164
## 56575 164
## 56623 164
## 57037 164
## 61115 164
## 62024 164
## 62235 164
## 67027 164
## 72678 164
## 73826 164
## 73887 164
## 77621 164
## 78282 164
## 78586 164
## 78688 164
## 80292 164
## 81847 164
## 82484 164
## 82961 164
## 85734 164
## 85860 164
## 85943 164
## 86606 164
## 87245 164
## 89238 164
## 89485 164
## 89675 164
## 91288 164
## 92360 164
## 92742 164
## 2918 165
## 9413 165
## 12580 165
## 17949 165
## 21999 165
## 23572 165
## 24620 165
## 25222 165
## 26246 165
## 27826 165
## 30577 165
## 33123 165
## 33975 165
## 34293 165
## 39513 165
## 40117 165
## 41055 165
## 44349 165
## 47357 165
## 48989 165
## 50207 165
## 50338 165
## 50713 165
## 51173 165
## 53956 165
## 57686 165
## 59203 165
## 75570 165
## 95308 165
## 37628 166
## 39514 166
## 43797 166
## 44350 166
## 45577 166
## 46445 166
## 48273 166
## 48595 166
## 49635 166
## 49858 166
## 50714 166
## 52102 166
## 52349 166
## 52475 166
## 78469 166
## 78538 166
## 82485 166
## 82962 166
## 88332 166
## 91289 166
## 1422 167
## 6226 167
## 10300 167
## 11462 167
## 11709 167
## 13320 167
## 14235 167
## 17804 167
## 18878 167
## 19496 167
## 19619 167
## 23573 167
## 27206 167
## 31046 167
## 33124 167
## 33976 167
## 34477 167
## 35659 167
## 36187 167
## 36479 167
## 36838 167
## 37228 167
## 37381 167
## 44351 167
## 45031 167
## 48990 167
## 53459 167
## 54362 167
## 55159 167
## 56138 167
## 59622 167
## 61574 167
## 63204 167
## 64363 167
## 64785 167
## 66698 167
## 66760 167
## 67663 167
## 68632 167
## 70023 167
## 70815 167
## 72955 167
## 73255 167
## 73668 167
## 75069 167
## 76025 167
## 76483 167
## 77329 167
## 77410 167
## 77460 167
## 79265 167
## 80375 167
## 80728 167
## 81174 167
## 81232 167
## 86129 167
## 90277 167
## 95418 167
## 95425 167
## 95863 167
## 96613 167
## 97047 167
## 97969 167
## 97971 167
## 97978 167
## 97980 167
## 97982 167
## 97984 167
## 97985 167
## 78 168
## 1075 168
## 1660 168
## 2919 168
## 4236 168
## 14471 168
## 16019 168
## 16390 168
## 16780 168
## 17259 168
## 17582 168
## 17805 168
## 21105 168
## 26247 168
## 33977 168
## 34478 168
## 36188 168
## 38712 168
## 38957 168
## 39167 168
## 39515 168
## 39959 168
## 41616 168
## 41836 168
## 42035 168
## 42314 168
## 42732 168
## 42828 168
## 42987 168
## 43390 168
## 44352 168
## 45123 168
## 45578 168
## 45990 168
## 46446 168
## 48274 168
## 49859 168
## 50208 168
## 56286 168
## 56785 168
## 57038 168
## 61116 168
## 62236 168
## 62389 168
## 69374 168
## 72537 168
## 72679 168
## 73827 168
## 77622 168
## 78283 168
## 81848 168
## 82127 168
## 82486 168
## 83718 168
## 85560 168
## 86607 168
## 87246 168
## 87401 168
## 89110 168
## 89486 168
## 89562 168
## 91387 168
## 92106 168
## 92361 168
## 92818 168
## 93534 168
## 93790 168
## 96542 168
## 97688 168
## 6504 169
## 17950 169
## 18879 169
## 19053 169
## 23917 169
## 24621 169
## 26248 169
## 30097 169
## 31047 169
## 32357 169
## 32638 169
## 35911 169
## 37629 169
## 39516 169
## 40118 169
## 46447 169
## 46851 169
## 47865 169
## 49463 169
## 51057 169
## 58847 169
## 60012 169
## 63502 169
## 63736 169
## 63877 169
## 64902 169
## 65271 169
## 65409 169
## 68024 169
## 68977 169
## 72956 169
## 73143 169
## 73256 169
## 78047 169
## 78113 169
## 79515 169
## 87825 169
## 37827 170
## 39517 170
## 39960 170
## 44353 170
## 45247 170
## 45579 170
## 46320 170
## 46448 170
## 47358 170
## 49636 170
## 49860 170
## 50339 170
## 50715 170
## 51338 170
## 77623 170
## 78470 170
## 82759 170
## 87679 170
## 91290 170
## 91388 170
## 37828 171
## 39518 171
## 40279 171
## 40778 171
## 41056 171
## 41417 171
## 43798 171
## 44354 171
## 45248 171
## 47090 171
## 47359 171
## 47496 171
## 47589 171
## 47940 171
## 48275 171
## 48596 171
## 50340 171
## 50516 171
## 51861 171
## 52213 171
## 52350 171
## 52739 171
## 78689 171
## 88127 171
## 88731 171
## 92664 171
## 3845 172
## 17388 172
## 25481 172
## 25616 172
## 26939 172
## 33779 172
## 58390 172
## 58728 172
## 58947 172
## 61337 172
## 61482 172
## 63205 172
## 63878 172
## 64240 172
## 64493 172
## 66851 172
## 71525 172
## 71634 172
## 72957 172
## 73257 172
## 73554 172
## 75110 172
## 76281 172
## 79227 172
## 84123 172
## 95586 172
## 96221 172
## 37511 173
## 37829 173
## 39519 173
## 39961 173
## 40119 173
## 40280 173
## 40779 173
## 43799 173
## 44794 173
## 45249 173
## 45580 173
## 46321 173
## 46449 173
## 46852 173
## 47091 173
## 47497 173
## 47590 173
## 49273 173
## 49464 173
## 49637 173
## 49861 173
## 50077 173
## 50341 173
## 50517 173
## 50716 173
## 50965 173
## 51058 173
## 51174 173
## 51556 173
## 77624 173
## 78471 173
## 78690 173
## 87589 173
## 87826 173
## 87954 173
## 89780 173
## 89812 173
## 91291 173
## 91634 173
## 97527 173
## 79 174
## 1661 174
## 2035 174
## 2274 174
## 2535 174
## 2713 174
## 2920 174
## 3455 174
## 4648 174
## 4890 174
## 5049 174
## 5614 174
## 5667 174
## 6337 174
## 6505 174
## 7611 174
## 8497 174
## 8861 174
## 8984 174
## 9139 174
## 9414 174
## 9727 174
## 11005 174
## 11218 174
## 11859 174
## 12005 174
## 12938 174
## 13892 174
## 14236 174
## 14472 174
## 15192 174
## 15503 174
## 16020 174
## 16391 174
## 17151 174
## 17389 174
## 17583 174
## 17806 174
## 18643 174
## 19760 174
## 19782 174
## 19834 174
## 20050 174
## 20585 174
## 21106 174
## 21891 174
## 22258 174
## 22423 174
## 22717 174
## 23181 174
## 23288 174
## 25617 174
## 29492 174
## 29741 174
## 30578 174
## 31048 174
## 32037 174
## 32898 174
## 33125 174
## 33847 174
## 36480 174
## 36839 174
## 37071 174
## 37229 174
## 37744 174
## 38047 174
## 38175 174
## 38958 174
## 40780 174
## 41418 174
## 42315 174
## 42640 174
## 42733 174
## 43391 174
## 43800 174
## 44355 174
## 45363 174
## 48148 174
## 48597 174
## 49862 174
## 51175 174
## 51339 174
## 51862 174
## 52476 174
## 53460 174
## 53760 174
## 53795 174
## 53891 174
## 54363 174
## 54568 174
## 54602 174
## 54884 174
## 55024 174
## 55242 174
## 55424 174
## 55482 174
## 55685 174
## 55775 174
## 56624 174
## 57184 174
## 57376 174
## 57472 174
## 58100 174
## 59379 174
## 60641 174
## 61037 174
## 61117 174
## 62025 174
## 62966 174
## 69375 174
## 69957 174
## 71128 174
## 71237 174
## 71375 174
## 71635 174
## 72680 174
## 73979 174
## 75366 174
## 76026 174
## 76607 174
## 76837 174
## 79152 174
## 79290 174
## 79722 174
## 79825 174
## 80144 174
## 80228 174
## 80493 174
## 80551 174
## 80604 174
## 80642 174
## 81539 174
## 81849 174
## 82351 174
## 83597 174
## 83719 174
## 83848 174
## 83932 174
## 84373 174
## 84443 174
## 85735 174
## 86506 174
## 86608 174
## 86757 174
## 87097 174
## 87402 174
## 88625 174
## 88706 174
## 89676 174
## 89781 174
## 90278 174
## 90341 174
## 90372 174
## 90456 174
## 91389 174
## 91731 174
## 92237 174
## 92482 174
## 92819 174
## 92980 174
## 92999 174
## 93061 174
## 93309 174
## 93854 174
## 94387 174
## 94604 174
## 94724 174
## 95729 174
## 96970 174
## 97162 174
## 97441 174
## 97497 174
## 97741 174
## 97986 174
## 98002 174
## 98009 174
## 1662 175
## 2036 175
## 2275 175
## 5050 175
## 6506 175
## 7612 175
## 8616 175
## 9964 175
## 12006 175
## 13321 175
## 13893 175
## 14473 175
## 15504 175
## 17951 175
## 18644 175
## 18880 175
## 19497 175
## 20586 175
## 23918 175
## 25223 175
## 26940 175
## 27578 175
## 27827 175
## 28781 175
## 29207 175
## 32899 175
## 35912 175
## 41617 175
## 57687 175
## 63879 175
## 64986 175
## 66104 175
## 70590 175
## 74379 175
## 76608 175
## 76753 175
## 77197 175
## 87354 175
## 1076 176
## 2536 176
## 4237 176
## 6507 176
## 12827 176
## 14474 176
## 15505 176
## 16021 176
## 18378 176
## 20916 176
## 21107 176
## 26249 176
## 33978 176
## 36375 176
## 36481 176
## 37230 176
## 38048 176
## 38475 176
## 39168 176
## 39520 176
## 40281 176
## 41057 176
## 41419 176
## 41618 176
## 43579 176
## 43801 176
## 44356 176
## 44795 176
## 45364 176
## 45581 176
## 46069 176
## 46145 176
## 47498 176
## 49274 176
## 49465 176
## 50078 176
## 50209 176
## 50518 176
## 50717 176
## 51863 176
## 52103 176
## 52272 176
## 52477 176
## 56287 176
## 61118 176
## 62733 176
## 66105 176
## 81760 176
## 82826 176
## 82963 176
## 87590 176
## 87627 176
## 87680 176
## 88873 176
## 89319 176
## 90226 176
## 90416 176
## 91857 176
## 92107 176
## 94844 176
## 80 177
## 1077 177
## 2037 177
## 2276 177
## 3568 177
## 3846 177
## 5725 177
## 6091 177
## 6508 177
## 7416 177
## 7613 177
## 8164 177
## 8239 177
## 8617 177
## 9415 177
## 10722 177
## 11860 177
## 12236 177
## 12713 177
## 13322 177
## 13894 177
## 14475 177
## 16781 177
## 17390 177
## 17952 177
## 18379 177
## 19268 177
## 20276 177
## 20917 177
## 21496 177
## 21730 177
## 22000 177
## 22424 177
## 22517 177
## 23289 177
## 23919 177
## 24278 177
## 24622 177
## 25014 177
## 25224 177
## 25750 177
## 26250 177
## 26711 177
## 26941 177
## 27579 177
## 27828 177
## 29208 177
## 29493 177
## 29742 177
## 29961 177
## 30269 177
## 30839 177
## 31049 177
## 31834 177
## 32038 177
## 33126 177
## 33384 177
## 33848 177
## 34294 177
## 36840 177
## 37630 177
## 37830 177
## 39521 177
## 40120 177
## 41058 177
## 41206 177
## 42316 177
## 44357 177
## 44796 177
## 45250 177
## 45582 177
## 46322 177
## 46450 177
## 47092 177
## 47700 177
## 48991 177
## 49466 177
## 49638 177
## 50079 177
## 50519 177
## 51340 177
## 51557 177
## 51637 177
## 51712 177
## 51864 177
## 52104 177
## 53219 177
## 55950 177
## 57941 177
## 59380 177
## 61819 177
## 61892 177
## 62734 177
## 66106 177
## 68241 177
## 70816 177
## 74225 177
## 75111 177
## 75571 177
## 75863 177
## 77625 177
## 78587 177
## 79002 177
## 82487 177
## 85135 177
## 87779 177
## 88874 177
## 90227 177
## 90666 177
## 90747 177
## 93196 177
## 94189 177
## 95103 177
## 96892 177
## 81 178
## 469 178
## 1078 178
## 1423 178
## 1663 178
## 2038 178
## 2277 178
## 2921 178
## 3159 178
## 3569 178
## 4031 178
## 4238 178
## 4649 178
## 5051 178
## 5415 178
## 5531 178
## 6509 178
## 7003 178
## 7417 178
## 7614 178
## 7996 178
## 8376 178
## 8618 178
## 8985 178
## 9416 178
## 9728 178
## 9965 178
## 10301 178
## 10425 178
## 10500 178
## 10723 178
## 11219 178
## 11463 178
## 11861 178
## 12237 178
## 12478 178
## 12714 178
## 13082 178
## 13323 178
## 13604 178
## 13895 178
## 14237 178
## 14476 178
## 15127 178
## 15506 178
## 16022 178
## 16392 178
## 16782 178
## 17260 178
## 17391 178
## 17584 178
## 17953 178
## 18526 178
## 18881 178
## 19054 178
## 19269 178
## 20051 178
## 20277 178
## 20587 178
## 20758 178
## 21497 178
## 21892 178
## 22001 178
## 22142 178
## 22518 178
## 22918 178
## 23290 178
## 23920 178
## 24279 178
## 24623 178
## 25225 178
## 25618 178
## 25751 178
## 25975 178
## 26251 178
## 26942 178
## 27207 178
## 27829 178
## 28782 178
## 28958 178
## 29209 178
## 29494 178
## 29743 178
## 30098 178
## 30270 178
## 30579 178
## 30840 178
## 31050 178
## 31835 178
## 32039 178
## 32765 178
## 32900 178
## 33127 178
## 33508 178
## 33674 178
## 33780 178
## 33979 178
## 34295 178
## 34585 178
## 34933 178
## 35165 178
## 35341 178
## 35660 178
## 35766 178
## 35913 178
## 36189 178
## 36482 178
## 36841 178
## 37382 178
## 37745 178
## 37831 178
## 38049 178
## 38176 178
## 38333 178
## 38476 178
## 38959 178
## 39169 178
## 39522 178
## 39962 178
## 40121 178
## 40485 178
## 40781 178
## 41207 178
## 41619 178
## 41837 178
## 42036 178
## 42317 178
## 42734 178
## 42829 178
## 42988 178
## 43207 178
## 43392 178
## 43802 178
## 44358 178
## 45365 178
## 45583 178
## 45991 178
## 46146 178
## 46451 178
## 47093 178
## 47360 178
## 48276 178
## 48749 178
## 48859 178
## 48992 178
## 49275 178
## 49639 178
## 49863 178
## 50342 178
## 50718 178
## 51059 178
## 51176 178
## 51341 178
## 51794 178
## 51865 178
## 52041 178
## 52740 178
## 53220 178
## 53413 178
## 53614 178
## 54696 178
## 56288 178
## 56866 178
## 58101 178
## 58524 178
## 59042 178
## 59381 178
## 59623 178
## 60869 178
## 60903 178
## 61119 178
## 61220 178
## 61575 178
## 61820 178
## 62026 178
## 62237 178
## 62967 178
## 63206 178
## 63503 178
## 63880 178
## 64107 178
## 64661 178
## 64903 178
## 65885 178
## 66107 178
## 66417 178
## 66547 178
## 67538 178
## 68721 178
## 68881 178
## 69086 178
## 69376 178
## 69646 178
## 70591 178
## 70817 178
## 71417 178
## 72014 178
## 72273 178
## 72538 178
## 72681 178
## 73314 178
## 73828 178
## 74049 178
## 74226 178
## 75572 178
## 75864 178
## 76027 178
## 76400 178
## 77626 178
## 77817 178
## 77949 178
## 78114 178
## 78284 178
## 79153 178
## 80413 178
## 80643 178
## 80863 178
## 80963 178
## 81233 178
## 81540 178
## 81850 178
## 82128 178
## 82230 178
## 82488 178
## 82964 178
## 83347 178
## 83598 178
## 83720 178
## 83849 178
## 84444 178
## 84531 178
## 84687 178
## 84768 178
## 85220 178
## 85561 178
## 85736 178
## 86609 178
## 86758 178
## 86865 178
## 87146 178
## 87247 178
## 87510 178
## 87681 178
## 87726 178
## 88360 178
## 89239 178
## 91159 178
## 91292 178
## 91569 178
## 91752 178
## 92007 178
## 92108 178
## 92362 178
## 92820 178
## 93000 178
## 93062 178
## 93171 178
## 93535 178
## 93656 178
## 93791 178
## 94934 178
## 95309 178
## 95999 178
## 96171 178
## 96543 178
## 97465 178
## 97752 178
## 97933 178
## 98023 178
## 98034 178
## 39523 179
## 40782 179
## 41208 179
## 41420 179
## 44359 179
## 46452 179
## 46853 179
## 47094 179
## 47499 179
## 47701 179
## 47941 179
## 48277 179
## 48598 179
## 48750 179
## 49467 179
## 51060 179
## 51342 179
## 51795 179
## 51866 179
## 52273 179
## 52351 179
## 52478 179
## 52712 179
## 52741 179
## 53380 179
## 68978 179
## 77950 179
## 78691 179
## 78819 179
## 82827 179
## 82965 179
## 88315 179
## 88361 179
## 88626 179
## 88707 179
## 88805 179
## 88830 179
## 88846 179
## 95453 179
## 97225 179
## 98057 179
## 2278 180
## 4650 180
## 5615 180
## 7176 180
## 7615 180
## 9140 180
## 9246 180
## 9417 180
## 10724 180
## 11464 180
## 13896 180
## 15507 180
## 16783 180
## 21498 180
## 22002 180
## 24280 180
## 26252 180
## 27580 180
## 28411 180
## 29495 180
## 30463 180
## 30580 180
## 31051 180
## 32639 180
## 33128 180
## 33980 180
## 36190 180
## 39524 180
## 48993 180
## 52851 180
## 53615 180
## 53957 180
## 54251 180
## 55951 180
## 57942 180
## 58102 180
## 59043 180
## 59382 180
## 61338 180
## 61821 180
## 74489 180
## 76028 180
## 76401 180
## 76609 180
## 78115 180
## 79093 180
## 80229 180
## 80864 180
## 81018 180
## 81175 180
## 81234 180
## 81440 180
## 81541 180
## 82352 180
## 83599 180
## 84266 180
## 84572 180
## 84688 180
## 89844 180
## 90690 180
## 93470 180
## 95310 180
## 95507 180
## 82 181
## 599 181
## 977 181
## 1079 181
## 1664 181
## 1919 181
## 2537 181
## 2714 181
## 2922 181
## 3160 181
## 3293 181
## 3310 181
## 3377 181
## 3456 181
## 4032 181
## 4239 181
## 12828 181
## 14477 181
## 15025 181
## 15036 181
## 15054 181
## 15128 181
## 15193 181
## 15234 181
## 15319 181
## 15508 181
## 15728 181
## 15863 181
## 16023 181
## 16393 181
## 16650 181
## 16784 181
## 17152 181
## 17261 181
## 17392 181
## 17585 181
## 17807 181
## 18380 181
## 18491 181
## 19620 181
## 20546 181
## 20588 181
## 20759 181
## 20873 181
## 20918 181
## 21108 181
## 33781 181
## 33849 181
## 33981 181
## 34416 181
## 34479 181
## 36191 181
## 36376 181
## 36483 181
## 37231 181
## 37512 181
## 37631 181
## 37832 181
## 38647 181
## 39106 181
## 39525 181
## 39963 181
## 40122 181
## 40230 181
## 40282 181
## 40332 181
## 40364 181
## 40684 181
## 40783 181
## 41059 181
## 41620 181
## 41838 181
## 42037 181
## 42318 181
## 42571 181
## 42641 181
## 42694 181
## 42735 181
## 42830 181
## 42989 181
## 43208 181
## 43393 181
## 43580 181
## 43803 181
## 44206 181
## 44360 181
## 44797 181
## 45032 181
## 45124 181
## 45251 181
## 45584 181
## 46323 181
## 46453 181
## 46854 181
## 47095 181
## 47361 181
## 47500 181
## 47591 181
## 47702 181
## 47866 181
## 49276 181
## 49468 181
## 49640 181
## 49864 181
## 50080 181
## 50210 181
## 50343 181
## 50520 181
## 50719 181
## 50966 181
## 51004 181
## 51061 181
## 51177 181
## 51343 181
## 51558 181
## 51614 181
## 51638 181
## 51679 181
## 53221 181
## 53340 181
## 53359 181
## 53414 181
## 53761 181
## 53796 181
## 53849 181
## 56289 181
## 56576 181
## 56625 181
## 56678 181
## 56786 181
## 56867 181
## 57039 181
## 57185 181
## 57271 181
## 58361 181
## 60904 181
## 61038 181
## 61078 181
## 61120 181
## 61194 181
## 61221 181
## 62027 181
## 62238 181
## 62390 181
## 62735 181
## 62968 181
## 63113 181
## 66108 181
## 69257 181
## 69377 181
## 69591 181
## 72274 181
## 72435 181
## 72464 181
## 72539 181
## 72682 181
## 72848 181
## 73829 181
## 73888 181
## 74227 181
## 77516 181
## 77627 181
## 77913 181
## 77951 181
## 78048 181
## 78285 181
## 78472 181
## 78539 181
## 78692 181
## 79154 181
## 80056 181
## 80293 181
## 80361 181
## 81693 181
## 81761 181
## 81851 181
## 82077 181
## 82129 181
## 82489 181
## 82760 181
## 83348 181
## 83465 181
## 83500 181
## 83600 181
## 83721 181
## 83850 181
## 83906 181
## 83917 181
## 85354 181
## 85414 181
## 85533 181
## 85562 181
## 85618 181
## 85737 181
## 85804 181
## 85861 181
## 85944 181
## 86022 181
## 86071 181
## 86088 181
## 86130 181
## 86210 181
## 86235 181
## 86283 181
## 86383 181
## 86436 181
## 86540 181
## 86610 181
## 86759 181
## 86806 181
## 87147 181
## 87248 181
## 87375 181
## 87403 181
## 87467 181
## 87511 181
## 87591 181
## 87628 181
## 87682 181
## 87727 181
## 87780 181
## 87827 181
## 87955 181
## 88003 181
## 88036 181
## 88049 181
## 88057 181
## 88074 181
## 88128 181
## 88875 181
## 88956 181
## 89012 181
## 89111 181
## 89189 181
## 89240 181
## 89320 181
## 89336 181
## 89437 181
## 89487 181
## 89563 181
## 89613 181
## 89648 181
## 89677 181
## 89782 181
## 89813 181
## 90228 181
## 90342 181
## 90417 181
## 91024 181
## 91058 181
## 91097 181
## 91113 181
## 91160 181
## 91188 181
## 91220 181
## 91240 181
## 91250 181
## 91269 181
## 91293 181
## 91329 181
## 91353 181
## 91390 181
## 91462 181
## 91500 181
## 91528 181
## 91635 181
## 91732 181
## 91745 181
## 91858 181
## 91898 181
## 91959 181
## 92008 181
## 92326 181
## 92483 181
## 92665 181
## 92743 181
## 92783 181
## 92821 181
## 93001 181
## 93030 181
## 93172 181
## 93281 181
## 93536 181
## 93657 181
## 93723 181
## 93792 181
## 93833 181
## 93878 181
## 93923 181
## 93962 181
## 93996 181
## 94030 181
## 94190 181
## 94229 181
## 94506 181
## 94548 181
## 94572 181
## 94591 181
## 94605 181
## 94624 181
## 94780 181
## 94799 181
## 94816 181
## 94845 181
## 94999 181
## 95186 181
## 95199 181
## 95240 181
## 95363 181
## 95465 181
## 95479 181
## 95524 181
## 95587 181
## 95697 181
## 95917 181
## 95927 181
## 95934 181
## 96063 181
## 96075 181
## 96080 181
## 96105 181
## 96112 181
## 96207 181
## 96236 181
## 96243 181
## 96396 181
## 96544 181
## 96583 181
## 96591 181
## 96622 181
## 96818 181
## 97299 181
## 97349 181
## 97424 181
## 97451 181
## 97485 181
## 97528 181
## 97625 181
## 97660 181
## 97668 181
## 97713 181
## 97728 181
## 97742 181
## 97769 181
## 97827 181
## 97833 181
## 97840 181
## 97849 181
## 97877 181
## 97884 181
## 97947 181
## 98003 181
## 98064 181
## 98068 181
## 98071 181
## 98075 181
## 98076 181
## 98078 181
## 98084 181
## 98087 181
## 98092 181
## 98093 181
## 98099 181
## 98102 181
## 98108 181
## 98109 181
## 98113 181
## 98117 181
## 98119 181
## 98124 181
## 98126 181
## 98137 181
## 98147 181
## 98156 181
## 98160 181
## 98161 181
## 98162 181
## 98163 181
## 98165 181
## 98166 181
## 98171 181
## 98173 181
## 98178 181
## 98182 181
## 98183 181
## 98184 181
## 98186 181
## 98189 181
## 98190 181
## 98195 181
## 98197 181
## 98203 181
## 98206 181
## 98209 181
## 98211 181
## 98213 181
## 98215 181
## 98218 181
## 98220 181
## 98221 181
## 98222 181
## 98224 181
## 98225 181
## 98230 181
## 98236 181
## 98240 181
## 98243 181
## 98245 181
## 98248 181
## 98249 181
## 98251 181
## 98261 181
## 98268 181
## 98272 181
## 98277 181
## 98284 181
## 98290 181
## 98298 181
## 98302 181
## 98308 181
## 98311 181
## 98316 181
## 98322 181
## 98325 181
## 98331 181
## 98334 181
## 98336 181
## 98339 181
## 98344 181
## 98353 181
## 98360 181
## 83 182
## 2923 182
## 6227 182
## 6510 182
## 9418 182
## 14478 182
## 15509 182
## 16785 182
## 17262 182
## 17808 182
## 20919 182
## 23921 182
## 25619 182
## 26253 182
## 28412 182
## 30841 182
## 33982 182
## 36484 182
## 39170 182
## 43209 182
## 45366 182
## 58103 182
## 62028 182
## 63324 182
## 72540 182
## 83722 182
## 86611 182
## 87148 182
## 6511 183
## 7304 183
## 7418 183
## 8377 183
## 10501 183
## 12007 183
## 12939 183
## 13324 183
## 16786 183
## 20278 183
## 22321 183
## 25226 183
## 25482 183
## 26254 183
## 30581 183
## 30842 183
## 32040 183
## 32541 183
## 33129 183
## 33983 183
## 34480 183
## 34586 183
## 34759 183
## 34934 183
## 35166 183
## 35342 183
## 37383 183
## 38477 183
## 39171 183
## 39526 183
## 40486 183
## 41060 183
## 41621 183
## 41839 183
## 45585 183
## 51062 183
## 52852 183
## 54031 183
## 54252 183
## 56290 183
## 59044 183
## 60455 183
## 60565 183
## 63881 183
## 64241 183
## 70444 183
## 75430 183
## 80414 183
## 81542 183
## 94688 183
## 96025 183
## 96819 183
## 96856 183
## 84 184
## 1080 184
## 1665 184
## 2039 184
## 2538 184
## 2715 184
## 2924 184
## 3378 184
## 3570 184
## 4240 184
## 4891 184
## 5360 184
## 5377 184
## 5616 184
## 5896 184
## 6092 184
## 6512 184
## 7004 184
## 7083 184
## 7616 184
## 7941 184
## 7997 184
## 8619 184
## 8862 184
## 8986 184
## 9141 184
## 9419 184
## 9729 184
## 9966 184
## 10170 184
## 10502 184
## 10725 184
## 11220 184
## 11710 184
## 12008 184
## 12238 184
## 12581 184
## 12715 184
## 12829 184
## 13083 184
## 13605 184
## 13897 184
## 14479 184
## 15864 184
## 16024 184
## 16394 184
## 16787 184
## 17393 184
## 17809 184
## 17954 184
## 18645 184
## 19055 184
## 19621 184
## 20052 184
## 21499 184
## 21893 184
## 22425 184
## 22519 184
## 22919 184
## 23057 184
## 23121 184
## 23692 184
## 23922 184
## 24624 184
## 25015 184
## 25227 184
## 26255 184
## 26712 184
## 26943 184
## 27345 184
## 27830 184
## 28413 184
## 28658 184
## 29496 184
## 29744 184
## 30582 184
## 30843 184
## 31535 184
## 31627 184
## 32041 184
## 32542 184
## 32640 184
## 32901 184
## 33130 184
## 33385 184
## 33509 184
## 33782 184
## 33850 184
## 34296 184
## 35526 184
## 36192 184
## 36485 184
## 36842 184
## 37384 184
## 38478 184
## 38713 184
## 38878 184
## 38960 184
## 39527 184
## 39964 184
## 40283 184
## 41421 184
## 41840 184
## 42038 184
## 42319 184
## 42572 184
## 43210 184
## 43581 184
## 43804 184
## 44207 184
## 46855 184
## 48278 184
## 48860 184
## 48994 184
## 49469 184
## 51867 184
## 52978 184
## 53762 184
## 53892 184
## 53958 184
## 54102 184
## 54364 184
## 54471 184
## 54969 184
## 55243 184
## 55483 184
## 55576 184
## 55686 184
## 55776 184
## 55952 184
## 56291 184
## 56868 184
## 57040 184
## 57186 184
## 58104 184
## 58729 184
## 60013 184
## 60246 184
## 60642 184
## 61121 184
## 61339 184
## 62391 184
## 62969 184
## 63207 184
## 63504 184
## 63882 184
## 64242 184
## 64425 184
## 64494 184
## 64726 184
## 64987 184
## 65192 184
## 65272 184
## 65702 184
## 65886 184
## 66109 184
## 66294 184
## 66548 184
## 66699 184
## 66852 184
## 67028 184
## 67277 184
## 67664 184
## 67774 184
## 67829 184
## 68242 184
## 68422 184
## 68541 184
## 68722 184
## 69958 184
## 70240 184
## 70818 184
## 71636 184
## 71825 184
## 72015 184
## 72275 184
## 72541 184
## 72884 184
## 73144 184
## 73258 184
## 74380 184
## 74490 184
## 74600 184
## 74945 184
## 74993 184
## 75112 184
## 75196 184
## 75226 184
## 75300 184
## 75573 184
## 75865 184
## 76029 184
## 76282 184
## 76610 184
## 77032 184
## 77087 184
## 77517 184
## 78863 184
## 79003 184
## 79094 184
## 79291 184
## 79651 184
## 79723 184
## 80145 184
## 80230 184
## 80644 184
## 80865 184
## 81235 184
## 81366 184
## 81493 184
## 81543 184
## 81852 184
## 82353 184
## 83907 184
## 84374 184
## 84769 184
## 85101 184
## 85355 184
## 86320 184
## 86347 184
## 86612 184
## 86960 184
## 89979 184
## 90106 184
## 90279 184
## 90343 184
## 90541 184
## 90991 184
## 91636 184
## 91786 184
## 91859 184
## 91960 184
## 92109 184
## 92238 184
## 92591 184
## 94031 184
## 94606 184
## 94935 184
## 95241 184
## 95381 184
## 95670 184
## 95698 184
## 95882 184
## 96037 184
## 96137 184
## 96524 184
## 97202 184
## 97904 184
## 98366 184
## 98371 184
## 98376 184
## 1666 185
## 2925 185
## 3847 185
## 4241 185
## 4651 185
## 6093 185
## 6513 185
## 11711 185
## 15510 185
## 15762 185
## 15865 185
## 17955 185
## 22426 185
## 25620 185
## 26256 185
## 29497 185
## 29745 185
## 30099 185
## 31359 185
## 33131 185
## 34297 185
## 36486 185
## 37072 185
## 39528 185
## 40784 185
## 42039 185
## 42320 185
## 42695 185
## 43582 185
## 43805 185
## 44208 185
## 47096 185
## 48995 185
## 49470 185
## 58105 185
## 60247 185
## 63505 185
## 66853 185
## 67029 185
## 68423 185
## 74900 185
## 78693 185
## 79391 185
## 79458 185
## 81694 185
## 86613 185
## 89845 185
## 92592 185
## 2279 186
## 5052 186
## 5416 186
## 5897 186
## 7177 186
## 7419 186
## 7617 186
## 9967 186
## 10503 186
## 10726 186
## 13084 186
## 13898 186
## 14480 186
## 15129 186
## 16025 186
## 16395 186
## 16788 186
## 20589 186
## 20760 186
## 22322 186
## 25483 186
## 30844 186
## 34481 186
## 34587 186
## 36487 186
## 37632 186
## 38479 186
## 39172 186
## 39529 186
## 40333 186
## 40785 186
## 42831 186
## 44361 186
## 45125 186
## 45586 186
## 45992 186
## 46147 186
## 46324 186
## 46454 186
## 47097 186
## 47592 186
## 49641 186
## 50521 186
## 51005 186
## 51063 186
## 51178 186
## 51344 186
## 51713 186
## 52853 186
## 54697 186
## 56292 186
## 56577 186
## 61893 186
## 63114 186
## 69087 186
## 69378 186
## 69747 186
## 70024 186
## 70592 186
## 70819 186
## 72016 186
## 72276 186
## 72465 186
## 72542 186
## 78116 186
## 78588 186
## 80294 186
## 81853 186
## 83179 186
## 84029 186
## 85619 186
## 86089 186
## 87956 186
## 88129 186
## 89190 186
## 89678 186
## 89846 186
## 91114 186
## 91270 186
## 91391 186
## 92363 186
## 93002 186
## 93365 186
## 93471 186
## 94564 186
## 96801 186
## 97433 186
## 97669 186
## 98138 186
## 98312 186
## 98378 186
## 1424 187
## 3848 187
## 4652 187
## 7084 187
## 8620 187
## 8863 187
## 9420 187
## 9730 187
## 11465 187
## 11712 187
## 13606 187
## 15866 187
## 19056 187
## 19270 187
## 19622 187
## 23291 187
## 24281 187
## 25016 187
## 25752 187
## 27581 187
## 28414 187
## 29498 187
## 29746 187
## 31052 187
## 31836 187
## 32042 187
## 32641 187
## 32766 187
## 32902 187
## 33132 187
## 37385 187
## 42040 187
## 46455 187
## 58106 187
## 58525 187
## 58730 187
## 59383 187
## 59624 187
## 61340 187
## 67775 187
## 67830 187
## 71637 187
## 75574 187
## 76484 187
## 76611 187
## 76925 187
## 79095 187
## 79652 187
## 79925 187
## 81019 187
## 81236 187
## 81367 187
## 82354 187
## 84770 187
## 94123 187
## 95311 187
## 897 188
## 1081 188
## 2040 188
## 2539 188
## 3571 188
## 4653 188
## 5417 188
## 6514 188
## 7305 188
## 7618 188
## 8621 188
## 8987 188
## 9421 188
## 10426 188
## 10504 188
## 10727 188
## 12009 188
## 13325 188
## 13607 188
## 13899 188
## 14481 188
## 16396 188
## 16789 188
## 17956 188
## 20053 188
## 20279 188
## 20761 188
## 21109 188
## 21500 188
## 22143 188
## 22323 188
## 22520 188
## 22718 188
## 22920 188
## 24282 188
## 24625 188
## 25228 188
## 25484 188
## 25976 188
## 26257 188
## 27346 188
## 27831 188
## 28415 188
## 28959 188
## 29210 188
## 30100 188
## 30583 188
## 31053 188
## 31360 188
## 31837 188
## 32043 188
## 32358 188
## 33133 188
## 33510 188
## 34588 188
## 35767 188
## 35914 188
## 36488 188
## 37232 188
## 39965 188
## 40487 188
## 42832 188
## 44362 188
## 45587 188
## 46456 188
## 48996 188
## 50344 188
## 52854 188
## 52979 188
## 55160 188
## 57688 188
## 60014 188
## 60905 188
## 61341 188
## 61754 188
## 61894 188
## 62527 188
## 63883 188
## 64108 188
## 64243 188
## 65273 188
## 65703 188
## 66418 188
## 66549 188
## 67462 188
## 69959 188
## 70025 188
## 70593 188
## 70820 188
## 72277 188
## 74228 188
## 74381 188
## 74601 188
## 74749 188
## 75575 188
## 77330 188
## 77628 188
## 78117 188
## 78864 188
## 80295 188
## 81020 188
## 81854 188
## 83851 188
## 83983 188
## 84771 188
## 87149 188
## 87728 188
## 89337 188
## 89488 188
## 93310 188
## 96802 188
## 97505 188
## 85 189
## 703 189
## 1082 189
## 1425 189
## 1667 189
## 1920 189
## 2540 189
## 2716 189
## 2926 189
## 3161 189
## 3379 189
## 3457 189
## 4033 189
## 4654 189
## 4994 189
## 5053 189
## 5898 189
## 5977 189
## 6515 189
## 7619 189
## 8165 189
## 8240 189
## 8306 189
## 10728 189
## 11466 189
## 12239 189
## 12582 189
## 13326 189
## 13608 189
## 14238 189
## 14482 189
## 15055 189
## 16397 189
## 16651 189
## 16790 189
## 17394 189
## 17957 189
## 18381 189
## 18527 189
## 18646 189
## 18882 189
## 19057 189
## 19271 189
## 19498 189
## 19623 189
## 20054 189
## 20920 189
## 21110 189
## 22144 189
## 22719 189
## 23058 189
## 23122 189
## 23693 189
## 23923 189
## 24283 189
## 24626 189
## 25017 189
## 25229 189
## 25621 189
## 25753 189
## 25977 189
## 26258 189
## 27347 189
## 27582 189
## 28416 189
## 28960 189
## 29499 189
## 29747 189
## 29962 189
## 30101 189
## 30845 189
## 31054 189
## 31536 189
## 31838 189
## 32767 189
## 33134 189
## 34482 189
## 35915 189
## 36843 189
## 37386 189
## 38050 189
## 38177 189
## 38846 189
## 38961 189
## 41841 189
## 42041 189
## 42321 189
## 42833 189
## 43211 189
## 45588 189
## 46070 189
## 48279 189
## 48861 189
## 48997 189
## 54103 189
## 54365 189
## 56293 189
## 57559 189
## 58107 189
## 59384 189
## 61195 189
## 61342 189
## 62392 189
## 62528 189
## 63325 189
## 63506 189
## 63884 189
## 64109 189
## 64244 189
## 64364 189
## 64426 189
## 64555 189
## 64727 189
## 64988 189
## 65274 189
## 65410 189
## 65485 189
## 65648 189
## 65815 189
## 66419 189
## 66550 189
## 66700 189
## 66761 189
## 67213 189
## 67278 189
## 67539 189
## 67831 189
## 68025 189
## 68102 189
## 68243 189
## 68723 189
## 68831 189
## 70821 189
## 71638 189
## 72017 189
## 72543 189
## 72958 189
## 73315 189
## 73805 189
## 74447 189
## 74602 189
## 74722 189
## 74901 189
## 74946 189
## 75301 189
## 75734 189
## 75866 189
## 76223 189
## 76283 189
## 76485 189
## 76754 189
## 76926 189
## 79096 189
## 79516 189
## 81021 189
## 81855 189
## 82966 189
## 84772 189
## 85415 189
## 85620 189
## 86807 189
## 86961 189
## 87113 189
## 88806 189
## 89679 189
## 90418 189
## 91501 189
## 91762 189
## 92593 189
## 92627 189
## 93909 189
## 93997 189
## 94124 189
## 94864 189
## 94903 189
## 95200 189
## 95242 189
## 95982 189
## 98035 189
## 98246 189
## 98385 189
## 98395 189
## 98413 189
## 98417 189
## 98421 189
## 1083 190
## 1668 190
## 2927 190
## 4034 190
## 14483 190
## 16026 190
## 16398 190
## 16791 190
## 17586 190
## 20590 190
## 20762 190
## 33984 190
## 36489 190
## 37833 190
## 39530 190
## 40786 190
## 41422 190
## 41622 190
## 42322 190
## 42834 190
## 42990 190
## 44363 190
## 45126 190
## 45589 190
## 46457 190
## 47098 190
## 47942 190
## 48280 190
## 50345 190
## 50522 190
## 50720 190
## 51345 190
## 51868 190
## 52742 190
## 53415 190
## 56294 190
## 62029 190
## 66110 190
## 69049 190
## 69258 190
## 69379 190
## 72278 190
## 72683 190
## 74229 190
## 78286 190
## 79155 190
## 80296 190
## 81856 190
## 82490 190
## 82967 190
## 85738 190
## 85945 190
## 88362 190
## 88507 190
## 89489 190
## 91025 190
## 91115 190
## 91463 190
## 98010 190
## 11713 191
## 40787 191
## 41061 191
## 41423 191
## 43806 191
## 44364 191
## 46458 191
## 46856 191
## 47099 191
## 47703 191
## 48281 191
## 48599 191
## 48751 191
## 50721 191
## 51064 191
## 51179 191
## 51796 191
## 51869 191
## 52105 191
## 52274 191
## 82828 191
## 82968 191
## 83117 191
## 83180 191
## 88257 191
## 88460 191
## 88574 191
## 1084 192
## 1669 192
## 4242 192
## 6516 192
## 14484 192
## 15235 192
## 15511 192
## 16399 192
## 16792 192
## 17587 192
## 17958 192
## 36193 192
## 38714 192
## 38962 192
## 39173 192
## 39531 192
## 40788 192
## 42323 192
## 42573 192
## 43394 192
## 44209 192
## 44798 192
## 46857 192
## 47100 192
## 51870 192
## 62970 192
## 67030 192
## 85356 192
## 90229 192
## 94032 192
## 95699 192
## 96038 192
## 96208 192
## 97529 192
## 98434 192
## 86 193
## 470 193
## 3849 193
## 4035 193
## 4243 193
## 4892 193
## 5279 193
## 5418 193
## 7620 193
## 9422 193
## 10171 193
## 10302 193
## 10729 193
## 11221 193
## 12940 193
## 13327 193
## 14485 193
## 15512 193
## 16027 193
## 16793 193
## 17153 193
## 17959 193
## 20591 193
## 21501 193
## 21894 193
## 22324 193
## 22521 193
## 24627 193
## 25485 193
## 26713 193
## 27832 193
## 28961 193
## 29211 193
## 30102 193
## 32044 193
## 33511 193
## 35916 193
## 36490 193
## 38051 193
## 39532 193
## 39966 193
## 40123 193
## 40789 193
## 41842 193
## 42324 193
## 42736 193
## 42991 193
## 43807 193
## 44365 193
## 45590 193
## 46459 193
## 46858 193
## 47704 193
## 47943 193
## 48282 193
## 50523 193
## 50722 193
## 51180 193
## 51346 193
## 52106 193
## 52479 193
## 52685 193
## 52743 193
## 53381 193
## 53543 193
## 53763 193
## 55244 193
## 55777 193
## 55953 193
## 56295 193
## 56626 193
## 56869 193
## 57187 193
## 59625 193
## 60015 193
## 61576 193
## 62971 193
## 64245 193
## 64427 193
## 66111 193
## 69131 193
## 69960 193
## 70026 193
## 70445 193
## 71526 193
## 74133 193
## 77331 193
## 77952 193
## 78118 193
## 78589 193
## 78694 193
## 79004 193
## 80146 193
## 80552 193
## 81544 193
## 81857 193
## 82829 193
## 83243 193
## 83723 193
## 84445 193
## 84689 193
## 85416 193
## 85946 193
## 86023 193
## 86614 193
## 87355 193
## 87404 193
## 87828 193
## 88363 193
## 88708 193
## 89338 193
## 89929 193
## 94388 193
## 94480 193
## 94689 193
## 95525 193
## 96149 193
## 97466 193
## 98440 193
## 98445 193
## 87 194
## 704 194
## 1085 194
## 1426 194
## 1670 194
## 2280 194
## 2541 194
## 2928 194
## 3572 194
## 3850 194
## 4244 194
## 4478 194
## 4655 194
## 4893 194
## 4995 194
## 5054 194
## 5899 194
## 6517 194
## 7005 194
## 7085 194
## 7306 194
## 7621 194
## 7998 194
## 8378 194
## 8622 194
## 8988 194
## 9142 194
## 9423 194
## 9731 194
## 9968 194
## 10172 194
## 10303 194
## 10427 194
## 10505 194
## 10636 194
## 10730 194
## 11079 194
## 11222 194
## 11467 194
## 11714 194
## 11862 194
## 12010 194
## 12240 194
## 12479 194
## 12583 194
## 12941 194
## 13085 194
## 13609 194
## 13900 194
## 14239 194
## 14486 194
## 16028 194
## 16400 194
## 16794 194
## 17395 194
## 17588 194
## 17960 194
## 18647 194
## 18883 194
## 19058 194
## 19272 194
## 19499 194
## 20055 194
## 20280 194
## 21389 194
## 21502 194
## 21731 194
## 21895 194
## 22145 194
## 22325 194
## 22427 194
## 22522 194
## 22720 194
## 23059 194
## 23182 194
## 23292 194
## 23924 194
## 24284 194
## 24628 194
## 25018 194
## 25486 194
## 25622 194
## 25754 194
## 25978 194
## 26259 194
## 26714 194
## 26944 194
## 27348 194
## 27583 194
## 27833 194
## 28028 194
## 28417 194
## 28659 194
## 28783 194
## 28962 194
## 29212 194
## 29500 194
## 29748 194
## 29963 194
## 30103 194
## 30584 194
## 30846 194
## 31055 194
## 31361 194
## 31628 194
## 31839 194
## 32045 194
## 32359 194
## 32543 194
## 32642 194
## 32903 194
## 33135 194
## 33512 194
## 33675 194
## 33985 194
## 34298 194
## 34483 194
## 34589 194
## 34760 194
## 34935 194
## 35167 194
## 35343 194
## 35661 194
## 35917 194
## 36194 194
## 36491 194
## 36844 194
## 37073 194
## 37387 194
## 39967 194
## 40488 194
## 41843 194
## 42325 194
## 42835 194
## 42992 194
## 43395 194
## 43808 194
## 44799 194
## 45591 194
## 48862 194
## 48998 194
## 49471 194
## 52855 194
## 52980 194
## 53544 194
## 53616 194
## 53893 194
## 54059 194
## 54253 194
## 54569 194
## 54698 194
## 54970 194
## 55245 194
## 55577 194
## 55778 194
## 55954 194
## 56139 194
## 56296 194
## 56870 194
## 57324 194
## 57473 194
## 57689 194
## 58108 194
## 58391 194
## 58526 194
## 59045 194
## 59204 194
## 59385 194
## 59626 194
## 60016 194
## 60456 194
## 60566 194
## 60643 194
## 61039 194
## 61577 194
## 61659 194
## 61706 194
## 61895 194
## 62030 194
## 62529 194
## 63208 194
## 63326 194
## 63660 194
## 63737 194
## 63885 194
## 64246 194
## 64495 194
## 64662 194
## 64989 194
## 65275 194
## 65486 194
## 65598 194
## 65649 194
## 65704 194
## 65980 194
## 66295 194
## 66420 194
## 66551 194
## 66854 194
## 67031 194
## 67214 194
## 67279 194
## 67374 194
## 67463 194
## 67540 194
## 67665 194
## 67832 194
## 68103 194
## 68244 194
## 68542 194
## 68633 194
## 69088 194
## 69181 194
## 69380 194
## 69647 194
## 69748 194
## 70241 194
## 70446 194
## 70594 194
## 70822 194
## 71082 194
## 71238 194
## 71286 194
## 71527 194
## 71639 194
## 72018 194
## 73145 194
## 73726 194
## 73980 194
## 74017 194
## 74050 194
## 74230 194
## 74382 194
## 74491 194
## 74661 194
## 74781 194
## 74994 194
## 75113 194
## 75302 194
## 75367 194
## 75576 194
## 75867 194
## 76030 194
## 76284 194
## 76486 194
## 76612 194
## 76755 194
## 76927 194
## 77411 194
## 77818 194
## 78865 194
## 79005 194
## 79517 194
## 79724 194
## 79926 194
## 80002 194
## 80147 194
## 80415 194
## 81022 194
## 81237 194
## 81368 194
## 81441 194
## 81545 194
## 82130 194
## 83349 194
## 83601 194
## 84030 194
## 84375 194
## 84532 194
## 84690 194
## 84773 194
## 85189 194
## 85621 194
## 86348 194
## 87150 194
## 87405 194
## 89847 194
## 89930 194
## 90067 194
## 90152 194
## 90373 194
## 90957 194
## 91529 194
## 91677 194
## 92009 194
## 92822 194
## 93311 194
## 93404 194
## 93443 194
## 93943 194
## 94169 194
## 94725 194
## 94781 194
## 95051 194
## 95149 194
## 96347 194
## 96677 194
## 96694 194
## 96784 194
## 96939 194
## 98465 194
## 98468 194
## 98475 194
## 98479 194
## 98507 194
## 2717 195
## 6048 195
## 6094 195
## 7420 195
## 8166 195
## 8241 195
## 8307 195
## 9143 195
## 12830 195
## 14240 195
## 14487 195
## 15320 195
## 17961 195
## 18648 195
## 19059 195
## 19273 195
## 20056 195
## 21390 195
## 21732 195
## 26260 195
## 27584 195
## 29964 195
## 32643 195
## 34761 195
## 35918 195
## 36195 195
## 37513 195
## 39533 195
## 40365 195
## 40489 195
## 41209 195
## 41623 195
## 42326 195
## 46148 195
## 46460 195
## 47362 195
## 48283 195
## 50211 195
## 50346 195
## 50723 195
## 53222 195
## 53545 195
## 53986 195
## 54603 195
## 54885 195
## 54971 195
## 56627 195
## 57272 195
## 57943 195
## 59046 195
## 59386 195
## 60644 195
## 61822 195
## 63115 195
## 64990 195
## 65981 195
## 66112 195
## 70162 195
## 71640 195
## 72279 195
## 73669 195
## 74782 195
## 75577 195
## 77629 195
## 81695 195
## 82491 195
## 82969 195
## 83152 195
## 84081 195
## 84334 195
## 84960 195
## 85221 195
## 85739 195
## 86131 195
## 86437 195
## 87729 195
## 88130 195
## 88965 195
## 91251 195
## 92197 195
## 92239 195
## 92954 195
## 93834 195
## 94573 195
## 94653 195
## 96483 195
## 97105 195
## 98036 195
## 98446 195
## 98513 195
## 98521 195
## 98522 195
## 98531 195
## 98536 195
## 98538 195
## 1427 196
## 2542 196
## 4245 196
## 8989 196
## 9144 196
## 9732 196
## 12942 196
## 15236 196
## 15429 196
## 15513 196
## 15867 196
## 21503 196
## 24285 196
## 30585 196
## 36845 196
## 37514 196
## 38648 196
## 39174 196
## 40790 196
## 43583 196
## 43809 196
## 44210 196
## 47593 196
## 51871 196
## 54366 196
## 54472 196
## 55246 196
## 57041 196
## 58731 196
## 71528 196
## 76031 196
## 76928 196
## 78866 196
## 83602 196
## 86615 196
## 91809 196
## 92666 196
## 95260 196
## 97293 196
## 471 197
## 705 197
## 2041 197
## 3573 197
## 4894 197
## 5280 197
## 5419 197
## 5532 197
## 6518 197
## 7421 197
## 7622 197
## 8379 197
## 9247 197
## 10731 197
## 11223 197
## 12241 197
## 12716 197
## 13328 197
## 17962 197
## 22523 197
## 23925 197
## 24629 197
## 25230 197
## 25487 197
## 26261 197
## 26715 197
## 26945 197
## 27208 197
## 27834 197
## 28029 197
## 28264 197
## 29213 197
## 32046 197
## 34590 197
## 34762 197
## 34936 197
## 35168 197
## 35344 197
## 35527 197
## 35662 197
## 35768 197
## 37388 197
## 37834 197
## 39534 197
## 39968 197
## 40490 197
## 41210 197
## 41424 197
## 43810 197
## 44366 197
## 44800 197
## 45592 197
## 46461 197
## 47101 197
## 47594 197
## 47705 197
## 48073 197
## 48284 197
## 48752 197
## 49472 197
## 49642 197
## 49865 197
## 50347 197
## 50724 197
## 51181 197
## 51347 197
## 51872 197
## 52214 197
## 52352 197
## 52480 197
## 52744 197
## 53382 197
## 53987 197
## 54699 197
## 55578 197
## 55955 197
## 59047 197
## 59627 197
## 60457 197
## 66421 197
## 66552 197
## 67032 197
## 67375 197
## 68104 197
## 68634 197
## 68979 197
## 69749 197
## 70027 197
## 70595 197
## 70823 197
## 71083 197
## 71287 197
## 71418 197
## 71939 197
## 75578 197
## 77088 197
## 77630 197
## 77819 197
## 78119 197
## 78540 197
## 78695 197
## 80416 197
## 82492 197
## 82830 197
## 82970 197
## 84031 197
## 84335 197
## 85047 197
## 85190 197
## 86866 197
## 87829 197
## 87957 197
## 88364 197
## 90206 197
## 97009 197
## 97106 197
## 98541 197
## 98557 197
## 88 198
## 706 198
## 978 198
## 1086 198
## 2042 198
## 2929 198
## 3851 198
## 4036 198
## 4246 198
## 4550 198
## 5055 198
## 5281 198
## 6519 198
## 7006 198
## 7422 198
## 7623 198
## 7999 198
## 8623 198
## 8864 198
## 9424 198
## 9733 198
## 9969 198
## 10304 198
## 10732 198
## 11080 198
## 11224 198
## 12242 198
## 12831 198
## 13086 198
## 13329 198
## 13610 198
## 13901 198
## 14488 198
## 14905 198
## 15237 198
## 16029 198
## 16401 198
## 16795 198
## 17154 198
## 17963 198
## 18304 198
## 18528 198
## 18649 198
## 19274 198
## 19624 198
## 20057 198
## 20763 198
## 21111 198
## 21504 198
## 21733 198
## 22003 198
## 22524 198
## 22921 198
## 23293 198
## 23926 198
## 24286 198
## 24630 198
## 25019 198
## 25231 198
## 25755 198
## 25979 198
## 26262 198
## 26716 198
## 26946 198
## 27209 198
## 27349 198
## 27585 198
## 27835 198
## 28030 198
## 28418 198
## 28784 198
## 29214 198
## 29501 198
## 29749 198
## 29965 198
## 30271 198
## 30464 198
## 30847 198
## 31056 198
## 31629 198
## 32047 198
## 32768 198
## 32904 198
## 33136 198
## 33386 198
## 33513 198
## 33986 198
## 34937 198
## 35169 198
## 35345 198
## 35919 198
## 36492 198
## 36846 198
## 37389 198
## 38178 198
## 38334 198
## 39535 198
## 40491 198
## 42327 198
## 42737 198
## 45127 198
## 46149 198
## 46462 198
## 48999 198
## 49866 198
## 52107 198
## 52856 198
## 52981 198
## 53617 198
## 53797 198
## 54367 198
## 54473 198
## 54700 198
## 55779 198
## 55956 198
## 56297 198
## 56871 198
## 57042 198
## 58109 198
## 58527 198
## 58732 198
## 58848 198
## 59048 198
## 59387 198
## 59530 198
## 60248 198
## 60906 198
## 61343 198
## 61896 198
## 62530 198
## 62736 198
## 63507 198
## 65276 198
## 65487 198
## 66296 198
## 66553 198
## 67376 198
## 68105 198
## 68245 198
## 68724 198
## 69648 198
## 70242 198
## 70824 198
## 71560 198
## 74383 198
## 74492 198
## 74783 198
## 74995 198
## 75579 198
## 75735 198
## 75868 198
## 76032 198
## 76402 198
## 76613 198
## 77332 198
## 77953 198
## 78120 198
## 78696 198
## 78867 198
## 79006 198
## 79653 198
## 80749 198
## 82231 198
## 82493 198
## 83724 198
## 85622 198
## 85740 198
## 85805 198
## 87406 198
## 89049 198
## 89848 198
## 89980 198
## 90603 198
## 91189 198
## 92240 198
## 94800 198
## 95243 198
## 95795 198
## 96172 198
## 97316 198
## 97350 198
## 89 199
## 1087 199
## 1671 199
## 2718 199
## 12832 199
## 14489 199
## 15514 199
## 15868 199
## 16030 199
## 33851 199
## 37515 199
## 37633 199
## 39536 199
## 39969 199
## 40791 199
## 42328 199
## 43584 199
## 43811 199
## 45593 199
## 48285 199
## 49643 199
## 49867 199
## 50081 199
## 56298 199
## 56679 199
## 62393 199
## 62737 199
## 66113 199
## 69050 199
## 77631 199
## 78473 199
## 82971 199
## 85357 199
## 88272 199
## 90230 199
## 91392 199
## 91464 199
## 98094 199
## 98196 199
## 90 200
## 472 200
## 1088 200
## 1428 200
## 1672 200
## 2043 200
## 2930 200
## 3574 200
## 4037 200
## 4247 200
## 4656 200
## 4895 200
## 5282 200
## 5420 200
## 5852 200
## 5978 200
## 6228 200
## 6520 200
## 7307 200
## 7624 200
## 8000 200
## 8380 200
## 8498 200
## 9248 200
## 9425 200
## 9970 200
## 10173 200
## 10733 200
## 11225 200
## 12011 200
## 12243 200
## 12584 200
## 12943 200
## 13087 200
## 13330 200
## 13902 200
## 14241 200
## 15026 200
## 15194 200
## 15729 200
## 16031 200
## 16402 200
## 16796 200
## 17263 200
## 17589 200
## 18650 200
## 19275 200
## 19783 200
## 19835 200
## 19897 200
## 20058 200
## 20592 200
## 20764 200
## 21112 200
## 22525 200
## 23574 200
## 23927 200
## 24287 200
## 24631 200
## 25232 200
## 25488 200
## 25756 200
## 26947 200
## 28031 200
## 28419 200
## 28785 200
## 29215 200
## 29502 200
## 30586 200
## 31057 200
## 31362 200
## 31630 200
## 32048 200
## 32905 200
## 33514 200
## 33987 200
## 34484 200
## 34591 200
## 34763 200
## 34938 200
## 35170 200
## 35346 200
## 35528 200
## 35920 200
## 36196 200
## 37074 200
## 37390 200
## 37634 200
## 37835 200
## 39537 200
## 40492 200
## 42329 200
## 42738 200
## 42993 200
## 43812 200
## 44367 200
## 45128 200
## 45594 200
## 47363 200
## 48286 200
## 49000 200
## 49868 200
## 50212 200
## 52982 200
## 53223 200
## 53416 200
## 53496 200
## 53988 200
## 54104 200
## 54254 200
## 54701 200
## 55095 200
## 55161 200
## 55247 200
## 55687 200
## 55780 200
## 56299 200
## 56787 200
## 56872 200
## 57043 200
## 57690 200
## 57855 200
## 58110 200
## 58849 200
## 59049 200
## 59205 200
## 60017 200
## 60249 200
## 60458 200
## 60645 200
## 60907 200
## 61344 200
## 61578 200
## 61897 200
## 62239 200
## 62394 200
## 63209 200
## 63886 200
## 64904 200
## 64991 200
## 65488 200
## 66297 200
## 67033 200
## 67833 200
## 68246 200
## 68424 200
## 69182 200
## 69381 200
## 69649 200
## 69908 200
## 70243 200
## 70360 200
## 70825 200
## 71084 200
## 71288 200
## 71419 200
## 71529 200
## 71641 200
## 71826 200
## 71940 200
## 72019 200
## 72544 200
## 72684 200
## 73416 200
## 73943 200
## 75736 200
## 76614 200
## 77089 200
## 77333 200
## 77412 200
## 77820 200
## 78287 200
## 78868 200
## 80297 200
## 80417 200
## 81546 200
## 81858 200
## 82078 200
## 82494 200
## 83244 200
## 83350 200
## 83466 200
## 83501 200
## 83933 200
## 84082 200
## 85048 200
## 85323 200
## 85623 200
## 85947 200
## 86132 200
## 86384 200
## 86438 200
## 87249 200
## 88215 200
## 88273 200
## 89112 200
## 89438 200
## 89490 200
## 89564 200
## 89680 200
## 90374 200
## 91252 200
## 91294 200
## 92823 200
## 93003 200
## 93031 200
## 93724 200
## 93998 200
## 94317 200
## 94726 200
## 95730 200
## 96857 200
## 96918 200
## 97107 200
## 98480 200
## 98542 200
## 91 201
## 473 201
## 707 201
## 1089 201
## 1429 201
## 1673 201
## 1921 201
## 2044 201
## 2281 201
## 2931 201
## 3210 201
## 3380 201
## 3575 201
## 3852 201
## 4248 201
## 4479 201
## 4551 201
## 4657 201
## 4896 201
## 5056 201
## 5201 201
## 5283 201
## 5378 201
## 5391 201
## 5533 201
## 5726 201
## 5979 201
## 6049 201
## 6095 201
## 6229 201
## 6521 201
## 7007 201
## 7178 201
## 7423 201
## 7625 201
## 7942 201
## 8001 201
## 8167 201
## 8308 201
## 8381 201
## 8624 201
## 8865 201
## 9249 201
## 9426 201
## 9734 201
## 9971 201
## 10428 201
## 10506 201
## 10734 201
## 11081 201
## 11226 201
## 11715 201
## 11863 201
## 12244 201
## 12717 201
## 12833 201
## 13088 201
## 13331 201
## 13611 201
## 13903 201
## 14242 201
## 14490 201
## 15869 201
## 16032 201
## 16403 201
## 16797 201
## 17264 201
## 17396 201
## 17590 201
## 17964 201
## 18305 201
## 18382 201
## 19060 201
## 19625 201
## 20281 201
## 20491 201
## 20547 201
## 20765 201
## 20921 201
## 22004 201
## 22146 201
## 22428 201
## 22922 201
## 23805 201
## 23928 201
## 24288 201
## 24632 201
## 25020 201
## 25233 201
## 25757 201
## 25980 201
## 26263 201
## 26717 201
## 26948 201
## 27210 201
## 27350 201
## 27586 201
## 27836 201
## 28032 201
## 28265 201
## 28420 201
## 28660 201
## 28786 201
## 29216 201
## 29503 201
## 29750 201
## 29966 201
## 30272 201
## 30465 201
## 30587 201
## 30848 201
## 31058 201
## 31485 201
## 31537 201
## 31840 201
## 32049 201
## 32360 201
## 32544 201
## 32644 201
## 32906 201
## 33137 201
## 33387 201
## 33515 201
## 33676 201
## 33852 201
## 33988 201
## 34299 201
## 34592 201
## 34764 201
## 34939 201
## 35347 201
## 35529 201
## 35663 201
## 35769 201
## 35921 201
## 36493 201
## 36847 201
## 37075 201
## 37233 201
## 37391 201
## 37516 201
## 39538 201
## 40124 201
## 40493 201
## 40792 201
## 41211 201
## 41425 201
## 41624 201
## 42042 201
## 42330 201
## 42836 201
## 42994 201
## 43396 201
## 43585 201
## 43813 201
## 44368 201
## 44801 201
## 45252 201
## 47102 201
## 47364 201
## 48287 201
## 48600 201
## 48863 201
## 49001 201
## 49277 201
## 49473 201
## 50082 201
## 50213 201
## 50348 201
## 51065 201
## 51182 201
## 51348 201
## 51559 201
## 51873 201
## 52353 201
## 52983 201
## 53224 201
## 53546 201
## 53850 201
## 54032 201
## 54198 201
## 54255 201
## 54368 201
## 54702 201
## 54972 201
## 55484 201
## 55781 201
## 55957 201
## 56300 201
## 56578 201
## 56680 201
## 57273 201
## 57944 201
## 58111 201
## 58392 201
## 59050 201
## 59206 201
## 59628 201
## 59818 201
## 59909 201
## 59921 201
## 59938 201
## 60018 201
## 60250 201
## 60362 201
## 60794 201
## 60870 201
## 60908 201
## 61122 201
## 61251 201
## 61345 201
## 61543 201
## 61660 201
## 61707 201
## 61755 201
## 61823 201
## 62031 201
## 62395 201
## 62738 201
## 63327 201
## 63508 201
## 63738 201
## 63887 201
## 65816 201
## 65887 201
## 66114 201
## 66298 201
## 66554 201
## 66762 201
## 66855 201
## 67034 201
## 67377 201
## 67666 201
## 68247 201
## 68725 201
## 68945 201
## 69259 201
## 69382 201
## 69650 201
## 69883 201
## 70124 201
## 70163 201
## 70244 201
## 70491 201
## 70596 201
## 70750 201
## 70826 201
## 71420 201
## 71561 201
## 71642 201
## 71786 201
## 71971 201
## 72020 201
## 72191 201
## 72233 201
## 72280 201
## 72545 201
## 72685 201
## 72959 201
## 73316 201
## 74493 201
## 74784 201
## 74865 201
## 74996 201
## 75114 201
## 75197 201
## 75431 201
## 75580 201
## 75869 201
## 76033 201
## 76224 201
## 76403 201
## 76615 201
## 77090 201
## 77178 201
## 77264 201
## 77334 201
## 77518 201
## 77821 201
## 77954 201
## 78121 201
## 78288 201
## 78420 201
## 78869 201
## 79007 201
## 79133 201
## 79228 201
## 79292 201
## 79411 201
## 79518 201
## 79725 201
## 80148 201
## 80866 201
## 81176 201
## 81238 201
## 81442 201
## 82355 201
## 82831 201
## 82972 201
## 83918 201
## 84032 201
## 84124 201
## 84169 201
## 84189 201
## 84251 201
## 84641 201
## 84774 201
## 85007 201
## 85083 201
## 85136 201
## 85741 201
## 85862 201
## 86541 201
## 86808 201
## 86925 201
## 86962 201
## 87023 201
## 88075 201
## 88365 201
## 88461 201
## 88876 201
## 89050 201
## 89113 201
## 90023 201
## 90344 201
## 90493 201
## 90542 201
## 90667 201
## 90724 201
## 90992 201
## 91190 201
## 91221 201
## 91530 201
## 91787 201
## 91860 201
## 91961 201
## 92010 201
## 93197 201
## 93444 201
## 93910 201
## 94075 201
## 94125 201
## 94242 201
## 94262 201
## 94318 201
## 94865 201
## 94916 201
## 95006 201
## 95466 201
## 95508 201
## 95621 201
## 95671 201
## 95700 201
## 95964 201
## 96081 201
## 96126 201
## 96173 201
## 96182 201
## 96244 201
## 96397 201
## 96472 201
## 96484 201
## 96495 201
## 96713 201
## 96785 201
## 96940 201
## 97035 201
## 97093 201
## 97150 201
## 97351 201
## 97559 201
## 97591 201
## 98198 201
## 98377 201
## 98396 201
## 98560 201
## 98571 201
## 98575 201
## 98579 201
## 98582 201
## 98592 201
## 98600 201
## 98605 201
## 92 202
## 13332 202
## 23929 202
## 24289 202
## 25758 202
## 28421 202
## 29217 202
## 31059 202
## 37517 202
## 39539 202
## 40793 202
## 43212 202
## 43814 202
## 49002 202
## 58112 202
## 63661 202
## 64110 202
## 67035 202
## 67215 202
## 73146 202
## 93 203
## 1090 203
## 4038 203
## 6522 203
## 12834 203
## 14491 203
## 16033 203
## 20766 203
## 20922 203
## 21113 203
## 26264 203
## 33989 203
## 36494 203
## 38179 203
## 38480 203
## 39175 203
## 39540 203
## 41212 203
## 42331 203
## 42995 203
## 43213 203
## 44369 203
## 45595 203
## 47365 203
## 49474 203
## 49869 203
## 50349 203
## 51183 203
## 51639 203
## 61123 203
## 62032 203
## 62739 203
## 63116 203
## 73830 203
## 74231 203
## 81859 203
## 82131 203
## 82495 203
## 85417 203
## 87830 203
## 88216 203
## 91570 203
## 93725 203
## 94 204
## 1674 204
## 2282 204
## 5980 204
## 20548 204
## 23694 204
## 23930 204
## 28422 204
## 33138 204
## 37518 204
## 37836 204
## 39541 204
## 39970 204
## 40284 204
## 40794 204
## 43815 204
## 44370 204
## 45253 204
## 46071 204
## 46463 204
## 46859 204
## 47103 204
## 47366 204
## 47944 204
## 48601 204
## 48753 204
## 49003 204
## 49475 204
## 49644 204
## 51349 204
## 51640 204
## 51874 204
## 63739 204
## 82496 204
## 87592 204
## 87958 204
## 92667 204
## 96496 204
## 97729 204
## 97885 204
## 37519 205
## 37635 205
## 39542 205
## 40795 205
## 43816 205
## 44802 205
## 45596 205
## 46464 205
## 47367 205
## 48288 205
## 48602 205
## 48754 205
## 49645 205
## 50350 205
## 50725 205
## 51350 205
## 77632 205
## 82497 205
## 87629 205
## 91295 205
## 92744 205
## 37520 206
## 37837 206
## 39543 206
## 40125 206
## 40285 206
## 40796 206
## 41426 206
## 44371 206
## 45597 206
## 46465 206
## 47104 206
## 47867 206
## 47891 206
## 47945 206
## 48289 206
## 48566 206
## 48603 206
## 49870 206
## 50351 206
## 51184 206
## 51351 206
## 51641 206
## 51680 206
## 51875 206
## 52108 206
## 52354 206
## 53341 206
## 53360 206
## 53368 206
## 53383 206
## 77633 206
## 77955 206
## 78049 206
## 78697 206
## 78820 206
## 82498 206
## 82761 206
## 82832 206
## 87512 206
## 88004 206
## 88203 206
## 88258 206
## 88366 206
## 88462 206
## 88575 206
## 88667 206
## 88685 206
## 91502 206
## 92668 206
## 92726 206
## 94059 206
## 95454 206
## 96252 206
## 96258 206
## 97220 206
## 98011 206
## 98354 206
## 98361 206
## 98617 206
## 98621 206
## 98624 206
## 98629 206
## 98632 206
## 98634 206
## 474 207
## 600 207
## 708 207
## 898 207
## 1430 207
## 1675 207
## 2045 207
## 2283 207
## 2543 207
## 2719 207
## 2932 207
## 3294 207
## 3576 207
## 3853 207
## 4249 207
## 4658 207
## 5284 207
## 5421 207
## 5727 207
## 5981 207
## 7179 207
## 7424 207
## 7626 207
## 8002 207
## 8168 207
## 8242 207
## 8625 207
## 8866 207
## 9250 207
## 9427 207
## 9735 207
## 10305 207
## 10735 207
## 11227 207
## 11864 207
## 12012 207
## 12718 207
## 13333 207
## 13904 207
## 14492 207
## 15195 207
## 15515 207
## 16034 207
## 16798 207
## 17591 207
## 17965 207
## 18383 207
## 18529 207
## 18884 207
## 19061 207
## 19276 207
## 19626 207
## 20059 207
## 20282 207
## 20923 207
## 21505 207
## 21734 207
## 22005 207
## 22259 207
## 22429 207
## 22526 207
## 23695 207
## 23806 207
## 24290 207
## 24633 207
## 25021 207
## 25489 207
## 25759 207
## 25981 207
## 26265 207
## 26718 207
## 26949 207
## 27351 207
## 27587 207
## 27837 207
## 28033 207
## 28423 207
## 28661 207
## 28963 207
## 29218 207
## 29504 207
## 29751 207
## 30588 207
## 30849 207
## 31060 207
## 31363 207
## 31631 207
## 32050 207
## 32361 207
## 33139 207
## 34300 207
## 34417 207
## 34593 207
## 35770 207
## 36495 207
## 36848 207
## 37076 207
## 37392 207
## 37521 207
## 37838 207
## 38180 207
## 38963 207
## 39544 207
## 40494 207
## 40797 207
## 41625 207
## 42332 207
## 42837 207
## 42996 207
## 43397 207
## 43817 207
## 45033 207
## 45129 207
## 45367 207
## 45598 207
## 46150 207
## 47105 207
## 48290 207
## 48755 207
## 48864 207
## 49004 207
## 49278 207
## 49646 207
## 50726 207
## 52984 207
## 53618 207
## 54703 207
## 55248 207
## 56873 207
## 57044 207
## 57325 207
## 58113 207
## 58733 207
## 59388 207
## 59629 207
## 61124 207
## 61252 207
## 61346 207
## 61756 207
## 61898 207
## 62033 207
## 62740 207
## 62972 207
## 63888 207
## 66115 207
## 66299 207
## 66856 207
## 67036 207
## 67280 207
## 67541 207
## 67667 207
## 67976 207
## 68106 207
## 68248 207
## 68543 207
## 68726 207
## 68882 207
## 68980 207
## 69089 207
## 69383 207
## 70028 207
## 70447 207
## 70597 207
## 70827 207
## 71289 207
## 71530 207
## 72281 207
## 72686 207
## 73417 207
## 74232 207
## 74494 207
## 75115 207
## 76034 207
## 76616 207
## 78122 207
## 78289 207
## 78870 207
## 79156 207
## 80003 207
## 80231 207
## 80553 207
## 81239 207
## 81860 207
## 82232 207
## 82499 207
## 83181 207
## 83351 207
## 83725 207
## 84618 207
## 84775 207
## 85102 207
## 85265 207
## 85948 207
## 86024 207
## 86211 207
## 86439 207
## 86616 207
## 86809 207
## 86867 207
## 87151 207
## 87250 207
## 87407 207
## 87630 207
## 91161 207
## 91354 207
## 91571 207
## 91678 207
## 92110 207
## 92699 207
## 92824 207
## 93472 207
## 93726 207
## 94866 207
## 95000 207
## 95201 207
## 95261 207
## 95864 207
## 96183 207
## 96545 207
## 97048 207
## 97064 207
## 97300 207
## 97626 207
## 97753 207
## 98114 207
## 98120 207
## 98185 207
## 98273 207
## 98644 207
## 98651 207
## 7627 208
## 8990 208
## 9736 208
## 11716 208
## 12013 208
## 13612 208
## 27588 208
## 28964 208
## 29752 208
## 30589 208
## 31061 208
## 31632 208
## 32362 208
## 33140 208
## 47106 208
## 47946 208
## 53619 208
## 53894 208
## 54369 208
## 55249 208
## 55782 208
## 58734 208
## 58948 208
## 59630 208
## 66857 208
## 67281 208
## 67834 208
## 67977 208
## 76838 208
## 76929 208
## 81547 208
## 84446 208
## 91662 208
## 95 209
## 1676 209
## 2720 209
## 3162 209
## 6523 209
## 17966 209
## 18384 209
## 26266 209
## 37522 209
## 38335 209
## 38649 209
## 39545 209
## 40798 209
## 41213 209
## 42333 209
## 43586 209
## 43818 209
## 45368 209
## 46860 209
## 47368 209
## 49476 209
## 51352 209
## 52595 209
## 52666 209
## 56681 209
## 78541 209
## 83908 209
## 85358 209
## 88508 209
## 88732 209
## 94607 209
## 95028 209
## 95701 209
## 96 210
## 709 210
## 2933 210
## 3854 210
## 4250 210
## 4659 210
## 5617 210
## 5900 210
## 6338 210
## 6524 210
## 7628 210
## 8003 210
## 8867 210
## 9428 210
## 9737 210
## 10174 210
## 10306 210
## 10736 210
## 12014 210
## 12944 210
## 13334 210
## 13613 210
## 13905 210
## 14243 210
## 15056 210
## 15763 210
## 16799 210
## 17967 210
## 18651 210
## 19062 210
## 19277 210
## 21391 210
## 21506 210
## 21735 210
## 22430 210
## 22527 210
## 22821 210
## 23183 210
## 23294 210
## 23931 210
## 24291 210
## 24634 210
## 25234 210
## 25760 210
## 25982 210
## 26267 210
## 26719 210
## 27352 210
## 27589 210
## 27838 210
## 28034 210
## 29219 210
## 29753 210
## 30273 210
## 30590 210
## 31062 210
## 31364 210
## 31633 210
## 32051 210
## 32363 210
## 33141 210
## 33677 210
## 33990 210
## 35348 210
## 35922 210
## 36197 210
## 36849 210
## 37636 210
## 38964 210
## 39176 210
## 41844 210
## 42334 210
## 45034 210
## 46466 210
## 46861 210
## 47107 210
## 48604 210
## 50524 210
## 52985 210
## 54256 210
## 55162 210
## 55250 210
## 55783 210
## 55958 210
## 56140 210
## 57045 210
## 57691 210
## 57856 210
## 58114 210
## 59631 210
## 60019 210
## 60251 210
## 60646 210
## 61579 210
## 63740 210
## 63889 210
## 64111 210
## 65489 210
## 65599 210
## 66858 210
## 67282 210
## 67835 210
## 68249 210
## 70828 210
## 74384 210
## 74495 210
## 75581 210
## 75870 210
## 76035 210
## 76285 210
## 76839 210
## 77822 210
## 78123 210
## 78871 210
## 79726 210
## 80554 210
## 81023 210
## 81240 210
## 82973 210
## 83245 210
## 83726 210
## 84776 210
## 85694 210
## 86212 210
## 87152 210
## 89241 210
## 90457 210
## 90543 210
## 90882 210
## 92111 210
## 92825 210
## 95262 210
## 1677 211
## 8626 211
## 9429 211
## 16035 211
## 17968 211
## 26268 211
## 30104 211
## 31365 211
## 32907 211
## 34940 211
## 35349 211
## 39177 211
## 40334 211
## 42043 211
## 43819 211
## 46467 211
## 47947 211
## 52986 211
## 58115 211
## 60020 211
## 60909 211
## 61079 211
## 61347 211
## 64663 211
## 67542 211
## 68107 211
## 68425 211
## 72546 211
## 77634 211
## 78474 211
## 79519 211
## 87683 211
## 88217 211
## 92745 211
## 95455 211
## 98110 211
## 11717 212
## 11865 212
## 17969 212
## 25761 212
## 25983 212
## 28424 212
## 29754 212
## 30105 212
## 38052 212
## 40799 212
## 43820 212
## 48865 212
## 49005 212
## 54474 212
## 58116 212
## 58528 212
## 66555 212
## 67037 212
## 68250 212
## 68426 212
## 74496 212
## 75227 212
## 81241 212
## 87114 212
## 97 213
## 475 213
## 1091 213
## 1431 213
## 2046 213
## 2284 213
## 2544 213
## 4039 213
## 4251 213
## 5057 213
## 5728 213
## 6230 213
## 6525 213
## 7425 213
## 7629 213
## 8627 213
## 9430 213
## 9738 213
## 10737 213
## 13614 213
## 13906 213
## 14493 213
## 15130 213
## 16036 213
## 16404 213
## 16800 213
## 17592 213
## 17970 213
## 18652 213
## 18885 213
## 19278 213
## 20060 213
## 20283 213
## 21114 213
## 21736 213
## 22006 213
## 22147 213
## 22923 213
## 23696 213
## 23932 213
## 24292 213
## 24635 213
## 25022 213
## 25235 213
## 25984 213
## 26269 213
## 26720 213
## 27353 213
## 27839 213
## 28662 213
## 28787 213
## 28965 213
## 29220 213
## 29755 213
## 30106 213
## 30274 213
## 31063 213
## 32545 213
## 32645 213
## 32769 213
## 33516 213
## 33991 213
## 35171 213
## 35923 213
## 36198 213
## 36850 213
## 38715 213
## 39178 213
## 39546 213
## 41626 213
## 41845 213
## 42838 213
## 43398 213
## 43821 213
## 44372 213
## 45599 213
## 49006 213
## 52987 213
## 55251 213
## 56301 213
## 59207 213
## 60252 213
## 60363 213
## 60910 213
## 61125 213
## 61483 213
## 62034 213
## 62531 213
## 62741 213
## 63210 213
## 63328 213
## 63890 213
## 65600 213
## 65705 213
## 66116 213
## 66300 213
## 66556 213
## 66859 213
## 67038 213
## 67668 213
## 69384 213
## 70829 213
## 71643 213
## 72282 213
## 72687 213
## 72960 213
## 73418 213
## 74134 213
## 74233 213
## 76036 213
## 77635 213
## 78124 213
## 78290 213
## 78698 213
## 78872 213
## 80149 213
## 81242 213
## 83352 213
## 84267 213
## 86133 213
## 86440 213
## 89114 213
## 89981 213
## 91330 213
## 92112 213
## 96820 213
## 1092 214
## 1432 214
## 2047 214
## 2285 214
## 2545 214
## 3381 214
## 3577 214
## 3855 214
## 4040 214
## 5202 214
## 5534 214
## 5729 214
## 5982 214
## 6526 214
## 7426 214
## 7630 214
## 8628 214
## 9431 214
## 10738 214
## 12245 214
## 12719 214
## 12835 214
## 13907 214
## 14494 214
## 15764 214
## 16037 214
## 16801 214
## 17971 214
## 18530 214
## 18653 214
## 19063 214
## 19279 214
## 19627 214
## 21115 214
## 21737 214
## 22007 214
## 23123 214
## 23295 214
## 23575 214
## 23807 214
## 23933 214
## 24293 214
## 24636 214
## 25023 214
## 25762 214
## 25985 214
## 26270 214
## 26721 214
## 27354 214
## 27840 214
## 28035 214
## 28425 214
## 29221 214
## 29505 214
## 31634 214
## 31841 214
## 32646 214
## 33142 214
## 33853 214
## 34301 214
## 36377 214
## 36851 214
## 38053 214
## 38181 214
## 38336 214
## 38481 214
## 38847 214
## 39179 214
## 40800 214
## 42044 214
## 42335 214
## 43587 214
## 44373 214
## 45600 214
## 46151 214
## 47108 214
## 47706 214
## 48291 214
## 49007 214
## 49279 214
## 50083 214
## 50214 214
## 50525 214
## 51560 214
## 51876 214
## 52355 214
## 52988 214
## 56682 214
## 58529 214
## 61253 214
## 61348 214
## 62742 214
## 63211 214
## 63329 214
## 63741 214
## 63891 214
## 64992 214
## 66117 214
## 66301 214
## 66701 214
## 67216 214
## 67378 214
## 67776 214
## 68251 214
## 68727 214
## 70830 214
## 71644 214
## 72961 214
## 73379 214
## 75488 214
## 75737 214
## 79008 214
## 79520 214
## 79727 214
## 80494 214
## 83118 214
## 87024 214
## 87468 214
## 88463 214
## 90419 214
## 90668 214
## 92484 214
## 93198 214
## 94126 214
## 94319 214
## 95480 214
## 98397 214
## 1433 215
## 2048 215
## 2934 215
## 3578 215
## 3856 215
## 4660 215
## 6527 215
## 7308 215
## 7631 215
## 8629 215
## 9739 215
## 10507 215
## 11228 215
## 11866 215
## 12015 215
## 12246 215
## 13908 215
## 14244 215
## 17972 215
## 18654 215
## 19064 215
## 20284 215
## 21116 215
## 22148 215
## 22326 215
## 22924 215
## 23296 215
## 23934 215
## 24637 215
## 25236 215
## 25763 215
## 25986 215
## 26271 215
## 26722 215
## 26950 215
## 27355 215
## 27590 215
## 28426 215
## 28966 215
## 29222 215
## 29506 215
## 29756 215
## 30591 215
## 30850 215
## 31064 215
## 31366 215
## 31635 215
## 32052 215
## 32364 215
## 32546 215
## 32908 215
## 33143 215
## 33517 215
## 33992 215
## 34594 215
## 34765 215
## 34941 215
## 35172 215
## 35350 215
## 35924 215
## 36496 215
## 36852 215
## 37077 215
## 39547 215
## 41062 215
## 41214 215
## 41427 215
## 44374 215
## 46468 215
## 48292 215
## 52745 215
## 52989 215
## 54257 215
## 57945 215
## 58117 215
## 59208 215
## 59389 215
## 59531 215
## 60021 215
## 60459 215
## 60567 215
## 60647 215
## 62532 215
## 63509 215
## 63892 215
## 64993 215
## 67283 215
## 67836 215
## 69909 215
## 74785 215
## 78873 215
## 93199 215
## 94076 215
## 98 216
## 601 216
## 710 216
## 1093 216
## 1678 216
## 2049 216
## 2286 216
## 2935 216
## 3579 216
## 4252 216
## 4552 216
## 4661 216
## 5730 216
## 6096 216
## 6528 216
## 7427 216
## 7632 216
## 8004 216
## 8630 216
## 8868 216
## 8991 216
## 9145 216
## 9432 216
## 10175 216
## 10739 216
## 11082 216
## 11229 216
## 12585 216
## 12836 216
## 13089 216
## 13615 216
## 13909 216
## 14495 216
## 15238 216
## 17155 216
## 18385 216
## 19065 216
## 20061 216
## 20285 216
## 20593 216
## 20924 216
## 21117 216
## 21507 216
## 22008 216
## 23297 216
## 23576 216
## 23935 216
## 24638 216
## 26272 216
## 26723 216
## 27211 216
## 28036 216
## 28190 216
## 29507 216
## 30275 216
## 30466 216
## 30592 216
## 31065 216
## 32053 216
## 32909 216
## 33144 216
## 33518 216
## 33854 216
## 34595 216
## 34942 216
## 35530 216
## 35925 216
## 36497 216
## 36853 216
## 38337 216
## 39180 216
## 41846 216
## 42336 216
## 42739 216
## 42997 216
## 43822 216
## 46152 216
## 47109 216
## 48293 216
## 48605 216
## 49008 216
## 52857 216
## 52990 216
## 53461 216
## 53620 216
## 53764 216
## 55485 216
## 55784 216
## 55959 216
## 56302 216
## 56683 216
## 57188 216
## 57408 216
## 57946 216
## 58118 216
## 59390 216
## 61661 216
## 62743 216
## 64994 216
## 65277 216
## 66118 216
## 68728 216
## 69385 216
## 71020 216
## 71376 216
## 74234 216
## 75582 216
## 75738 216
## 76037 216
## 76404 216
## 77335 216
## 79009 216
## 79229 216
## 80495 216
## 81243 216
## 82356 216
## 83727 216
## 83852 216
## 84642 216
## 84691 216
## 85806 216
## 86236 216
## 89339 216
## 90024 216
## 91962 216
## 93063 216
## 93537 216
## 94191 216
## 94936 216
## 96064 216
## 96893 216
## 476 217
## 1094 217
## 2050 217
## 3211 217
## 3580 217
## 4553 217
## 4897 217
## 5285 217
## 5422 217
## 6529 217
## 7180 217
## 7633 217
## 8382 217
## 9251 217
## 10740 217
## 11230 217
## 13335 217
## 16038 217
## 16405 217
## 16802 217
## 20286 217
## 20594 217
## 23936 217
## 24639 217
## 25237 217
## 26273 217
## 26724 217
## 26951 217
## 27356 217
## 29223 217
## 32054 217
## 33993 217
## 34596 217
## 35531 217
## 35771 217
## 39548 217
## 42839 217
## 46469 217
## 53417 217
## 53989 217
## 54704 217
## 55096 217
## 55544 217
## 55960 217
## 56303 217
## 62240 217
## 69090 217
## 69132 217
## 69386 217
## 69750 217
## 70029 217
## 70448 217
## 70598 217
## 70831 217
## 71290 217
## 71421 217
## 71941 217
## 72688 217
## 74786 217
## 77091 217
## 77823 217
## 78125 217
## 78291 217
## 80418 217
## 83543 217
## 84336 217
## 84961 217
## 85191 217
## 85266 217
## 85863 217
## 86025 217
## 86385 217
## 93032 217
## 97010 217
## 97108 217
## 97952 217
## 711 218
## 899 218
## 1434 218
## 2287 218
## 3857 218
## 5286 218
## 5535 218
## 5731 218
## 6097 218
## 7428 218
## 7634 218
## 13910 218
## 14496 218
## 21508 218
## 21738 218
## 22925 218
## 23298 218
## 24294 218
## 25024 218
## 25238 218
## 26952 218
## 27591 218
## 28967 218
## 30851 218
## 31066 218
## 31636 218
## 31842 218
## 40495 218
## 40801 218
## 41627 218
## 44375 218
## 45601 218
## 56874 218
## 58949 218
## 59051 218
## 61662 218
## 65706 218
## 66860 218
## 67217 218
## 67284 218
## 72283 218
## 72962 218
## 75116 218
## 75368 218
## 75871 218
## 76286 218
## 76487 218
## 76930 218
## 79134 218
## 80004 218
## 83603 218
## 84643 218
## 94320 218
## 712 219
## 2546 219
## 5423 219
## 9972 219
## 11231 219
## 15765 219
## 18655 219
## 25764 219
## 32910 219
## 34302 219
## 39549 219
## 40802 219
## 52481 219
## 54475 219
## 59391 219
## 69387 219
## 70832 219
## 73727 219
## 74497 219
## 77033 219
## 86963 219
## 87831 219
## 88005 219
## 88733 219
## 89735 219
## 89744 219
## 92241 219
## 39550 220
## 40366 220
## 40803 220
## 43823 220
## 44376 220
## 44803 220
## 45602 220
## 46153 220
## 46470 220
## 46862 220
## 47501 220
## 47595 220
## 49280 220
## 50215 220
## 51185 220
## 51353 220
## 51877 220
## 52109 220
## 77956 220
## 91637 220
## 602 221
## 713 221
## 1095 221
## 2288 221
## 3212 221
## 3858 221
## 4041 221
## 4554 221
## 4898 221
## 5203 221
## 5287 221
## 5424 221
## 5536 221
## 5732 221
## 6231 221
## 6530 221
## 7181 221
## 7429 221
## 7635 221
## 8169 221
## 8631 221
## 9433 221
## 9740 221
## 10429 221
## 10741 221
## 12720 221
## 12945 221
## 13336 221
## 14497 221
## 15239 221
## 15321 221
## 16039 221
## 16406 221
## 16803 221
## 18306 221
## 18386 221
## 20287 221
## 20925 221
## 21118 221
## 21739 221
## 22009 221
## 22528 221
## 23937 221
## 24295 221
## 24640 221
## 25623 221
## 26274 221
## 27212 221
## 27592 221
## 31067 221
## 32055 221
## 32911 221
## 33519 221
## 33994 221
## 34766 221
## 35351 221
## 35532 221
## 37234 221
## 38054 221
## 38482 221
## 39181 221
## 39551 221
## 39971 221
## 40496 221
## 41428 221
## 41628 221
## 42998 221
## 43824 221
## 44377 221
## 46154 221
## 49009 221
## 50526 221
## 51615 221
## 52356 221
## 53225 221
## 54604 221
## 54705 221
## 54886 221
## 55097 221
## 55579 221
## 55785 221
## 55961 221
## 56304 221
## 56628 221
## 58119 221
## 61254 221
## 61708 221
## 61757 221
## 61824 221
## 61899 221
## 62744 221
## 62973 221
## 64247 221
## 64995 221
## 66119 221
## 69260 221
## 69751 221
## 70599 221
## 70833 221
## 71291 221
## 71422 221
## 72021 221
## 73981 221
## 74662 221
## 75583 221
## 78126 221
## 78292 221
## 79135 221
## 80496 221
## 81024 221
## 81443 221
## 82974 221
## 83604 221
## 83728 221
## 84376 221
## 84644 221
## 85222 221
## 85807 221
## 86810 221
## 88367 221
## 89565 221
## 89900 221
## 90025 221
## 91963 221
## 92011 221
## 92113 221
## 92364 221
## 92485 221
## 93064 221
## 93963 221
## 94192 221
## 94321 221
## 94690 221
## 94867 221
## 95588 221
## 96376 221
## 96714 221
## 96750 221
## 96858 221
## 96894 221
## 97410 221
## 97560 221
## 98024 221
## 98447 221
## 98653 221
## 99 222
## 477 222
## 714 222
## 1096 222
## 1435 222
## 1679 222
## 2051 222
## 2289 222
## 2936 222
## 3213 222
## 3581 222
## 4042 222
## 4253 222
## 4480 222
## 4662 222
## 4899 222
## 5058 222
## 5368 222
## 5425 222
## 5618 222
## 5668 222
## 5901 222
## 6232 222
## 6339 222
## 6531 222
## 7008 222
## 7182 222
## 7309 222
## 7636 222
## 8005 222
## 8383 222
## 8499 222
## 8632 222
## 8992 222
## 9146 222
## 9252 222
## 9434 222
## 9741 222
## 9973 222
## 10176 222
## 10307 222
## 10508 222
## 10637 222
## 10742 222
## 11006 222
## 11083 222
## 11232 222
## 11867 222
## 12016 222
## 12247 222
## 12480 222
## 12586 222
## 12721 222
## 12837 222
## 12946 222
## 13090 222
## 13337 222
## 13616 222
## 13911 222
## 14245 222
## 14498 222
## 14906 222
## 14978 222
## 15131 222
## 15322 222
## 15516 222
## 16040 222
## 16407 222
## 16652 222
## 16804 222
## 17593 222
## 17973 222
## 18656 222
## 18886 222
## 19280 222
## 19836 222
## 19966 222
## 20288 222
## 20492 222
## 20595 222
## 20767 222
## 20926 222
## 21119 222
## 21509 222
## 21740 222
## 21896 222
## 22010 222
## 22149 222
## 22260 222
## 22327 222
## 22431 222
## 22529 222
## 22721 222
## 22926 222
## 23184 222
## 23299 222
## 23938 222
## 24296 222
## 24641 222
## 25025 222
## 25239 222
## 25987 222
## 26275 222
## 26725 222
## 26953 222
## 27357 222
## 27593 222
## 28037 222
## 28427 222
## 28788 222
## 29224 222
## 29508 222
## 29967 222
## 30276 222
## 30593 222
## 31068 222
## 31637 222
## 31843 222
## 32056 222
## 32770 222
## 32912 222
## 33145 222
## 33388 222
## 33520 222
## 33678 222
## 33995 222
## 34303 222
## 34485 222
## 34597 222
## 34767 222
## 34943 222
## 35173 222
## 35352 222
## 35533 222
## 35664 222
## 35772 222
## 35926 222
## 36498 222
## 36854 222
## 37078 222
## 37235 222
## 37393 222
## 37839 222
## 38055 222
## 38149 222
## 38182 222
## 38338 222
## 38483 222
## 38716 222
## 38965 222
## 39182 222
## 39552 222
## 40231 222
## 40497 222
## 41063 222
## 41215 222
## 42337 222
## 42642 222
## 42740 222
## 42840 222
## 42999 222
## 43399 222
## 44378 222
## 45369 222
## 45603 222
## 46155 222
## 46471 222
## 47110 222
## 48294 222
## 49010 222
## 49871 222
## 50352 222
## 50727 222
## 51354 222
## 51714 222
## 52858 222
## 52991 222
## 53226 222
## 53418 222
## 53462 222
## 53497 222
## 53547 222
## 53621 222
## 53765 222
## 53990 222
## 54033 222
## 54080 222
## 54105 222
## 54199 222
## 54258 222
## 54706 222
## 54887 222
## 55025 222
## 55098 222
## 55163 222
## 55252 222
## 55425 222
## 55486 222
## 55580 222
## 55688 222
## 55786 222
## 55962 222
## 56305 222
## 56629 222
## 56788 222
## 56875 222
## 57046 222
## 57189 222
## 57274 222
## 57560 222
## 57692 222
## 58032 222
## 58120 222
## 58362 222
## 58462 222
## 59052 222
## 59209 222
## 59392 222
## 59819 222
## 59939 222
## 60221 222
## 60364 222
## 60460 222
## 60568 222
## 60648 222
## 60795 222
## 60911 222
## 61080 222
## 61580 222
## 61758 222
## 61900 222
## 62035 222
## 62241 222
## 62396 222
## 62745 222
## 62974 222
## 63117 222
## 65490 222
## 65888 222
## 66120 222
## 67669 222
## 68252 222
## 68544 222
## 68946 222
## 69091 222
## 69133 222
## 69183 222
## 69388 222
## 69651 222
## 69752 222
## 69910 222
## 70030 222
## 70245 222
## 70600 222
## 70834 222
## 71021 222
## 71129 222
## 71239 222
## 71292 222
## 71377 222
## 71423 222
## 71531 222
## 71902 222
## 72022 222
## 72284 222
## 72547 222
## 72689 222
## 73831 222
## 73889 222
## 73982 222
## 74135 222
## 74235 222
## 74787 222
## 74866 222
## 75117 222
## 75584 222
## 75872 222
## 76038 222
## 76405 222
## 76840 222
## 77092 222
## 77265 222
## 77636 222
## 77824 222
## 78293 222
## 78590 222
## 78874 222
## 79010 222
## 79377 222
## 79927 222
## 80005 222
## 80150 222
## 80232 222
## 80298 222
## 80376 222
## 80555 222
## 80605 222
## 80645 222
## 80867 222
## 81025 222
## 81191 222
## 81244 222
## 81494 222
## 81548 222
## 81861 222
## 82233 222
## 82357 222
## 82833 222
## 83246 222
## 83353 222
## 83605 222
## 83729 222
## 83934 222
## 83984 222
## 84033 222
## 84125 222
## 84377 222
## 84447 222
## 84533 222
## 84692 222
## 84923 222
## 85137 222
## 85192 222
## 85267 222
## 85324 222
## 85418 222
## 85513 222
## 85563 222
## 85864 222
## 85949 222
## 86090 222
## 86237 222
## 86386 222
## 86617 222
## 86868 222
## 87356 222
## 88368 222
## 89439 222
## 89566 222
## 89681 222
## 89849 222
## 89931 222
## 90068 222
## 90153 222
## 90280 222
## 90993 222
## 92012 222
## 92365 222
## 92938 222
## 93065 222
## 93312 222
## 93366 222
## 93405 222
## 93445 222
## 93855 222
## 93879 222
## 93924 222
## 93964 222
## 93999 222
## 94170 222
## 94389 222
## 94481 222
## 94507 222
## 94625 222
## 94654 222
## 95731 222
## 95849 222
## 96285 222
## 96305 222
## 96412 222
## 96678 222
## 96695 222
## 96895 222
## 96941 222
## 97065 222
## 97249 222
## 97411 222
## 97561 222
## 97770 222
## 97850 222
## 98139 222
## 98543 222
## 98662 222
## 98667 222
## 98675 222
## 100 223
## 1436 223
## 2052 223
## 3582 223
## 4254 223
## 4663 223
## 9435 223
## 9974 223
## 13091 223
## 15517 223
## 16041 223
## 16408 223
## 16653 223
## 16805 223
## 17594 223
## 20062 223
## 21897 223
## 24297 223
## 27358 223
## 33146 223
## 34486 223
## 36499 223
## 37637 223
## 38183 223
## 38339 223
## 38717 223
## 38966 223
## 39183 223
## 39553 223
## 39972 223
## 41847 223
## 42338 223
## 42643 223
## 43000 223
## 43400 223
## 43825 223
## 44379 223
## 44804 223
## 45604 223
## 45993 223
## 46156 223
## 46472 223
## 47892 223
## 48295 223
## 49011 223
## 49477 223
## 49647 223
## 49872 223
## 50728 223
## 50967 223
## 51186 223
## 51355 223
## 51797 223
## 53798 223
## 56306 223
## 56789 223
## 57047 223
## 58121 223
## 61901 223
## 62975 223
## 63118 223
## 68883 223
## 69389 223
## 72285 223
## 72548 223
## 72690 223
## 73832 223
## 73890 223
## 77957 223
## 80299 223
## 81862 223
## 82762 223
## 83354 223
## 83730 223
## 85564 223
## 85624 223
## 85950 223
## 86618 223
## 86760 223
## 87153 223
## 87251 223
## 87513 223
## 88752 223
## 89115 223
## 89242 223
## 89440 223
## 89491 223
## 90883 223
## 91026 223
## 91059 223
## 91116 223
## 91296 223
## 91572 223
## 91899 223
## 92242 223
## 92366 223
## 93793 223
## 93835 223
## 94634 223
## 95918 223
## 96546 223
## 97226 223
## 97771 223
## 97851 223
## 97934 223
## 2053 224
## 2937 224
## 3382 224
## 3583 224
## 4481 224
## 4664 224
## 4900 224
## 5853 224
## 7009 224
## 7310 224
## 9436 224
## 9742 224
## 10509 224
## 11718 224
## 12722 224
## 13617 224
## 15196 224
## 17595 224
## 17810 224
## 19281 224
## 20596 224
## 20768 224
## 20874 224
## 22150 224
## 22722 224
## 25624 224
## 28428 224
## 28789 224
## 29509 224
## 32547 224
## 32913 224
## 33855 224
## 33996 224
## 34304 224
## 36500 224
## 37079 224
## 37638 224
## 37840 224
## 39554 224
## 42339 224
## 42574 224
## 42741 224
## 43001 224
## 43401 224
## 43826 224
## 44211 224
## 45605 224
## 46473 224
## 46863 224
## 48296 224
## 49012 224
## 49478 224
## 49648 224
## 49873 224
## 50216 224
## 50353 224
## 50729 224
## 50968 224
## 51187 224
## 51356 224
## 52596 224
## 52859 224
## 53498 224
## 53548 224
## 54106 224
## 54259 224
## 54973 224
## 55164 224
## 55787 224
## 55963 224
## 58122 224
## 61759 224
## 61825 224
## 61902 224
## 67379 224
## 68108 224
## 68427 224
## 69261 224
## 69652 224
## 69961 224
## 70114 224
## 70125 224
## 71022 224
## 71085 224
## 71562 224
## 71645 224
## 71787 224
## 72286 224
## 73891 224
## 74603 224
## 76039 224
## 76406 224
## 76617 224
## 76841 224
## 77519 224
## 77637 224
## 78421 224
## 78475 224
## 78591 224
## 79293 224
## 79478 224
## 79728 224
## 80151 224
## 80419 224
## 80606 224
## 80646 224
## 80750 224
## 80868 224
## 80964 224
## 81369 224
## 82132 224
## 82500 224
## 82975 224
## 84268 224
## 86761 224
## 87514 224
## 87832 224
## 88316 224
## 89116 224
## 89191 224
## 90281 224
## 90725 224
## 91117 224
## 91222 224
## 91531 224
## 93200 224
## 93406 224
## 93446 224
## 93856 224
## 93944 224
## 94592 224
## 95312 224
## 95935 224
## 96082 224
## 96715 224
## 96796 224
## 96971 224
## 98291 224
## 98398 224
## 98680 224
## 98687 224
## 3584 225
## 8633 225
## 13912 225
## 19500 225
## 20063 225
## 23939 225
## 28790 225
## 28968 225
## 32914 225
## 36501 225
## 37841 225
## 43827 225
## 57561 225
## 58530 225
## 63212 225
## 63330 225
## 63510 225
## 63742 225
## 64728 225
## 66422 225
## 70601 225
## 72963 225
## 73147 225
## 73259 225
## 79521 225
## 96630 225
## 98692 225
## 1097 226
## 1680 226
## 2290 226
## 2721 226
## 3859 226
## 4043 226
## 4255 226
## 4665 226
## 7637 226
## 9437 226
## 12248 226
## 12723 226
## 13618 226
## 13913 226
## 15323 226
## 20597 226
## 20927 226
## 23577 226
## 24642 226
## 25240 226
## 25765 226
## 25988 226
## 26726 226
## 28429 226
## 30852 226
## 31844 226
## 34418 226
## 36378 226
## 37523 226
## 38484 226
## 39555 226
## 41064 226
## 42045 226
## 43214 226
## 43828 226
## 53851 226
## 56307 226
## 56684 226
## 62533 226
## 63511 226
## 65982 226
## 66121 226
## 66302 226
## 66763 226
## 68253 226
## 72549 226
## 75739 226
## 80057 226
## 85359 226
## 95244 226
## 1098 227
## 1681 227
## 2547 227
## 2722 227
## 2938 227
## 3311 227
## 4256 227
## 6532 227
## 12838 227
## 14499 227
## 15132 227
## 15870 227
## 16042 227
## 16806 227
## 17397 227
## 17811 227
## 17974 227
## 18387 227
## 19628 227
## 20928 227
## 33856 227
## 37236 227
## 37746 227
## 38340 227
## 38485 227
## 41629 227
## 41848 227
## 42340 227
## 43588 227
## 43829 227
## 44212 227
## 44380 227
## 45370 227
## 45606 227
## 45994 227
## 49281 227
## 49479 227
## 49649 227
## 50084 227
## 56308 227
## 57048 227
## 61222 227
## 62746 227
## 81762 227
## 82501 227
## 83355 227
## 85742 227
## 89682 227
## 91810 227
## 91861 227
## 91964 227
## 92013 227
## 92486 227
## 92826 227
## 93538 227
## 94193 227
## 94230 227
## 95831 227
## 7638 228
## 11868 228
## 13914 228
## 19629 228
## 31069 228
## 41429 228
## 42046 228
## 43830 228
## 44381 228
## 48297 228
## 50527 228
## 58531 228
## 62747 228
## 75489 228
## 75585 228
## 76040 228
## 78699 228
## 82834 228
## 85325 228
## 88076 228
## 89814 228
## 37842 229
## 39556 229
## 40126 229
## 40804 229
## 41430 229
## 43831 229
## 44382 229
## 46474 229
## 47111 229
## 48074 229
## 48149 229
## 48298 229
## 48606 229
## 48756 229
## 50730 229
## 51878 229
## 52215 229
## 52482 229
## 52597 229
## 53227 229
## 82502 229
## 82835 229
## 82976 229
## 87631 229
## 88006 229
## 88077 229
## 88464 229
## 88509 229
## 89783 229
## 101 230
## 1099 230
## 1437 230
## 1922 230
## 2054 230
## 3585 230
## 4257 230
## 4666 230
## 6533 230
## 7010 230
## 7639 230
## 8634 230
## 9438 230
## 9743 230
## 9975 230
## 10743 230
## 11233 230
## 12587 230
## 13092 230
## 13338 230
## 13619 230
## 13915 230
## 14246 230
## 14500 230
## 16043 230
## 16807 230
## 17596 230
## 18657 230
## 19066 230
## 19282 230
## 19761 230
## 19837 230
## 19898 230
## 19967 230
## 20064 230
## 20289 230
## 21510 230
## 21741 230
## 22530 230
## 22723 230
## 23300 230
## 23940 230
## 24643 230
## 25241 230
## 26276 230
## 26727 230
## 26954 230
## 27359 230
## 27594 230
## 29225 230
## 29510 230
## 30107 230
## 30594 230
## 30853 230
## 31070 230
## 31367 230
## 31845 230
## 32057 230
## 32365 230
## 32771 230
## 33147 230
## 34305 230
## 34944 230
## 35773 230
## 35927 230
## 36502 230
## 36855 230
## 37080 230
## 37237 230
## 40498 230
## 40685 230
## 42341 230
## 42742 230
## 43402 230
## 45130 230
## 45607 230
## 47369 230
## 52992 230
## 53895 230
## 54107 230
## 54707 230
## 55253 230
## 55788 230
## 56309 230
## 57562 230
## 57693 230
## 57857 230
## 58033 230
## 58123 230
## 58532 230
## 59053 230
## 59210 230
## 59632 230
## 60022 230
## 60253 230
## 60649 230
## 64112 230
## 64248 230
## 64664 230
## 64996 230
## 65278 230
## 65411 230
## 65491 230
## 65707 230
## 66557 230
## 67039 230
## 68109 230
## 69653 230
## 70835 230
## 71086 230
## 71646 230
## 72023 230
## 73317 230
## 73419 230
## 73927 230
## 73944 230
## 74136 230
## 74236 230
## 74663 230
## 75490 230
## 77336 230
## 79011 230
## 79294 230
## 81549 230
## 81863 230
## 89243 230
## 90375 230
## 90748 230
## 90884 230
## 93747 230
## 96473 230
## 98696 230
## 102 231
## 2939 231
## 6534 231
## 16808 231
## 17812 231
## 17975 231
## 21120 231
## 26277 231
## 38718 231
## 38967 231
## 44805 231
## 46475 231
## 48299 231
## 56310 231
## 62036 231
## 62976 231
## 72691 231
## 82503 231
## 86762 231
## 87252 231
## 89117 231
## 103 232
## 715 232
## 1438 232
## 2723 232
## 3586 232
## 5204 232
## 5902 232
## 6233 232
## 6535 232
## 7086 232
## 7640 232
## 8635 232
## 9439 232
## 10430 232
## 11084 232
## 12588 232
## 13339 232
## 13916 232
## 14501 232
## 16044 232
## 17976 232
## 18658 232
## 18887 232
## 20929 232
## 23060 232
## 23124 232
## 23697 232
## 23941 232
## 24298 232
## 25026 232
## 25625 232
## 26278 232
## 27595 232
## 28430 232
## 28969 232
## 29511 232
## 29757 232
## 30595 232
## 31071 232
## 31846 232
## 32915 232
## 35928 232
## 38056 232
## 38486 232
## 40805 232
## 41065 232
## 41431 232
## 42047 232
## 42342 232
## 43832 232
## 44806 232
## 45608 232
## 47112 232
## 48300 232
## 48607 232
## 49013 232
## 52993 232
## 57694 232
## 58124 232
## 58393 232
## 59633 232
## 61255 232
## 61349 232
## 62037 232
## 62534 232
## 62748 232
## 63893 232
## 64786 232
## 65279 232
## 66122 232
## 66861 232
## 67040 232
## 67837 232
## 68729 232
## 71647 232
## 72192 232
## 72964 232
## 74448 232
## 74902 232
## 75586 232
## 76041 232
## 78700 232
## 79522 232
## 79729 232
## 82133 232
## 82358 232
## 82836 232
## 88576 232
## 88877 232
## 88966 232
## 95467 232
## 95893 232
## 716 233
## 1439 233
## 1682 233
## 2291 233
## 2724 233
## 3860 233
## 5059 233
## 6098 233
## 6234 233
## 6536 233
## 7641 233
## 7943 233
## 8006 233
## 8636 233
## 9440 233
## 9744 233
## 9976 233
## 11234 233
## 12249 233
## 12589 233
## 13093 233
## 13620 233
## 13917 233
## 14247 233
## 14502 233
## 16045 233
## 16809 233
## 17977 233
## 18388 233
## 18888 233
## 19283 233
## 20065 233
## 23301 233
## 24644 233
## 25490 233
## 25989 233
## 27841 233
## 28431 233
## 28663 233
## 28791 233
## 28970 233
## 29512 233
## 29758 233
## 30596 233
## 30854 233
## 31072 233
## 31368 233
## 31638 233
## 32548 233
## 32916 233
## 33148 233
## 34306 233
## 35929 233
## 38341 233
## 39184 233
## 40232 233
## 40806 233
## 42048 233
## 42343 233
## 43833 233
## 45371 233
## 47370 233
## 48301 233
## 49014 233
## 52994 233
## 53896 233
## 54034 233
## 54108 233
## 54370 233
## 57563 233
## 58125 233
## 59211 233
## 59634 233
## 61350 233
## 63213 233
## 63743 233
## 63894 233
## 64729 233
## 64905 233
## 65280 233
## 65412 233
## 65492 233
## 65708 233
## 65889 233
## 66303 233
## 66558 233
## 67041 233
## 67670 233
## 67838 233
## 68254 233
## 68428 233
## 70836 233
## 71827 233
## 72024 233
## 72965 233
## 73616 233
## 73983 233
## 74664 233
## 74997 233
## 75198 233
## 75303 233
## 75873 233
## 76618 233
## 81245 233
## 85138 233
## 86072 233
## 86619 233
## 89051 233
## 90584 233
## 96497 233
## 104 234
## 478 234
## 717 234
## 900 234
## 1100 234
## 1440 234
## 1683 234
## 1923 234
## 2055 234
## 2292 234
## 2548 234
## 2725 234
## 2940 234
## 3163 234
## 3383 234
## 3458 234
## 3587 234
## 3861 234
## 4258 234
## 4667 234
## 4996 234
## 5060 234
## 5205 234
## 5619 234
## 5903 234
## 5983 234
## 6099 234
## 6235 234
## 6537 234
## 7087 234
## 7311 234
## 7642 234
## 8637 234
## 8993 234
## 9441 234
## 9745 234
## 9977 234
## 10177 234
## 10308 234
## 10431 234
## 10510 234
## 10744 234
## 11085 234
## 11235 234
## 11635 234
## 11719 234
## 11869 234
## 12017 234
## 12250 234
## 12590 234
## 12839 234
## 13094 234
## 13340 234
## 13621 234
## 13918 234
## 14248 234
## 14503 234
## 14979 234
## 15133 234
## 15518 234
## 15871 234
## 16046 234
## 16633 234
## 17398 234
## 17597 234
## 17978 234
## 18492 234
## 18531 234
## 18659 234
## 18889 234
## 19067 234
## 19284 234
## 19501 234
## 19630 234
## 19838 234
## 19899 234
## 19968 234
## 20066 234
## 20290 234
## 20598 234
## 20769 234
## 21121 234
## 21392 234
## 21511 234
## 21742 234
## 22011 234
## 22151 234
## 22432 234
## 22531 234
## 22724 234
## 22822 234
## 22927 234
## 23061 234
## 23125 234
## 23302 234
## 23698 234
## 23942 234
## 24299 234
## 24645 234
## 25027 234
## 25242 234
## 25491 234
## 25626 234
## 25766 234
## 25990 234
## 26279 234
## 26728 234
## 26955 234
## 27360 234
## 27596 234
## 27842 234
## 28038 234
## 28266 234
## 28432 234
## 28664 234
## 28792 234
## 28971 234
## 29226 234
## 29513 234
## 29759 234
## 29968 234
## 30108 234
## 30277 234
## 30597 234
## 31073 234
## 31369 234
## 31486 234
## 31538 234
## 31639 234
## 31847 234
## 32058 234
## 32366 234
## 32549 234
## 32647 234
## 32917 234
## 33149 234
## 33521 234
## 33679 234
## 33857 234
## 33997 234
## 34307 234
## 34419 234
## 34598 234
## 34945 234
## 35174 234
## 35774 234
## 35930 234
## 36379 234
## 36503 234
## 36856 234
## 37394 234
## 37524 234
## 37639 234
## 39557 234
## 39973 234
## 40499 234
## 41630 234
## 41849 234
## 42344 234
## 42575 234
## 42696 234
## 42743 234
## 43215 234
## 43403 234
## 43589 234
## 43834 234
## 44213 234
## 44383 234
## 44807 234
## 45035 234
## 45131 234
## 45254 234
## 45609 234
## 46476 234
## 46864 234
## 47371 234
## 47707 234
## 48302 234
## 48757 234
## 48866 234
## 49015 234
## 49282 234
## 49480 234
## 49650 234
## 50731 234
## 50969 234
## 52995 234
## 53228 234
## 53622 234
## 53897 234
## 54109 234
## 54371 234
## 54708 234
## 55057 234
## 55254 234
## 55689 234
## 55964 234
## 56141 234
## 57190 234
## 57326 234
## 57409 234
## 57474 234
## 57564 234
## 57695 234
## 57947 234
## 58126 234
## 58533 234
## 58735 234
## 58850 234
## 58950 234
## 59054 234
## 59212 234
## 59393 234
## 59532 234
## 59635 234
## 59820 234
## 60023 234
## 60204 234
## 60254 234
## 60365 234
## 60650 234
## 61351 234
## 61484 234
## 61544 234
## 61581 234
## 61663 234
## 61903 234
## 62038 234
## 62242 234
## 62397 234
## 62535 234
## 63119 234
## 63214 234
## 63331 234
## 63512 234
## 63662 234
## 63744 234
## 63895 234
## 64113 234
## 64249 234
## 64365 234
## 64428 234
## 64496 234
## 64556 234
## 64607 234
## 64665 234
## 64730 234
## 64787 234
## 64842 234
## 64906 234
## 64997 234
## 65193 234
## 65281 234
## 65413 234
## 65493 234
## 65601 234
## 65650 234
## 65709 234
## 65817 234
## 65890 234
## 65983 234
## 66423 234
## 66559 234
## 66764 234
## 67042 234
## 67218 234
## 67285 234
## 67464 234
## 67543 234
## 67671 234
## 67839 234
## 67978 234
## 68026 234
## 68110 234
## 68255 234
## 68429 234
## 68635 234
## 68730 234
## 69390 234
## 69654 234
## 69753 234
## 69911 234
## 70136 234
## 70164 234
## 70602 234
## 71130 234
## 71648 234
## 71828 234
## 72025 234
## 72193 234
## 72287 234
## 72550 234
## 72857 234
## 72885 234
## 72966 234
## 73148 234
## 73218 234
## 73260 234
## 73318 234
## 73380 234
## 73420 234
## 73474 234
## 73513 234
## 73555 234
## 73586 234
## 73617 234
## 73670 234
## 73728 234
## 73788 234
## 73806 234
## 73833 234
## 73945 234
## 73984 234
## 74051 234
## 74119 234
## 74237 234
## 74385 234
## 74449 234
## 74498 234
## 74604 234
## 74723 234
## 74750 234
## 74788 234
## 74903 234
## 75070 234
## 75118 234
## 75257 234
## 75304 234
## 75369 234
## 75432 234
## 75491 234
## 75587 234
## 75810 234
## 75874 234
## 76042 234
## 76225 234
## 76287 234
## 76488 234
## 76619 234
## 76756 234
## 76842 234
## 76931 234
## 77214 234
## 77337 234
## 77461 234
## 78422 234
## 78875 234
## 79012 234
## 79097 234
## 79295 234
## 79412 234
## 79523 234
## 79826 234
## 80006 234
## 80647 234
## 80751 234
## 80965 234
## 81026 234
## 81246 234
## 81550 234
## 82207 234
## 82234 234
## 82359 234
## 82763 234
## 82977 234
## 83878 234
## 83935 234
## 84034 234
## 84448 234
## 84517 234
## 84573 234
## 84777 234
## 85139 234
## 85193 234
## 86213 234
## 86305 234
## 86321 234
## 86349 234
## 86480 234
## 86507 234
## 86542 234
## 86620 234
## 86811 234
## 86852 234
## 86915 234
## 86964 234
## 87115 234
## 87340 234
## 87469 234
## 87515 234
## 87593 234
## 87781 234
## 88131 234
## 88967 234
## 89052 234
## 89192 234
## 89321 234
## 89340 234
## 89441 234
## 89850 234
## 89982 234
## 90107 234
## 90345 234
## 90376 234
## 90544 234
## 90604 234
## 90749 234
## 90785 234
## 90796 234
## 90819 234
## 90945 234
## 91223 234
## 91297 234
## 91465 234
## 91965 234
## 92014 234
## 92327 234
## 92594 234
## 92628 234
## 93066 234
## 93201 234
## 93407 234
## 93658 234
## 93748 234
## 93794 234
## 94077 234
## 94112 234
## 94453 234
## 94482 234
## 94917 234
## 94937 234
## 95364 234
## 95382 234
## 95402 234
## 95426 234
## 95554 234
## 95894 234
## 96150 234
## 96174 234
## 96184 234
## 96222 234
## 96365 234
## 96377 234
## 96393 234
## 96584 234
## 96614 234
## 96631 234
## 96651 234
## 96668 234
## 96972 234
## 97506 234
## 97602 234
## 97795 234
## 97916 234
## 98111 234
## 98237 234
## 98372 234
## 98386 234
## 98715 234
## 98719 234
## 98734 234
## 98735 234
## 98738 234
## 98746 234
## 98748 234
## 98763 234
## 98764 234
## 98765 234
## 98771 234
## 98773 234
## 98780 234
## 98781 234
## 98782 234
## 98789 234
## 98790 234
## 98791 234
## 98798 234
## 105 235
## 1101 235
## 3588 235
## 6538 235
## 7088 235
## 8869 235
## 8994 235
## 9442 235
## 9746 235
## 10745 235
## 11236 235
## 11468 235
## 11636 235
## 11720 235
## 11870 235
## 13341 235
## 14504 235
## 19285 235
## 21512 235
## 23699 235
## 24646 235
## 25028 235
## 25767 235
## 26280 235
## 27361 235
## 28039 235
## 28267 235
## 28433 235
## 28665 235
## 28793 235
## 28972 235
## 29227 235
## 29514 235
## 29760 235
## 29969 235
## 31539 235
## 32367 235
## 32648 235
## 35353 235
## 36504 235
## 40807 235
## 42049 235
## 43590 235
## 45255 235
## 49016 235
## 49283 235
## 50528 235
## 51715 235
## 52216 235
## 52357 235
## 57696 235
## 58851 235
## 59055 235
## 59394 235
## 59636 235
## 61352 235
## 61485 235
## 62536 235
## 63513 235
## 63896 235
## 64843 235
## 64998 235
## 66560 235
## 66702 235
## 67043 235
## 67544 235
## 67777 235
## 67840 235
## 67979 235
## 72967 235
## 75305 235
## 75370 235
## 75740 235
## 76043 235
## 78127 235
## 78876 235
## 79392 235
## 79524 235
## 82360 235
## 84778 235
## 88510 235
## 89053 235
## 90946 235
## 90958 235
## 92629 235
## 95029 235
## 95313 235
## 95589 235
## 95895 235
## 96259 235
## 96485 235
## 98749 235
## 98801 235
## 1684 236
## 2941 236
## 4668 236
## 6539 236
## 7011 236
## 7643 236
## 7944 236
## 8007 236
## 8638 236
## 8995 236
## 9443 236
## 9978 236
## 10746 236
## 12018 236
## 13622 236
## 13919 236
## 14505 236
## 15519 236
## 16047 236
## 17979 236
## 18660 236
## 18890 236
## 19068 236
## 19286 236
## 20067 236
## 20770 236
## 21122 236
## 21513 236
## 23700 236
## 23943 236
## 24647 236
## 25243 236
## 25768 236
## 26281 236
## 26956 236
## 27362 236
## 27843 236
## 28434 236
## 28973 236
## 29228 236
## 29515 236
## 30109 236
## 30278 236
## 30855 236
## 31074 236
## 31540 236
## 32059 236
## 32368 236
## 33150 236
## 33998 236
## 34308 236
## 34487 236
## 36505 236
## 38968 236
## 40500 236
## 41631 236
## 41850 236
## 42050 236
## 43002 236
## 43835 236
## 44808 236
## 45610 236
## 46157 236
## 47372 236
## 47708 236
## 48303 236
## 49017 236
## 50732 236
## 51357 236
## 53852 236
## 57049 236
## 57697 236
## 57858 236
## 58127 236
## 58534 236
## 58852 236
## 59213 236
## 59637 236
## 60024 236
## 61353 236
## 62977 236
## 63215 236
## 63897 236
## 64999 236
## 65710 236
## 65818 236
## 65891 236
## 65984 236
## 66424 236
## 67545 236
## 67672 236
## 67841 236
## 68111 236
## 68832 236
## 69391 236
## 69655 236
## 72288 236
## 72466 236
## 72551 236
## 73618 236
## 74605 236
## 76044 236
## 76489 236
## 76757 236
## 77338 236
## 78294 236
## 78423 236
## 78877 236
## 79157 236
## 79296 236
## 79525 236
## 80300 236
## 80869 236
## 81247 236
## 82837 236
## 83356 236
## 87154 236
## 87253 236
## 89683 236
## 92198 236
## 93202 236
## 95001 236
## 98103 236
## 98399 236
## 1685 237
## 3862 237
## 4669 237
## 8008 237
## 8639 237
## 11469 237
## 13920 237
## 14506 237
## 17980 237
## 19069 237
## 21514 237
## 23578 237
## 24648 237
## 25244 237
## 25627 237
## 25769 237
## 25991 237
## 26957 237
## 27363 237
## 27844 237
## 28268 237
## 28435 237
## 29761 237
## 30110 237
## 32369 237
## 36857 237
## 43836 237
## 52996 237
## 56685 237
## 58128 237
## 62537 237
## 63332 237
## 63898 237
## 64250 237
## 64557 237
## 64844 237
## 65282 237
## 65414 237
## 65602 237
## 66765 237
## 66862 237
## 68027 237
## 68430 237
## 72968 237
## 76226 237
## 76490 237
## 79526 237
## 96474 237
## 15520 238
## 16409 238
## 16810 238
## 17598 238
## 21123 238
## 26282 238
## 33783 238
## 36506 238
## 38719 238
## 38969 238
## 39185 238
## 39558 238
## 43837 238
## 45611 238
## 46158 238
## 46477 238
## 46865 238
## 56311 238
## 61126 238
## 62039 238
## 62978 238
## 68981 238
## 69392 238
## 83357 238
## 85419 238
## 86621 238
## 89244 238
## 96457 238
## 97467 238
## 1441 239
## 1686 239
## 1924 239
## 2293 239
## 2726 239
## 5537 239
## 5733 239
## 5984 239
## 6050 239
## 6100 239
## 6540 239
## 7644 239
## 8009 239
## 8640 239
## 8870 239
## 9444 239
## 10747 239
## 11086 239
## 12251 239
## 12591 239
## 13342 239
## 13921 239
## 14507 239
## 15766 239
## 15872 239
## 17399 239
## 18661 239
## 18891 239
## 19070 239
## 19287 239
## 19631 239
## 20930 239
## 21393 239
## 22725 239
## 23062 239
## 23303 239
## 23808 239
## 23944 239
## 24649 239
## 25029 239
## 25770 239
## 25992 239
## 26283 239
## 26958 239
## 27364 239
## 27597 239
## 27845 239
## 28269 239
## 28974 239
## 29229 239
## 29970 239
## 30856 239
## 31075 239
## 31370 239
## 31541 239
## 31640 239
## 31848 239
## 32060 239
## 33858 239
## 34946 239
## 35931 239
## 36858 239
## 37525 239
## 40808 239
## 41432 239
## 42345 239
## 43838 239
## 44384 239
## 46478 239
## 47373 239
## 47502 239
## 48150 239
## 48867 239
## 49018 239
## 51879 239
## 54476 239
## 57698 239
## 57948 239
## 58535 239
## 58736 239
## 58951 239
## 59214 239
## 59395 239
## 59533 239
## 60025 239
## 61354 239
## 61486 239
## 62538 239
## 62749 239
## 63216 239
## 63333 239
## 63745 239
## 63899 239
## 64114 239
## 64497 239
## 64558 239
## 64666 239
## 64731 239
## 64788 239
## 65194 239
## 65283 239
## 65415 239
## 65711 239
## 65819 239
## 65985 239
## 66123 239
## 66304 239
## 66561 239
## 66703 239
## 66766 239
## 66863 239
## 67219 239
## 67380 239
## 68256 239
## 68431 239
## 68545 239
## 68636 239
## 68731 239
## 70165 239
## 72194 239
## 72969 239
## 73219 239
## 73556 239
## 74606 239
## 74665 239
## 74724 239
## 75306 239
## 75492 239
## 75741 239
## 75875 239
## 76491 239
## 76932 239
## 77215 239
## 77462 239
## 78701 239
## 79393 239
## 79527 239
## 81370 239
## 82208 239
## 83153 239
## 86322 239
## 86965 239
## 88968 239
## 89054 239
## 90476 239
## 90691 239
## 92595 239
## 93911 239
## 94127 239
## 94263 239
## 94868 239
## 94904 239
## 95202 239
## 96475 239
## 96632 239
## 96652 239
## 97352 239
## 98118 239
## 37526 240
## 37843 240
## 40809 240
## 41433 240
## 43839 240
## 44385 240
## 44809 240
## 46479 240
## 46866 240
## 47113 240
## 47709 240
## 48304 240
## 51642 240
## 51880 240
## 52110 240
## 52598 240
## 52713 240
## 53229 240
## 82504 240
## 82978 240
## 87516 240
## 87833 240
## 88369 240
## 88511 240
## 41066 241
## 43840 241
## 44386 241
## 45256 241
## 45612 241
## 46480 241
## 47114 241
## 47710 241
## 47948 241
## 48305 241
## 51188 241
## 51616 241
## 52111 241
## 52358 241
## 52629 241
## 77958 241
## 78592 241
## 78702 241
## 82838 241
## 87959 241
## 88132 241
## 88370 241
## 106 242
## 15521 242
## 36507 242
## 42051 242
## 43216 242
## 45132 242
## 45613 242
## 47503 242
## 47596 242
## 51066 242
## 53369 242
## 62750 242
## 81696 242
## 89684 242
## 92015 242
## 95702 242
## 95936 242
## 98199 242
## 98207 242
## 107 243
## 1102 243
## 1442 243
## 1925 243
## 2549 243
## 2727 243
## 2942 243
## 3164 243
## 3589 243
## 4259 243
## 4482 243
## 4670 243
## 9445 243
## 10511 243
## 11470 243
## 11721 243
## 12840 243
## 15522 243
## 15873 243
## 17599 243
## 17981 243
## 18389 243
## 19632 243
## 21124 243
## 22152 243
## 22726 243
## 24300 243
## 28436 243
## 28975 243
## 29516 243
## 31641 243
## 32918 243
## 33859 243
## 34309 243
## 34488 243
## 36508 243
## 38057 243
## 42052 243
## 42744 243
## 43217 243
## 43591 243
## 43841 243
## 47597 243
## 48868 243
## 49019 243
## 53623 243
## 54974 243
## 58129 243
## 59638 243
## 61127 243
## 61256 243
## 61760 243
## 63120 243
## 66305 243
## 66562 243
## 66864 243
## 68732 243
## 71649 243
## 74499 243
## 74607 243
## 76045 243
## 76620 243
## 79098 243
## 79297 243
## 79730 243
## 80058 243
## 80648 243
## 81027 243
## 81371 243
## 81444 243
## 84269 243
## 85360 243
## 93203 243
## 95203 243
## 95883 243
## 96547 243
## 97730 243
## 98231 243
## 98804 243
## 98807 243
## 108 244
## 603 244
## 1103 244
## 1687 244
## 2550 244
## 3214 244
## 3384 244
## 3590 244
## 4483 244
## 4671 244
## 5061 244
## 5206 244
## 5620 244
## 5734 244
## 6541 244
## 7012 244
## 7089 244
## 7183 244
## 7312 244
## 7645 244
## 8010 244
## 8384 244
## 8641 244
## 8871 244
## 8996 244
## 9147 244
## 9253 244
## 9446 244
## 9747 244
## 9979 244
## 10178 244
## 10512 244
## 11007 244
## 11237 244
## 11722 244
## 12019 244
## 12252 244
## 12481 244
## 12724 244
## 13095 244
## 13623 244
## 14508 244
## 14907 244
## 15057 244
## 15324 244
## 15523 244
## 15767 244
## 16048 244
## 16410 244
## 16811 244
## 17156 244
## 17813 244
## 19288 244
## 20291 244
## 20493 244
## 20771 244
## 21125 244
## 21515 244
## 21743 244
## 21898 244
## 22012 244
## 22153 244
## 22261 244
## 22532 244
## 22727 244
## 22928 244
## 23185 244
## 23304 244
## 23579 244
## 23809 244
## 23945 244
## 24301 244
## 24650 244
## 25771 244
## 25993 244
## 26284 244
## 26959 244
## 27598 244
## 28040 244
## 28437 244
## 28794 244
## 29517 244
## 29762 244
## 30279 244
## 31076 244
## 31642 244
## 31849 244
## 32772 244
## 32919 244
## 33151 244
## 33389 244
## 33784 244
## 33999 244
## 34599 244
## 35665 244
## 35932 244
## 36199 244
## 36509 244
## 36859 244
## 37238 244
## 37395 244
## 38058 244
## 38342 244
## 38970 244
## 39559 244
## 40501 244
## 42346 244
## 42644 244
## 42841 244
## 44214 244
## 45036 244
## 45133 244
## 45614 244
## 46867 244
## 47949 244
## 48869 244
## 49020 244
## 50085 244
## 52997 244
## 53499 244
## 53624 244
## 53799 244
## 54260 244
## 54372 244
## 54570 244
## 55255 244
## 55690 244
## 56790 244
## 56876 244
## 57050 244
## 58737 244
## 59396 244
## 60651 244
## 60912 244
## 61040 244
## 61128 244
## 61761 244
## 62040 244
## 62751 244
## 66124 244
## 66306 244
## 67673 244
## 68257 244
## 68432 244
## 68947 244
## 69754 244
## 69962 244
## 70031 244
## 70246 244
## 70603 244
## 71563 244
## 71829 244
## 72552 244
## 73421 244
## 74238 244
## 74386 244
## 74500 244
## 75493 244
## 75588 244
## 75742 244
## 76046 244
## 76621 244
## 76843 244
## 77339 244
## 77520 244
## 78295 244
## 79230 244
## 79654 244
## 79731 244
## 79928 244
## 80007 244
## 80233 244
## 80497 244
## 80607 244
## 80649 244
## 81028 244
## 81248 244
## 81495 244
## 81551 244
## 82079 244
## 82134 244
## 82235 244
## 82361 244
## 83182 244
## 83358 244
## 83606 244
## 83731 244
## 83853 244
## 84126 244
## 84378 244
## 84693 244
## 85420 244
## 85534 244
## 86238 244
## 86622 244
## 87025 244
## 87254 244
## 87408 244
## 88078 244
## 89118 244
## 89245 244
## 89932 244
## 90154 244
## 90282 244
## 90346 244
## 90458 244
## 90494 244
## 90605 244
## 92114 244
## 92487 244
## 92827 244
## 93204 244
## 93313 244
## 93447 244
## 93539 244
## 93659 244
## 93857 244
## 93880 244
## 93925 244
## 94390 244
## 94508 244
## 94817 244
## 94869 244
## 95052 244
## 95075 244
## 95263 244
## 95314 244
## 95526 244
## 95672 244
## 95919 244
## 96151 244
## 96286 244
## 96413 244
## 96731 244
## 97049 244
## 98606 244
## 98813 244
## 3459 245
## 6542 245
## 12947 245
## 15730 245
## 18892 245
## 21126 245
## 26285 245
## 32061 245
## 34000 245
## 37239 245
## 39560 245
## 46481 245
## 57051 245
## 62398 245
## 72553 245
## 72692 245
## 80301 245
## 83359 245
## 88333 245
## 92828 245
## 93004 245
## 93540 245
## 109 246
## 604 246
## 1443 246
## 2056 246
## 2294 246
## 3215 246
## 4044 246
## 4260 246
## 4901 246
## 5426 246
## 5669 246
## 6543 246
## 7430 246
## 7646 246
## 8997 246
## 9148 246
## 9254 246
## 9447 246
## 10513 246
## 11008 246
## 11087 246
## 11238 246
## 11471 246
## 12725 246
## 12948 246
## 13096 246
## 13343 246
## 13624 246
## 13922 246
## 14249 246
## 14509 246
## 14908 246
## 15325 246
## 15524 246
## 16049 246
## 16411 246
## 16812 246
## 18662 246
## 18893 246
## 19762 246
## 20494 246
## 21127 246
## 21899 246
## 22262 246
## 22328 246
## 22533 246
## 22929 246
## 23946 246
## 24302 246
## 24651 246
## 25030 246
## 25245 246
## 25628 246
## 26286 246
## 27213 246
## 27365 246
## 29230 246
## 29518 246
## 29971 246
## 30467 246
## 30598 246
## 31077 246
## 31643 246
## 32062 246
## 32370 246
## 32920 246
## 33152 246
## 33680 246
## 34310 246
## 34600 246
## 34768 246
## 34947 246
## 35354 246
## 35534 246
## 35666 246
## 36200 246
## 36380 246
## 36860 246
## 37081 246
## 37240 246
## 38487 246
## 38720 246
## 38879 246
## 39186 246
## 40127 246
## 40502 246
## 43404 246
## 44387 246
## 44810 246
## 45615 246
## 52860 246
## 53766 246
## 53800 246
## 54605 246
## 54709 246
## 55256 246
## 55691 246
## 55789 246
## 55965 246
## 56142 246
## 56579 246
## 56791 246
## 56877 246
## 57052 246
## 57191 246
## 57275 246
## 57410 246
## 57565 246
## 57859 246
## 58130 246
## 58394 246
## 58463 246
## 59056 246
## 59215 246
## 59397 246
## 59940 246
## 60158 246
## 60255 246
## 60652 246
## 61826 246
## 61904 246
## 62752 246
## 63121 246
## 69134 246
## 69592 246
## 69755 246
## 70247 246
## 70388 246
## 70751 246
## 70837 246
## 71087 246
## 71160 246
## 71293 246
## 71424 246
## 71903 246
## 72026 246
## 72554 246
## 72693 246
## 73729 246
## 74239 246
## 74666 246
## 75589 246
## 75743 246
## 76407 246
## 77093 246
## 77266 246
## 77463 246
## 77825 246
## 80377 246
## 80420 246
## 80498 246
## 80650 246
## 80812 246
## 81249 246
## 81552 246
## 81763 246
## 82080 246
## 82236 246
## 82505 246
## 83467 246
## 83879 246
## 84694 246
## 84988 246
## 85049 246
## 85223 246
## 85514 246
## 86026 246
## 86134 246
## 86387 246
## 86441 246
## 86869 246
## 86926 246
## 88371 246
## 88878 246
## 89492 246
## 89614 246
## 89933 246
## 91241 246
## 91573 246
## 92829 246
## 93205 246
## 93408 246
## 93836 246
## 94322 246
## 94655 246
## 94938 246
## 95622 246
## 95732 246
## 96414 246
## 96896 246
## 96942 246
## 97011 246
## 97109 246
## 97203 246
## 98481 246
## 110 247
## 1104 247
## 4672 247
## 6544 247
## 8011 247
## 8642 247
## 9748 247
## 14510 247
## 15525 247
## 16813 247
## 21128 247
## 26287 247
## 34001 247
## 38650 247
## 39187 247
## 39561 247
## 39974 247
## 40810 247
## 41216 247
## 41434 247
## 46482 247
## 51881 247
## 81372 247
## 82839 247
## 82979 247
## 92669 247
## 111 248
## 1105 248
## 2057 248
## 3591 248
## 6545 248
## 7431 248
## 8643 248
## 9448 248
## 10748 248
## 12253 248
## 13344 248
## 13923 248
## 14511 248
## 15768 248
## 16050 248
## 16814 248
## 17982 248
## 21516 248
## 22013 248
## 23305 248
## 23947 248
## 24652 248
## 25246 248
## 25772 248
## 25994 248
## 26288 248
## 26960 248
## 27366 248
## 27599 248
## 27846 248
## 28976 248
## 29519 248
## 29972 248
## 32063 248
## 35933 248
## 36201 248
## 38343 248
## 38488 248
## 39188 248
## 43003 248
## 43218 248
## 45037 248
## 45616 248
## 49874 248
## 50086 248
## 52112 248
## 56312 248
## 62539 248
## 62753 248
## 64115 248
## 67044 248
## 72195 248
## 77638 248
## 85140 248
## 86938 248
## 89341 248
## 112 249
## 479 249
## 718 249
## 1106 249
## 1688 249
## 2058 249
## 2295 249
## 2551 249
## 3592 249
## 3863 249
## 4045 249
## 4673 249
## 5062 249
## 5538 249
## 5735 249
## 6546 249
## 7184 249
## 7432 249
## 7647 249
## 8012 249
## 8644 249
## 9255 249
## 9449 249
## 10749 249
## 11472 249
## 11723 249
## 12020 249
## 12254 249
## 12726 249
## 12841 249
## 13345 249
## 13924 249
## 14512 249
## 15240 249
## 15769 249
## 16051 249
## 16815 249
## 17265 249
## 17400 249
## 17600 249
## 18390 249
## 19289 249
## 19633 249
## 20292 249
## 20599 249
## 20772 249
## 22014 249
## 22534 249
## 23306 249
## 23580 249
## 23948 249
## 24303 249
## 24653 249
## 25031 249
## 25247 249
## 25773 249
## 26289 249
## 26729 249
## 26961 249
## 27600 249
## 28041 249
## 28438 249
## 29231 249
## 29973 249
## 30599 249
## 30857 249
## 31850 249
## 32064 249
## 32550 249
## 33153 249
## 33522 249
## 34002 249
## 34311 249
## 34948 249
## 36202 249
## 36510 249
## 36861 249
## 37082 249
## 37241 249
## 37396 249
## 37527 249
## 37844 249
## 38184 249
## 38344 249
## 38489 249
## 38721 249
## 38971 249
## 39189 249
## 39562 249
## 41217 249
## 41632 249
## 42053 249
## 43219 249
## 45038 249
## 45617 249
## 46159 249
## 46483 249
## 47115 249
## 47893 249
## 48870 249
## 49021 249
## 50529 249
## 51358 249
## 52998 249
## 55966 249
## 56313 249
## 56630 249
## 56686 249
## 56792 249
## 57053 249
## 57949 249
## 58131 249
## 58536 249
## 59057 249
## 60913 249
## 61041 249
## 61355 249
## 61709 249
## 61827 249
## 62041 249
## 62243 249
## 62979 249
## 63217 249
## 63334 249
## 63514 249
## 63900 249
## 69393 249
## 70838 249
## 71788 249
## 72027 249
## 72289 249
## 72694 249
## 72970 249
## 74240 249
## 74725 249
## 76408 249
## 78128 249
## 78424 249
## 79732 249
## 80608 249
## 81764 249
## 81864 249
## 82237 249
## 82506 249
## 84645 249
## 85141 249
## 85951 249
## 86543 249
## 86927 249
## 88879 249
## 89493 249
## 91574 249
## 92016 249
## 92115 249
## 92367 249
## 93206 249
## 93541 249
## 94243 249
## 94323 249
## 95007 249
## 96138 249
## 113 250
## 480 250
## 1107 250
## 1689 250
## 2296 250
## 3864 250
## 4674 250
## 5904 250
## 6547 250
## 7433 250
## 7648 250
## 8645 250
## 9450 250
## 9980 250
## 11088 250
## 12255 250
## 12592 250
## 12727 250
## 13097 250
## 13346 250
## 13925 250
## 14513 250
## 15526 250
## 15874 250
## 16052 250
## 17266 250
## 17983 250
## 18391 250
## 19290 250
## 19839 250
## 20293 250
## 21129 250
## 21517 250
## 21744 250
## 22329 250
## 24654 250
## 25032 250
## 25774 250
## 26290 250
## 26962 250
## 27214 250
## 28439 250
## 29232 250
## 29520 250
## 30280 250
## 30600 250
## 31078 250
## 34003 250
## 34312 250
## 35934 250
## 36203 250
## 36511 250
## 36862 250
## 37242 250
## 37747 250
## 38185 250
## 39563 250
## 39975 250
## 40128 250
## 40367 250
## 41067 250
## 41218 250
## 42347 250
## 44388 250
## 45372 250
## 45618 250
## 48306 250
## 49481 250
## 49651 250
## 49875 250
## 50087 250
## 50217 250
## 50733 250
## 51067 250
## 51359 250
## 51716 250
## 51882 250
## 52999 250
## 53625 250
## 54110 250
## 56143 250
## 57566 250
## 61129 250
## 61828 250
## 62540 250
## 62754 250
## 63122 250
## 63515 250
## 64251 250
## 65000 250
## 65494 250
## 68258 250
## 70166 250
## 71650 250
## 72028 250
## 72555 250
## 74241 250
## 74387 250
## 77521 250
## 77639 250
## 78476 250
## 78542 250
## 81865 250
## 82507 250
## 82980 250
## 83183 250
## 85361 250
## 86544 250
## 89649 250
## 90026 250
## 90231 250
## 90885 250
## 91298 250
## 91393 250
## 91532 250
## 91575 250
## 92243 250
## 94324 250
## 95703 250
## 96065 250
## 96592 250
## 98593 250
## 114 251
## 1108 251
## 2297 251
## 2943 251
## 3593 251
## 4046 251
## 4261 251
## 5288 251
## 5985 251
## 6548 251
## 7434 251
## 8243 251
## 8646 251
## 10750 251
## 14514 251
## 15326 251
## 15527 251
## 16053 251
## 16412 251
## 16816 251
## 17601 251
## 18663 251
## 20294 251
## 20600 251
## 20773 251
## 21130 251
## 23949 251
## 26291 251
## 26963 251
## 27367 251
## 30601 251
## 32065 251
## 34004 251
## 36512 251
## 38186 251
## 38345 251
## 38490 251
## 38722 251
## 39190 251
## 39564 251
## 40503 251
## 42054 251
## 42842 251
## 43004 251
## 44389 251
## 45619 251
## 45995 251
## 46160 251
## 46484 251
## 48307 251
## 56314 251
## 57567 251
## 58537 251
## 58853 251
## 61762 251
## 62042 251
## 62244 251
## 62980 251
## 63516 251
## 67546 251
## 68884 251
## 72467 251
## 72556 251
## 72695 251
## 73557 251
## 78296 251
## 81866 251
## 82508 251
## 85362 251
## 86623 251
## 87255 251
## 91162 251
## 92116 251
## 92244 251
## 92368 251
## 92830 251
## 94870 251
## 115 252
## 1109 252
## 1690 252
## 2728 252
## 14515 252
## 17401 252
## 18392 252
## 20875 252
## 34420 252
## 42055 252
## 42348 252
## 42576 252
## 43842 252
## 45039 252
## 46485 252
## 56878 252
## 62755 252
## 81697 252
## 81867 252
## 86812 252
## 116 253
## 719 253
## 1444 253
## 2298 253
## 2944 253
## 3594 253
## 6549 253
## 7649 253
## 8647 253
## 10751 253
## 11089 253
## 11239 253
## 11473 253
## 11871 253
## 12256 253
## 13098 253
## 13347 253
## 13625 253
## 13926 253
## 14516 253
## 16054 253
## 16817 253
## 17602 253
## 17984 253
## 18664 253
## 21518 253
## 22015 253
## 23307 253
## 24304 253
## 25033 253
## 26730 253
## 26964 253
## 28042 253
## 28270 253
## 28666 253
## 29974 253
## 30281 253
## 30602 253
## 30858 253
## 32066 253
## 33154 253
## 33785 253
## 34005 253
## 35935 253
## 36513 253
## 37640 253
## 39976 253
## 41633 253
## 43005 253
## 45620 253
## 46161 253
## 46486 253
## 49022 253
## 50734 253
## 51068 253
## 51360 253
## 52113 253
## 58538 253
## 59398 253
## 60366 253
## 61582 253
## 63746 253
## 63901 253
## 64252 253
## 64429 253
## 64608 253
## 64845 253
## 65001 253
## 66425 253
## 67381 253
## 67842 253
## 68259 253
## 70604 253
## 70839 253
## 72029 253
## 72290 253
## 75307 253
## 76047 253
## 76492 253
## 77826 253
## 78297 253
## 78593 253
## 79298 253
## 79528 253
## 81029 253
## 81868 253
## 82238 253
## 82362 253
## 82981 253
## 85142 253
## 88372 253
## 90820 253
## 92369 253
## 92746 253
## 93207 253
## 98422 253
## 98815 253
## 117 254
## 1445 254
## 2945 254
## 3460 254
## 3595 254
## 4675 254
## 4902 254
## 5369 254
## 6550 254
## 8385 254
## 8648 254
## 9451 254
## 9981 254
## 10417 254
## 10638 254
## 11240 254
## 12482 254
## 12949 254
## 13626 254
## 13927 254
## 14250 254
## 14980 254
## 15027 254
## 15731 254
## 16413 254
## 16818 254
## 17603 254
## 17814 254
## 18665 254
## 18894 254
## 19291 254
## 19502 254
## 19763 254
## 19840 254
## 19900 254
## 19969 254
## 20068 254
## 21131 254
## 22728 254
## 22823 254
## 22930 254
## 23186 254
## 23308 254
## 23950 254
## 24655 254
## 25248 254
## 26292 254
## 26965 254
## 27601 254
## 28043 254
## 29521 254
## 30111 254
## 30282 254
## 31079 254
## 32067 254
## 32371 254
## 32773 254
## 33681 254
## 34006 254
## 34489 254
## 34769 254
## 34949 254
## 35175 254
## 35355 254
## 35535 254
## 35936 254
## 36863 254
## 37243 254
## 37397 254
## 37641 254
## 39191 254
## 39565 254
## 39977 254
## 40504 254
## 40811 254
## 43843 254
## 48308 254
## 49876 254
## 52114 254
## 53000 254
## 54111 254
## 54200 254
## 54261 254
## 54606 254
## 54888 254
## 55058 254
## 55257 254
## 55657 254
## 55967 254
## 56315 254
## 57377 254
## 57411 254
## 57475 254
## 57568 254
## 57699 254
## 58132 254
## 58854 254
## 59216 254
## 59639 254
## 59821 254
## 59941 254
## 60026 254
## 60367 254
## 60461 254
## 60653 254
## 61081 254
## 61583 254
## 62245 254
## 65002 254
## 65284 254
## 65495 254
## 65712 254
## 68112 254
## 69184 254
## 69626 254
## 70032 254
## 70389 254
## 71190 254
## 71240 254
## 71378 254
## 71830 254
## 72030 254
## 72557 254
## 73475 254
## 73558 254
## 73730 254
## 73928 254
## 73946 254
## 74018 254
## 74052 254
## 74388 254
## 75433 254
## 76048 254
## 76844 254
## 77094 254
## 77640 254
## 77827 254
## 79299 254
## 83247 254
## 83936 254
## 86481 254
## 86508 254
## 87409 254
## 88274 254
## 90377 254
## 90840 254
## 92831 254
## 93005 254
## 93749 254
## 94000 254
## 94727 254
## 95226 254
## 95555 254
## 96348 254
## 97507 254
## 98693 254
## 98697 254
## 98821 254
## 98833 254
## 901 255
## 1110 255
## 7185 255
## 7650 255
## 13928 255
## 14517 255
## 16055 255
## 16414 255
## 16819 255
## 20601 255
## 27368 255
## 30283 255
## 33390 255
## 33523 255
## 33682 255
## 34007 255
## 35937 255
## 37845 255
## 38346 255
## 39566 255
## 39978 255
## 40368 255
## 41219 255
## 41634 255
## 42843 255
## 44390 255
## 45621 255
## 46487 255
## 49652 255
## 49877 255
## 50088 255
## 50218 255
## 50735 255
## 51189 255
## 51617 255
## 52115 255
## 56316 255
## 56580 255
## 57276 255
## 59822 255
## 59942 255
## 60027 255
## 60159 255
## 60256 255
## 60368 255
## 60796 255
## 60914 255
## 62246 255
## 69394 255
## 69884 255
## 70248 255
## 70526 255
## 70548 255
## 71023 255
## 72696 255
## 77095 255
## 77267 255
## 77641 255
## 77959 255
## 78298 255
## 82081 255
## 82509 255
## 83502 255
## 83732 255
## 85865 255
## 85952 255
## 86027 255
## 86091 255
## 86135 255
## 86239 255
## 86284 255
## 86388 255
## 86442 255
## 87062 255
## 87076 255
## 87470 255
## 87834 255
## 88373 255
## 89494 255
## 91098 255
## 91253 255
## 91299 255
## 93033 255
## 118 256
## 481 256
## 720 256
## 902 256
## 1111 256
## 1691 256
## 2059 256
## 2299 256
## 2946 256
## 3461 256
## 3596 256
## 4262 256
## 4903 256
## 5063 256
## 5379 256
## 5427 256
## 5905 256
## 6340 256
## 6551 256
## 7013 256
## 7313 256
## 7651 256
## 8649 256
## 8998 256
## 10514 256
## 10752 256
## 11241 256
## 11724 256
## 12021 256
## 12257 256
## 12728 256
## 13348 256
## 13627 256
## 13929 256
## 14518 256
## 15134 256
## 16056 256
## 16415 256
## 16654 256
## 16820 256
## 17267 256
## 17604 256
## 17985 256
## 20602 256
## 21132 256
## 22535 256
## 23951 256
## 24656 256
## 26293 256
## 26731 256
## 27369 256
## 27847 256
## 28044 256
## 29233 256
## 30603 256
## 30859 256
## 32068 256
## 33155 256
## 33524 256
## 33786 256
## 34008 256
## 34490 256
## 34601 256
## 34770 256
## 34950 256
## 35176 256
## 35356 256
## 35667 256
## 35775 256
## 35938 256
## 36204 256
## 36514 256
## 37642 256
## 37846 256
## 40505 256
## 41851 256
## 42349 256
## 42645 256
## 42745 256
## 43006 256
## 43220 256
## 43405 256
## 44391 256
## 45134 256
## 45622 256
## 49284 256
## 49653 256
## 49878 256
## 52861 256
## 53419 256
## 53767 256
## 53853 256
## 54373 256
## 54710 256
## 54975 256
## 55790 256
## 55968 256
## 56317 256
## 56581 256
## 56793 256
## 57277 256
## 60028 256
## 60462 256
## 60654 256
## 60797 256
## 61223 256
## 62043 256
## 62247 256
## 62399 256
## 62981 256
## 64430 256
## 68113 256
## 68982 256
## 69395 256
## 69756 256
## 69912 256
## 70033 256
## 70605 256
## 70840 256
## 71294 256
## 71789 256
## 72291 256
## 72468 256
## 72697 256
## 73892 256
## 74242 256
## 75119 256
## 76288 256
## 76845 256
## 77096 256
## 77642 256
## 77828 256
## 78129 256
## 78299 256
## 78878 256
## 80234 256
## 80556 256
## 80651 256
## 80813 256
## 81030 256
## 81553 256
## 81765 256
## 81869 256
## 82510 256
## 83360 256
## 83544 256
## 83880 256
## 83985 256
## 84083 256
## 84220 256
## 84270 256
## 84337 256
## 84449 256
## 84534 256
## 84574 256
## 84859 256
## 84924 256
## 85050 256
## 85194 256
## 85421 256
## 85565 256
## 86028 256
## 86092 256
## 86136 256
## 86285 256
## 86443 256
## 86763 256
## 86870 256
## 87155 256
## 87256 256
## 89193 256
## 89495 256
## 89615 256
## 89685 256
## 89851 256
## 91027 256
## 91060 256
## 91118 256
## 91254 256
## 91300 256
## 91355 256
## 91394 256
## 91466 256
## 92832 256
## 93006 256
## 93282 256
## 93314 256
## 93367 256
## 93473 256
## 93542 256
## 93795 256
## 93926 256
## 94033 256
## 94608 256
## 94691 256
## 95076 256
## 95187 256
## 95315 256
## 95920 256
## 96696 256
## 96716 256
## 96751 256
## 97110 256
## 97182 256
## 97841 256
## 98580 256
## 98838 256
## 2729 257
## 6552 257
## 7945 257
## 8170 257
## 8244 257
## 8309 257
## 9749 257
## 11725 257
## 14519 257
## 15747 257
## 15875 257
## 16821 257
## 18393 257
## 18493 257
## 19634 257
## 21133 257
## 23063 257
## 23126 257
## 26294 257
## 29975 257
## 33860 257
## 34421 257
## 36515 257
## 37847 257
## 39567 257
## 40812 257
## 42056 257
## 42350 257
## 43592 257
## 43844 257
## 44392 257
## 44811 257
## 46868 257
## 47504 257
## 47711 257
## 48309 257
## 50089 257
## 52275 257
## 54374 257
## 56318 257
## 61356 257
## 62756 257
## 68733 257
## 71651 257
## 77522 257
## 88969 257
## 89745 257
## 90283 257
## 91862 257
## 91966 257
## 92670 257
## 95481 257
## 95704 257
## 96039 257
## 97489 257
## 98792 257
## 98847 257
## 37643 258
## 39568 258
## 41435 258
## 43845 258
## 44393 258
## 44812 258
## 45623 258
## 46488 258
## 47950 258
## 48075 258
## 48310 258
## 48608 258
## 49879 258
## 50354 258
## 50736 258
## 51190 258
## 51361 258
## 78703 258
## 82511 258
## 82982 258
## 87517 258
## 87730 258
## 88317 258
## 2300 259
## 2947 259
## 5539 259
## 8872 259
## 13628 259
## 13930 259
## 15241 259
## 16057 259
## 16822 259
## 20603 259
## 21745 259
## 23309 259
## 23952 259
## 24305 259
## 25249 259
## 25775 259
## 25995 259
## 26295 259
## 27370 259
## 30284 259
## 32069 259
## 36205 259
## 38972 259
## 40813 259
## 41220 259
## 43846 259
## 44394 259
## 45373 259
## 45624 259
## 46162 259
## 48311 259
## 48871 259
## 53001 259
## 56319 259
## 62757 259
## 64116 259
## 69396 259
## 82512 259
## 82840 259
## 83607 259
## 84127 259
## 84450 259
## 89342 259
## 90606 259
## 94391 259
## 95623 259
## 39569 260
## 41068 260
## 41436 260
## 44395 260
## 46489 260
## 47712 260
## 48312 260
## 49285 260
## 49654 260
## 50355 260
## 51362 260
## 51561 260
## 52630 260
## 53384 260
## 68983 260
## 77960 260
## 82513 260
## 88007 260
## 88259 260
## 91503 260
## 92747 260
## 95030 260
## 97304 260
## 16058 261
## 17605 261
## 37644 261
## 37848 261
## 39979 261
## 44396 261
## 45625 261
## 46490 261
## 46869 261
## 47374 261
## 49482 261
## 49655 261
## 50356 261
## 51798 261
## 51883 261
## 52042 261
## 53342 261
## 56879 261
## 72558 261
## 72698 261
## 78477 261
## 82514 261
## 87632 261
## 88275 261
## 91395 261
## 92748 261
## 97235 261
## 119 262
## 1112 262
## 2060 262
## 2948 262
## 3597 262
## 4676 262
## 5621 262
## 5906 262
## 6101 262
## 6553 262
## 7090 262
## 7435 262
## 7652 262
## 8013 262
## 8650 262
## 8873 262
## 8999 262
## 9256 262
## 9452 262
## 9750 262
## 9982 262
## 10179 262
## 10515 262
## 11242 262
## 11726 262
## 12483 262
## 12593 262
## 12729 262
## 13099 262
## 13349 262
## 13931 262
## 14251 262
## 14520 262
## 15528 262
## 16823 262
## 17157 262
## 17606 262
## 18532 262
## 18666 262
## 19841 262
## 20069 262
## 20495 262
## 20604 262
## 21519 262
## 23581 262
## 23953 262
## 24657 262
## 25776 262
## 26296 262
## 27371 262
## 28440 262
## 29234 262
## 30285 262
## 31080 262
## 32070 262
## 33156 262
## 33391 262
## 33683 262
## 34313 262
## 35939 262
## 36206 262
## 36516 262
## 36864 262
## 38723 262
## 38973 262
## 39570 262
## 40814 262
## 41069 262
## 42057 262
## 42646 262
## 43221 262
## 44397 262
## 45257 262
## 45374 262
## 45626 262
## 49023 262
## 51191 262
## 51643 262
## 51717 262
## 53230 262
## 53500 262
## 53626 262
## 53801 262
## 54711 262
## 54889 262
## 55258 262
## 55791 262
## 56320 262
## 56582 262
## 57054 262
## 57476 262
## 57569 262
## 57700 262
## 57860 262
## 57950 262
## 58133 262
## 58539 262
## 59217 262
## 59399 262
## 60029 262
## 60257 262
## 60655 262
## 62400 262
## 62982 262
## 64253 262
## 64366 262
## 64667 262
## 65003 262
## 66307 262
## 69397 262
## 69963 262
## 70249 262
## 70752 262
## 70841 262
## 71564 262
## 71652 262
## 72031 262
## 72559 262
## 73422 262
## 73789 262
## 74053 262
## 74243 262
## 74501 262
## 75494 262
## 76049 262
## 76622 262
## 79300 262
## 79827 262
## 80752 262
## 81250 262
## 81373 262
## 82363 262
## 83184 262
## 83248 262
## 83608 262
## 84271 262
## 84451 262
## 84575 262
## 84604 262
## 84695 262
## 85422 262
## 85695 262
## 86624 262
## 89055 262
## 89442 262
## 89567 262
## 90284 262
## 90495 262
## 90607 262
## 91028 262
## 92199 262
## 92245 262
## 93067 262
## 93660 262
## 93881 262
## 94818 262
## 95624 262
## 95865 262
## 96943 262
## 97689 262
## 120 263
## 3598 263
## 3865 263
## 4677 263
## 5064 263
## 6554 263
## 8014 263
## 8651 263
## 9453 263
## 10753 263
## 11243 263
## 11727 263
## 11872 263
## 13100 263
## 13350 263
## 13629 263
## 13932 263
## 14252 263
## 14521 263
## 16059 263
## 17607 263
## 17986 263
## 18667 263
## 18895 263
## 19071 263
## 19292 263
## 19503 263
## 19901 263
## 20070 263
## 20295 263
## 21520 263
## 22729 263
## 22824 263
## 23310 263
## 24658 263
## 25250 263
## 25492 263
## 25996 263
## 26297 263
## 26966 263
## 27602 263
## 28045 263
## 28977 263
## 29235 263
## 29522 263
## 29763 263
## 30112 263
## 30604 263
## 31081 263
## 31371 263
## 32071 263
## 32921 263
## 34009 263
## 35940 263
## 36517 263
## 37849 263
## 38491 263
## 39571 263
## 40129 263
## 40506 263
## 40815 263
## 41221 263
## 41437 263
## 45627 263
## 46491 263
## 48609 263
## 48758 263
## 49024 263
## 49656 263
## 49880 263
## 50737 263
## 51363 263
## 53002 263
## 54112 263
## 57412 263
## 57701 263
## 58134 263
## 59218 263
## 59534 263
## 59640 263
## 60030 263
## 61584 263
## 63517 263
## 63747 263
## 63902 263
## 64117 263
## 64367 263
## 64907 263
## 65004 263
## 65285 263
## 66426 263
## 66563 263
## 66865 263
## 67045 263
## 67547 263
## 67674 263
## 67843 263
## 68114 263
## 68260 263
## 68433 263
## 69229 263
## 70842 263
## 72032 263
## 72886 263
## 73619 263
## 73947 263
## 75258 263
## 75371 263
## 76758 263
## 76846 263
## 77643 263
## 78704 263
## 79301 263
## 81031 263
## 87835 263
## 88079 263
## 88276 263
## 88970 263
## 92596 263
## 95427 263
## 98698 263
## 98750 263
## 98849 263
## 721 264
## 1113 264
## 2301 264
## 2730 264
## 3312 264
## 3866 264
## 4263 264
## 4484 264
## 5289 264
## 5736 264
## 6102 264
## 7653 264
## 9751 264
## 12022 264
## 12842 264
## 13933 264
## 14522 264
## 15876 264
## 17268 264
## 19635 264
## 20931 264
## 21521 264
## 22016 264
## 23311 264
## 24306 264
## 25034 264
## 25777 264
## 26732 264
## 26967 264
## 27215 264
## 27372 264
## 27603 264
## 28667 264
## 28978 264
## 30286 264
## 30468 264
## 30605 264
## 30860 264
## 31082 264
## 31644 264
## 31851 264
## 32072 264
## 32372 264
## 33157 264
## 33392 264
## 33684 264
## 34010 264
## 35357 264
## 35941 264
## 36207 264
## 36865 264
## 37244 264
## 40816 264
## 42058 264
## 43222 264
## 43847 264
## 44398 264
## 45628 264
## 49414 264
## 52276 264
## 53627 264
## 54375 264
## 54477 264
## 55692 264
## 58952 264
## 59400 264
## 59823 264
## 60031 264
## 60258 264
## 60369 264
## 60656 264
## 62758 264
## 63218 264
## 65713 264
## 66866 264
## 67220 264
## 67286 264
## 67980 264
## 68028 264
## 70167 264
## 70250 264
## 72887 264
## 72971 264
## 73261 264
## 74867 264
## 75228 264
## 75876 264
## 76050 264
## 76227 264
## 76493 264
## 77216 264
## 77268 264
## 77464 264
## 77523 264
## 78050 264
## 79413 264
## 79828 264
## 80499 264
## 81870 264
## 82209 264
## 82239 264
## 83609 264
## 84190 264
## 84646 264
## 84779 264
## 85363 264
## 86545 264
## 87026 264
## 87518 264
## 91900 264
## 94244 264
## 94264 264
## 94392 264
## 95008 264
## 95264 264
## 97050 264
## 97611 264
## 98200 264
## 98858 264
## 98864 264
## 121 265
## 1114 265
## 2949 265
## 6555 265
## 14523 265
## 15197 265
## 15529 265
## 16060 265
## 16416 265
## 17608 265
## 21134 265
## 26298 265
## 36518 265
## 37245 265
## 37850 265
## 39192 265
## 39572 265
## 41635 265
## 42697 265
## 43007 265
## 43406 265
## 44399 265
## 45375 265
## 45629 265
## 46163 265
## 46492 265
## 49881 265
## 50530 265
## 50738 265
## 56794 265
## 56880 265
## 62044 265
## 62248 265
## 63123 265
## 72292 265
## 74244 265
## 77524 265
## 78543 265
## 81871 265
## 82515 265
## 83361 265
## 85423 265
## 89686 265
## 91061 265
## 92370 265
## 96548 265
## 1692 266
## 2731 266
## 4264 266
## 14524 266
## 17402 266
## 36519 266
## 37851 266
## 41438 266
## 42059 266
## 42351 266
## 43223 266
## 43593 266
## 43848 266
## 44813 266
## 48313 266
## 49286 266
## 49483 266
## 50219 266
## 66125 266
## 77525 266
## 87594 266
## 89119 266
## 482 267
## 605 267
## 903 267
## 1115 267
## 2302 267
## 3216 267
## 3599 267
## 4047 267
## 4678 267
## 4904 267
## 5065 267
## 5290 267
## 6103 267
## 6556 267
## 7186 267
## 7314 267
## 7436 267
## 7654 267
## 8386 267
## 8652 267
## 8874 267
## 9149 267
## 9257 267
## 9454 267
## 10516 267
## 11009 267
## 11090 267
## 11244 267
## 12023 267
## 12258 267
## 12730 267
## 12950 267
## 13934 267
## 14525 267
## 15242 267
## 15770 267
## 16824 267
## 17403 267
## 17987 267
## 18307 267
## 19293 267
## 19902 267
## 20071 267
## 20296 267
## 20496 267
## 20605 267
## 21522 267
## 21900 267
## 22017 267
## 22154 267
## 22263 267
## 22330 267
## 22536 267
## 22931 267
## 23312 267
## 23582 267
## 23954 267
## 24659 267
## 25035 267
## 25251 267
## 25493 267
## 25778 267
## 25997 267
## 26299 267
## 26733 267
## 26968 267
## 27604 267
## 27848 267
## 28046 267
## 28191 267
## 29236 267
## 29976 267
## 30606 267
## 30861 267
## 31083 267
## 31487 267
## 31852 267
## 32073 267
## 32774 267
## 33158 267
## 33393 267
## 33525 267
## 34011 267
## 34602 267
## 34771 267
## 34951 267
## 35177 267
## 35358 267
## 35536 267
## 35776 267
## 36208 267
## 36866 267
## 37083 267
## 37246 267
## 38492 267
## 40507 267
## 41636 267
## 45376 267
## 45630 267
## 50090 267
## 53463 267
## 53628 267
## 54262 267
## 54607 267
## 54712 267
## 54890 267
## 55099 267
## 55259 267
## 55969 267
## 56321 267
## 56687 267
## 56881 267
## 57055 267
## 58135 267
## 59058 267
## 59401 267
## 60463 267
## 60569 267
## 60915 267
## 61545 267
## 61905 267
## 62541 267
## 62759 267
## 63335 267
## 63518 267
## 63903 267
## 64118 267
## 65286 267
## 67046 267
## 67382 267
## 69318 267
## 69398 267
## 69757 267
## 69913 267
## 70034 267
## 70251 267
## 70606 267
## 70843 267
## 71241 267
## 71295 267
## 71425 267
## 71502 267
## 72699 267
## 73620 267
## 73948 267
## 75120 267
## 75308 267
## 75877 267
## 76051 267
## 77097 267
## 77829 267
## 78130 267
## 78300 267
## 79013 267
## 79929 267
## 80152 267
## 80421 267
## 80753 267
## 81032 267
## 81554 267
## 81872 267
## 84084 267
## 84191 267
## 84379 267
## 84647 267
## 85268 267
## 85808 267
## 85953 267
## 86389 267
## 89246 267
## 90027 267
## 90069 267
## 90608 267
## 91224 267
## 92833 267
## 93068 267
## 94325 267
## 94692 267
## 95104 267
## 95850 267
## 96378 267
## 97267 267
## 98140 267
## 98400 267
## 98839 267
## 122 268
## 483 268
## 606 268
## 722 268
## 1116 268
## 1926 268
## 2061 268
## 2303 268
## 2552 268
## 3165 268
## 3217 268
## 3462 268
## 4048 268
## 4265 268
## 4555 268
## 4905 268
## 5066 268
## 5291 268
## 5392 268
## 5428 268
## 5540 268
## 5622 268
## 5737 268
## 6104 268
## 6557 268
## 7014 268
## 7091 268
## 7187 268
## 7437 268
## 7655 268
## 8171 268
## 8245 268
## 8310 268
## 8387 268
## 8500 268
## 9150 268
## 9258 268
## 9752 268
## 9983 268
## 10180 268
## 10309 268
## 10517 268
## 10754 268
## 11010 268
## 11245 268
## 11474 268
## 12024 268
## 12259 268
## 12594 268
## 12731 268
## 12951 268
## 13101 268
## 13351 268
## 13630 268
## 13935 268
## 14253 268
## 14526 268
## 14909 268
## 15058 268
## 15243 268
## 15771 268
## 15877 268
## 16061 268
## 16655 268
## 16825 268
## 17158 268
## 17269 268
## 17404 268
## 17988 268
## 18308 268
## 18394 268
## 19072 268
## 19294 268
## 19784 268
## 19903 268
## 20072 268
## 20297 268
## 20497 268
## 20606 268
## 21135 268
## 21523 268
## 21746 268
## 22018 268
## 22264 268
## 22331 268
## 22537 268
## 22825 268
## 22932 268
## 23313 268
## 23583 268
## 23955 268
## 24307 268
## 24660 268
## 25252 268
## 25629 268
## 25779 268
## 25998 268
## 26300 268
## 26734 268
## 26969 268
## 27216 268
## 27373 268
## 27605 268
## 28047 268
## 28192 268
## 28441 268
## 28979 268
## 29237 268
## 29977 268
## 30287 268
## 30469 268
## 30862 268
## 31084 268
## 31372 268
## 31488 268
## 31645 268
## 31853 268
## 32074 268
## 32373 268
## 33394 268
## 33526 268
## 33685 268
## 34012 268
## 34314 268
## 34603 268
## 34772 268
## 34952 268
## 35178 268
## 35359 268
## 35537 268
## 35668 268
## 35777 268
## 35942 268
## 36209 268
## 36867 268
## 37084 268
## 37247 268
## 37398 268
## 37748 268
## 38059 268
## 38187 268
## 38347 268
## 38493 268
## 38724 268
## 39193 268
## 39573 268
## 39980 268
## 40130 268
## 40369 268
## 40508 268
## 40714 268
## 40817 268
## 41637 268
## 43407 268
## 43849 268
## 44400 268
## 45040 268
## 45631 268
## 46164 268
## 47116 268
## 50091 268
## 50220 268
## 50739 268
## 51364 268
## 53003 268
## 53231 268
## 53420 268
## 53464 268
## 53802 268
## 53854 268
## 54021 268
## 54201 268
## 54263 268
## 54376 268
## 54478 268
## 54608 268
## 54713 268
## 54891 268
## 55026 268
## 55100 268
## 55426 268
## 55529 268
## 55581 268
## 55792 268
## 55970 268
## 56144 268
## 56322 268
## 56631 268
## 56688 268
## 57951 268
## 58136 268
## 58395 268
## 59219 268
## 59402 268
## 59641 268
## 59824 268
## 60464 268
## 60570 268
## 60798 268
## 60854 268
## 60916 268
## 61042 268
## 61664 268
## 61906 268
## 62249 268
## 62542 268
## 62760 268
## 63124 268
## 63336 268
## 63519 268
## 63904 268
## 64119 268
## 65892 268
## 68029 268
## 68261 268
## 69092 268
## 69135 268
## 69262 268
## 69399 268
## 69758 268
## 69914 268
## 70035 268
## 70168 268
## 70252 268
## 70390 268
## 70449 268
## 70607 268
## 70844 268
## 71024 268
## 71218 268
## 71296 268
## 71426 268
## 71503 268
## 71532 268
## 71653 268
## 71790 268
## 72033 268
## 72700 268
## 73949 268
## 74137 268
## 74450 268
## 74789 268
## 75744 268
## 75878 268
## 76052 268
## 76409 268
## 77098 268
## 77269 268
## 77830 268
## 78131 268
## 79302 268
## 79930 268
## 80059 268
## 80153 268
## 80302 268
## 80362 268
## 80378 268
## 80500 268
## 80754 268
## 80814 268
## 80870 268
## 81033 268
## 81251 268
## 81496 268
## 82082 268
## 82240 268
## 82364 268
## 83545 268
## 83610 268
## 83881 268
## 83937 268
## 84380 268
## 84452 268
## 84696 268
## 85008 268
## 85051 268
## 85269 268
## 85743 268
## 85809 268
## 85866 268
## 85954 268
## 86137 268
## 86390 268
## 87077 268
## 89247 268
## 89343 268
## 89496 268
## 89901 268
## 89934 268
## 90155 268
## 90285 268
## 90496 268
## 91163 268
## 91242 268
## 91692 268
## 91746 268
## 92371 268
## 93069 268
## 93149 268
## 93315 268
## 93474 268
## 93882 268
## 93965 268
## 94128 268
## 94326 268
## 94393 268
## 94509 268
## 94693 268
## 94728 268
## 94819 268
## 94871 268
## 95105 268
## 95265 268
## 96000 268
## 96287 268
## 96415 268
## 96717 268
## 97012 268
## 97111 268
## 97183 268
## 97399 268
## 97631 268
## 97953 268
## 98025 268
## 98514 268
## 98872 268
## 98873 268
## 607 269
## 904 269
## 1117 269
## 1446 269
## 1693 269
## 2062 269
## 2553 269
## 2950 269
## 3218 269
## 3600 269
## 3867 269
## 5738 269
## 5907 269
## 6105 269
## 6236 269
## 6558 269
## 7015 269
## 7092 269
## 7188 269
## 7438 269
## 7656 269
## 8015 269
## 8172 269
## 8501 269
## 8653 269
## 8875 269
## 9000 269
## 9259 269
## 9455 269
## 9753 269
## 10181 269
## 10432 269
## 10518 269
## 11091 269
## 11246 269
## 12025 269
## 12260 269
## 12843 269
## 13352 269
## 13936 269
## 14527 269
## 15135 269
## 15244 269
## 15530 269
## 16656 269
## 16826 269
## 17159 269
## 17405 269
## 17989 269
## 18533 269
## 18668 269
## 18896 269
## 19073 269
## 19295 269
## 19504 269
## 19636 269
## 19785 269
## 19970 269
## 20073 269
## 20774 269
## 21136 269
## 21394 269
## 21524 269
## 21747 269
## 22019 269
## 22155 269
## 22433 269
## 22538 269
## 22730 269
## 22826 269
## 23187 269
## 23314 269
## 23701 269
## 23810 269
## 23956 269
## 24308 269
## 24661 269
## 25036 269
## 25253 269
## 25494 269
## 25780 269
## 25999 269
## 26301 269
## 26735 269
## 26970 269
## 27374 269
## 27606 269
## 27849 269
## 28048 269
## 28442 269
## 28668 269
## 28980 269
## 29238 269
## 29523 269
## 29764 269
## 29978 269
## 30288 269
## 30607 269
## 31085 269
## 31373 269
## 31646 269
## 31854 269
## 32075 269
## 32374 269
## 32551 269
## 32649 269
## 32775 269
## 33159 269
## 33395 269
## 33527 269
## 35538 269
## 35669 269
## 35943 269
## 36210 269
## 36520 269
## 36868 269
## 37085 269
## 37399 269
## 38060 269
## 38725 269
## 38880 269
## 38974 269
## 41439 269
## 41852 269
## 42352 269
## 42844 269
## 43594 269
## 45377 269
## 47117 269
## 48610 269
## 48759 269
## 49025 269
## 51884 269
## 52359 269
## 53004 269
## 53501 269
## 53629 269
## 53898 269
## 54113 269
## 54976 269
## 55260 269
## 55487 269
## 55693 269
## 55793 269
## 55971 269
## 56323 269
## 56882 269
## 57056 269
## 57192 269
## 57327 269
## 57477 269
## 58137 269
## 58396 269
## 58540 269
## 58738 269
## 59220 269
## 59403 269
## 59642 269
## 59825 269
## 59943 269
## 60160 269
## 60205 269
## 60259 269
## 60370 269
## 60657 269
## 61357 269
## 61546 269
## 61829 269
## 62543 269
## 62761 269
## 62983 269
## 63219 269
## 63337 269
## 63748 269
## 63905 269
## 64120 269
## 64368 269
## 64498 269
## 64732 269
## 65005 269
## 65195 269
## 65287 269
## 65416 269
## 65603 269
## 65714 269
## 65820 269
## 65893 269
## 65986 269
## 66126 269
## 66308 269
## 66704 269
## 66867 269
## 67047 269
## 67287 269
## 67383 269
## 67675 269
## 67778 269
## 67844 269
## 68030 269
## 68262 269
## 68434 269
## 68546 269
## 68637 269
## 68734 269
## 68948 269
## 70845 269
## 71654 269
## 72701 269
## 72888 269
## 72972 269
## 73149 269
## 73381 269
## 73621 269
## 73731 269
## 74138 269
## 74389 269
## 74502 269
## 74608 269
## 74790 269
## 74947 269
## 74998 269
## 75121 269
## 75199 269
## 75229 269
## 75309 269
## 75434 269
## 75879 269
## 76053 269
## 76289 269
## 76410 269
## 76494 269
## 76623 269
## 76759 269
## 76933 269
## 77034 269
## 77099 269
## 77340 269
## 77413 269
## 77831 269
## 79231 269
## 79529 269
## 79655 269
## 79733 269
## 79931 269
## 80154 269
## 80235 269
## 80303 269
## 80609 269
## 80871 269
## 81252 269
## 81555 269
## 81766 269
## 82365 269
## 83362 269
## 83546 269
## 83611 269
## 83733 269
## 84085 269
## 84221 269
## 84272 269
## 84535 269
## 84780 269
## 84842 269
## 85103 269
## 85143 269
## 85224 269
## 85535 269
## 85696 269
## 85744 269
## 85867 269
## 86138 269
## 86509 269
## 86625 269
## 87027 269
## 88080 269
## 88627 269
## 88880 269
## 89013 269
## 89056 269
## 89344 269
## 89568 269
## 89852 269
## 89902 269
## 90545 269
## 90609 269
## 90692 269
## 91331 269
## 91693 269
## 91763 269
## 91788 269
## 92017 269
## 92246 269
## 92488 269
## 92597 269
## 92834 269
## 93283 269
## 94129 269
## 94288 269
## 94327 269
## 94394 269
## 94729 269
## 94939 269
## 95009 269
## 95106 269
## 95556 269
## 95625 269
## 95884 269
## 95983 269
## 96113 269
## 96152 269
## 96416 269
## 97562 269
## 98216 269
## 98373 269
## 98482 269
## 98601 269
## 98607 269
## 98663 269
## 98699 269
## 98875 269
## 98893 269
## 98901 269
## 905 270
## 1118 270
## 2554 270
## 3219 270
## 4266 270
## 4485 270
## 6559 270
## 7189 270
## 7657 270
## 8246 270
## 9001 270
## 9754 270
## 10519 270
## 10755 270
## 11475 270
## 11728 270
## 12026 270
## 12484 270
## 12844 270
## 13631 270
## 13937 270
## 16417 270
## 16827 270
## 17270 270
## 20498 270
## 20775 270
## 21901 270
## 22020 270
## 22332 270
## 22933 270
## 24309 270
## 25254 270
## 26302 270
## 26971 270
## 27375 270
## 30289 270
## 32650 270
## 33396 270
## 33528 270
## 33686 270
## 34013 270
## 34604 270
## 35360 270
## 35944 270
## 36521 270
## 37400 270
## 37528 270
## 37749 270
## 38494 270
## 38651 270
## 38848 270
## 39194 270
## 39574 270
## 40509 270
## 42060 270
## 42698 270
## 42845 270
## 43008 270
## 43224 270
## 43850 270
## 44401 270
## 45996 270
## 47598 270
## 49287 270
## 50092 270
## 50531 270
## 51618 270
## 52862 270
## 53855 270
## 54202 270
## 54977 270
## 55794 270
## 57952 270
## 59944 270
## 60032 270
## 60260 270
## 60799 270
## 61665 270
## 62045 270
## 62762 270
## 66309 270
## 68735 270
## 68885 270
## 69400 270
## 69885 270
## 69964 270
## 70036 270
## 70169 270
## 70253 270
## 70492 270
## 70608 270
## 71025 270
## 71219 270
## 71565 270
## 71655 270
## 71791 270
## 71831 270
## 72560 270
## 72973 270
## 77100 270
## 77217 270
## 77270 270
## 78132 270
## 79099 270
## 79459 270
## 79656 270
## 80060 270
## 80119 270
## 80236 270
## 80557 270
## 80755 270
## 81374 270
## 81556 270
## 81698 270
## 81767 270
## 81873 270
## 82366 270
## 84273 270
## 84453 270
## 84860 270
## 85009 270
## 85424 270
## 87078 270
## 87357 270
## 87471 270
## 89345 270
## 90028 270
## 91811 270
## 91901 270
## 92247 270
## 94328 270
## 94395 270
## 95077 270
## 95316 270
## 95885 270
## 96752 270
## 98840 270
## 123 271
## 484 271
## 723 271
## 1447 271
## 1694 271
## 2063 271
## 2304 271
## 2555 271
## 2951 271
## 3601 271
## 4267 271
## 4679 271
## 5067 271
## 5429 271
## 5623 271
## 5854 271
## 5908 271
## 6106 271
## 6237 271
## 6560 271
## 7016 271
## 7093 271
## 7315 271
## 7658 271
## 8016 271
## 8388 271
## 8654 271
## 8876 271
## 9456 271
## 9755 271
## 10310 271
## 10520 271
## 10756 271
## 11092 271
## 11476 271
## 11873 271
## 12027 271
## 12261 271
## 13102 271
## 13632 271
## 13938 271
## 14528 271
## 15198 271
## 15531 271
## 15878 271
## 16062 271
## 16418 271
## 16828 271
## 17406 271
## 17609 271
## 17815 271
## 17990 271
## 18494 271
## 18534 271
## 18669 271
## 18897 271
## 19074 271
## 19296 271
## 19505 271
## 19637 271
## 19904 271
## 20776 271
## 22539 271
## 23315 271
## 23584 271
## 23702 271
## 23957 271
## 24310 271
## 24662 271
## 25255 271
## 25495 271
## 25630 271
## 25781 271
## 26000 271
## 26303 271
## 26736 271
## 27376 271
## 27607 271
## 27850 271
## 28049 271
## 28271 271
## 28443 271
## 28669 271
## 28795 271
## 28981 271
## 29524 271
## 29765 271
## 29979 271
## 30113 271
## 30290 271
## 30608 271
## 30863 271
## 31086 271
## 31374 271
## 31647 271
## 32076 271
## 32375 271
## 32922 271
## 33160 271
## 33529 271
## 33787 271
## 33861 271
## 34422 271
## 35945 271
## 36211 271
## 36522 271
## 36869 271
## 37086 271
## 37401 271
## 37529 271
## 37750 271
## 38188 271
## 39195 271
## 39575 271
## 40510 271
## 40818 271
## 41440 271
## 41853 271
## 42061 271
## 42353 271
## 42577 271
## 43009 271
## 43225 271
## 43408 271
## 43595 271
## 43851 271
## 44814 271
## 45632 271
## 46493 271
## 47118 271
## 47951 271
## 48076 271
## 48151 271
## 48314 271
## 48611 271
## 48872 271
## 49026 271
## 50740 271
## 51718 271
## 52277 271
## 52360 271
## 52483 271
## 52863 271
## 53005 271
## 53899 271
## 54114 271
## 54377 271
## 54609 271
## 55165 271
## 55261 271
## 55795 271
## 56324 271
## 56883 271
## 57057 271
## 57328 271
## 57702 271
## 58138 271
## 58397 271
## 58541 271
## 58739 271
## 58855 271
## 58953 271
## 59643 271
## 59945 271
## 60033 271
## 60658 271
## 61257 271
## 61358 271
## 61666 271
## 61907 271
## 62046 271
## 62250 271
## 62544 271
## 62984 271
## 63125 271
## 63338 271
## 63520 271
## 63663 271
## 63749 271
## 64254 271
## 64431 271
## 64609 271
## 64789 271
## 64846 271
## 64908 271
## 65006 271
## 65288 271
## 65417 271
## 65715 271
## 65821 271
## 65894 271
## 65987 271
## 66310 271
## 66427 271
## 66564 271
## 66868 271
## 67048 271
## 67221 271
## 67288 271
## 67384 271
## 67548 271
## 67676 271
## 67845 271
## 68115 271
## 68263 271
## 68435 271
## 68547 271
## 68638 271
## 69051 271
## 69401 271
## 69656 271
## 70609 271
## 71088 271
## 71533 271
## 71656 271
## 72293 271
## 72889 271
## 72974 271
## 73220 271
## 73476 271
## 73622 271
## 74019 271
## 74054 271
## 74451 271
## 75122 271
## 75200 271
## 75372 271
## 75435 271
## 75590 271
## 75880 271
## 76290 271
## 76495 271
## 76624 271
## 76760 271
## 76934 271
## 78705 271
## 78879 271
## 79232 271
## 79303 271
## 79460 271
## 79530 271
## 79657 271
## 79829 271
## 80061 271
## 80120 271
## 80872 271
## 81034 271
## 81253 271
## 81557 271
## 81874 271
## 82135 271
## 82367 271
## 82841 271
## 83363 271
## 83734 271
## 84781 271
## 85425 271
## 85745 271
## 86626 271
## 86813 271
## 87156 271
## 87257 271
## 88008 271
## 89120 271
## 90378 271
## 90546 271
## 90750 271
## 92835 271
## 93475 271
## 94730 271
## 94940 271
## 95245 271
## 95365 271
## 95557 271
## 95733 271
## 97547 271
## 97743 271
## 98483 271
## 1448 272
## 2064 272
## 2305 272
## 3602 272
## 3868 272
## 5207 272
## 5739 272
## 6238 272
## 6561 272
## 7659 272
## 9457 272
## 10757 272
## 13353 272
## 13939 272
## 17991 272
## 18898 272
## 19075 272
## 23958 272
## 24663 272
## 25037 272
## 25631 272
## 26972 272
## 27851 272
## 28796 272
## 28982 272
## 30291 272
## 30470 272
## 31087 272
## 31375 272
## 31648 272
## 32077 272
## 32376 272
## 35946 272
## 36870 272
## 44402 272
## 48873 272
## 53006 272
## 58139 272
## 61830 272
## 62545 272
## 63906 272
## 65289 272
## 66869 272
## 67677 272
## 73150 272
## 75591 272
## 75881 272
## 82241 272
## 84128 272
## 94941 272
## 98345 272
## 41441 273
## 43852 273
## 47375 273
## 47505 273
## 47713 273
## 48077 273
## 48315 273
## 48612 273
## 48760 273
## 49288 273
## 49484 273
## 50741 273
## 51719 273
## 51885 273
## 52278 273
## 52484 273
## 78706 273
## 88465 273
## 88577 273
## 88628 273
## 124 274
## 1695 274
## 2952 274
## 4268 274
## 6562 274
## 9458 274
## 9984 274
## 11477 274
## 12028 274
## 13940 274
## 14529 274
## 15532 274
## 16063 274
## 16419 274
## 17610 274
## 20777 274
## 20932 274
## 22934 274
## 26304 274
## 30292 274
## 31649 274
## 32377 274
## 33788 274
## 35947 274
## 36523 274
## 37645 274
## 38975 274
## 39576 274
## 41854 274
## 42062 274
## 42354 274
## 42578 274
## 42746 274
## 43010 274
## 44403 274
## 45633 274
## 46494 274
## 49027 274
## 49289 274
## 56325 274
## 57058 274
## 62047 274
## 62251 274
## 62985 274
## 63220 274
## 65007 274
## 69402 274
## 72294 274
## 72561 274
## 72702 274
## 74245 274
## 74390 274
## 78301 274
## 80062 274
## 81875 274
## 82136 274
## 82516 274
## 83364 274
## 83612 274
## 85426 274
## 86627 274
## 86764 274
## 87258 274
## 87519 274
## 87731 274
## 89121 274
## 93796 274
## 94001 274
## 94078 274
## 95937 274
## 96083 274
## 125 275
## 3603 275
## 4680 275
## 6563 275
## 8389 275
## 9459 275
## 9985 275
## 12262 275
## 13103 275
## 13354 275
## 13941 275
## 14254 275
## 14910 275
## 14981 275
## 16064 275
## 16420 275
## 16829 275
## 18670 275
## 19297 275
## 19971 275
## 20298 275
## 21748 275
## 22731 275
## 22935 275
## 23585 275
## 24311 275
## 24664 275
## 25256 275
## 26305 275
## 26973 275
## 27608 275
## 28050 275
## 28444 275
## 29525 275
## 30114 275
## 30609 275
## 31650 275
## 32078 275
## 34014 275
## 34605 275
## 34773 275
## 34953 275
## 35179 275
## 35361 275
## 38726 275
## 39196 275
## 39577 275
## 40511 275
## 45634 275
## 46495 275
## 47376 275
## 54264 275
## 55262 275
## 56326 275
## 56689 275
## 57413 275
## 57570 275
## 57703 275
## 57861 275
## 58140 275
## 59059 275
## 59221 275
## 59535 275
## 59644 275
## 60371 275
## 60465 275
## 60571 275
## 60659 275
## 61908 275
## 62252 275
## 62401 275
## 65008 275
## 65496 275
## 67049 275
## 67549 275
## 67846 275
## 69185 275
## 72034 275
## 72703 275
## 74020 275
## 74055 275
## 74139 275
## 74452 275
## 74791 275
## 76847 275
## 77832 275
## 82242 275
## 85868 275
## 85955 275
## 89497 275
## 90156 275
## 90886 275
## 94171 275
## 94731 275
## 96919 275
## 126 276
## 485 276
## 608 276
## 724 276
## 906 276
## 1119 276
## 1449 276
## 1696 276
## 2065 276
## 2306 276
## 2732 276
## 3220 276
## 3463 276
## 3604 276
## 3869 276
## 4049 276
## 4269 276
## 4556 276
## 4681 276
## 4906 276
## 5068 276
## 5292 276
## 5361 276
## 5430 276
## 5541 276
## 5624 276
## 5670 276
## 5740 276
## 5855 276
## 5909 276
## 6051 276
## 6107 276
## 6564 276
## 7017 276
## 7190 276
## 7316 276
## 7439 276
## 7660 276
## 7946 276
## 8017 276
## 8390 276
## 8502 276
## 8655 276
## 8877 276
## 9002 276
## 9151 276
## 9260 276
## 9460 276
## 9756 276
## 9986 276
## 10182 276
## 10311 276
## 10410 276
## 10433 276
## 10521 276
## 10639 276
## 10758 276
## 11011 276
## 11093 276
## 11247 276
## 11613 276
## 11637 276
## 11729 276
## 12029 276
## 12263 276
## 12595 276
## 12732 276
## 12952 276
## 13104 276
## 13355 276
## 13633 276
## 13942 276
## 14255 276
## 14530 276
## 14911 276
## 15037 276
## 15245 276
## 15327 276
## 16065 276
## 16421 276
## 16657 276
## 16830 276
## 17160 276
## 17271 276
## 17407 276
## 17611 276
## 17992 276
## 18309 276
## 19298 276
## 19786 276
## 19905 276
## 19972 276
## 20074 276
## 20299 276
## 20499 276
## 20607 276
## 20778 276
## 20933 276
## 21137 276
## 21525 276
## 21749 276
## 22021 276
## 22156 276
## 22265 276
## 22333 276
## 22434 276
## 22540 276
## 22936 276
## 23316 276
## 23586 276
## 23811 276
## 23959 276
## 24312 276
## 24665 276
## 25038 276
## 25257 276
## 25782 276
## 26001 276
## 26306 276
## 26737 276
## 26974 276
## 27217 276
## 27377 276
## 27609 276
## 27852 276
## 28051 276
## 28193 276
## 28670 276
## 28797 276
## 29239 276
## 29526 276
## 29766 276
## 29980 276
## 30293 276
## 30471 276
## 30610 276
## 30864 276
## 31088 276
## 31489 276
## 31542 276
## 31855 276
## 32079 276
## 32776 276
## 32923 276
## 33397 276
## 33530 276
## 33687 276
## 34015 276
## 34315 276
## 34491 276
## 34606 276
## 34774 276
## 34954 276
## 35180 276
## 35362 276
## 35539 276
## 35670 276
## 35778 276
## 35948 276
## 36212 276
## 36524 276
## 36871 276
## 37087 276
## 37248 276
## 37402 276
## 37852 276
## 38061 276
## 38189 276
## 38348 276
## 38495 276
## 38727 276
## 38881 276
## 39197 276
## 39578 276
## 40131 276
## 40286 276
## 40370 276
## 40512 276
## 40819 276
## 41070 276
## 41222 276
## 41442 276
## 41638 276
## 41855 276
## 42355 276
## 42846 276
## 43011 276
## 43409 276
## 44404 276
## 44815 276
## 45041 276
## 45135 276
## 45378 276
## 45635 276
## 46165 276
## 46496 276
## 46870 276
## 47119 276
## 47714 276
## 48316 276
## 48613 276
## 48761 276
## 48874 276
## 49028 276
## 49657 276
## 49882 276
## 50093 276
## 50221 276
## 50742 276
## 51069 276
## 51192 276
## 51365 276
## 51562 276
## 51886 276
## 52116 276
## 52361 276
## 52485 276
## 52746 276
## 52802 276
## 52864 276
## 53007 276
## 53232 276
## 53465 276
## 53502 276
## 53549 276
## 53630 276
## 53991 276
## 54035 276
## 54203 276
## 54265 276
## 54479 276
## 54571 276
## 54610 276
## 54714 276
## 54892 276
## 54978 276
## 55027 276
## 55101 276
## 55166 276
## 55263 276
## 55427 276
## 55488 276
## 55530 276
## 55582 276
## 55694 276
## 55796 276
## 55972 276
## 56145 276
## 56327 276
## 56583 276
## 56632 276
## 56690 276
## 56795 276
## 56884 276
## 57059 276
## 57278 276
## 57378 276
## 57478 276
## 57571 276
## 57704 276
## 57862 276
## 57953 276
## 58141 276
## 58398 276
## 58464 276
## 58542 276
## 58740 276
## 58856 276
## 59060 276
## 59222 276
## 59404 276
## 59826 276
## 60034 276
## 60261 276
## 60372 276
## 60466 276
## 60572 276
## 60660 276
## 60800 276
## 60855 276
## 60917 276
## 61043 276
## 61130 276
## 61258 276
## 61359 276
## 61487 276
## 61831 276
## 61909 276
## 62048 276
## 62253 276
## 62402 276
## 62546 276
## 62763 276
## 63339 276
## 65009 276
## 65497 276
## 66127 276
## 67385 276
## 67847 276
## 68116 276
## 68736 276
## 69093 276
## 69136 276
## 69263 276
## 69403 276
## 69593 276
## 69657 276
## 69759 276
## 69886 276
## 69915 276
## 70037 276
## 70170 276
## 70254 276
## 70391 276
## 70450 276
## 70493 276
## 70527 276
## 70610 276
## 70753 276
## 70846 276
## 71026 276
## 71131 276
## 71161 276
## 71242 276
## 71297 276
## 71379 276
## 71427 276
## 71566 276
## 71657 276
## 71792 276
## 71942 276
## 72035 276
## 72234 276
## 72295 276
## 72469 276
## 72704 276
## 72975 276
## 74021 276
## 74140 276
## 74246 276
## 74503 276
## 74726 276
## 74792 276
## 74999 276
## 75310 276
## 75436 276
## 75745 276
## 75811 276
## 76054 276
## 76411 276
## 77101 276
## 77198 276
## 77271 276
## 77644 276
## 77833 276
## 77961 276
## 78133 276
## 78302 276
## 78425 276
## 78821 276
## 78880 276
## 79014 276
## 79158 276
## 79233 276
## 79830 276
## 79932 276
## 80155 276
## 80379 276
## 80422 276
## 80501 276
## 80713 276
## 80756 276
## 80815 276
## 81035 276
## 81192 276
## 81254 276
## 81445 276
## 81558 276
## 81876 276
## 82083 276
## 82243 276
## 82368 276
## 82517 276
## 82842 276
## 82983 276
## 83249 276
## 83481 276
## 83735 276
## 83882 276
## 83938 276
## 83986 276
## 84035 276
## 84086 276
## 84129 276
## 84170 276
## 84192 276
## 84338 276
## 84381 276
## 84536 276
## 84605 276
## 84648 276
## 84697 276
## 84861 276
## 84925 276
## 84962 276
## 85010 276
## 85028 276
## 85052 276
## 85084 276
## 85144 276
## 85176 276
## 85225 276
## 85515 276
## 85625 276
## 85746 276
## 85869 276
## 86139 276
## 86391 276
## 86510 276
## 86546 276
## 86628 276
## 86928 276
## 86939 276
## 87410 276
## 87684 276
## 87836 276
## 88218 276
## 88629 276
## 88814 276
## 88831 276
## 88881 276
## 89014 276
## 89346 276
## 89498 276
## 89569 276
## 89853 276
## 89935 276
## 89983 276
## 90029 276
## 90286 276
## 90379 276
## 90610 276
## 90887 276
## 91029 276
## 91062 276
## 91119 276
## 91576 276
## 91718 276
## 91789 276
## 91967 276
## 92018 276
## 92200 276
## 92372 276
## 92564 276
## 92836 276
## 92972 276
## 93070 276
## 93125 276
## 93368 276
## 93409 276
## 93476 276
## 93543 276
## 93837 276
## 93912 276
## 94329 276
## 94396 276
## 94510 276
## 94549 276
## 94565 276
## 94656 276
## 94694 276
## 94732 276
## 94820 276
## 94872 276
## 95078 276
## 95107 276
## 95266 276
## 95482 276
## 95509 276
## 95626 276
## 95762 276
## 95779 276
## 95851 276
## 96001 276
## 96185 276
## 96223 276
## 96314 276
## 96498 276
## 96593 276
## 96718 276
## 96753 276
## 96803 276
## 96897 276
## 96944 276
## 96973 276
## 97112 276
## 97204 276
## 97250 276
## 97268 276
## 97317 276
## 97353 276
## 97434 276
## 97563 276
## 97632 276
## 97645 276
## 97942 276
## 98026 276
## 98448 276
## 98515 276
## 98532 276
## 98841 276
## 98876 276
## 98912 276
## 98914 276
## 98915 276
## 127 277
## 1120 277
## 1697 277
## 2953 277
## 4050 277
## 4270 277
## 6565 277
## 12845 277
## 14531 277
## 15533 277
## 16066 277
## 16831 277
## 17408 277
## 18395 277
## 19638 277
## 20608 277
## 21138 277
## 26307 277
## 33862 277
## 36525 277
## 38976 277
## 39198 277
## 39579 277
## 41639 277
## 41856 277
## 42356 277
## 42647 277
## 42699 277
## 43012 277
## 43410 277
## 43596 277
## 43853 277
## 45379 277
## 47120 277
## 56328 277
## 62049 277
## 62254 277
## 62403 277
## 66128 277
## 72296 277
## 73834 277
## 74247 277
## 81877 277
## 82518 277
## 83613 277
## 86547 277
## 87472 277
## 89194 277
## 91863 277
## 92019 277
## 92117 277
## 95483 277
## 96549 277
## 97754 277
## 3605 278
## 13943 278
## 24313 278
## 37853 278
## 39580 278
## 40820 278
## 43854 278
## 44405 278
## 45636 278
## 46871 278
## 47121 278
## 47599 278
## 48078 278
## 48317 278
## 48614 278
## 52486 278
## 67050 278
## 68031 278
## 68984 278
## 72976 278
## 83119 278
## 88009 278
## 89057 278
## 128 279
## 486 279
## 725 279
## 1121 279
## 1927 279
## 2307 279
## 2556 279
## 3166 279
## 3221 279
## 3464 279
## 3606 279
## 4051 279
## 4271 279
## 4557 279
## 4682 279
## 4907 279
## 4997 279
## 5069 279
## 5208 279
## 5293 279
## 5625 279
## 5671 279
## 5741 279
## 5910 279
## 6108 279
## 6566 279
## 7094 279
## 7661 279
## 8173 279
## 8247 279
## 8311 279
## 8391 279
## 8503 279
## 8656 279
## 8878 279
## 9003 279
## 9152 279
## 9261 279
## 9757 279
## 9987 279
## 10312 279
## 10759 279
## 11012 279
## 11094 279
## 11478 279
## 11874 279
## 12030 279
## 12264 279
## 12485 279
## 12733 279
## 12953 279
## 13105 279
## 13356 279
## 14256 279
## 14532 279
## 14912 279
## 15059 279
## 15246 279
## 15328 279
## 15772 279
## 15879 279
## 16067 279
## 16658 279
## 16832 279
## 17161 279
## 17409 279
## 18310 279
## 18396 279
## 18495 279
## 18535 279
## 18671 279
## 19639 279
## 19787 279
## 20300 279
## 20549 279
## 20609 279
## 20934 279
## 21139 279
## 21395 279
## 21526 279
## 21750 279
## 22022 279
## 22266 279
## 22827 279
## 23064 279
## 23127 279
## 23188 279
## 23317 279
## 23587 279
## 23703 279
## 23960 279
## 24314 279
## 24666 279
## 25039 279
## 25258 279
## 26002 279
## 26308 279
## 27218 279
## 27610 279
## 28194 279
## 28272 279
## 28445 279
## 28798 279
## 29240 279
## 29981 279
## 30472 279
## 30611 279
## 30865 279
## 31089 279
## 31543 279
## 31651 279
## 31856 279
## 32080 279
## 32378 279
## 32777 279
## 33161 279
## 33688 279
## 34016 279
## 34423 279
## 34607 279
## 34775 279
## 34955 279
## 35181 279
## 35363 279
## 35540 279
## 35779 279
## 35949 279
## 36213 279
## 36381 279
## 36872 279
## 37088 279
## 37249 279
## 37530 279
## 38190 279
## 38349 279
## 38496 279
## 38882 279
## 39199 279
## 39981 279
## 40513 279
## 40821 279
## 41640 279
## 41857 279
## 42063 279
## 43226 279
## 43411 279
## 44406 279
## 45042 279
## 45136 279
## 45637 279
## 46872 279
## 49290 279
## 49485 279
## 52043 279
## 53421 279
## 53466 279
## 53631 279
## 53768 279
## 53959 279
## 53992 279
## 54022 279
## 54036 279
## 54204 279
## 54266 279
## 54480 279
## 54611 279
## 54715 279
## 54893 279
## 55028 279
## 55079 279
## 55102 279
## 55264 279
## 55428 279
## 55489 279
## 55531 279
## 55545 279
## 55583 279
## 55695 279
## 55973 279
## 56329 279
## 56633 279
## 56691 279
## 56885 279
## 57060 279
## 57193 279
## 57279 279
## 57379 279
## 57572 279
## 57954 279
## 58399 279
## 58741 279
## 58857 279
## 59061 279
## 59223 279
## 59405 279
## 59536 279
## 59827 279
## 60161 279
## 60467 279
## 60573 279
## 60661 279
## 60918 279
## 61044 279
## 61259 279
## 61360 279
## 61547 279
## 61585 279
## 61832 279
## 61910 279
## 62255 279
## 62547 279
## 63521 279
## 63750 279
## 64369 279
## 64432 279
## 64559 279
## 64610 279
## 64668 279
## 65498 279
## 65604 279
## 66311 279
## 66870 279
## 67051 279
## 67289 279
## 68548 279
## 68639 279
## 68833 279
## 68867 279
## 69137 279
## 69264 279
## 69404 279
## 69594 279
## 69760 279
## 70038 279
## 70126 279
## 70171 279
## 70451 279
## 70611 279
## 71132 279
## 71298 279
## 71380 279
## 71428 279
## 71943 279
## 72297 279
## 72446 279
## 72705 279
## 73732 279
## 74022 279
## 74056 279
## 74453 279
## 74793 279
## 74904 279
## 75201 279
## 75437 279
## 75746 279
## 75882 279
## 76496 279
## 76625 279
## 76848 279
## 76935 279
## 77171 279
## 77218 279
## 77834 279
## 78134 279
## 78303 279
## 78478 279
## 79414 279
## 79831 279
## 79933 279
## 80008 279
## 80063 279
## 80380 279
## 80502 279
## 80714 279
## 80757 279
## 80816 279
## 81036 279
## 81559 279
## 81699 279
## 81768 279
## 82137 279
## 82244 279
## 82984 279
## 83154 279
## 83482 279
## 83503 279
## 83614 279
## 83736 279
## 83854 279
## 84274 279
## 84339 279
## 84382 279
## 84454 279
## 84649 279
## 84782 279
## 84963 279
## 85053 279
## 85092 279
## 85104 279
## 85226 279
## 85270 279
## 85626 279
## 85747 279
## 85810 279
## 85956 279
## 86029 279
## 86140 279
## 86214 279
## 86240 279
## 86444 279
## 86511 279
## 86629 279
## 86929 279
## 86940 279
## 87098 279
## 87157 279
## 87358 279
## 87411 279
## 88219 279
## 88612 279
## 88882 279
## 89015 279
## 89248 279
## 89616 279
## 89903 279
## 90108 279
## 90157 279
## 90232 279
## 90420 279
## 90888 279
## 90959 279
## 91099 279
## 91120 279
## 91164 279
## 91255 279
## 91504 279
## 91552 279
## 91694 279
## 91719 279
## 91733 279
## 91812 279
## 92020 279
## 92118 279
## 92489 279
## 92749 279
## 92787 279
## 92837 279
## 92955 279
## 92981 279
## 93034 279
## 93071 279
## 93150 279
## 93208 279
## 93544 279
## 93661 279
## 93838 279
## 93966 279
## 94265 279
## 94303 279
## 94626 279
## 94635 279
## 94782 279
## 94821 279
## 95068 279
## 95108 279
## 95167 279
## 95267 279
## 95366 279
## 95383 279
## 95527 279
## 95558 279
## 95796 279
## 95928 279
## 96076 279
## 96186 279
## 96288 279
## 96315 279
## 96323 279
## 96334 279
## 96379 279
## 96525 279
## 96669 279
## 96679 279
## 96732 279
## 96821 279
## 96920 279
## 97036 279
## 97113 279
## 97163 279
## 97184 279
## 97251 279
## 97269 279
## 97301 279
## 97318 279
## 97373 279
## 97412 279
## 97548 279
## 97618 279
## 97646 279
## 97834 279
## 97852 279
## 97972 279
## 98004 279
## 98077 279
## 98141 279
## 98217 279
## 98262 279
## 98414 279
## 98484 279
## 98516 279
## 98608 279
## 98645 279
## 98654 279
## 98700 279
## 98902 279
## 98913 279
## 98927 279
## 98930 279
## 98934 279
## 98935 279
## 98940 279
## 98944 279
## 98949 279
## 98952 279
## 98954 279
## 98955 279
## 98956 279
## 98957 279
## 98962 279
## 98967 279
## 98969 279
## 98970 279
## 98974 279
## 98976 279
## 129 280
## 487 280
## 609 280
## 726 280
## 907 280
## 1122 280
## 1450 280
## 1698 280
## 2066 280
## 2308 280
## 2557 280
## 3607 280
## 4908 280
## 5070 280
## 5294 280
## 5431 280
## 5626 280
## 6567 280
## 7191 280
## 7317 280
## 7662 280
## 8018 280
## 8392 280
## 9004 280
## 9153 280
## 9262 280
## 9461 280
## 9758 280
## 9988 280
## 10183 280
## 10313 280
## 10434 280
## 10522 280
## 10760 280
## 11013 280
## 11248 280
## 11730 280
## 12031 280
## 12486 280
## 12734 280
## 12954 280
## 13106 280
## 13357 280
## 13944 280
## 14257 280
## 14533 280
## 14982 280
## 15028 280
## 15534 280
## 15732 280
## 16068 280
## 16422 280
## 17612 280
## 17816 280
## 17993 280
## 18311 280
## 18672 280
## 19299 280
## 19842 280
## 19973 280
## 20301 280
## 20500 280
## 21527 280
## 21902 280
## 22023 280
## 22157 280
## 22267 280
## 22334 280
## 22541 280
## 22732 280
## 23189 280
## 23961 280
## 24315 280
## 24667 280
## 25259 280
## 26003 280
## 26309 280
## 26738 280
## 26975 280
## 29241 280
## 29767 280
## 30294 280
## 30612 280
## 30866 280
## 31090 280
## 32081 280
## 32924 280
## 33162 280
## 33398 280
## 33531 280
## 33689 280
## 33789 280
## 34017 280
## 34492 280
## 34608 280
## 34776 280
## 34956 280
## 35182 280
## 35364 280
## 35541 280
## 35671 280
## 35780 280
## 35950 280
## 36214 280
## 36526 280
## 37089 280
## 37403 280
## 37854 280
## 40514 280
## 41858 280
## 42357 280
## 43013 280
## 43412 280
## 43855 280
## 44407 280
## 45638 280
## 48318 280
## 48615 280
## 48762 280
## 49029 280
## 49658 280
## 49883 280
## 50094 280
## 53467 280
## 53632 280
## 54205 280
## 54267 280
## 54378 280
## 54612 280
## 54716 280
## 54979 280
## 55029 280
## 55059 280
## 55167 280
## 55265 280
## 55797 280
## 55974 280
## 56146 280
## 56330 280
## 56796 280
## 57061 280
## 57414 280
## 57705 280
## 57863 280
## 58142 280
## 59062 280
## 60373 280
## 60468 280
## 60662 280
## 60801 280
## 61586 280
## 61763 280
## 62050 280
## 62256 280
## 62986 280
## 63907 280
## 64370 280
## 65010 280
## 65418 280
## 65988 280
## 66129 280
## 68264 280
## 68436 280
## 68985 280
## 69094 280
## 69186 280
## 69265 280
## 69405 280
## 69761 280
## 70039 280
## 70255 280
## 70612 280
## 70847 280
## 71133 280
## 71243 280
## 71299 280
## 71832 280
## 71904 280
## 71944 280
## 72036 280
## 72470 280
## 73423 280
## 73835 280
## 74391 280
## 74504 280
## 76055 280
## 76626 280
## 76936 280
## 77341 280
## 77645 280
## 78707 280
## 78881 280
## 79015 280
## 79234 280
## 79304 280
## 80156 280
## 80558 280
## 80610 280
## 80715 280
## 80817 280
## 80873 280
## 80966 280
## 81255 280
## 81375 280
## 81560 280
## 81878 280
## 82245 280
## 82519 280
## 82843 280
## 82985 280
## 83250 280
## 83365 280
## 83855 280
## 83883 280
## 83987 280
## 84087 280
## 84383 280
## 84455 280
## 84698 280
## 86630 280
## 87259 280
## 89195 280
## 89347 280
## 89687 280
## 89984 280
## 90158 280
## 91063 280
## 91121 280
## 92328 280
## 92838 280
## 93072 280
## 93316 280
## 93545 280
## 93662 280
## 93727 280
## 93797 280
## 94002 280
## 94079 280
## 94172 280
## 94905 280
## 95150 280
## 95188 280
## 95559 280
## 96153 280
## 96324 280
## 96335 280
## 96697 280
## 96859 280
## 96974 280
## 97905 280
## 98012 280
## 98401 280
## 98783 280
## 98808 280
## 98850 280
## 98877 280
## 98894 280
## 39581 281
## 39982 281
## 41223 281
## 44408 281
## 44816 281
## 45639 281
## 46497 281
## 46873 281
## 47377 281
## 47868 281
## 47952 281
## 49659 281
## 49884 281
## 50357 281
## 51070 281
## 51193 281
## 51366 281
## 51720 281
## 52044 281
## 68986 281
## 77962 281
## 78708 281
## 82520 281
## 87732 281
## 89815 281
## 91467 281
## 39582 282
## 40287 282
## 40822 282
## 41224 282
## 44409 282
## 45640 282
## 46498 282
## 47122 282
## 47506 282
## 47715 282
## 49291 282
## 50222 282
## 50532 282
## 51367 282
## 51721 282
## 51887 282
## 52117 282
## 53233 282
## 78594 282
## 87837 282
## 88220 282
## 3465 283
## 4052 283
## 5742 283
## 6341 283
## 6568 283
## 7663 283
## 9759 283
## 9989 283
## 11479 283
## 12596 283
## 13107 283
## 14534 283
## 15329 283
## 17613 283
## 21140 283
## 23318 283
## 24316 283
## 25040 283
## 27611 283
## 28983 283
## 30613 283
## 31091 283
## 31652 283
## 31857 283
## 32082 283
## 32379 283
## 33163 283
## 36873 283
## 44410 283
## 45137 283
## 45641 283
## 55266 283
## 56634 283
## 56797 283
## 57194 283
## 59224 283
## 59406 283
## 59645 283
## 60919 283
## 72037 283
## 74057 283
## 74141 283
## 76497 283
## 77526 283
## 79832 283
## 81037 283
## 85627 283
## 86631 283
## 87260 283
## 91902 283
## 94511 283
## 95189 283
## 98936 283
## 39583 284
## 39983 284
## 40288 284
## 40823 284
## 41071 284
## 41443 284
## 43856 284
## 44817 284
## 46499 284
## 46874 284
## 47123 284
## 47378 284
## 47507 284
## 47600 284
## 47716 284
## 47953 284
## 48319 284
## 48616 284
## 49292 284
## 49660 284
## 50095 284
## 50743 284
## 51194 284
## 51368 284
## 51563 284
## 51799 284
## 51888 284
## 52217 284
## 52279 284
## 52362 284
## 52487 284
## 69052 284
## 77963 284
## 78479 284
## 78709 284
## 82521 284
## 82844 284
## 82986 284
## 83185 284
## 87733 284
## 88133 284
## 88578 284
## 88668 284
## 88734 284
## 89816 284
## 8657 285
## 14535 285
## 20935 285
## 21141 285
## 23319 285
## 26976 285
## 27378 285
## 28446 285
## 28984 285
## 29982 285
## 31376 285
## 33164 285
## 34018 285
## 36527 285
## 39584 285
## 40824 285
## 41072 285
## 42358 285
## 43857 285
## 44411 285
## 46500 285
## 47124 285
## 48320 285
## 49293 285
## 52363 285
## 53008 285
## 60920 285
## 66871 285
## 68987 285
## 74248 285
## 77964 285
## 88630 285
## 130 286
## 610 286
## 727 286
## 1123 286
## 2067 286
## 2558 286
## 2733 286
## 3167 286
## 3222 286
## 3385 286
## 3608 286
## 4272 286
## 4909 286
## 5362 286
## 5627 286
## 5672 286
## 5743 286
## 5911 286
## 6109 286
## 6569 286
## 7192 286
## 7440 286
## 7664 286
## 7947 286
## 9005 286
## 9760 286
## 10184 286
## 10314 286
## 10523 286
## 11095 286
## 11249 286
## 11480 286
## 11638 286
## 12032 286
## 12265 286
## 12487 286
## 12597 286
## 13108 286
## 13358 286
## 13634 286
## 14258 286
## 14536 286
## 14913 286
## 15199 286
## 15535 286
## 15880 286
## 16069 286
## 16833 286
## 17272 286
## 17614 286
## 17994 286
## 18673 286
## 18899 286
## 19640 286
## 19788 286
## 19974 286
## 20075 286
## 20302 286
## 20610 286
## 21142 286
## 21528 286
## 21751 286
## 21903 286
## 22268 286
## 22542 286
## 22937 286
## 23190 286
## 23320 286
## 23588 286
## 23812 286
## 23962 286
## 24317 286
## 24668 286
## 25041 286
## 25260 286
## 25783 286
## 26310 286
## 26977 286
## 27219 286
## 27612 286
## 28195 286
## 28447 286
## 29242 286
## 29527 286
## 29983 286
## 30614 286
## 31092 286
## 31653 286
## 31858 286
## 32083 286
## 32380 286
## 32552 286
## 32778 286
## 32925 286
## 33165 286
## 33399 286
## 34424 286
## 34957 286
## 35183 286
## 35542 286
## 35672 286
## 35951 286
## 36215 286
## 36528 286
## 37250 286
## 38191 286
## 38497 286
## 38652 286
## 39200 286
## 39585 286
## 40825 286
## 41444 286
## 41859 286
## 42064 286
## 42579 286
## 42648 286
## 42747 286
## 43597 286
## 44412 286
## 44818 286
## 45043 286
## 46166 286
## 46875 286
## 47894 286
## 48152 286
## 48617 286
## 48763 286
## 50223 286
## 50970 286
## 51006 286
## 51644 286
## 51800 286
## 51889 286
## 52024 286
## 52280 286
## 52747 286
## 53009 286
## 53633 286
## 53960 286
## 54206 286
## 54379 286
## 54481 286
## 54894 286
## 55080 286
## 55267 286
## 55408 286
## 55490 286
## 55696 286
## 55798 286
## 55975 286
## 56147 286
## 56331 286
## 56692 286
## 57062 286
## 57280 286
## 57479 286
## 57706 286
## 57955 286
## 58143 286
## 58400 286
## 58742 286
## 59063 286
## 59225 286
## 59407 286
## 60663 286
## 60921 286
## 61260 286
## 61361 286
## 61587 286
## 62257 286
## 62404 286
## 62764 286
## 62987 286
## 63126 286
## 63908 286
## 66705 286
## 68265 286
## 68886 286
## 68949 286
## 69406 286
## 69916 286
## 70040 286
## 70256 286
## 71027 286
## 71220 286
## 71381 286
## 72038 286
## 72562 286
## 72706 286
## 74249 286
## 74392 286
## 74794 286
## 75000 286
## 75123 286
## 75747 286
## 76056 286
## 76412 286
## 78051 286
## 78595 286
## 79461 286
## 79479 286
## 79658 286
## 79833 286
## 79934 286
## 80503 286
## 80652 286
## 80818 286
## 81038 286
## 81193 286
## 81446 286
## 81497 286
## 81561 286
## 81769 286
## 81879 286
## 82246 286
## 82369 286
## 82764 286
## 83547 286
## 83615 286
## 83737 286
## 83909 286
## 83939 286
## 84088 286
## 84275 286
## 84456 286
## 84699 286
## 84783 286
## 85011 286
## 85105 286
## 85427 286
## 85536 286
## 85566 286
## 85697 286
## 85811 286
## 87028 286
## 88037 286
## 88050 286
## 88189 286
## 88735 286
## 89122 286
## 89443 286
## 89499 286
## 89570 286
## 89688 286
## 90159 286
## 90287 286
## 90421 286
## 90497 286
## 90889 286
## 91396 286
## 91577 286
## 92248 286
## 93073 286
## 93173 286
## 93209 286
## 93546 286
## 93798 286
## 93858 286
## 94003 286
## 94397 286
## 94454 286
## 94512 286
## 94733 286
## 94942 286
## 95031 286
## 95168 286
## 95268 286
## 95317 286
## 95560 286
## 95763 286
## 96336 286
## 96499 286
## 96623 286
## 97164 286
## 97252 286
## 97530 286
## 97714 286
## 97811 286
## 97835 286
## 98058 286
## 98252 286
## 98485 286
## 98981 286
## 98983 286
## 98993 286
## 131 287
## 728 287
## 1699 287
## 2068 287
## 4683 287
## 5542 287
## 6570 287
## 7665 287
## 8658 287
## 12735 287
## 13945 287
## 14537 287
## 15247 287
## 15536 287
## 16070 287
## 16834 287
## 22024 287
## 23321 287
## 26311 287
## 30295 287
## 30473 287
## 31654 287
## 33532 287
## 34019 287
## 36216 287
## 36529 287
## 37251 287
## 38062 287
## 38192 287
## 38350 287
## 38498 287
## 38728 287
## 39201 287
## 42359 287
## 45138 287
## 45642 287
## 46167 287
## 46876 287
## 48321 287
## 50533 287
## 51890 287
## 52364 287
## 52488 287
## 58465 287
## 61261 287
## 62988 287
## 69407 287
## 72298 287
## 75748 287
## 77965 287
## 79935 287
## 81880 287
## 82522 287
## 85428 287
## 86632 287
## 88374 287
## 89249 287
## 89936 287
## 90422 287
## 92373 287
## 94194 287
## 2309 288
## 2559 288
## 2954 288
## 3609 288
## 6571 288
## 8659 288
## 9462 288
## 13635 288
## 13946 288
## 14538 288
## 16835 288
## 17995 288
## 18674 288
## 19076 288
## 19506 288
## 22158 288
## 24318 288
## 24669 288
## 25042 288
## 25261 288
## 25496 288
## 25632 288
## 26004 288
## 26739 288
## 28273 288
## 29528 288
## 29768 288
## 30115 288
## 30296 288
## 30615 288
## 31377 288
## 32084 288
## 32381 288
## 32779 288
## 33166 288
## 34316 288
## 35365 288
## 35952 288
## 36530 288
## 39586 288
## 40826 288
## 41445 288
## 42360 288
## 43858 288
## 44819 288
## 45643 288
## 46501 288
## 47508 288
## 48875 288
## 49030 288
## 50534 288
## 51891 288
## 52281 288
## 52365 288
## 53010 288
## 58543 288
## 59646 288
## 66565 288
## 67052 288
## 67550 288
## 68266 288
## 68437 288
## 69266 288
## 72436 288
## 74609 288
## 75592 288
## 78544 288
## 81881 288
## 87960 288
## 88134 288
## 88579 288
## 93210 288
## 94130 288
## 98210 288
## 132 289
## 1124 289
## 2955 289
## 3466 289
## 4053 289
## 15330 289
## 16071 289
## 16836 289
## 17615 289
## 20611 289
## 21143 289
## 34020 289
## 38883 289
## 43014 289
## 53422 289
## 56332 289
## 56886 289
## 60922 289
## 62051 289
## 62405 289
## 63127 289
## 78304 289
## 81882 289
## 85429 289
## 86871 289
## 89250 289
## 92374 289
## 133 290
## 2956 290
## 3467 290
## 3610 290
## 4684 290
## 5071 290
## 5856 290
## 6342 290
## 6572 290
## 7318 290
## 8393 290
## 8660 290
## 9006 290
## 9463 290
## 9990 290
## 11250 290
## 12033 290
## 12266 290
## 12598 290
## 13109 290
## 13636 290
## 13947 290
## 14259 290
## 14983 290
## 15060 290
## 15331 290
## 16072 290
## 16423 290
## 16659 290
## 16837 290
## 17616 290
## 18675 290
## 18900 290
## 19300 290
## 19507 290
## 19789 290
## 19906 290
## 20076 290
## 20303 290
## 21144 290
## 21529 290
## 22269 290
## 22543 290
## 22733 290
## 22938 290
## 23191 290
## 23322 290
## 23963 290
## 24670 290
## 25262 290
## 26005 290
## 26312 290
## 26978 290
## 28448 290
## 28799 290
## 29529 290
## 30116 290
## 30616 290
## 31093 290
## 31378 290
## 31655 290
## 32085 290
## 32382 290
## 33167 290
## 33533 290
## 34021 290
## 34777 290
## 34958 290
## 35184 290
## 35366 290
## 35953 290
## 36217 290
## 37090 290
## 37646 290
## 38729 290
## 39202 290
## 40515 290
## 41225 290
## 41860 290
## 49031 290
## 49885 290
## 53011 290
## 54115 290
## 54268 290
## 54717 290
## 55268 290
## 55799 290
## 55976 290
## 56148 290
## 56333 290
## 57573 290
## 57707 290
## 58144 290
## 58858 290
## 59226 290
## 59537 290
## 59647 290
## 59828 290
## 60469 290
## 60574 290
## 61588 290
## 62258 290
## 62406 290
## 62548 290
## 62989 290
## 63909 290
## 64121 290
## 65011 290
## 65290 290
## 67053 290
## 67551 290
## 67848 290
## 68267 290
## 69408 290
## 69762 290
## 70613 290
## 70848 290
## 72039 290
## 72563 290
## 73950 290
## 74058 290
## 74393 290
## 75495 290
## 75593 290
## 78052 290
## 78305 290
## 78882 290
## 79305 290
## 80423 290
## 81039 290
## 81562 290
## 81883 290
## 83251 290
## 85227 290
## 85537 290
## 85870 290
## 85957 290
## 86215 290
## 89251 290
## 89500 290
## 91578 290
## 92201 290
## 92839 290
## 93074 290
## 93547 290
## 94004 290
## 94513 290
## 94734 290
## 97796 290
## 98142 290
## 134 291
## 611 291
## 729 291
## 908 291
## 1125 291
## 1451 291
## 1700 291
## 2069 291
## 2310 291
## 2957 291
## 3223 291
## 3468 291
## 3611 291
## 4054 291
## 4558 291
## 4685 291
## 5072 291
## 5295 291
## 5432 291
## 5673 291
## 6052 291
## 6239 291
## 6343 291
## 6573 291
## 7193 291
## 7319 291
## 7441 291
## 7666 291
## 8661 291
## 9007 291
## 9154 291
## 9464 291
## 9761 291
## 9991 291
## 10185 291
## 10524 291
## 10761 291
## 11014 291
## 11251 291
## 11614 291
## 11639 291
## 12267 291
## 12488 291
## 12736 291
## 12846 291
## 12955 291
## 13110 291
## 13359 291
## 13637 291
## 13948 291
## 14260 291
## 14539 291
## 14914 291
## 15136 291
## 16073 291
## 16424 291
## 16838 291
## 17162 291
## 17273 291
## 17410 291
## 17617 291
## 18312 291
## 18397 291
## 19843 291
## 20077 291
## 20304 291
## 20612 291
## 21145 291
## 21530 291
## 21752 291
## 21904 291
## 22025 291
## 22270 291
## 22335 291
## 22939 291
## 23323 291
## 23964 291
## 24319 291
## 24671 291
## 25043 291
## 25784 291
## 26313 291
## 27220 291
## 28052 291
## 29243 291
## 30297 291
## 30617 291
## 31094 291
## 32086 291
## 32553 291
## 32780 291
## 32926 291
## 33534 291
## 33690 291
## 34317 291
## 34609 291
## 35543 291
## 35673 291
## 35954 291
## 36218 291
## 36382 291
## 36531 291
## 36874 291
## 37252 291
## 37751 291
## 37855 291
## 38063 291
## 38351 291
## 38499 291
## 40289 291
## 41641 291
## 43015 291
## 43413 291
## 43598 291
## 44413 291
## 45044 291
## 45139 291
## 45380 291
## 45644 291
## 50096 291
## 50224 291
## 52865 291
## 53468 291
## 53503 291
## 53550 291
## 53634 291
## 53803 291
## 54037 291
## 54060 291
## 54207 291
## 54572 291
## 54613 291
## 54718 291
## 55103 291
## 55269 291
## 55429 291
## 55491 291
## 55697 291
## 55800 291
## 55977 291
## 56149 291
## 56334 291
## 56887 291
## 57063 291
## 57195 291
## 57281 291
## 57415 291
## 57480 291
## 57574 291
## 57864 291
## 57956 291
## 58145 291
## 58544 291
## 58743 291
## 60374 291
## 60923 291
## 61045 291
## 61224 291
## 61667 291
## 61833 291
## 61911 291
## 62052 291
## 62765 291
## 65012 291
## 65499 291
## 66130 291
## 69095 291
## 69409 291
## 69763 291
## 69887 291
## 69917 291
## 70115 291
## 70172 291
## 70452 291
## 70494 291
## 70549 291
## 70614 291
## 70754 291
## 70849 291
## 71028 291
## 71134 291
## 71162 291
## 71191 291
## 71221 291
## 71244 291
## 71300 291
## 71382 291
## 71429 291
## 71567 291
## 71658 291
## 72040 291
## 72426 291
## 72707 291
## 73836 291
## 74142 291
## 74505 291
## 74795 291
## 76057 291
## 77272 291
## 78306 291
## 78426 291
## 79636 291
## 80157 291
## 80304 291
## 80559 291
## 80874 291
## 81040 291
## 81256 291
## 81563 291
## 81770 291
## 81884 291
## 82370 291
## 83252 291
## 83366 291
## 83504 291
## 83548 291
## 83738 291
## 83988 291
## 84036 291
## 84130 291
## 84171 291
## 84193 291
## 84384 291
## 84537 291
## 84576 291
## 84700 291
## 84862 291
## 84989 291
## 85012 291
## 85029 291
## 85516 291
## 85628 291
## 85748 291
## 85812 291
## 85871 291
## 86093 291
## 86241 291
## 86286 291
## 86548 291
## 89123 291
## 89348 291
## 89650 291
## 89854 291
## 89904 291
## 89937 291
## 90030 291
## 90160 291
## 91030 291
## 91064 291
## 91122 291
## 91332 291
## 91695 291
## 92119 291
## 92375 291
## 92490 291
## 92840 291
## 93369 291
## 93477 291
## 93548 291
## 93967 291
## 94195 291
## 94330 291
## 94473 291
## 94483 291
## 94514 291
## 94566 291
## 94695 291
## 94873 291
## 95079 291
## 95734 291
## 96002 291
## 96289 291
## 96417 291
## 96680 291
## 96733 291
## 96754 291
## 96804 291
## 96822 291
## 96860 291
## 96921 291
## 96945 291
## 97151 291
## 97253 291
## 97319 291
## 97381 291
## 97435 291
## 97633 291
## 97670 291
## 97954 291
## 97973 291
## 98263 291
## 98842 291
## 98878 291
## 98945 291
## 98996 291
## 135 292
## 488 292
## 1126 292
## 1701 292
## 1928 292
## 2070 292
## 3386 292
## 4055 292
## 4686 292
## 6240 292
## 6574 292
## 7667 292
## 8019 292
## 8662 292
## 10762 292
## 11481 292
## 11731 292
## 13360 292
## 13949 292
## 14540 292
## 15537 292
## 15824 292
## 16074 292
## 16425 292
## 17411 292
## 17618 292
## 17996 292
## 18676 292
## 19301 292
## 20305 292
## 20936 292
## 21146 292
## 21531 292
## 22026 292
## 23065 292
## 23324 292
## 23589 292
## 24320 292
## 24672 292
## 25263 292
## 26006 292
## 26314 292
## 26979 292
## 28274 292
## 28800 292
## 28985 292
## 29244 292
## 29769 292
## 30117 292
## 30867 292
## 31544 292
## 31859 292
## 32781 292
## 34022 292
## 34318 292
## 34610 292
## 34959 292
## 35955 292
## 36219 292
## 38193 292
## 38352 292
## 38500 292
## 38730 292
## 40371 292
## 40516 292
## 42361 292
## 43016 292
## 43599 292
## 44414 292
## 46168 292
## 46502 292
## 49415 292
## 50097 292
## 50744 292
## 51071 292
## 52118 292
## 56335 292
## 56693 292
## 57708 292
## 58146 292
## 58859 292
## 61362 292
## 62259 292
## 62766 292
## 63340 292
## 63751 292
## 63910 292
## 64122 292
## 64371 292
## 64499 292
## 64669 292
## 64733 292
## 65419 292
## 66428 292
## 66566 292
## 67054 292
## 67849 292
## 68032 292
## 68438 292
## 68887 292
## 72196 292
## 72890 292
## 72977 292
## 73319 292
## 74250 292
## 74506 292
## 75812 292
## 75883 292
## 76291 292
## 76498 292
## 76761 292
## 77102 292
## 79531 292
## 82523 292
## 84650 292
## 86549 292
## 86966 292
## 88883 292
## 91968 292
## 92249 292
## 93211 292
## 93750 292
## 94331 292
## 95797 292
## 136 293
## 489 293
## 612 293
## 730 293
## 909 293
## 1127 293
## 1452 293
## 2071 293
## 2311 293
## 2734 293
## 2958 293
## 3168 293
## 3224 293
## 3612 293
## 3870 293
## 4273 293
## 4486 293
## 4559 293
## 4687 293
## 4910 293
## 5073 293
## 5296 293
## 5380 293
## 5433 293
## 5543 293
## 5986 293
## 6110 293
## 6241 293
## 6344 293
## 6575 293
## 7018 293
## 7194 293
## 7320 293
## 7442 293
## 7668 293
## 8394 293
## 8663 293
## 8879 293
## 9008 293
## 9155 293
## 9263 293
## 9465 293
## 9762 293
## 9992 293
## 10315 293
## 10435 293
## 10525 293
## 10763 293
## 11096 293
## 11252 293
## 11640 293
## 11875 293
## 12034 293
## 12268 293
## 12599 293
## 12737 293
## 12956 293
## 13361 293
## 13638 293
## 13950 293
## 14261 293
## 14541 293
## 15538 293
## 16075 293
## 16839 293
## 17163 293
## 17412 293
## 17619 293
## 17997 293
## 18398 293
## 18677 293
## 18901 293
## 19077 293
## 19302 293
## 19641 293
## 19790 293
## 20078 293
## 20306 293
## 20613 293
## 20779 293
## 20937 293
## 21147 293
## 21396 293
## 21532 293
## 21905 293
## 22027 293
## 22159 293
## 22271 293
## 22336 293
## 22435 293
## 22544 293
## 22734 293
## 22828 293
## 22940 293
## 23066 293
## 23128 293
## 23192 293
## 23325 293
## 23965 293
## 24321 293
## 24673 293
## 25044 293
## 25264 293
## 25497 293
## 25785 293
## 26007 293
## 26315 293
## 26740 293
## 26980 293
## 27379 293
## 27613 293
## 27853 293
## 28053 293
## 28671 293
## 28801 293
## 28986 293
## 29245 293
## 29530 293
## 29984 293
## 30118 293
## 30298 293
## 30618 293
## 30868 293
## 31095 293
## 31490 293
## 31656 293
## 31860 293
## 32087 293
## 32383 293
## 32651 293
## 32927 293
## 33168 293
## 33400 293
## 33535 293
## 34023 293
## 34319 293
## 34611 293
## 34778 293
## 34960 293
## 35185 293
## 35367 293
## 35674 293
## 35781 293
## 35956 293
## 36220 293
## 36532 293
## 36875 293
## 37091 293
## 37253 293
## 37856 293
## 38194 293
## 38353 293
## 38501 293
## 38653 293
## 38731 293
## 38977 293
## 39203 293
## 39587 293
## 40372 293
## 40517 293
## 41446 293
## 41642 293
## 42065 293
## 42748 293
## 43017 293
## 43227 293
## 43414 293
## 43600 293
## 43859 293
## 44415 293
## 45045 293
## 45140 293
## 45381 293
## 45645 293
## 46072 293
## 46169 293
## 46503 293
## 47125 293
## 48322 293
## 48618 293
## 48764 293
## 48876 293
## 49661 293
## 50225 293
## 50745 293
## 52366 293
## 52489 293
## 52866 293
## 53012 293
## 53551 293
## 53635 293
## 53900 293
## 54269 293
## 54895 293
## 55270 293
## 55698 293
## 55801 293
## 55978 293
## 56150 293
## 56336 293
## 56888 293
## 57064 293
## 57196 293
## 57329 293
## 57416 293
## 57709 293
## 57865 293
## 57957 293
## 58147 293
## 58401 293
## 58466 293
## 58545 293
## 58860 293
## 58954 293
## 59227 293
## 59408 293
## 59648 293
## 59829 293
## 60035 293
## 60206 293
## 60262 293
## 60664 293
## 60924 293
## 61225 293
## 61262 293
## 61363 293
## 61488 293
## 61548 293
## 61668 293
## 61710 293
## 61764 293
## 61834 293
## 62053 293
## 62549 293
## 63341 293
## 63522 293
## 63752 293
## 63911 293
## 64123 293
## 64255 293
## 64670 293
## 64734 293
## 65013 293
## 65196 293
## 65500 293
## 65605 293
## 65651 293
## 65716 293
## 65895 293
## 65989 293
## 66312 293
## 66429 293
## 66767 293
## 66872 293
## 67386 293
## 67678 293
## 68268 293
## 68439 293
## 68737 293
## 69267 293
## 69410 293
## 69658 293
## 69764 293
## 69965 293
## 70041 293
## 70173 293
## 70257 293
## 70615 293
## 70850 293
## 71135 293
## 71163 293
## 71430 293
## 71659 293
## 71793 293
## 72041 293
## 72197 293
## 72299 293
## 72978 293
## 73221 293
## 73733 293
## 73837 293
## 74143 293
## 74251 293
## 74394 293
## 74610 293
## 74796 293
## 74868 293
## 74905 293
## 75124 293
## 75259 293
## 75311 293
## 75438 293
## 75594 293
## 75813 293
## 75884 293
## 76058 293
## 76292 293
## 76413 293
## 76627 293
## 76937 293
## 77103 293
## 77646 293
## 77835 293
## 78135 293
## 78307 293
## 78427 293
## 79016 293
## 79159 293
## 79532 293
## 79734 293
## 79936 293
## 80009 293
## 80158 293
## 80424 293
## 80653 293
## 80875 293
## 81041 293
## 81564 293
## 81885 293
## 82247 293
## 82371 293
## 82524 293
## 82987 293
## 83549 293
## 83884 293
## 84037 293
## 84340 293
## 84385 293
## 84457 293
## 84651 293
## 85093 293
## 85228 293
## 85271 293
## 85430 293
## 85629 293
## 85813 293
## 86141 293
## 86512 293
## 86633 293
## 86872 293
## 87029 293
## 87261 293
## 87412 293
## 87734 293
## 88375 293
## 89124 293
## 89571 293
## 89651 293
## 89855 293
## 89938 293
## 89985 293
## 90031 293
## 90498 293
## 90547 293
## 91123 293
## 92021 293
## 92376 293
## 92491 293
## 92530 293
## 93317 293
## 93370 293
## 93410 293
## 93478 293
## 93663 293
## 93927 293
## 94874 293
## 94943 293
## 95318 293
## 95528 293
## 95627 293
## 95866 293
## 96066 293
## 96719 293
## 96734 293
## 96861 293
## 96946 293
## 97066 293
## 97114 293
## 97152 293
## 97382 293
## 97521 293
## 97564 293
## 97812 293
## 97917 293
## 97987 293
## 98121 293
## 98561 293
## 137 294
## 1128 294
## 1929 294
## 3469 294
## 4056 294
## 6576 294
## 10764 294
## 12847 294
## 14542 294
## 15061 294
## 15332 294
## 15539 294
## 16076 294
## 16426 294
## 16660 294
## 16840 294
## 17164 294
## 17274 294
## 17620 294
## 17998 294
## 20614 294
## 20780 294
## 21148 294
## 26316 294
## 34024 294
## 36221 294
## 36533 294
## 37254 294
## 37857 294
## 38064 294
## 38195 294
## 38354 294
## 38502 294
## 38732 294
## 38884 294
## 38978 294
## 39204 294
## 39588 294
## 40132 294
## 40373 294
## 40827 294
## 41226 294
## 41643 294
## 42362 294
## 42847 294
## 43018 294
## 43860 294
## 44416 294
## 45141 294
## 45382 294
## 45646 294
## 45997 294
## 46170 294
## 46325 294
## 46504 294
## 46877 294
## 47717 294
## 48323 294
## 49662 294
## 49886 294
## 50098 294
## 50226 294
## 50535 294
## 50746 294
## 51072 294
## 51195 294
## 51369 294
## 51564 294
## 51892 294
## 52045 294
## 52119 294
## 52367 294
## 52490 294
## 52631 294
## 52748 294
## 52803 294
## 53234 294
## 53423 294
## 56337 294
## 56584 294
## 56889 294
## 57065 294
## 57282 294
## 60925 294
## 62054 294
## 62260 294
## 62767 294
## 62990 294
## 63912 294
## 66131 294
## 67055 294
## 67552 294
## 68888 294
## 68988 294
## 69053 294
## 69268 294
## 69411 294
## 69595 294
## 72708 294
## 72979 294
## 73838 294
## 77527 294
## 77647 294
## 77966 294
## 78596 294
## 81886 294
## 82084 294
## 82525 294
## 82765 294
## 82988 294
## 83120 294
## 85749 294
## 85872 294
## 85958 294
## 86030 294
## 86094 294
## 86142 294
## 86392 294
## 87473 294
## 87685 294
## 87838 294
## 88376 294
## 88631 294
## 89252 294
## 89349 294
## 89501 294
## 89572 294
## 91191 294
## 91356 294
## 91813 294
## 92022 294
## 92120 294
## 92202 294
## 92250 294
## 92377 294
## 92841 294
## 93549 294
## 94196 294
## 94515 294
## 94550 294
## 94636 294
## 94657 294
## 95529 294
## 95590 294
## 96067 294
## 96594 294
## 97354 294
## 97442 294
## 138 295
## 731 295
## 1129 295
## 2072 295
## 3613 295
## 4274 295
## 5544 295
## 5744 295
## 5857 295
## 6111 295
## 6577 295
## 7095 295
## 7195 295
## 7669 295
## 8248 295
## 8880 295
## 9156 295
## 9264 295
## 9466 295
## 9763 295
## 9993 295
## 10186 295
## 10316 295
## 10765 295
## 11253 295
## 11482 295
## 11615 295
## 11732 295
## 12035 295
## 12269 295
## 12600 295
## 12957 295
## 13111 295
## 13362 295
## 13639 295
## 13951 295
## 14262 295
## 14543 295
## 14984 295
## 15062 295
## 15333 295
## 15825 295
## 16427 295
## 16841 295
## 17621 295
## 18678 295
## 18902 295
## 19078 295
## 19642 295
## 19975 295
## 20079 295
## 20307 295
## 21149 295
## 21533 295
## 21753 295
## 21906 295
## 22160 295
## 22272 295
## 22337 295
## 22545 295
## 22735 295
## 22941 295
## 23326 295
## 23966 295
## 24322 295
## 24674 295
## 26317 295
## 26981 295
## 27614 295
## 28054 295
## 28275 295
## 28449 295
## 28987 295
## 29531 295
## 30619 295
## 31096 295
## 31657 295
## 31861 295
## 32088 295
## 32652 295
## 32928 295
## 33169 295
## 33401 295
## 33536 295
## 34025 295
## 34612 295
## 34779 295
## 34961 295
## 35186 295
## 35368 295
## 35675 295
## 36222 295
## 36534 295
## 36876 295
## 37404 295
## 40518 295
## 45046 295
## 49032 295
## 53013 295
## 53901 295
## 54116 295
## 54270 295
## 54380 295
## 54482 295
## 54719 295
## 54896 295
## 55060 295
## 55430 295
## 55699 295
## 55802 295
## 55979 295
## 56151 295
## 56338 295
## 57197 295
## 57330 295
## 57417 295
## 57481 295
## 57710 295
## 57866 295
## 57958 295
## 58148 295
## 58546 295
## 59064 295
## 59649 295
## 60470 295
## 60575 295
## 60665 295
## 61263 295
## 61589 295
## 61912 295
## 63913 295
## 64256 295
## 64790 295
## 65014 295
## 65197 295
## 65291 295
## 65717 295
## 66567 295
## 66768 295
## 68269 295
## 69412 295
## 70258 295
## 70392 295
## 71089 295
## 71660 295
## 72042 295
## 72891 295
## 74023 295
## 74395 295
## 74507 295
## 75125 295
## 75373 295
## 76059 295
## 76628 295
## 79480 295
## 79533 295
## 80425 295
## 80560 295
## 80758 295
## 80876 295
## 81257 295
## 81376 295
## 81447 295
## 81498 295
## 81565 295
## 81700 295
## 82085 295
## 82372 295
## 84701 295
## 84863 295
## 85229 295
## 85326 295
## 86513 295
## 89939 295
## 90161 295
## 90380 295
## 90693 295
## 90797 295
## 90821 295
## 91679 295
## 92842 295
## 93212 295
## 93284 295
## 93751 295
## 95204 295
## 95561 295
## 95628 295
## 96187 295
## 96418 295
## 96975 295
## 97906 295
## 98402 295
## 98720 295
## 98784 295
## 98851 295
## 98984 295
## 139 296
## 1130 296
## 1702 296
## 1930 296
## 2073 296
## 2560 296
## 2735 296
## 2959 296
## 3313 296
## 3387 296
## 3614 296
## 3871 296
## 4057 296
## 5209 296
## 5987 296
## 6242 296
## 6578 296
## 7443 296
## 7670 296
## 8312 296
## 10766 296
## 11483 296
## 12270 296
## 13363 296
## 13952 296
## 14544 296
## 15540 296
## 15773 296
## 16077 296
## 16842 296
## 17413 296
## 17622 296
## 17999 296
## 19079 296
## 19643 296
## 20308 296
## 20938 296
## 21150 296
## 21534 296
## 23967 296
## 25786 296
## 26008 296
## 26318 296
## 27615 296
## 27854 296
## 28450 296
## 28988 296
## 29985 296
## 30119 296
## 31097 296
## 31862 296
## 32089 296
## 32384 296
## 33863 296
## 34026 296
## 34962 296
## 36535 296
## 36877 296
## 37255 296
## 37531 296
## 37752 296
## 38065 296
## 38196 296
## 38503 296
## 38654 296
## 38979 296
## 39107 296
## 39205 296
## 39589 296
## 39984 296
## 40828 296
## 41447 296
## 41861 296
## 42066 296
## 42363 296
## 42580 296
## 42700 296
## 42848 296
## 43019 296
## 43415 296
## 43601 296
## 43861 296
## 44215 296
## 44820 296
## 45258 296
## 45383 296
## 45647 296
## 46073 296
## 46171 296
## 46878 296
## 47379 296
## 47895 296
## 48324 296
## 48619 296
## 53014 296
## 58547 296
## 58861 296
## 59650 296
## 60926 296
## 61364 296
## 61835 296
## 62768 296
## 63523 296
## 63753 296
## 63914 296
## 64124 296
## 64257 296
## 65292 296
## 65718 296
## 66132 296
## 66430 296
## 66873 296
## 67056 296
## 67679 296
## 67850 296
## 68440 296
## 69269 296
## 74252 296
## 74611 296
## 75749 296
## 75885 296
## 76499 296
## 76938 296
## 78308 296
## 78545 296
## 79160 296
## 79534 296
## 82845 296
## 85431 296
## 86634 296
## 86765 296
## 86967 296
## 88512 296
## 89058 296
## 90233 296
## 90347 296
## 90694 296
## 90751 296
## 91814 296
## 91903 296
## 94332 296
## 95798 296
## 96040 296
## 97416 296
## 97772 296
## 140 297
## 732 297
## 1131 297
## 1453 297
## 2074 297
## 2312 297
## 2561 297
## 3225 297
## 3388 297
## 3615 297
## 4058 297
## 4275 297
## 4560 297
## 4688 297
## 5074 297
## 5210 297
## 5363 297
## 5745 297
## 6112 297
## 6579 297
## 7196 297
## 7444 297
## 7671 297
## 7948 297
## 9467 297
## 9764 297
## 10317 297
## 10767 297
## 11484 297
## 11733 297
## 12271 297
## 12489 297
## 12738 297
## 13112 297
## 13640 297
## 13953 297
## 14545 297
## 14985 297
## 15248 297
## 15334 297
## 15541 297
## 15774 297
## 15881 297
## 16078 297
## 16428 297
## 17414 297
## 18313 297
## 18399 297
## 18903 297
## 19303 297
## 19644 297
## 20080 297
## 20309 297
## 20615 297
## 20781 297
## 21151 297
## 21535 297
## 21754 297
## 22028 297
## 22161 297
## 22436 297
## 23327 297
## 24323 297
## 24675 297
## 25045 297
## 25265 297
## 26319 297
## 26741 297
## 26982 297
## 27380 297
## 28451 297
## 28989 297
## 29246 297
## 29532 297
## 29770 297
## 29986 297
## 30299 297
## 30474 297
## 30620 297
## 31098 297
## 31658 297
## 31863 297
## 32090 297
## 32385 297
## 32653 297
## 32929 297
## 33170 297
## 33537 297
## 34027 297
## 34320 297
## 34963 297
## 35369 297
## 35544 297
## 35782 297
## 35957 297
## 36223 297
## 36536 297
## 36878 297
## 37647 297
## 37858 297
## 38197 297
## 38355 297
## 38504 297
## 39206 297
## 39590 297
## 40519 297
## 40715 297
## 40829 297
## 41227 297
## 41448 297
## 41644 297
## 42067 297
## 42581 297
## 43020 297
## 43228 297
## 43416 297
## 43862 297
## 44417 297
## 45384 297
## 45648 297
## 46172 297
## 46505 297
## 46879 297
## 47126 297
## 47718 297
## 50358 297
## 51722 297
## 52491 297
## 53015 297
## 53636 297
## 57711 297
## 58149 297
## 58955 297
## 59228 297
## 59651 297
## 60036 297
## 60263 297
## 60375 297
## 60927 297
## 61590 297
## 62055 297
## 62550 297
## 62769 297
## 63342 297
## 63524 297
## 64258 297
## 65293 297
## 66133 297
## 66874 297
## 67057 297
## 68270 297
## 68549 297
## 68889 297
## 69413 297
## 71222 297
## 71661 297
## 72043 297
## 72564 297
## 72980 297
## 74059 297
## 74253 297
## 74396 297
## 75750 297
## 76500 297
## 77648 297
## 78480 297
## 78710 297
## 78883 297
## 79306 297
## 79535 297
## 80237 297
## 80654 297
## 81377 297
## 81887 297
## 82248 297
## 82526 297
## 82846 297
## 82989 297
## 83121 297
## 87158 297
## 88884 297
## 90162 297
## 91301 297
## 91815 297
## 92251 297
## 92378 297
## 94333 297
## 95080 297
## 95673 297
## 96862 297
## 97886 297
## 141 298
## 1454 298
## 1703 298
## 3616 298
## 3872 298
## 4689 298
## 6580 298
## 8020 298
## 9468 298
## 9994 298
## 10768 298
## 12036 298
## 12601 298
## 13641 298
## 13954 298
## 14263 298
## 16429 298
## 16843 298
## 17623 298
## 18000 298
## 18679 298
## 18904 298
## 19080 298
## 20081 298
## 20310 298
## 21152 298
## 21397 298
## 21536 298
## 23328 298
## 23968 298
## 24676 298
## 25633 298
## 26320 298
## 26983 298
## 27381 298
## 27616 298
## 27855 298
## 28802 298
## 28990 298
## 29247 298
## 29533 298
## 29771 298
## 30120 298
## 30300 298
## 30621 298
## 30869 298
## 31099 298
## 31379 298
## 31659 298
## 32091 298
## 32386 298
## 32654 298
## 32930 298
## 36537 298
## 38733 298
## 39207 298
## 40233 298
## 40520 298
## 41862 298
## 42068 298
## 42364 298
## 42849 298
## 43021 298
## 43417 298
## 43863 298
## 45649 298
## 48079 298
## 48877 298
## 49033 298
## 51370 298
## 52867 298
## 53016 298
## 55271 298
## 55803 298
## 57575 298
## 57712 298
## 58150 298
## 58548 298
## 58956 298
## 59229 298
## 59652 298
## 61591 298
## 62056 298
## 62407 298
## 62551 298
## 63128 298
## 63343 298
## 63754 298
## 63915 298
## 64125 298
## 64259 298
## 64372 298
## 65015 298
## 65294 298
## 65606 298
## 65652 298
## 65719 298
## 65990 298
## 66568 298
## 66875 298
## 67851 298
## 68117 298
## 68271 298
## 68640 298
## 69414 298
## 69659 298
## 72044 298
## 72565 298
## 72981 298
## 73151 298
## 74060 298
## 75595 298
## 75751 298
## 76629 298
## 77836 298
## 79536 298
## 81888 298
## 85630 298
## 86482 298
## 86635 298
## 87159 298
## 87262 298
## 90163 298
## 90381 298
## 91579 298
## 95799 298
## 98174 298
## 142 299
## 733 299
## 1132 299
## 1931 299
## 2313 299
## 2562 299
## 2736 299
## 3226 299
## 3314 299
## 3389 299
## 3873 299
## 4059 299
## 4276 299
## 4487 299
## 4690 299
## 5211 299
## 5988 299
## 6113 299
## 6243 299
## 6345 299
## 6581 299
## 7096 299
## 7445 299
## 7672 299
## 8021 299
## 8174 299
## 8249 299
## 8313 299
## 9157 299
## 9765 299
## 9995 299
## 10187 299
## 10318 299
## 10526 299
## 11097 299
## 11485 299
## 11734 299
## 12037 299
## 12272 299
## 12602 299
## 12848 299
## 12958 299
## 13113 299
## 13642 299
## 13955 299
## 14264 299
## 14546 299
## 14915 299
## 15542 299
## 15775 299
## 15826 299
## 16430 299
## 18001 299
## 18400 299
## 19081 299
## 19304 299
## 19508 299
## 19645 299
## 20082 299
## 20311 299
## 20939 299
## 21153 299
## 21398 299
## 21537 299
## 21755 299
## 23067 299
## 23129 299
## 23193 299
## 23329 299
## 23590 299
## 23704 299
## 23813 299
## 24324 299
## 24677 299
## 25046 299
## 25266 299
## 25787 299
## 26321 299
## 26742 299
## 27382 299
## 27617 299
## 28276 299
## 28452 299
## 28991 299
## 29772 299
## 29987 299
## 30622 299
## 31100 299
## 31545 299
## 31660 299
## 31864 299
## 32092 299
## 32387 299
## 32554 299
## 32655 299
## 33171 299
## 34028 299
## 34964 299
## 35187 299
## 36224 299
## 36538 299
## 36879 299
## 37092 299
## 37256 299
## 37405 299
## 37753 299
## 38198 299
## 38356 299
## 38655 299
## 38980 299
## 39208 299
## 39985 299
## 40374 299
## 41073 299
## 41228 299
## 41863 299
## 42069 299
## 42365 299
## 42649 299
## 43229 299
## 43602 299
## 43864 299
## 44418 299
## 44821 299
## 45650 299
## 46074 299
## 46173 299
## 46506 299
## 47127 299
## 47509 299
## 48080 299
## 48325 299
## 49034 299
## 49294 299
## 51371 299
## 52120 299
## 52282 299
## 52368 299
## 52492 299
## 52749 299
## 53637 299
## 54117 299
## 54381 299
## 54614 299
## 54980 299
## 55272 299
## 55492 299
## 55584 299
## 55804 299
## 56694 299
## 57576 299
## 58151 299
## 59230 299
## 59409 299
## 59653 299
## 61264 299
## 61365 299
## 62408 299
## 62552 299
## 62770 299
## 63221 299
## 63344 299
## 63525 299
## 63664 299
## 63755 299
## 63916 299
## 64126 299
## 64260 299
## 64433 299
## 64500 299
## 65016 299
## 65295 299
## 65501 299
## 65607 299
## 65653 299
## 66134 299
## 66313 299
## 66431 299
## 66569 299
## 66706 299
## 66769 299
## 66876 299
## 67058 299
## 67222 299
## 67290 299
## 67779 299
## 68550 299
## 68738 299
## 68989 299
## 69230 299
## 69415 299
## 69966 299
## 71383 299
## 71662 299
## 72045 299
## 72709 299
## 72892 299
## 72982 299
## 73262 299
## 73320 299
## 73671 299
## 74727 299
## 75001 299
## 75071 299
## 75126 299
## 75230 299
## 75312 299
## 75752 299
## 76060 299
## 76849 299
## 78884 299
## 79415 299
## 79937 299
## 80159 299
## 80655 299
## 80759 299
## 80819 299
## 80933 299
## 81042 299
## 81177 299
## 81566 299
## 81889 299
## 82249 299
## 82373 299
## 82766 299
## 83122 299
## 83155 299
## 84276 299
## 84577 299
## 84784 299
## 85307 299
## 85364 299
## 85631 299
## 86814 299
## 86968 299
## 87030 299
## 88204 299
## 88377 299
## 88815 299
## 88832 299
## 88885 299
## 88971 299
## 89746 299
## 90348 299
## 90477 299
## 90499 299
## 90611 299
## 90726 299
## 90798 299
## 90947 299
## 90960 299
## 91696 299
## 91764 299
## 91790 299
## 92531 299
## 92598 299
## 92630 299
## 93126 299
## 93213 299
## 93550 299
## 93752 299
## 93913 299
## 94231 299
## 94334 299
## 94398 299
## 95010 299
## 95319 299
## 95530 299
## 95780 299
## 96808 299
## 97032 299
## 97067 299
## 97094 299
## 97468 299
## 97935 299
## 98079 299
## 98278 299
## 98997 299
## 99000 299
## 14547 300
## 37648 300
## 39209 300
## 40234 300
## 40375 300
## 44419 300
## 45651 300
## 46507 300
## 49663 300
## 50747 300
## 56798 300
## 61046 300
## 78481 300
## 86242 300
## 87474 300
## 87686 300
## 90234 300
## 92121 300
## 94801 300
## 143 301
## 490 301
## 613 301
## 734 301
## 1133 301
## 1455 301
## 1704 301
## 2075 301
## 2314 301
## 2960 301
## 3227 301
## 3470 301
## 3617 301
## 4060 301
## 4277 301
## 4691 301
## 4911 301
## 5075 301
## 5297 301
## 5545 301
## 5674 301
## 5746 301
## 5858 301
## 6114 301
## 6582 301
## 7019 301
## 7197 301
## 7321 301
## 7673 301
## 8022 301
## 8395 301
## 8664 301
## 9009 301
## 9158 301
## 9265 301
## 9469 301
## 9996 301
## 10319 301
## 10436 301
## 10527 301
## 10769 301
## 11015 301
## 11098 301
## 11254 301
## 12038 301
## 12273 301
## 12490 301
## 12603 301
## 12959 301
## 13114 301
## 13364 301
## 13643 301
## 13956 301
## 14265 301
## 14548 301
## 15063 301
## 15335 301
## 15543 301
## 16079 301
## 16431 301
## 16661 301
## 16844 301
## 17165 301
## 17275 301
## 18002 301
## 18314 301
## 18680 301
## 18905 301
## 19764 301
## 19976 301
## 20083 301
## 20312 301
## 20501 301
## 20940 301
## 21154 301
## 21399 301
## 21538 301
## 21756 301
## 21907 301
## 22029 301
## 22162 301
## 22338 301
## 22437 301
## 22546 301
## 22736 301
## 22829 301
## 22942 301
## 23330 301
## 23969 301
## 24325 301
## 24678 301
## 25267 301
## 25788 301
## 26009 301
## 26322 301
## 26743 301
## 26984 301
## 27221 301
## 27618 301
## 27856 301
## 28453 301
## 28803 301
## 28992 301
## 29248 301
## 29534 301
## 29773 301
## 30121 301
## 30475 301
## 30623 301
## 30870 301
## 31101 301
## 31380 301
## 32093 301
## 32931 301
## 33172 301
## 33402 301
## 33538 301
## 33691 301
## 34029 301
## 34613 301
## 34780 301
## 34965 301
## 35188 301
## 35370 301
## 35545 301
## 35676 301
## 35783 301
## 36225 301
## 36539 301
## 37093 301
## 37257 301
## 37406 301
## 38357 301
## 38505 301
## 38734 301
## 39591 301
## 40521 301
## 40830 301
## 41229 301
## 41645 301
## 42366 301
## 42850 301
## 43022 301
## 43418 301
## 44420 301
## 45652 301
## 46326 301
## 46508 301
## 49035 301
## 49887 301
## 51372 301
## 51565 301
## 51893 301
## 53017 301
## 53424 301
## 53638 301
## 53993 301
## 54271 301
## 54615 301
## 54720 301
## 54981 301
## 55273 301
## 55431 301
## 55700 301
## 55805 301
## 55980 301
## 56152 301
## 56339 301
## 56635 301
## 56799 301
## 56890 301
## 57066 301
## 57198 301
## 57577 301
## 57713 301
## 57867 301
## 58152 301
## 58402 301
## 58467 301
## 58549 301
## 58862 301
## 59065 301
## 60037 301
## 60264 301
## 60666 301
## 60928 301
## 61047 301
## 61366 301
## 61592 301
## 61913 301
## 62553 301
## 63665 301
## 63917 301
## 65017 301
## 65502 301
## 65608 301
## 65654 301
## 66570 301
## 66877 301
## 67059 301
## 67465 301
## 67680 301
## 67852 301
## 68272 301
## 69416 301
## 69765 301
## 69918 301
## 70042 301
## 70259 301
## 70453 301
## 70616 301
## 70851 301
## 71301 301
## 71663 301
## 72046 301
## 72710 301
## 73152 301
## 73263 301
## 73321 301
## 73477 301
## 74508 301
## 74797 301
## 75596 301
## 76061 301
## 76414 301
## 76630 301
## 77104 301
## 77342 301
## 77649 301
## 78136 301
## 78309 301
## 78428 301
## 78885 301
## 79017 301
## 79416 301
## 79938 301
## 80381 301
## 80504 301
## 81043 301
## 81258 301
## 81448 301
## 81567 301
## 81890 301
## 82086 301
## 82250 301
## 83253 301
## 83367 301
## 83468 301
## 83739 301
## 84089 301
## 84131 301
## 84702 301
## 84964 301
## 85054 301
## 85632 301
## 85814 301
## 86143 301
## 86873 301
## 87160 301
## 87263 301
## 87413 301
## 90612 301
## 92122 301
## 92203 301
## 92379 301
## 92843 301
## 93075 301
## 93839 301
## 94399 301
## 94735 301
## 95151 301
## 95629 301
## 97115 301
## 97165 301
## 97755 301
## 37859 302
## 39592 302
## 40686 302
## 41074 302
## 41230 302
## 44822 302
## 45653 302
## 46327 302
## 46880 302
## 47719 302
## 47896 302
## 49664 302
## 49888 302
## 50748 302
## 51373 302
## 53235 302
## 82527 302
## 87839 302
## 91397 302
## 144 303
## 491 303
## 614 303
## 735 303
## 910 303
## 1134 303
## 1456 303
## 1705 303
## 2076 303
## 2315 303
## 2563 303
## 2961 303
## 3228 303
## 3471 303
## 3618 303
## 3874 303
## 4061 303
## 4278 303
## 4488 303
## 4692 303
## 4912 303
## 5076 303
## 5298 303
## 5434 303
## 5675 303
## 5747 303
## 5859 303
## 5912 303
## 6053 303
## 6115 303
## 6346 303
## 6583 303
## 7198 303
## 7322 303
## 7446 303
## 7674 303
## 8396 303
## 8504 303
## 8665 303
## 8881 303
## 9159 303
## 9266 303
## 9470 303
## 9766 303
## 9997 303
## 10188 303
## 10320 303
## 10528 303
## 10640 303
## 10770 303
## 11016 303
## 11099 303
## 11255 303
## 11486 303
## 11641 303
## 11876 303
## 12039 303
## 12491 303
## 12604 303
## 12739 303
## 12849 303
## 12960 303
## 13115 303
## 13365 303
## 13644 303
## 13957 303
## 14266 303
## 14549 303
## 15137 303
## 15336 303
## 15544 303
## 15882 303
## 16080 303
## 16432 303
## 16662 303
## 16845 303
## 17166 303
## 17276 303
## 17415 303
## 17624 303
## 18003 303
## 18315 303
## 18401 303
## 18681 303
## 19082 303
## 19646 303
## 19791 303
## 19907 303
## 20084 303
## 20313 303
## 20502 303
## 20616 303
## 20941 303
## 21155 303
## 21400 303
## 21539 303
## 21908 303
## 22030 303
## 22273 303
## 22339 303
## 22438 303
## 22547 303
## 22943 303
## 23194 303
## 23331 303
## 23705 303
## 23814 303
## 23970 303
## 24326 303
## 24679 303
## 25268 303
## 25789 303
## 26323 303
## 26744 303
## 26985 303
## 27222 303
## 27383 303
## 27619 303
## 27857 303
## 28454 303
## 28993 303
## 29249 303
## 29988 303
## 30301 303
## 30476 303
## 30624 303
## 30871 303
## 31102 303
## 31661 303
## 31865 303
## 32094 303
## 32932 303
## 33173 303
## 33539 303
## 33692 303
## 33864 303
## 34030 303
## 34321 303
## 34614 303
## 34781 303
## 34966 303
## 35189 303
## 35371 303
## 35546 303
## 35677 303
## 35784 303
## 35958 303
## 36226 303
## 36383 303
## 36540 303
## 36880 303
## 37094 303
## 37258 303
## 37407 303
## 37860 303
## 38066 303
## 38199 303
## 38358 303
## 38506 303
## 38656 303
## 38735 303
## 38981 303
## 39210 303
## 39593 303
## 39986 303
## 40133 303
## 40290 303
## 40376 303
## 40831 303
## 41075 303
## 41231 303
## 41646 303
## 42367 303
## 42582 303
## 42851 303
## 43023 303
## 43230 303
## 43419 303
## 43865 303
## 44216 303
## 44421 303
## 44823 303
## 45047 303
## 45142 303
## 45385 303
## 45654 303
## 46174 303
## 46509 303
## 47128 303
## 49036 303
## 49295 303
## 49486 303
## 49889 303
## 50099 303
## 50227 303
## 50359 303
## 50536 303
## 50749 303
## 51007 303
## 51374 303
## 51566 303
## 51894 303
## 53018 303
## 53236 303
## 53425 303
## 53469 303
## 53552 303
## 53639 303
## 53769 303
## 53804 303
## 53994 303
## 54038 303
## 54061 303
## 54208 303
## 54382 303
## 54483 303
## 54616 303
## 54721 303
## 54897 303
## 54982 303
## 55030 303
## 55081 303
## 55104 303
## 55274 303
## 55432 303
## 55493 303
## 55532 303
## 55546 303
## 55701 303
## 55806 303
## 55981 303
## 56153 303
## 56340 303
## 56695 303
## 56891 303
## 57067 303
## 57199 303
## 57283 303
## 57418 303
## 57578 303
## 57714 303
## 57868 303
## 57959 303
## 58153 303
## 58403 303
## 58468 303
## 58550 303
## 58957 303
## 59231 303
## 59410 303
## 59654 303
## 59830 303
## 60038 303
## 60471 303
## 60576 303
## 60667 303
## 60802 303
## 60929 303
## 61131 303
## 61226 303
## 61265 303
## 61367 303
## 61914 303
## 62409 303
## 62554 303
## 62771 303
## 62991 303
## 63129 303
## 63345 303
## 63526 303
## 63756 303
## 63918 303
## 64127 303
## 64671 303
## 65503 303
## 65609 303
## 65896 303
## 65991 303
## 66135 303
## 66878 303
## 67291 303
## 67387 303
## 68033 303
## 68739 303
## 68890 303
## 69096 303
## 69138 303
## 69187 303
## 69270 303
## 69319 303
## 69417 303
## 69660 303
## 69766 303
## 69888 303
## 69919 303
## 70043 303
## 70174 303
## 70260 303
## 70454 303
## 70528 303
## 70852 303
## 71029 303
## 71223 303
## 71245 303
## 71302 303
## 71384 303
## 71431 303
## 71664 303
## 71794 303
## 71945 303
## 72047 303
## 72300 303
## 72471 303
## 72566 303
## 72711 303
## 72983 303
## 73672 303
## 73734 303
## 73839 303
## 74144 303
## 74509 303
## 74728 303
## 74798 303
## 75496 303
## 75597 303
## 75814 303
## 75886 303
## 76062 303
## 76415 303
## 77105 303
## 77343 303
## 77650 303
## 77837 303
## 78310 303
## 78482 303
## 78886 303
## 79018 303
## 79235 303
## 79378 303
## 79537 303
## 79834 303
## 80160 303
## 80238 303
## 80426 303
## 80505 303
## 80561 303
## 80716 303
## 80877 303
## 81194 303
## 81259 303
## 81499 303
## 81568 303
## 81771 303
## 81891 303
## 82138 303
## 82251 303
## 82528 303
## 83254 303
## 83483 303
## 83616 303
## 83740 303
## 83885 303
## 84172 303
## 84277 303
## 84341 303
## 84386 303
## 84538 303
## 84578 303
## 84703 303
## 84785 303
## 85013 303
## 85030 303
## 85106 303
## 85195 303
## 85230 303
## 85365 303
## 85432 303
## 85633 303
## 85815 303
## 85873 303
## 86095 303
## 86144 303
## 86243 303
## 86393 303
## 86483 303
## 86550 303
## 86636 303
## 86815 303
## 86874 303
## 87264 303
## 87341 303
## 87359 303
## 87414 303
## 87475 303
## 87520 303
## 87633 303
## 88886 303
## 89253 303
## 89350 303
## 89856 303
## 89905 303
## 90032 303
## 90235 303
## 90423 303
## 90459 303
## 90548 303
## 90669 303
## 91192 303
## 91580 303
## 91680 303
## 91697 303
## 91816 303
## 92023 303
## 92123 303
## 92204 303
## 92252 303
## 92380 303
## 92631 303
## 92700 303
## 93035 303
## 93151 303
## 93214 303
## 93285 303
## 93318 303
## 93411 303
## 93479 303
## 93551 303
## 93664 303
## 93840 303
## 94289 303
## 94335 303
## 94609 303
## 94637 303
## 94658 303
## 94696 303
## 94765 303
## 94822 303
## 94846 303
## 94875 303
## 95081 303
## 95109 303
## 95269 303
## 95630 303
## 95800 303
## 95852 303
## 95965 303
## 96003 303
## 96041 303
## 96290 303
## 96337 303
## 96398 303
## 96419 303
## 96595 303
## 96735 303
## 96755 303
## 96823 303
## 96863 303
## 96898 303
## 96947 303
## 97013 303
## 97037 303
## 97068 303
## 97116 303
## 97166 303
## 97205 303
## 97254 303
## 97469 303
## 97565 303
## 97612 303
## 97634 303
## 97813 303
## 97955 303
## 98037 303
## 98127 303
## 98148 303
## 98449 303
## 98486 303
## 98594 303
## 99001 303
## 99004 303
## 99009 303
## 99010 303
## 15545 304
## 36541 304
## 37649 304
## 39987 304
## 41232 304
## 41864 304
## 42070 304
## 42650 304
## 43866 304
## 44422 304
## 45655 304
## 46175 304
## 46510 304
## 47954 304
## 48326 304
## 49665 304
## 49890 304
## 50750 304
## 52121 304
## 77914 304
## 77967 304
## 81892 304
## 83741 304
## 87840 304
## 88318 304
## 88378 304
## 145 305
## 492 305
## 1135 305
## 2077 305
## 2316 305
## 2564 305
## 2737 305
## 2962 305
## 3169 305
## 5299 305
## 5748 305
## 5989 305
## 6244 305
## 6347 305
## 6584 305
## 7097 305
## 7675 305
## 8175 305
## 8250 305
## 8314 305
## 8666 305
## 9010 305
## 9471 305
## 9767 305
## 9998 305
## 10437 305
## 10771 305
## 11100 305
## 11487 305
## 11735 305
## 11877 305
## 12040 305
## 12274 305
## 12605 305
## 13366 305
## 13645 305
## 13958 305
## 14550 305
## 16081 305
## 16846 305
## 18004 305
## 18402 305
## 18536 305
## 19083 305
## 19305 305
## 20085 305
## 20314 305
## 21156 305
## 21540 305
## 21757 305
## 22031 305
## 22439 305
## 22830 305
## 23068 305
## 23130 305
## 23332 305
## 23591 305
## 23706 305
## 23815 305
## 23971 305
## 24327 305
## 24680 305
## 25047 305
## 25269 305
## 25634 305
## 25790 305
## 26010 305
## 26324 305
## 26986 305
## 27223 305
## 27620 305
## 27858 305
## 28055 305
## 28196 305
## 28277 305
## 28455 305
## 28672 305
## 29250 305
## 29535 305
## 29774 305
## 29989 305
## 30122 305
## 30302 305
## 30477 305
## 30625 305
## 30872 305
## 31103 305
## 31546 305
## 31866 305
## 32095 305
## 32555 305
## 32782 305
## 32933 305
## 33174 305
## 34031 305
## 34322 305
## 34967 305
## 36542 305
## 36881 305
## 37095 305
## 37532 305
## 37861 305
## 38067 305
## 38359 305
## 38657 305
## 39211 305
## 39594 305
## 40832 305
## 41449 305
## 42071 305
## 43024 305
## 43603 305
## 43867 305
## 44217 305
## 44824 305
## 46176 305
## 46511 305
## 47129 305
## 47510 305
## 48081 305
## 48620 305
## 48878 305
## 49037 305
## 50360 305
## 50537 305
## 51723 305
## 52493 305
## 53019 305
## 54484 305
## 54722 305
## 55982 305
## 56341 305
## 56696 305
## 58154 305
## 58404 305
## 58551 305
## 58744 305
## 59066 305
## 59411 305
## 60668 305
## 61368 305
## 61549 305
## 61836 305
## 62057 305
## 62555 305
## 62772 305
## 63222 305
## 63346 305
## 63527 305
## 63757 305
## 63919 305
## 64128 305
## 64261 305
## 64373 305
## 65822 305
## 66571 305
## 66707 305
## 68273 305
## 68441 305
## 68551 305
## 68641 305
## 69767 305
## 70137 305
## 70617 305
## 71665 305
## 72712 305
## 72893 305
## 73478 305
## 74254 305
## 74510 305
## 74906 305
## 75497 305
## 75887 305
## 76063 305
## 76631 305
## 76939 305
## 77035 305
## 77838 305
## 78137 305
## 78429 305
## 78711 305
## 79735 305
## 79835 305
## 80064 305
## 80878 305
## 81178 305
## 81260 305
## 82529 305
## 82767 305
## 82990 305
## 84038 305
## 84278 305
## 84786 305
## 84843 305
## 85145 305
## 86637 305
## 87031 305
## 87116 305
## 88686 305
## 88972 305
## 89059 305
## 89940 305
## 90033 305
## 90207 305
## 90670 305
## 90695 305
## 90752 305
## 90961 305
## 92329 305
## 92532 305
## 94336 305
## 94400 305
## 94944 305
## 95025 305
## 97814 305
## 98487 305
## 98774 305
## 98931 305
## 99015 305
## 99021 305
## 2565 306
## 2738 306
## 3315 306
## 4279 306
## 14551 306
## 15546 306
## 15883 306
## 20942 306
## 36227 306
## 37533 306
## 39212 306
## 39595 306
## 40833 306
## 42072 306
## 43231 306
## 43604 306
## 43868 306
## 44218 306
## 44825 306
## 47601 306
## 49296 306
## 49487 306
## 62992 306
## 81772 306
## 82139 306
## 83368 306
## 87161 306
## 91904 306
## 92844 306
## 97417 306
## 99024 306
## 146 307
## 3472 307
## 3619 307
## 4062 307
## 4693 307
## 6585 307
## 7676 307
## 8397 307
## 8667 307
## 9768 307
## 9999 307
## 10189 307
## 11101 307
## 11256 307
## 11488 307
## 12275 307
## 12606 307
## 12961 307
## 14267 307
## 14552 307
## 14916 307
## 15337 307
## 15776 307
## 16847 307
## 18682 307
## 19306 307
## 20086 307
## 20503 307
## 21541 307
## 21758 307
## 22548 307
## 22831 307
## 22944 307
## 23333 307
## 23592 307
## 23972 307
## 24328 307
## 24681 307
## 25048 307
## 25635 307
## 26325 307
## 26987 307
## 27384 307
## 27621 307
## 28197 307
## 28804 307
## 29251 307
## 29536 307
## 29775 307
## 30303 307
## 31104 307
## 31867 307
## 32096 307
## 32783 307
## 32934 307
## 34032 307
## 34782 307
## 34968 307
## 35190 307
## 35372 307
## 37096 307
## 39213 307
## 39596 307
## 40522 307
## 40834 307
## 43869 307
## 48327 307
## 54272 307
## 55275 307
## 55433 307
## 55702 307
## 55807 307
## 55983 307
## 56697 307
## 57715 307
## 58155 307
## 58552 307
## 58745 307
## 59067 307
## 59412 307
## 60472 307
## 60577 307
## 61369 307
## 61489 307
## 62261 307
## 62556 307
## 63920 307
## 65823 307
## 66314 307
## 66572 307
## 67060 307
## 68274 307
## 68552 307
## 71534 307
## 72048 307
## 74511 307
## 74729 307
## 76064 307
## 76632 307
## 78483 307
## 79736 307
## 81378 307
## 81569 307
## 82252 307
## 86145 307
## 90288 307
## 92671 307
## 92845 307
## 94131 307
## 95110 307
## 95764 307
## 98488 307
## 147 308
## 736 308
## 911 308
## 1136 308
## 1457 308
## 1706 308
## 2078 308
## 2317 308
## 2963 308
## 3229 308
## 3316 308
## 3473 308
## 3620 308
## 3875 308
## 4063 308
## 4280 308
## 4694 308
## 4998 308
## 5077 308
## 5212 308
## 5749 308
## 5913 308
## 5990 308
## 6116 308
## 6245 308
## 6348 308
## 6586 308
## 7323 308
## 7447 308
## 7677 308
## 8023 308
## 8176 308
## 8251 308
## 8315 308
## 8668 308
## 8882 308
## 9011 308
## 9267 308
## 9472 308
## 9769 308
## 10000 308
## 10190 308
## 10321 308
## 10411 308
## 10529 308
## 10772 308
## 11102 308
## 11257 308
## 11642 308
## 11878 308
## 12041 308
## 12276 308
## 12607 308
## 12740 308
## 13116 308
## 13367 308
## 13646 308
## 13959 308
## 14268 308
## 14553 308
## 15200 308
## 15338 308
## 15884 308
## 16082 308
## 16433 308
## 16848 308
## 17167 308
## 17277 308
## 17416 308
## 18005 308
## 18403 308
## 18537 308
## 18683 308
## 18906 308
## 19084 308
## 19307 308
## 19792 308
## 19908 308
## 20087 308
## 20315 308
## 20617 308
## 20782 308
## 21157 308
## 21401 308
## 21542 308
## 21759 308
## 22032 308
## 22163 308
## 22440 308
## 22549 308
## 22737 308
## 22832 308
## 22945 308
## 23069 308
## 23131 308
## 23334 308
## 23593 308
## 23707 308
## 23816 308
## 23973 308
## 24682 308
## 25049 308
## 25270 308
## 25498 308
## 25636 308
## 25791 308
## 26011 308
## 26326 308
## 26745 308
## 26988 308
## 27224 308
## 27385 308
## 27622 308
## 27859 308
## 28456 308
## 28673 308
## 28805 308
## 28994 308
## 29252 308
## 29537 308
## 29776 308
## 29990 308
## 30123 308
## 30304 308
## 30478 308
## 30626 308
## 30873 308
## 31105 308
## 31381 308
## 31662 308
## 31868 308
## 32097 308
## 32388 308
## 32656 308
## 32784 308
## 32935 308
## 33175 308
## 33540 308
## 33693 308
## 34323 308
## 34615 308
## 35373 308
## 35547 308
## 35785 308
## 35959 308
## 36228 308
## 36543 308
## 36882 308
## 37097 308
## 37408 308
## 38200 308
## 38885 308
## 38982 308
## 39214 308
## 39988 308
## 40377 308
## 40523 308
## 41647 308
## 41865 308
## 42073 308
## 42368 308
## 43232 308
## 43420 308
## 43605 308
## 44423 308
## 45143 308
## 45386 308
## 45656 308
## 45998 308
## 46177 308
## 47897 308
## 48328 308
## 49038 308
## 49297 308
## 49488 308
## 49666 308
## 52868 308
## 53020 308
## 53504 308
## 53640 308
## 53902 308
## 54118 308
## 54485 308
## 54723 308
## 55168 308
## 55276 308
## 55494 308
## 55808 308
## 55984 308
## 56154 308
## 56698 308
## 56892 308
## 57068 308
## 57482 308
## 57716 308
## 57869 308
## 58156 308
## 58405 308
## 58553 308
## 58746 308
## 58863 308
## 58958 308
## 59232 308
## 59413 308
## 59538 308
## 59655 308
## 59831 308
## 60039 308
## 60265 308
## 60376 308
## 60473 308
## 60803 308
## 60930 308
## 61266 308
## 61490 308
## 61669 308
## 61711 308
## 61837 308
## 62058 308
## 62262 308
## 62410 308
## 62773 308
## 63130 308
## 63347 308
## 63528 308
## 63666 308
## 63758 308
## 63921 308
## 64129 308
## 64262 308
## 64374 308
## 64434 308
## 64501 308
## 64611 308
## 64735 308
## 64791 308
## 64847 308
## 64909 308
## 65018 308
## 65296 308
## 65420 308
## 65504 308
## 65610 308
## 65720 308
## 65824 308
## 65897 308
## 65992 308
## 66315 308
## 66432 308
## 66573 308
## 66708 308
## 66770 308
## 66879 308
## 67061 308
## 67223 308
## 67292 308
## 67466 308
## 67553 308
## 67681 308
## 67780 308
## 67853 308
## 68034 308
## 68118 308
## 68442 308
## 68642 308
## 68740 308
## 68950 308
## 69418 308
## 69768 308
## 70175 308
## 70261 308
## 70618 308
## 70755 308
## 70853 308
## 71030 308
## 71432 308
## 71504 308
## 71568 308
## 71666 308
## 71795 308
## 71833 308
## 72049 308
## 72198 308
## 72301 308
## 72713 308
## 72894 308
## 72984 308
## 73222 308
## 73322 308
## 73424 308
## 73479 308
## 73514 308
## 73587 308
## 73623 308
## 73673 308
## 73735 308
## 73807 308
## 74255 308
## 74397 308
## 74612 308
## 74667 308
## 74730 308
## 74869 308
## 75002 308
## 75072 308
## 75127 308
## 75260 308
## 75374 308
## 75439 308
## 75815 308
## 75888 308
## 76065 308
## 76228 308
## 76293 308
## 76501 308
## 76633 308
## 76762 308
## 76940 308
## 77036 308
## 77106 308
## 77219 308
## 77344 308
## 77465 308
## 77651 308
## 77839 308
## 78138 308
## 78430 308
## 78887 308
## 79019 308
## 79307 308
## 79538 308
## 79737 308
## 79836 308
## 80010 308
## 80161 308
## 80879 308
## 81044 308
## 81379 308
## 81570 308
## 81773 308
## 81893 308
## 82253 308
## 82374 308
## 83255 308
## 84039 308
## 84279 308
## 84787 308
## 85055 308
## 85107 308
## 85146 308
## 85308 308
## 85715 308
## 85816 308
## 85874 308
## 85959 308
## 86484 308
## 86514 308
## 86853 308
## 86930 308
## 87032 308
## 87117 308
## 88973 308
## 89351 308
## 89986 308
## 90109 308
## 90613 308
## 90727 308
## 90799 308
## 90822 308
## 90854 308
## 91791 308
## 92565 308
## 92632 308
## 92846 308
## 93448 308
## 93480 308
## 93552 308
## 94132 308
## 94337 308
## 94401 308
## 95270 308
## 95384 308
## 95428 308
## 95631 308
## 95765 308
## 95867 308
## 95984 308
## 96175 308
## 96550 308
## 96786 308
## 97425 308
## 97815 308
## 98423 308
## 98489 308
## 98562 308
## 98775 308
## 99031 308
## 37534 309
## 39597 309
## 43870 309
## 46512 309
## 47380 309
## 47602 309
## 49298 309
## 50100 309
## 50361 309
## 51073 309
## 51375 309
## 51567 309
## 78712 309
## 87841 309
## 89817 309
## 91468 309
## 92750 309
## 97887 309
## 98346 309
## 2739 310
## 4064 310
## 6587 310
## 15885 310
## 26327 310
## 34033 310
## 38658 310
## 39215 310
## 39598 310
## 41866 310
## 42074 310
## 45657 310
## 47381 310
## 68933 310
## 81701 310
## 82530 310
## 86216 310
## 86638 310
## 92672 310
## 95801 310
## 98317 310
## 148 311
## 912 311
## 1458 311
## 1707 311
## 2318 311
## 2964 311
## 3621 311
## 3876 311
## 4695 311
## 5078 311
## 5435 311
## 5546 311
## 5676 311
## 5860 311
## 5914 311
## 6117 311
## 6588 311
## 7020 311
## 7324 311
## 7678 311
## 8024 311
## 8398 311
## 8505 311
## 8669 311
## 9012 311
## 9268 311
## 9473 311
## 9770 311
## 10001 311
## 10191 311
## 10322 311
## 10438 311
## 10530 311
## 10773 311
## 11103 311
## 11258 311
## 11489 311
## 11736 311
## 12042 311
## 12277 311
## 12608 311
## 12962 311
## 13368 311
## 13647 311
## 13960 311
## 14269 311
## 14554 311
## 14917 311
## 16083 311
## 16434 311
## 16849 311
## 17625 311
## 18006 311
## 18538 311
## 18684 311
## 18907 311
## 19085 311
## 19308 311
## 19509 311
## 19909 311
## 20088 311
## 22550 311
## 23335 311
## 23708 311
## 23974 311
## 24329 311
## 24683 311
## 25271 311
## 25499 311
## 25637 311
## 25792 311
## 26012 311
## 26328 311
## 26989 311
## 27386 311
## 27623 311
## 27860 311
## 28056 311
## 28457 311
## 28674 311
## 28806 311
## 28995 311
## 29253 311
## 29538 311
## 29777 311
## 29991 311
## 30124 311
## 30305 311
## 30627 311
## 30874 311
## 31106 311
## 31382 311
## 31663 311
## 31869 311
## 32098 311
## 32389 311
## 32556 311
## 32657 311
## 32936 311
## 33176 311
## 33541 311
## 34034 311
## 34616 311
## 34783 311
## 34969 311
## 35191 311
## 35374 311
## 35548 311
## 35678 311
## 35786 311
## 35960 311
## 36883 311
## 37098 311
## 37409 311
## 39599 311
## 40524 311
## 42075 311
## 42369 311
## 43025 311
## 45658 311
## 46513 311
## 47603 311
## 47955 311
## 48621 311
## 49039 311
## 49489 311
## 49667 311
## 49891 311
## 50362 311
## 50971 311
## 52869 311
## 53021 311
## 53505 311
## 53553 311
## 53641 311
## 53903 311
## 54119 311
## 54273 311
## 54724 311
## 54898 311
## 54983 311
## 55169 311
## 55277 311
## 55585 311
## 55809 311
## 55985 311
## 56155 311
## 57380 311
## 57419 311
## 57483 311
## 57579 311
## 57717 311
## 57870 311
## 58157 311
## 58406 311
## 58747 311
## 59068 311
## 59233 311
## 59414 311
## 59832 311
## 60040 311
## 60162 311
## 60377 311
## 60474 311
## 60669 311
## 61593 311
## 61765 311
## 61838 311
## 61915 311
## 62059 311
## 63348 311
## 63529 311
## 63759 311
## 63922 311
## 64130 311
## 64263 311
## 64435 311
## 64672 311
## 64792 311
## 64848 311
## 64910 311
## 65019 311
## 65297 311
## 65421 311
## 65505 311
## 65721 311
## 65825 311
## 66316 311
## 66433 311
## 66574 311
## 67062 311
## 67388 311
## 67467 311
## 67554 311
## 67682 311
## 67854 311
## 68119 311
## 68275 311
## 68443 311
## 68643 311
## 69054 311
## 69661 311
## 69769 311
## 69967 311
## 70262 311
## 70455 311
## 70619 311
## 70854 311
## 71090 311
## 71303 311
## 71433 311
## 71569 311
## 71834 311
## 72050 311
## 72427 311
## 73153 311
## 73624 311
## 73929 311
## 73951 311
## 73985 311
## 74145 311
## 74454 311
## 74948 311
## 75128 311
## 75231 311
## 75375 311
## 75498 311
## 75598 311
## 75889 311
## 76066 311
## 76634 311
## 76763 311
## 76850 311
## 77220 311
## 77840 311
## 78139 311
## 78888 311
## 79308 311
## 79379 311
## 79417 311
## 79539 311
## 79738 311
## 80162 311
## 80239 311
## 80427 311
## 80611 311
## 80656 311
## 80729 311
## 80880 311
## 81045 311
## 81261 311
## 81571 311
## 82375 311
## 82531 311
## 82847 311
## 82991 311
## 83186 311
## 83256 311
## 83550 311
## 83940 311
## 84222 311
## 84280 311
## 84458 311
## 84539 311
## 84579 311
## 84864 311
## 84926 311
## 86639 311
## 86875 311
## 88974 311
## 89857 311
## 89941 311
## 89987 311
## 90070 311
## 90164 311
## 90382 311
## 90800 311
## 90823 311
## 90841 311
## 93076 311
## 93319 311
## 93371 311
## 93481 311
## 93753 311
## 94783 311
## 95227 311
## 95320 311
## 96864 311
## 96976 311
## 97014 311
## 97206 311
## 97907 311
## 98895 311
## 149 312
## 737 312
## 1459 312
## 1932 312
## 2740 312
## 3877 312
## 4696 312
## 6589 312
## 7098 312
## 7949 312
## 9474 312
## 9771 312
## 10002 312
## 11490 312
## 12278 312
## 12609 312
## 13369 312
## 13648 312
## 13961 312
## 14555 312
## 15777 312
## 16850 312
## 17417 312
## 18539 312
## 18685 312
## 18908 312
## 19086 312
## 19510 312
## 19647 312
## 20089 312
## 20316 312
## 21158 312
## 21402 312
## 21543 312
## 21760 312
## 22033 312
## 22164 312
## 23070 312
## 23132 312
## 23594 312
## 23709 312
## 23975 312
## 24330 312
## 24684 312
## 25050 312
## 25272 312
## 25500 312
## 25638 312
## 25793 312
## 26013 312
## 26329 312
## 26990 312
## 27387 312
## 27624 312
## 27861 312
## 28057 312
## 28198 312
## 28278 312
## 28458 312
## 28996 312
## 29254 312
## 29778 312
## 30125 312
## 31107 312
## 31383 312
## 31491 312
## 31547 312
## 31664 312
## 31870 312
## 32390 312
## 32658 312
## 32785 312
## 34035 312
## 34324 312
## 34970 312
## 35961 312
## 36884 312
## 37410 312
## 40525 312
## 40835 312
## 42076 312
## 42370 312
## 53022 312
## 53961 312
## 54486 312
## 56699 312
## 57331 312
## 57718 312
## 58554 312
## 58748 312
## 58864 312
## 58959 312
## 59234 312
## 59539 312
## 59656 312
## 60041 312
## 61196 312
## 61491 312
## 62557 312
## 63223 312
## 63349 312
## 63530 312
## 63667 312
## 63760 312
## 63923 312
## 64131 312
## 64264 312
## 64375 312
## 64436 312
## 64502 312
## 64560 312
## 64612 312
## 64673 312
## 64793 312
## 64849 312
## 64911 312
## 65020 312
## 65298 312
## 65422 312
## 65655 312
## 65826 312
## 65898 312
## 65993 312
## 66317 312
## 66434 312
## 66575 312
## 66709 312
## 66771 312
## 66880 312
## 67063 312
## 67224 312
## 67468 312
## 67555 312
## 67683 312
## 67981 312
## 68035 312
## 68120 312
## 68444 312
## 68553 312
## 68644 312
## 68741 312
## 68951 312
## 69231 312
## 70138 312
## 71192 312
## 71835 312
## 71972 312
## 72051 312
## 72199 312
## 72437 312
## 72567 312
## 72858 312
## 72895 312
## 72985 312
## 73154 312
## 73264 312
## 73323 312
## 73382 312
## 73425 312
## 73480 312
## 73515 312
## 73559 312
## item
## 1 Toy Story (1995)
## 453 GoldenEye (1995)
## 584 Four Rooms (1995)
## 674 Get Shorty (1995)
## 883 Copycat (1995)
## 969 Shanghai Triad (Yao a yao yao dao waipo qiao) (1995)
## 995 Twelve Monkeys (1995)
## 1387 Babe (1995)
## 1606 Dead Man Walking (1995)
## 1905 Richard III (1995)
## 1994 Seven (Se7en) (1995)
## 2230 Usual Suspects, The (1995)
## 2497 Mighty Aphrodite (1995)
## 2681 Postino, Il (1994)
## 2864 Mr. Holland's Opus (1995)
## 3157 French Twist (Gazon maudit) (1995)
## 3196 From Dusk Till Dawn (1996)
## 3288 White Balloon, The (1995)
## 3298 Antonia's Line (1995)
## 3367 Angels and Insects (1995)
## 3439 Muppet Treasure Island (1996)
## 3523 Braveheart (1995)
## 3820 Taxi Driver (1976)
## 4002 Rumble in the Bronx (1995)
## 4176 Birdcage, The (1996)
## 4469 Brothers McMullen, The (1995)
## 4542 Bad Boys (1995)
## 4599 Apollo 13 (1995)
## 4875 Batman Forever (1995)
## 4989 Belle de jour (1967)
## 5026 Crimson Tide (1995)
## 5180 Crumb (1994)
## 5261 Desperado (1995)
## 5358 Doom Generation, The (1995)
## 5365 Free Willy 2: The Adventure Home (1995)
## 5376 Mad Love (1995)
## 5389 Nadja (1994)
## 5397 Net, The (1995)
## 5517 Strange Days (1995)
## 5604 To Wong Foo, Thanks for Everything! Julie Newmar (1995)
## 5661 Billy Madison (1995)
## 5698 Clerks (1994)
## 5846 Disclosure (1994)
## 5886 Dolores Claiborne (1994)
## 5965 Eat Drink Man Woman (1994)
## 6045 Exotica (1994)
## 6072 Ed Wood (1994)
## 6205 Hoop Dreams (1994)
## 6322 I.Q. (1994)
## 6403 Star Wars (1977)
## 6986 Legends of the Fall (1994)
## 7067 Madness of King George, The (1994)
## 7158 Natural Born Killers (1994)
## 7286 Outbreak (1995)
## 7390 Professional, The (1994)
## 7539 Pulp Fiction (1994)
## 7933 Priest (1994)
## 7973 Quiz Show (1994)
## 8148 Three Colors: Red (1994)
## 8231 Three Colors: Blue (1993)
## 8295 Three Colors: White (1994)
## 8354 Stargate (1994)
## 8481 Santa Clause, The (1994)
## 8563 Shawshank Redemption, The (1994)
## 8846 What's Eating Gilbert Grape (1993)
## 8961 While You Were Sleeping (1995)
## 9123 Ace Ventura: Pet Detective (1994)
## 9226 Crow, The (1994)
## 9360 Forrest Gump (1994)
## 9681 Four Weddings and a Funeral (1994)
## 9932 Lion King, The (1994)
## 10152 Mask, The (1994)
## 10281 Maverick (1994)
## 10409 Faster Pussycat! Kill! Kill! (1965)
## 10416 Brother Minister: The Assassination of Malcolm X (1994)
## 10421 Carlito's Way (1993)
## 10475 Firm, The (1993)
## 10626 Free Willy (1993)
## 10659 Fugitive, The (1993)
## 10995 Hot Shots! Part Deux (1993)
## 11063 Hudsucker Proxy, The (1994)
## 11173 Jurassic Park (1993)
## 11434 Much Ado About Nothing (1993)
## 11610 Robert A. Heinlein's The Puppet Masters (1994)
## 11628 Ref, The (1994)
## 11686 Remains of the Day, The (1993)
## 11836 Searching for Bobby Fischer (1993)
## 11974 Sleepless in Seattle (1993)
## 12187 Blade Runner (1982)
## 12462 So I Married an Axe Murderer (1993)
## 12557 Nightmare Before Christmas, The (1993)
## 12700 True Romance (1993)
## 12804 Welcome to the Dollhouse (1995)
## 12916 Home Alone (1990)
## 13053 Aladdin (1992)
## 13272 Terminator 2: Judgment Day (1991)
## 13567 Dances with Wolves (1990)
## 13823 Silence of the Lambs, The (1991)
## 14213 Snow White and the Seven Dwarfs (1937)
## 14385 Fargo (1996)
## 14893 Heavy Metal (1981)
## 14966 Aristocats, The (1970)
## 15020 All Dogs Go to Heaven 2 (1996)
## 15035 Theodore Rex (1995)
## 15040 Sgt. Bilko (1996)
## 15114 Diabolique (1996)
## 15185 Moll Flanders (1996)
## 15227 Kids in the Hall: Brain Candy (1996)
## 15292 Mystery Science Theater 3000: The Movie (1996)
## 15422 Operation Dumbo Drop (1995)
## 15453 Truth About Cats & Dogs, The (1996)
## 15725 Flipper (1996)
## 15745 Horseman on the Roof, The (Hussard sur le toit, Le) (1995)
## 15754 Wallace & Gromit: The Best of Aardman Animation (1996)
## 15821 Haunted World of Edward D. Wood Jr., The (1995)
## 15836 Cold Comfort Farm (1995)
## 15961 Rock, The (1996)
## 16339 Twister (1996)
## 16632 Maya Lin: A Strong Clear Vision (1994)
## 16636 Striptease (1996)
## 16703 Independence Day (ID4) (1996)
## 17132 Cable Guy, The (1996)
## 17238 Frighteners, The (1996)
## 17353 Lone Star (1996)
## 17540 Phenomenon (1996)
## 17784 Spitfire Grill, The (1996)
## 17881 Godfather, The (1972)
## 18294 Supercop (1992)
## 18359 Bound (1996)
## 18488 Kansas City (1996)
## 18511 Breakfast at Tiffany's (1961)
## 18606 Wizard of Oz, The (1939)
## 18852 Gone with the Wind (1939)
## 19023 Citizen Kane (1941)
## 19221 2001: A Space Odyssey (1968)
## 19480 Mr. Smith Goes to Washington (1939)
## 19585 Big Night (1996)
## 19756 D3: The Mighty Ducks (1996)
## 19775 Love Bug, The (1969)
## 19825 Homeward Bound: The Incredible Journey (1993)
## 19886 20,000 Leagues Under the Sea (1954)
## 19958 Bedknobs and Broomsticks (1971)
## 20015 Sound of Music, The (1965)
## 20237 Die Hard (1988)
## 20480 Lawnmower Man, The (1992)
## 20545 Unhook the Stars (1996)
## 20555 Long Kiss Goodnight, The (1996)
## 20740 Ghost and the Darkness, The (1996)
## 20868 Jude (1996)
## 20891 Swingers (1996)
## 21048 Willy Wonka and the Chocolate Factory (1971)
## 21374 Sleeper (1973)
## 21456 Fish Called Wanda, A (1988)
## 21703 Monty Python's Life of Brian (1979)
## 21877 Dirty Dancing (1987)
## 21975 Reservoir Dogs (1992)
## 22123 Platoon (1986)
## 22250 Weekend at Bernie's (1989)
## 22310 Basic Instinct (1992)
## 22411 Glengarry Glen Ross (1992)
## 22480 Top Gun (1986)
## 22700 On Golden Pond (1981)
## 22806 Return of the Pink Panther, The (1974)
## 22898 Abyss, The (1989)
## 23049 Jean de Florette (1986)
## 23113 Manon of the Spring (Manon des sources) (1986)
## 23171 Private Benjamin (1980)
## 23238 Monty Python and the Holy Grail (1974)
## 23554 Wrong Trousers, The (1993)
## 23672 Cinema Paradiso (1988)
## 23793 Delicatessen (1991)
## 23858 Empire Strikes Back, The (1980)
## 24225 Princess Bride, The (1987)
## 24549 Raiders of the Lost Ark (1981)
## 24969 Brazil (1985)
## 25177 Aliens (1986)
## 25461 Good, The Bad and The Ugly, The (1966)
## 25598 12 Angry Men (1957)
## 25723 Clockwork Orange, A (1971)
## 25944 Apocalypse Now (1979)
## 26165 Return of the Jedi (1983)
## 26672 GoodFellas (1990)
## 26898 Alien (1979)
## 27189 Army of Darkness (1993)
## 27305 Psycho (1960)
## 27544 Blues Brothers, The (1980)
## 27795 Godfather: Part II, The (1974)
## 28004 Full Metal Jacket (1987)
## 28174 Grand Day Out, A (1992)
## 28240 Henry V (1989)
## 28364 Amadeus (1984)
## 28640 Raging Bull (1980)
## 28756 Right Stuff, The (1983)
## 28913 Sting, The (1973)
## 29154 Terminator, The (1984)
## 29455 Dead Poets Society (1989)
## 29706 Graduate, The (1967)
## 29945 Nikita (La Femme Nikita) (1990)
## 30072 Bridge on the River Kwai, The (1957)
## 30237 Shining, The (1980)
## 30443 Evil Dead II (1987)
## 30532 Groundhog Day (1993)
## 30812 Unforgiven (1992)
## 30994 Back to the Future (1985)
## 31344 Patton (1970)
## 31480 Akira (1988)
## 31530 Cyrano de Bergerac (1990)
## 31596 Young Frankenstein (1974)
## 31796 This Is Spinal Tap (1984)
## 31987 Indiana Jones and the Last Crusade (1989)
## 32318 M*A*S*H (1970)
## 32524 Unbearable Lightness of Being, The (1988)
## 32616 Room with a View, A (1986)
## 32750 Pink Floyd - The Wall (1982)
## 32864 Field of Dreams (1989)
## 33076 When Harry Met Sally... (1989)
## 33366 Bram Stoker's Dracula (1992)
## 33486 Cape Fear (1991)
## 33657 Nightmare on Elm Street, A (1984)
## 33768 Mirror Has Two Faces, The (1996)
## 33834 Breaking the Waves (1996)
## 33908 Star Trek: First Contact (1996)
## 34273 Sling Blade (1996)
## 34409 Ridicule (1996)
## 34453 101 Dalmatians (1996)
## 34562 Die Hard 2 (1990)
## 34728 Star Trek VI: The Undiscovered Country (1991)
## 34889 Star Trek: The Wrath of Khan (1982)
## 35133 Star Trek III: The Search for Spock (1984)
## 35304 Star Trek IV: The Voyage Home (1986)
## 35503 Batman Returns (1992)
## 35645 Young Guns (1988)
## 35746 Under Siege (1992)
## 35870 Jaws (1975)
## 36150 Mars Attacks! (1996)
## 36367 Citizen Ruth (1996)
## 36412 Jerry Maguire (1996)
## 36796 Raising Arizona (1987)
## 37052 Sneakers (1992)
## 37202 Beavis and Butt-head Do America (1996)
## 37358 Last of the Mohicans, The (1992)
## 37486 Kolya (1996)
## 37603 Jungle2Jungle (1997)
## 37735 Smilla's Sense of Snow (1997)
## 37783 Devil's Own, The (1997)
## 38023 Chasing Amy (1997)
## 38147 Turbo: A Power Rangers Movie (1997)
## 38152 Grosse Pointe Blank (1997)
## 38312 Austin Powers: International Man of Mystery (1997)
## 38442 Fifth Element, The (1997)
## 38639 Shall We Dance? (1996)
## 38685 Lost World: Jurassic Park, The (1997)
## 38843 Pillow Book, The (1995)
## 38869 Batman & Robin (1997)
## 38931 My Best Friend's Wedding (1997)
## 39103 When the Cats Away (Chacun cherche son chat) (1996)
## 39119 Men in Black (1997)
## 39422 Contact (1997)
## 39931 George of the Jungle (1997)
## 40093 Event Horizon (1997)
## 40220 Air Bud (1997)
## 40263 In the Company of Men (1997)
## 40329 Steel (1997)
## 40348 Mimic (1997)
## 40449 Hunt for Red October, The (1990)
## 40676 Kull the Conqueror (1997)
## 40711 unknown
## 40720 Full Monty, The (1997)
## 41035 Gattaca (1997)
## 41171 Starship Troopers (1997)
## 41382 Good Will Hunting (1997)
## 2 Toy Story (1995)
## 1906 Richard III (1995)
## 2498 Mighty Aphrodite (1995)
## 2682 Postino, Il (1994)
## 3299 Antonia's Line (1995)
## 4177 Birdcage, The (1996)
## 6404 Star Wars (1977)
## 14386 Fargo (1996)
## 15454 Truth About Cats & Dogs, The (1996)
## 17882 Godfather, The (1972)
## 36413 Jerry Maguire (1996)
## 37487 Kolya (1996)
## 38640 Shall We Dance? (1996)
## 38932 My Best Friend's Wedding (1997)
## 39120 Men in Black (1997)
## 39423 Contact (1997)
## 40721 Full Monty, The (1997)
## 41383 Good Will Hunting (1997)
## 41580 Heat (1995)
## 41803 Sabrina (1995)
## 41993 Sense and Sensibility (1995)
## 42261 Leaving Las Vegas (1995)
## 42559 Restoration (1995)
## 42630 Bed of Roses (1996)
## 42690 Once Upon a Time... When We Were Colored (1995)
## 42718 Up Close and Personal (1996)
## 42803 River Wild, The (1994)
## 42949 Time to Kill, A (1996)
## 43181 Emma (1996)
## 43358 Tin Cup (1996)
## 43551 Secrets & Lies (1996)
## 43713 English Patient, The (1996)
## 44194 Marvin's Room (1996)
## 44272 Scream (1996)
## 44750 Evita (1996)
## 45009 Fierce Creatures (1997)
## 45105 Absolute Power (1997)
## 45232 Rosewood (1997)
## 45346 Donnie Brasco (1997)
## 45493 Liar Liar (1997)
## 45978 Breakdown (1997)
## 46055 Promesse, La (1996)
## 46061 Ulee's Gold (1997)
## 46111 Face/Off (1997)
## 46305 Hoodlum (1997)
## 46378 Air Force One (1997)
## 46809 In & Out (1997)
## 47039 L.A. Confidential (1997)
## 47336 Fly Away Home (1996)
## 47485 Ice Storm, The (1997)
## 47572 Mrs. Brown (Her Majesty, Mrs. Brown) (1997)
## 47668 Devil's Advocate, The (1997)
## 47856 FairyTale: A True Story (1997)
## 47886 Deceiver (1997)
## 47914 Rainmaker, The (1997)
## 48059 Wings of the Dove, The (1997)
## 48134 Midnight in the Garden of Good and Evil (1997)
## 48214 Titanic (1997)
## 48564 3 Ninjas: High Noon At Mega Mountain (1998)
## 48569 Apt Pupil (1998)
## 48729 As Good As It Gets (1997)
## 26166 Return of the Jedi (1983)
## 37784 Devil's Own, The (1997)
## 39424 Contact (1997)
## 40094 Event Horizon (1997)
## 40349 Mimic (1997)
## 41172 Starship Troopers (1997)
## 41384 Good Will Hunting (1997)
## 44273 Scream (1996)
## 45494 Liar Liar (1997)
## 46306 Hoodlum (1997)
## 46379 Air Force One (1997)
## 47040 L.A. Confidential (1997)
## 47669 Devil's Advocate, The (1997)
## 48841 In the Name of the Father (1993)
## 48943 Schindler's List (1993)
## 49241 Everyone Says I Love You (1996)
## 49409 Paradise Lost: The Child Murders at Robin Hood Hills (1996)
## 49429 Mother (1996)
## 49598 Murder at 1600 (1997)
## 49816 Dante's Peak (1997)
## 50056 Lost Highway (1997)
## 50181 Crash (1996)
## 50309 G.I. Jane (1997)
## 50484 Cop Land (1997)
## 50659 Conspiracy Theory (1997)
## 50954 Desperate Measures (1998)
## 50999 187 (1997)
## 51040 Edge, The (1997)
## 51153 Kiss the Girls (1997)
## 51296 Game, The (1997)
## 51547 U Turn (1997)
## 51611 How to Be a Player (1997)
## 51632 Playing God (1997)
## 51675 House of Yes, The (1997)
## 51693 Bean (1997)
## 51784 Mad City (1997)
## 51831 Boogie Nights (1997)
## 52020 Critical Care (1997)
## 52031 Man Who Knew Too Little, The (1997)
## 52083 Alien: Resurrection (1997)
## 52207 Apostle, The (1997)
## 52262 Deconstructing Harry (1997)
## 52327 Jackie Brown (1997)
## 52453 Wag the Dog (1997)
## 52590 Hard Rain (1998)
## 52621 Fallen (1998)
## 52662 Prophecy II, The (1998)
## 52682 Spice World (1997)
## 52708 Deep Rising (1998)
## 52722 Wedding Singer, The (1998)
## 52794 Sphere (1998)
## 1995 Seven (Se7en) (1995)
## 6405 Star Wars (1977)
## 31988 Indiana Jones and the Last Crusade (1989)
## 39425 Contact (1997)
## 40095 Event Horizon (1997)
## 40350 Mimic (1997)
## 41173 Starship Troopers (1997)
## 44274 Scream (1996)
## 45495 Liar Liar (1997)
## 46380 Air Force One (1997)
## 46810 In & Out (1997)
## 50057 Lost Highway (1997)
## 50485 Cop Land (1997)
## 50660 Conspiracy Theory (1997)
## 50955 Desperate Measures (1998)
## 52723 Wedding Singer, The (1998)
## 52835 Client, The (1994)
## 52932 One Flew Over the Cuckoo's Nest (1975)
## 53196 Spawn (1997)
## 53339 Assignment, The (1997)
## 53357 Wonderland (1997)
## 53367 Incognito (1997)
## 53377 Blues Brothers 2000 (1998)
## 3 Toy Story (1995)
## 454 GoldenEye (1995)
## 3197 From Dusk Till Dawn (1996)
## 3440 Muppet Treasure Island (1996)
## 4003 Rumble in the Bronx (1995)
## 4178 Birdcage, The (1996)
## 4876 Batman Forever (1995)
## 5605 To Wong Foo, Thanks for Everything! Julie Newmar (1995)
## 5699 Clerks (1994)
## 6406 Star Wars (1977)
## 8355 Stargate (1994)
## 8482 Santa Clause, The (1994)
## 8962 While You Were Sleeping (1995)
## 9361 Forrest Gump (1994)
## 9682 Four Weddings and a Funeral (1994)
## 10660 Fugitive, The (1993)
## 10996 Hot Shots! Part Deux (1993)
## 12188 Blade Runner (1982)
## 12463 So I Married an Axe Murderer (1993)
## 12917 Home Alone (1990)
## 13054 Aladdin (1992)
## 13824 Silence of the Lambs, The (1991)
## 14214 Snow White and the Seven Dwarfs (1937)
## 14387 Fargo (1996)
## 14894 Heavy Metal (1981)
## 14967 Aristocats, The (1970)
## 15041 Sgt. Bilko (1996)
## 15293 Mystery Science Theater 3000: The Movie (1996)
## 15423 Operation Dumbo Drop (1995)
## 16704 Independence Day (ID4) (1996)
## 19222 2001: A Space Odyssey (1968)
## 19776 Love Bug, The (1969)
## 20016 Sound of Music, The (1965)
## 20238 Die Hard (1988)
## 20481 Lawnmower Man, The (1992)
## 21049 Willy Wonka and the Chocolate Factory (1971)
## 21457 Fish Called Wanda, A (1988)
## 21704 Monty Python's Life of Brian (1979)
## 22701 On Golden Pond (1981)
## 22807 Return of the Pink Panther, The (1974)
## 23172 Private Benjamin (1980)
## 23239 Monty Python and the Holy Grail (1974)
## 23555 Wrong Trousers, The (1993)
## 23859 Empire Strikes Back, The (1980)
## 24226 Princess Bride, The (1987)
## 24550 Raiders of the Lost Ark (1981)
## 25178 Aliens (1986)
## 26167 Return of the Jedi (1983)
## 26899 Alien (1979)
## 27306 Psycho (1960)
## 27545 Blues Brothers, The (1980)
## 28175 Grand Day Out, A (1992)
## 28914 Sting, The (1973)
## 30238 Shining, The (1980)
## 30995 Back to the Future (1985)
## 31597 Young Frankenstein (1974)
## 31797 This Is Spinal Tap (1984)
## 31989 Indiana Jones and the Last Crusade (1989)
## 32319 M*A*S*H (1970)
## 32751 Pink Floyd - The Wall (1982)
## 33077 When Harry Met Sally... (1989)
## 33658 Nightmare on Elm Street, A (1984)
## 33909 Star Trek: First Contact (1996)
## 34454 101 Dalmatians (1996)
## 34563 Die Hard 2 (1990)
## 34729 Star Trek VI: The Undiscovered Country (1991)
## 34890 Star Trek: The Wrath of Khan (1982)
## 35134 Star Trek III: The Search for Spock (1984)
## 35305 Star Trek IV: The Voyage Home (1986)
## 35504 Batman Returns (1992)
## 35747 Under Siege (1992)
## 35871 Jaws (1975)
## 36151 Mars Attacks! (1996)
## 37053 Sneakers (1992)
## 37359 Last of the Mohicans, The (1992)
## 37604 Jungle2Jungle (1997)
## 38443 Fifth Element, The (1997)
## 39121 Men in Black (1997)
## 39932 George of the Jungle (1997)
## 40712 unknown
## 53405 Sudden Death (1995)
## 53452 Ace Ventura: When Nature Calls (1995)
## 53489 Powder (1995)
## 53537 Dangerous Minds (1995)
## 53584 Clueless (1995)
## 53754 Bio-Dome (1996)
## 53785 Black Sheep (1996)
## 53840 Mary Reilly (1996)
## 53879 Bridges of Madison County, The (1995)
## 53946 Jeffrey (1995)
## 53980 Judge Dredd (1995)
## 54019 Mighty Morphin Power Rangers: The Movie (1995)
## 54030 Showgirls (1995)
## 54053 Houseguest (1994)
## 54077 Heavyweights (1994)
## 54090 Miracle on 34th Street (1994)
## 54191 Tales From the Crypt Presents: Demon Knight (1995)
## 54234 Star Trek: Generations (1994)
## 54350 Muriel's Wedding (1994)
## 54450 Adventures of Priscilla, Queen of the Desert, The (1994)
## 54561 Flintstones, The (1994)
## 54592 Naked Gun 33 1/3: The Final Insult (1994)
## 54661 True Lies (1994)
## 54869 Addams Family Values (1993)
## 54956 Age of Innocence, The (1993)
## 55021 Beverly Hills Cop III (1994)
## 55049 Black Beauty (1994)
## 55076 Fear of a Black Hat (1993)
## 55086 Last Action Hero (1993)
## 55145 Man Without a Face, The (1993)
## 55213 Mrs. Doubtfire (1993)
## 55405 Radioland Murders (1994)
## 55417 Robin Hood: Men in Tights (1993)
## 55473 Serial Mom (1994)
## 55527 Striking Distance (1993)
## 55539 Super Mario Bros. (1993)
## 55565 Three Musketeers, The (1993)
## 55654 Little Rascals, The (1994)
## 55672 Brady Bunch Movie, The (1995)
## 55748 Ghost (1990)
## 55918 Batman (1989)
## 56119 Pinocchio (1940)
## 56220 Mission: Impossible (1996)
## 56564 Thinner (1996)
## 56613 Spy Hard (1996)
## 56656 Close Shave, A (1995)
## 56768 Jack (1996)
## 56838 Kingpin (1996)
## 57000 Nutty Professor, The (1996)
## 57163 Very Brady Sequel, A (1996)
## 57256 Tales from the Crypt Presents: Bordello of Blood (1996)
## 57311 My Favorite Year (1982)
## 57373 Apple Dumpling Gang, The (1975)
## 57398 Old Yeller (1957)
## 57462 Parent Trap, The (1961)
## 57535 Cinderella (1950)
## 57664 Mary Poppins (1964)
## 57842 Alice in Wonderland (1951)
## 57923 William Shakespeare's Romeo and Juliet (1996)
## 58029 Aladdin and the King of Thieves (1996)
## 58055 E.T. the Extra-Terrestrial (1982)
## 58355 Children of the Corn: The Gathering (1996)
## 58374 Bob Roberts (1992)
## 58459 Transformers: The Movie, The (1986)
## 58491 To Kill a Mockingbird (1962)
## 58710 Harold and Maude (1971)
## 58831 Day the Earth Stood Still, The (1951)
## 58928 Duck Soup (1933)
## 59021 Highlander (1986)
## 59174 Fantasia (1940)
## 59348 Heathers (1989)
## 59519 Forbidden Planet (1956)
## 59586 Butch Cassidy and the Sundance Kid (1969)
## 59802 American Werewolf in London, An (1981)
## 59901 Amityville 1992: It's About Time (1992)
## 59906 Amityville 3-D (1983)
## 59912 Amityville: A New Generation (1993)
## 59917 Amityville II: The Possession (1982)
## 59931 Amityville Horror, The (1979)
## 59984 Amityville Curse, The (1990)
## 59988 Birds, The (1963)
## 60150 Blob, The (1958)
## 60196 Body Snatcher, The (1945)
## 60218 Burnt Offerings (1976)
## 60227 Carrie (1976)
## 60348 Omen, The (1976)
## 60433 Star Trek: The Motion Picture (1979)
## 60550 Star Trek V: The Final Frontier (1989)
## 60613 Grease (1978)
## 60783 Jaws 2 (1978)
## 60849 Jaws 3-D (1983)
## 60865 Bastard Out of Carolina (1996)
## 60881 Jackie Chan's First Strike (1996)
## 61026 Beverly Hills Ninja (1997)
## 61074 Free Willy 3: The Rescue (1997)
## 4 Toy Story (1995)
## 996 Twelve Monkeys (1995)
## 1388 Babe (1995)
## 1607 Dead Man Walking (1995)
## 2231 Usual Suspects, The (1995)
## 2499 Mighty Aphrodite (1995)
## 2683 Postino, Il (1994)
## 2865 Mr. Holland's Opus (1995)
## 3300 Antonia's Line (1995)
## 3441 Muppet Treasure Island (1996)
## 3524 Braveheart (1995)
## 3821 Taxi Driver (1976)
## 4600 Apollo 13 (1995)
## 5181 Crumb (1994)
## 6073 Ed Wood (1994)
## 6407 Star Wars (1977)
## 7540 Pulp Fiction (1994)
## 8149 Three Colors: Red (1994)
## 8564 Shawshank Redemption, The (1994)
## 9362 Forrest Gump (1994)
## 9683 Four Weddings and a Funeral (1994)
## 9933 Lion King, The (1994)
## 10661 Fugitive, The (1993)
## 11064 Hudsucker Proxy, The (1994)
## 11687 Remains of the Day, The (1993)
## 11837 Searching for Bobby Fischer (1993)
## 12189 Blade Runner (1982)
## 13055 Aladdin (1992)
## 13825 Silence of the Lambs, The (1991)
## 14388 Fargo (1996)
## 15455 Truth About Cats & Dogs, The (1996)
## 15962 Rock, The (1996)
## 17354 Lone Star (1996)
## 17541 Phenomenon (1996)
## 17883 Godfather, The (1972)
## 18512 Breakfast at Tiffany's (1961)
## 18607 Wizard of Oz, The (1939)
## 18853 Gone with the Wind (1939)
## 19024 Citizen Kane (1941)
## 19223 2001: A Space Odyssey (1968)
## 19481 Mr. Smith Goes to Washington (1939)
## 19586 Big Night (1996)
## 20017 Sound of Music, The (1965)
## 21050 Willy Wonka and the Chocolate Factory (1971)
## 21458 Fish Called Wanda, A (1988)
## 21705 Monty Python's Life of Brian (1979)
## 21976 Reservoir Dogs (1992)
## 23050 Jean de Florette (1986)
## 23114 Manon of the Spring (Manon des sources) (1986)
## 23240 Monty Python and the Holy Grail (1974)
## 23556 Wrong Trousers, The (1993)
## 23673 Cinema Paradiso (1988)
## 24227 Princess Bride, The (1987)
## 24551 Raiders of the Lost Ark (1981)
## 24970 Brazil (1985)
## 25462 Good, The Bad and The Ugly, The (1966)
## 25599 12 Angry Men (1957)
## 25945 Apocalypse Now (1979)
## 26673 GoodFellas (1990)
## 26900 Alien (1979)
## 27307 Psycho (1960)
## 27546 Blues Brothers, The (1980)
## 27796 Godfather: Part II, The (1974)
## 28005 Full Metal Jacket (1987)
## 28176 Grand Day Out, A (1992)
## 28365 Amadeus (1984)
## 28641 Raging Bull (1980)
## 28757 Right Stuff, The (1983)
## 28915 Sting, The (1973)
## 29155 Terminator, The (1984)
## 29707 Graduate, The (1967)
## 30073 Bridge on the River Kwai, The (1957)
## 30239 Shining, The (1980)
## 30533 Groundhog Day (1993)
## 30813 Unforgiven (1992)
## 30996 Back to the Future (1985)
## 31345 Patton (1970)
## 31598 Young Frankenstein (1974)
## 31798 This Is Spinal Tap (1984)
## 32320 M*A*S*H (1970)
## 32617 Room with a View, A (1986)
## 33078 When Harry Met Sally... (1989)
## 33835 Breaking the Waves (1996)
## 34274 Sling Blade (1996)
## 36414 Jerry Maguire (1996)
## 36797 Raising Arizona (1987)
## 37488 Kolya (1996)
## 38024 Chasing Amy (1997)
## 38153 Grosse Pointe Blank (1997)
## 39122 Men in Black (1997)
## 39426 Contact (1997)
## 39933 George of the Jungle (1997)
## 40221 Air Bud (1997)
## 40722 Full Monty, The (1997)
## 41385 Good Will Hunting (1997)
## 41804 Sabrina (1995)
## 41994 Sense and Sensibility (1995)
## 42262 Leaving Las Vegas (1995)
## 43359 Tin Cup (1996)
## 43552 Secrets & Lies (1996)
## 43714 English Patient, The (1996)
## 45347 Donnie Brasco (1997)
## 45496 Liar Liar (1997)
## 46062 Ulee's Gold (1997)
## 46112 Face/Off (1997)
## 46811 In & Out (1997)
## 47041 L.A. Confidential (1997)
## 47337 Fly Away Home (1996)
## 47573 Mrs. Brown (Her Majesty, Mrs. Brown) (1997)
## 47857 FairyTale: A True Story (1997)
## 47887 Deceiver (1997)
## 47915 Rainmaker, The (1997)
## 48842 In the Name of the Father (1993)
## 48944 Schindler's List (1993)
## 49430 Mother (1996)
## 51832 Boogie Nights (1997)
## 52933 One Flew Over the Cuckoo's Nest (1975)
## 53585 Clueless (1995)
## 56221 Mission: Impossible (1996)
## 56657 Close Shave, A (1995)
## 56839 Kingpin (1996)
## 57665 Mary Poppins (1964)
## 58056 E.T. the Extra-Terrestrial (1982)
## 58375 Bob Roberts (1992)
## 58492 To Kill a Mockingbird (1962)
## 59175 Fantasia (1940)
## 59587 Butch Cassidy and the Sundance Kid (1969)
## 61101 Nixon (1995)
## 61191 Cry, the Beloved Country (1995)
## 61215 Crossing Guard, The (1995)
## 61243 Smoke (1995)
## 61317 Like Water For Chocolate (Como agua para chocolate) (1992)
## 61465 Secret of Roan Inish, The (1994)
## 61536 Vanya on 42nd Street (1994)
## 61563 Jungle Book, The (1994)
## 61648 Red Rock West (1992)
## 61700 Bronx Tale, A (1993)
## 61748 Rudy (1993)
## 61812 Short Cuts (1993)
## 61879 Tombstone (1993)
## 61987 Courage Under Fire (1996)
## 62208 Dragonheart (1996)
## 62366 James and the Giant Peach (1996)
## 62492 Dr. Strangelove or: How I Learned to Stop Worrying and Love the Bomb (1963)
## 62686 Trainspotting (1996)
## 62936 First Wives Club, The (1996)
## 63096 Matilda (1996)
## 63191 Philadelphia Story, The (1940)
## 63295 Vertigo (1958)
## 63474 North by Northwest (1959)
## 63653 Apartment, The (1960)
## 63716 Some Like It Hot (1959)
## 63844 Casablanca (1942)
## 64087 Maltese Falcon, The (1941)
## 64225 My Fair Lady (1964)
## 64350 Sabrina (1954)
## 64414 Roman Holiday (1953)
## 64482 Sunset Blvd. (1950)
## 64547 Notorious (1946)
## 64599 To Catch a Thief (1955)
## 64649 Adventures of Robin Hood, The (1938)
## 64716 East of Eden (1955)
## 64775 Thin Man, The (1934)
## 64835 His Girl Friday (1940)
## 64891 Around the World in 80 Days (1956)
## 64950 It's a Wonderful Life (1946)
## 65181 Bringing Up Baby (1938)
## 65249 African Queen, The (1951)
## 65401 Cat on a Hot Tin Roof (1958)
## 65463 Dumbo (1941)
## 65586 Bananas (1971)
## 65643 Candidate, The (1972)
## 65682 Bonnie and Clyde (1967)
## 65804 Dial M for Murder (1954)
## 65872 Rebel Without a Cause (1955)
## 65962 Streetcar Named Desire, A (1951)
## 66060 People vs. Larry Flynt, The (1996)
## 66275 My Left Foot (1989)
## 66396 Magnificent Seven, The (1954)
## 66517 Lawrence of Arabia (1962)
## 66690 Wings of Desire (1987)
## 66747 Third Man, The (1949)
## 66819 Annie Hall (1977)
## 66999 Boot, Das (1981)
## 67200 Local Hero (1983)
## 67263 Manhattan (1979)
## 67354 Miller's Crossing (1990)
## 67443 Treasure of the Sierra Madre, The (1948)
## 67523 Great Escape, The (1963)
## 67647 Deer Hunter, The (1978)
## 67767 Down by Law (1986)
## 67802 Cool Hand Luke (1967)
## 67966 Great Dictator, The (1940)
## 68012 Big Sleep, The (1946)
## 68085 Ben-Hur (1959)
## 68209 Gandhi (1982)
## 68404 Killing Fields, The (1984)
## 68525 My Life as a Dog (Mitt liv som hund) (1985)
## 68618 Man Who Would Be King, The (1975)
## 68698 Shine (1996)
## 68827 Kama Sutra: A Tale of Love (1996)
## 68849 Daytrippers, The (1996)
## 68864 Traveller (1997)
## 68877 Addicted to Love (1997)
## 68931 Ponette (1996)
## 68941 My Own Private Idaho (1991)
## 68971 Anastasia (1997)
## 69037 Mouse Hunt (1997)
## 675 Get Shorty (1995)
## 997 Twelve Monkeys (1995)
## 1389 Babe (1995)
## 1608 Dead Man Walking (1995)
## 1907 Richard III (1995)
## 1996 Seven (Se7en) (1995)
## 2232 Usual Suspects, The (1995)
## 3525 Braveheart (1995)
## 3822 Taxi Driver (1976)
## 4179 Birdcage, The (1996)
## 4543 Bad Boys (1995)
## 4601 Apollo 13 (1995)
## 4877 Batman Forever (1995)
## 5027 Crimson Tide (1995)
## 5182 Crumb (1994)
## 5518 Strange Days (1995)
## 5887 Dolores Claiborne (1994)
## 6074 Ed Wood (1994)
## 6408 Star Wars (1977)
## 6987 Legends of the Fall (1994)
## 7068 Madness of King George, The (1994)
## 7159 Natural Born Killers (1994)
## 7287 Outbreak (1995)
## 7541 Pulp Fiction (1994)
## 8356 Stargate (1994)
## 8565 Shawshank Redemption, The (1994)
## 9227 Crow, The (1994)
## 9363 Forrest Gump (1994)
## 9684 Four Weddings and a Funeral (1994)
## 9934 Lion King, The (1994)
## 10153 Mask, The (1994)
## 10282 Maverick (1994)
## 10476 Firm, The (1993)
## 10627 Free Willy (1993)
## 10662 Fugitive, The (1993)
## 10997 Hot Shots! Part Deux (1993)
## 11065 Hudsucker Proxy, The (1994)
## 11174 Jurassic Park (1993)
## 11688 Remains of the Day, The (1993)
## 12190 Blade Runner (1982)
## 12464 So I Married an Axe Murderer (1993)
## 12558 Nightmare Before Christmas, The (1993)
## 12701 True Romance (1993)
## 12805 Welcome to the Dollhouse (1995)
## 13273 Terminator 2: Judgment Day (1991)
## 13568 Dances with Wolves (1990)
## 13826 Silence of the Lambs, The (1991)
## 14215 Snow White and the Seven Dwarfs (1937)
## 14389 Fargo (1996)
## 14895 Heavy Metal (1981)
## 15115 Diabolique (1996)
## 16340 Twister (1996)
## 16705 Independence Day (ID4) (1996)
## 17542 Phenomenon (1996)
## 17785 Spitfire Grill, The (1996)
## 17884 Godfather, The (1972)
## 18513 Breakfast at Tiffany's (1961)
## 18608 Wizard of Oz, The (1939)
## 18854 Gone with the Wind (1939)
## 19025 Citizen Kane (1941)
## 19224 2001: A Space Odyssey (1968)
## 19482 Mr. Smith Goes to Washington (1939)
## 19777 Love Bug, The (1969)
## 19826 Homeward Bound: The Incredible Journey (1993)
## 19887 20,000 Leagues Under the Sea (1954)
## 19959 Bedknobs and Broomsticks (1971)
## 20018 Sound of Music, The (1965)
## 20239 Die Hard (1988)
## 20482 Lawnmower Man, The (1992)
## 21051 Willy Wonka and the Chocolate Factory (1971)
## 21375 Sleeper (1973)
## 21459 Fish Called Wanda, A (1988)
## 21706 Monty Python's Life of Brian (1979)
## 21977 Reservoir Dogs (1992)
## 22124 Platoon (1986)
## 22481 Top Gun (1986)
## 22702 On Golden Pond (1981)
## 22808 Return of the Pink Panther, The (1974)
## 22899 Abyss, The (1989)
## 23115 Manon of the Spring (Manon des sources) (1986)
## 23241 Monty Python and the Holy Grail (1974)
## 23794 Delicatessen (1991)
## 23860 Empire Strikes Back, The (1980)
## 24228 Princess Bride, The (1987)
## 24552 Raiders of the Lost Ark (1981)
## 24971 Brazil (1985)
## 25179 Aliens (1986)
## 25463 Good, The Bad and The Ugly, The (1966)
## 25600 12 Angry Men (1957)
## 25724 Clockwork Orange, A (1971)
## 25946 Apocalypse Now (1979)
## 26168 Return of the Jedi (1983)
## 26674 GoodFellas (1990)
## 26901 Alien (1979)
## 27308 Psycho (1960)
## 27547 Blues Brothers, The (1980)
## 27797 Godfather: Part II, The (1974)
## 28006 Full Metal Jacket (1987)
## 28241 Henry V (1989)
## 28366 Amadeus (1984)
## 28642 Raging Bull (1980)
## 28758 Right Stuff, The (1983)
## 28916 Sting, The (1973)
## 29156 Terminator, The (1984)
## 29456 Dead Poets Society (1989)
## 29708 Graduate, The (1967)
## 29946 Nikita (La Femme Nikita) (1990)
## 30074 Bridge on the River Kwai, The (1957)
## 30240 Shining, The (1980)
## 30444 Evil Dead II (1987)
## 30534 Groundhog Day (1993)
## 30814 Unforgiven (1992)
## 30997 Back to the Future (1985)
## 31346 Patton (1970)
## 31531 Cyrano de Bergerac (1990)
## 31599 Young Frankenstein (1974)
## 31990 Indiana Jones and the Last Crusade (1989)
## 32321 M*A*S*H (1970)
## 32525 Unbearable Lightness of Being, The (1988)
## 32618 Room with a View, A (1986)
## 32752 Pink Floyd - The Wall (1982)
## 32865 Field of Dreams (1989)
## 33079 When Harry Met Sally... (1989)
## 33367 Bram Stoker's Dracula (1992)
## 33659 Nightmare on Elm Street, A (1984)
## 34275 Sling Blade (1996)
## 34564 Die Hard 2 (1990)
## 34730 Star Trek VI: The Undiscovered Country (1991)
## 34891 Star Trek: The Wrath of Khan (1982)
## 35135 Star Trek III: The Search for Spock (1984)
## 35306 Star Trek IV: The Voyage Home (1986)
## 35505 Batman Returns (1992)
## 35646 Young Guns (1988)
## 35872 Jaws (1975)
## 36415 Jerry Maguire (1996)
## 36798 Raising Arizona (1987)
## 37360 Last of the Mohicans, The (1992)
## 39427 Contact (1997)
## 39934 George of the Jungle (1997)
## 40096 Event Horizon (1997)
## 40351 Mimic (1997)
## 40450 Hunt for Red October, The (1990)
## 40677 Kull the Conqueror (1997)
## 40723 Full Monty, The (1997)
## 41581 Heat (1995)
## 41995 Sense and Sensibility (1995)
## 42804 River Wild, The (1994)
## 43553 Secrets & Lies (1996)
## 43715 English Patient, The (1996)
## 44275 Scream (1996)
## 45497 Liar Liar (1997)
## 46381 Air Force One (1997)
## 47670 Devil's Advocate, The (1997)
## 47888 Deceiver (1997)
## 48843 In the Name of the Father (1993)
## 48945 Schindler's List (1993)
## 50058 Lost Highway (1997)
## 51548 U Turn (1997)
## 52021 Critical Care (1997)
## 52836 Client, The (1994)
## 52934 One Flew Over the Cuckoo's Nest (1975)
## 53490 Powder (1995)
## 53586 Clueless (1995)
## 54091 Miracle on 34th Street (1994)
## 54192 Tales From the Crypt Presents: Demon Knight (1995)
## 54235 Star Trek: Generations (1994)
## 54451 Adventures of Priscilla, Queen of the Desert, The (1994)
## 54593 Naked Gun 33 1/3: The Final Insult (1994)
## 54662 True Lies (1994)
## 54870 Addams Family Values (1993)
## 54957 Age of Innocence, The (1993)
## 55050 Black Beauty (1994)
## 55087 Last Action Hero (1993)
## 55214 Mrs. Doubtfire (1993)
## 55474 Serial Mom (1994)
## 55566 Three Musketeers, The (1993)
## 55673 Brady Bunch Movie, The (1995)
## 55749 Ghost (1990)
## 55919 Batman (1989)
## 56120 Pinocchio (1940)
## 56222 Mission: Impossible (1996)
## 57374 Apple Dumpling Gang, The (1975)
## 57399 Old Yeller (1957)
## 57463 Parent Trap, The (1961)
## 57536 Cinderella (1950)
## 57666 Mary Poppins (1964)
## 57843 Alice in Wonderland (1951)
## 57924 William Shakespeare's Romeo and Juliet (1996)
## 58057 E.T. the Extra-Terrestrial (1982)
## 58493 To Kill a Mockingbird (1962)
## 58711 Harold and Maude (1971)
## 58832 Day the Earth Stood Still, The (1951)
## 58929 Duck Soup (1933)
## 59022 Highlander (1986)
## 59176 Fantasia (1940)
## 59349 Heathers (1989)
## 59520 Forbidden Planet (1956)
## 59588 Butch Cassidy and the Sundance Kid (1969)
## 59803 American Werewolf in London, An (1981)
## 59918 Amityville II: The Possession (1982)
## 59932 Amityville Horror, The (1979)
## 59989 Birds, The (1963)
## 60151 Blob, The (1958)
## 60219 Burnt Offerings (1976)
## 60228 Carrie (1976)
## 60349 Omen, The (1976)
## 60434 Star Trek: The Motion Picture (1979)
## 60551 Star Trek V: The Final Frontier (1989)
## 60614 Grease (1978)
## 60784 Jaws 2 (1978)
## 60882 Jackie Chan's First Strike (1996)
## 61244 Smoke (1995)
## 61466 Secret of Roan Inish, The (1994)
## 61564 Jungle Book, The (1994)
## 61880 Tombstone (1993)
## 61988 Courage Under Fire (1996)
## 62209 Dragonheart (1996)
## 62493 Dr. Strangelove or: How I Learned to Stop Worrying and Love the Bomb (1963)
## 63296 Vertigo (1958)
## 63475 North by Northwest (1959)
## 63654 Apartment, The (1960)
## 63717 Some Like It Hot (1959)
## 63845 Casablanca (1942)
## 64088 Maltese Falcon, The (1941)
## 64226 My Fair Lady (1964)
## 64415 Roman Holiday (1953)
## 64483 Sunset Blvd. (1950)
## 64548 Notorious (1946)
## 64650 Adventures of Robin Hood, The (1938)
## 64717 East of Eden (1955)
## 64892 Around the World in 80 Days (1956)
## 64951 It's a Wonderful Life (1946)
## 65182 Bringing Up Baby (1938)
## 65250 African Queen, The (1951)
## 65402 Cat on a Hot Tin Roof (1958)
## 65464 Dumbo (1941)
## 65587 Bananas (1971)
## 65644 Candidate, The (1972)
## 65683 Bonnie and Clyde (1967)
## 65805 Dial M for Murder (1954)
## 65873 Rebel Without a Cause (1955)
## 65963 Streetcar Named Desire, A (1951)
## 66276 My Left Foot (1989)
## 66397 Magnificent Seven, The (1954)
## 66518 Lawrence of Arabia (1962)
## 66748 Third Man, The (1949)
## 66820 Annie Hall (1977)
## 67000 Boot, Das (1981)
## 67444 Treasure of the Sierra Madre, The (1948)
## 67524 Great Escape, The (1963)
## 67648 Deer Hunter, The (1978)
## 67803 Cool Hand Luke (1967)
## 68086 Ben-Hur (1959)
## 68210 Gandhi (1982)
## 68405 Killing Fields, The (1984)
## 68526 My Life as a Dog (Mitt liv som hund) (1985)
## 68619 Man Who Would Be King, The (1975)
## 68942 My Own Private Idaho (1991)
## 69081 Money Train (1995)
## 69124 Mortal Kombat (1995)
## 69173 Pocahontas (1995)
## 69224 Miserables, Les (1995)
## 69245 Things to Do in Denver when You're Dead (1995)
## 69316 Vampire in Brooklyn (1995)
## 69328 Broken Arrow (1996)
## 69582 Young Poisoner's Handbook, The (1995)
## 69623 NeverEnding Story III, The (1994)
## 69635 Rob Roy (1995)
## 69727 Die Hard: With a Vengeance (1995)
## 69878 Lord of Illusions (1995)
## 69902 Species (1995)
## 69947 Walk in the Clouds, A (1995)
## 70010 Waterworld (1995)
## 70112 White Man's Burden (1995)
## 70122 Wild Bill (1995)
## 70134 Farinelli: il castrato (1994)
## 70151 Heavenly Creatures (1994)
## 70221 Interview with the Vampire (1994)
## 70358 Kid in King Arthur's Court, A (1995)
## 70380 Mary Shelley's Frankenstein (1994)
## 70439 Quick and the Dead, The (1995)
## 70487 Stephen King's The Langoliers (1995)
## 70516 Tales from the Hood (1995)
## 70543 Village of the Damned (1995)
## 70565 Clear and Present Danger (1994)
## 70744 Wes Craven's New Nightmare (1994)
## 70779 Speed (1994)
## 71009 Wolf (1994)
## 71076 Wyatt Earp (1994)
## 71126 Another Stakeout (1993)
## 71154 Blown Away (1994)
## 71183 Body Snatchers (1993)
## 71216 Boxing Helena (1993)
## 71231 City Slickers II: The Legend of Curly's Gold (1994)
## 71275 Cliffhanger (1993)
## 71368 Coneheads (1993)
## 71409 Demolition Man (1993)
## 71501 Fatal Instinct (1993)
## 71520 Englishman Who Went Up a Hill, But Came Down a Mountain, The (1995)
## 71552 Kalifornia (1993)
## 71611 Piano, The (1993)
## 71779 Romeo Is Bleeding (1993)
## 71816 Secret Garden, The (1993)
## 71895 Son in Law (1993)
## 71934 Terminal Velocity (1994)
## 71968 Hour of the Pig, The (1993)
## 71982 Beauty and the Beast (1991)
## 72184 Wild Bunch, The (1969)
## 72227 Hellraiser: Bloodline (1996)
## 72245 Primal Fear (1996)
## 72423 True Crime (1995)
## 72432 Stalingrad (1993)
## 72444 Heavy (1995)
## 72449 Fan, The (1996)
## 72513 Hunchback of Notre Dame, The (1996)
## 72640 Eraser (1996)
## 72846 Big Squeeze, The (1996)
## 72850 Police Story 4: Project S (Chao ji ji hua) (1993)
## 72851 Daniel Defoe's Robinson Crusoe (1996)
## 72853 For Whom the Bell Tolls (1943)
## 72873 American in Paris, An (1951)
## 72923 Rear Window (1954)
## 73132 It Happened One Night (1934)
## 73213 Meet Me in St. Louis (1944)
## 73244 All About Eve (1950)
## 73310 Rebecca (1940)
## 73376 Spellbound (1945)
## 73406 Father of the Bride (1950)
## 73466 Gigi (1958)
## 73507 Laura (1944)
## 73547 Lost Horizon (1937)
## 73581 My Man Godfrey (1936)
## 73608 Giant (1956)
## 73659 39 Steps, The (1935)
## 73718 Night of the Living Dead (1968)
## 73782 Blue Angel, The (Blaue Engel, Der) (1930)
## 73800 Picnic (1955)
## 73818 Extreme Measures (1996)
## 73882 Chamber, The (1996)
## 73925 Davy Crockett, King of the Wild Frontier (1955)
## 73936 Swiss Family Robinson (1960)
## 73975 Angels in the Outfield (1994)
## 74014 Three Caballeros, The (1945)
## 74036 Sword in the Stone, The (1963)
## 74118 So Dear to My Heart (1949)
## 74122 Robin Hood: Prince of Thieves (1991)
## 74197 Sleepers (1996)
## 74366 Victor/Victoria (1982)
## 74443 Great Race, The (1965)
## 74474 Crying Game, The (1992)
## 74593 Sophie's Choice (1982)
## 74651 Christmas Carol, A (1938)
## 74720 Microcosmos: Le peuple de l'herbe (1996)
## 74744 Fog, The (1980)
## 74767 Escape from New York (1981)
## 74858 Howling, The (1981)
## 74896 Return of Martin Guerre, The (Retour de Martin Guerre, Le) (1982)
## 74940 Tin Drum, The (Blechtrommel, Die) (1979)
## 74980 Cook the Thief His Wife & Her Lover, The (1989)
## 75062 Paths of Glory (1957)
## 75095 Grifters, The (1990)
## 75184 The Innocent (1994)
## 75188 Thin Blue Line, The (1988)
## 75223 Paris Is Burning (1990)
## 75250 Once Upon a Time in the West (1969)
## 75288 Ran (1985)
## 75358 Quiet Man, The (1952)
## 75425 Once Upon a Time in America (1984)
## 75475 Seventh Seal, The (Sjunde inseglet, Det) (1957)
## 75547 Glory (1989)
## 75718 Rosencrantz and Guildenstern Are Dead (1990)
## 75808 Touch of Evil (1958)
## 75842 Chinatown (1974)
## 75989 Stand by Me (1986)
## 76216 M (1931)
## 76260 Manchurian Candidate, The (1962)
## 76391 Pump Up the Volume (1990)
## 76470 Arsenic and Old Lace (1944)
## 76585 Fried Green Tomatoes (1991)
## 76738 High Noon (1952)
## 76826 Somewhere in Time (1980)
## 76908 Being There (1979)
## 77024 Paris, Texas (1984)
## 77070 Alien 3 (1992)
## 77170 Blood For Dracula (Andy Warhol's Dracula) (1974)
## 77175 Audrey Rose (1977)
## 77187 Blood Beach (1981)
## 77193 Body Parts (1991)
## 77206 Bride of Frankenstein (1935)
## 77252 Candyman (1992)
## 77317 Cape Fear (1962)
## 77403 Cat People (1982)
## 77451 Nosferatu (Nosferatu, eine Symphonie des Grauens) (1922)
## 77505 Crucible, The (1996)
## 77582 Fire on the Mountain (1996)
## 77583 Volcano (1997)
## 77802 Conan the Barbarian (1981)
## 77909 Wishmaster (1997)
## 77936 I Know What You Did Last Summer (1997)
## 78036 Rocket Man (1997)
## 998 Twelve Monkeys (1995)
## 1997 Seven (Se7en) (1995)
## 3526 Braveheart (1995)
## 6409 Star Wars (1977)
## 7391 Professional, The (1994)
## 7542 Pulp Fiction (1994)
## 10663 Fugitive, The (1993)
## 11175 Jurassic Park (1993)
## 12191 Blade Runner (1982)
## 13274 Terminator 2: Judgment Day (1991)
## 17885 Godfather, The (1972)
## 20240 Die Hard (1988)
## 23861 Empire Strikes Back, The (1980)
## 24553 Raiders of the Lost Ark (1981)
## 25180 Aliens (1986)
## 25464 Good, The Bad and The Ugly, The (1966)
## 26169 Return of the Jedi (1983)
## 26675 GoodFellas (1990)
## 26902 Alien (1979)
## 27798 Godfather: Part II, The (1974)
## 28007 Full Metal Jacket (1987)
## 28242 Henry V (1989)
## 29157 Terminator, The (1984)
## 31991 Indiana Jones and the Last Crusade (1989)
## 33910 Star Trek: First Contact (1996)
## 34731 Star Trek VI: The Undiscovered Country (1991)
## 34892 Star Trek: The Wrath of Khan (1982)
## 35136 Star Trek III: The Search for Spock (1984)
## 35748 Under Siege (1992)
## 37361 Last of the Mohicans, The (1992)
## 37605 Jungle2Jungle (1997)
## 39428 Contact (1997)
## 39935 George of the Jungle (1997)
## 40097 Event Horizon (1997)
## 41582 Heat (1995)
## 45498 Liar Liar (1997)
## 46812 In & Out (1997)
## 51633 Playing God (1997)
## 51694 Bean (1997)
## 52022 Critical Care (1997)
## 53197 Spawn (1997)
## 54663 True Lies (1994)
## 55920 Batman (1989)
## 59023 Highlander (1986)
## 59589 Butch Cassidy and the Sundance Kid (1969)
## 61075 Free Willy 3: The Rescue (1997)
## 66398 Magnificent Seven, The (1954)
## 66519 Lawrence of Arabia (1962)
## 67355 Miller's Crossing (1990)
## 69728 Die Hard: With a Vengeance (1995)
## 70566 Clear and Present Danger (1994)
## 70780 Speed (1994)
## 75548 Glory (1989)
## 78085 In the Line of Fire (1993)
## 78254 Executive Decision (1996)
## 78411 Perfect World, A (1993)
## 78461 McHale's Navy (1997)
## 78530 Leave It to Beaver (1997)
## 78574 Jackal, The (1997)
## 970 Shanghai Triad (Yao a yao yao dao waipo qiao) (1995)
## 999 Twelve Monkeys (1995)
## 6410 Star Wars (1977)
## 30445 Evil Dead II (1987)
## 37489 Kolya (1996)
## 42263 Leaving Las Vegas (1995)
## 43716 English Patient, The (1996)
## 45499 Liar Liar (1997)
## 46113 Face/Off (1997)
## 51833 Boogie Nights (1997)
## 53880 Bridges of Madison County, The (1995)
## 54664 True Lies (1994)
## 55750 Ghost (1990)
## 63297 Vertigo (1958)
## 63846 Casablanca (1942)
## 64416 Roman Holiday (1953)
## 65964 Streetcar Named Desire, A (1951)
## 67649 Deer Hunter, The (1978)
## 68211 Gandhi (1982)
## 73660 39 Steps, The (1935)
## 78661 Seven Years in Tibet (1997)
## 78816 Dark City (1998)
## 5 Toy Story (1995)
## 676 Get Shorty (1995)
## 1000 Twelve Monkeys (1995)
## 1609 Dead Man Walking (1995)
## 1998 Seven (Se7en) (1995)
## 2233 Usual Suspects, The (1995)
## 2500 Mighty Aphrodite (1995)
## 3158 French Twist (Gazon maudit) (1995)
## 3527 Braveheart (1995)
## 3823 Taxi Driver (1976)
## 5183 Crumb (1994)
## 5262 Desperado (1995)
## 5606 To Wong Foo, Thanks for Everything! Julie Newmar (1995)
## 6206 Hoop Dreams (1994)
## 6411 Star Wars (1977)
## 7543 Pulp Fiction (1994)
## 8150 Three Colors: Red (1994)
## 8232 Three Colors: Blue (1993)
## 8566 Shawshank Redemption, The (1994)
## 9364 Forrest Gump (1994)
## 9685 Four Weddings and a Funeral (1994)
## 11176 Jurassic Park (1993)
## 11629 Ref, The (1994)
## 12806 Welcome to the Dollhouse (1995)
## 13827 Silence of the Lambs, The (1991)
## 14216 Snow White and the Seven Dwarfs (1937)
## 14390 Fargo (1996)
## 15837 Cold Comfort Farm (1995)
## 17355 Lone Star (1996)
## 17886 Godfather, The (1972)
## 18360 Bound (1996)
## 18609 Wizard of Oz, The (1939)
## 18855 Gone with the Wind (1939)
## 19026 Citizen Kane (1941)
## 19225 2001: A Space Odyssey (1968)
## 19587 Big Night (1996)
## 20241 Die Hard (1988)
## 21460 Fish Called Wanda, A (1988)
## 21878 Dirty Dancing (1987)
## 21978 Reservoir Dogs (1992)
## 22125 Platoon (1986)
## 22412 Glengarry Glen Ross (1992)
## 22482 Top Gun (1986)
## 22703 On Golden Pond (1981)
## 22900 Abyss, The (1989)
## 23242 Monty Python and the Holy Grail (1974)
## 23674 Cinema Paradiso (1988)
## 24554 Raiders of the Lost Ark (1981)
## 24972 Brazil (1985)
## 25181 Aliens (1986)
## 25601 12 Angry Men (1957)
## 25725 Clockwork Orange, A (1971)
## 25947 Apocalypse Now (1979)
## 26676 GoodFellas (1990)
## 26903 Alien (1979)
## 27309 Psycho (1960)
## 27548 Blues Brothers, The (1980)
## 28367 Amadeus (1984)
## 28643 Raging Bull (1980)
## 28917 Sting, The (1973)
## 29158 Terminator, The (1984)
## 29709 Graduate, The (1967)
## 29947 Nikita (La Femme Nikita) (1990)
## 30075 Bridge on the River Kwai, The (1957)
## 30241 Shining, The (1980)
## 30815 Unforgiven (1992)
## 31347 Patton (1970)
## 32322 M*A*S*H (1970)
## 33080 When Harry Met Sally... (1989)
## 33487 Cape Fear (1991)
## 33836 Breaking the Waves (1996)
## 34276 Sling Blade (1996)
## 35307 Star Trek IV: The Voyage Home (1986)
## 35873 Jaws (1975)
## 36799 Raising Arizona (1987)
## 37785 Devil's Own, The (1997)
## 40724 Full Monty, The (1997)
## 41583 Heat (1995)
## 41805 Sabrina (1995)
## 41996 Sense and Sensibility (1995)
## 42264 Leaving Las Vegas (1995)
## 43182 Emma (1996)
## 43554 Secrets & Lies (1996)
## 43717 English Patient, The (1996)
## 44751 Evita (1996)
## 45500 Liar Liar (1997)
## 47042 L.A. Confidential (1997)
## 49242 Everyone Says I Love You (1996)
## 49431 Mother (1996)
## 51297 Game, The (1997)
## 51549 U Turn (1997)
## 51834 Boogie Nights (1997)
## 52935 One Flew Over the Cuckoo's Nest (1975)
## 53587 Clueless (1995)
## 53881 Bridges of Madison County, The (1995)
## 54665 True Lies (1994)
## 56121 Pinocchio (1940)
## 57312 My Favorite Year (1982)
## 57537 Cinderella (1950)
## 57844 Alice in Wonderland (1951)
## 58930 Duck Soup (1933)
## 59177 Fantasia (1940)
## 59590 Butch Cassidy and the Sundance Kid (1969)
## 60229 Carrie (1976)
## 61245 Smoke (1995)
## 61318 Like Water For Chocolate (Como agua para chocolate) (1992)
## 61467 Secret of Roan Inish, The (1994)
## 61701 Bronx Tale, A (1993)
## 61881 Tombstone (1993)
## 62494 Dr. Strangelove or: How I Learned to Stop Worrying and Love the Bomb (1963)
## 62687 Trainspotting (1996)
## 63192 Philadelphia Story, The (1940)
## 63298 Vertigo (1958)
## 63476 North by Northwest (1959)
## 63718 Some Like It Hot (1959)
## 63847 Casablanca (1942)
## 64089 Maltese Falcon, The (1941)
## 64351 Sabrina (1954)
## 64484 Sunset Blvd. (1950)
## 64549 Notorious (1946)
## 64776 Thin Man, The (1934)
## 64893 Around the World in 80 Days (1956)
## 64952 It's a Wonderful Life (1946)
## 65183 Bringing Up Baby (1938)
## 65251 African Queen, The (1951)
## 65403 Cat on a Hot Tin Roof (1958)
## 65588 Bananas (1971)
## 65684 Bonnie and Clyde (1967)
## 65806 Dial M for Murder (1954)
## 66277 My Left Foot (1989)
## 66399 Magnificent Seven, The (1954)
## 66520 Lawrence of Arabia (1962)
## 66749 Third Man, The (1949)
## 67356 Miller's Crossing (1990)
## 67445 Treasure of the Sierra Madre, The (1948)
## 67650 Deer Hunter, The (1978)
## 68013 Big Sleep, The (1946)
## 68212 Gandhi (1982)
## 68527 My Life as a Dog (Mitt liv som hund) (1985)
## 68620 Man Who Would Be King, The (1975)
## 68699 Shine (1996)
## 70152 Heavenly Creatures (1994)
## 71612 Piano, The (1993)
## 71983 Beauty and the Beast (1991)
## 72185 Wild Bunch, The (1969)
## 72874 American in Paris, An (1951)
## 72924 Rear Window (1954)
## 73133 It Happened One Night (1934)
## 73245 All About Eve (1950)
## 73467 Gigi (1958)
## 73508 Laura (1944)
## 73661 39 Steps, The (1935)
## 73783 Blue Angel, The (Blaue Engel, Der) (1930)
## 74367 Victor/Victoria (1982)
## 75549 Glory (1989)
## 75719 Rosencrantz and Guildenstern Are Dead (1990)
## 75843 Chinatown (1974)
## 75990 Stand by Me (1986)
## 76217 M (1931)
## 76261 Manchurian Candidate, The (1962)
## 76909 Being There (1979)
## 77025 Paris, Texas (1984)
## 78412 Perfect World, A (1993)
## 78832 American President, The (1995)
## 78996 Casino (1995)
## 79087 Persuasion (1995)
## 79131 Kicking and Screaming (1995)
## 79144 City Hall (1996)
## 79223 Basketball Diaries, The (1995)
## 79263 Browning Version, The (1994)
## 79273 Little Women (1994)
## 79375 Miami Rhapsody (1995)
## 79390 Wonderful, Horrible Life of Leni Riefenstahl, The (1993)
## 79400 Barcelona (1994)
## 79453 Widows' Peak (1994)
## 79472 House of the Spirits, The (1993)
## 79496 Singin' in the Rain (1952)
## 79633 Bad Moon (1996)
## 79639 Enchanted April (1991)
## 79709 Sex, Lies, and Videotape (1989)
## 79810 Strictly Ballroom (1992)
## 79914 Better Off Dead... (1985)
## 79993 Substance of Fire, The (1996)
## 79994 Tin Men (1987)
## 1390 Babe (1995)
## 1610 Dead Man Walking (1995)
## 1999 Seven (Se7en) (1995)
## 2234 Usual Suspects, The (1995)
## 2866 Mr. Holland's Opus (1995)
## 3528 Braveheart (1995)
## 4004 Rumble in the Bronx (1995)
## 4180 Birdcage, The (1996)
## 4602 Apollo 13 (1995)
## 4878 Batman Forever (1995)
## 5398 Net, The (1995)
## 5519 Strange Days (1995)
## 5607 To Wong Foo, Thanks for Everything! Julie Newmar (1995)
## 5700 Clerks (1994)
## 6075 Ed Wood (1994)
## 6988 Legends of the Fall (1994)
## 7069 Madness of King George, The (1994)
## 7288 Outbreak (1995)
## 7544 Pulp Fiction (1994)
## 7934 Priest (1994)
## 7974 Quiz Show (1994)
## 9365 Forrest Gump (1994)
## 9686 Four Weddings and a Funeral (1994)
## 10664 Fugitive, The (1993)
## 11435 Much Ado About Nothing (1993)
## 11689 Remains of the Day, The (1993)
## 11975 Sleepless in Seattle (1993)
## 12465 So I Married an Axe Murderer (1993)
## 12918 Home Alone (1990)
## 13569 Dances with Wolves (1990)
## 13828 Silence of the Lambs, The (1991)
## 14391 Fargo (1996)
## 15186 Moll Flanders (1996)
## 15294 Mystery Science Theater 3000: The Movie (1996)
## 15424 Operation Dumbo Drop (1995)
## 15456 Truth About Cats & Dogs, The (1996)
## 16637 Striptease (1996)
## 16706 Independence Day (ID4) (1996)
## 17239 Frighteners, The (1996)
## 17543 Phenomenon (1996)
## 19226 2001: A Space Odyssey (1968)
## 23243 Monty Python and the Holy Grail (1974)
## 24229 Princess Bride, The (1987)
## 24973 Brazil (1985)
## 25182 Aliens (1986)
## 25948 Apocalypse Now (1979)
## 27310 Psycho (1960)
## 28243 Henry V (1989)
## 28368 Amadeus (1984)
## 28918 Sting, The (1973)
## 29457 Dead Poets Society (1989)
## 30816 Unforgiven (1992)
## 30998 Back to the Future (1985)
## 31600 Young Frankenstein (1974)
## 32323 M*A*S*H (1970)
## 32619 Room with a View, A (1986)
## 32866 Field of Dreams (1989)
## 33081 When Harry Met Sally... (1989)
## 33911 Star Trek: First Contact (1996)
## 34732 Star Trek VI: The Undiscovered Country (1991)
## 34893 Star Trek: The Wrath of Khan (1982)
## 35137 Star Trek III: The Search for Spock (1984)
## 35308 Star Trek IV: The Voyage Home (1986)
## 36416 Jerry Maguire (1996)
## 36800 Raising Arizona (1987)
## 37054 Sneakers (1992)
## 37362 Last of the Mohicans, The (1992)
## 39429 Contact (1997)
## 39936 George of the Jungle (1997)
## 40098 Event Horizon (1997)
## 41806 Sabrina (1995)
## 42560 Restoration (1995)
## 43718 English Patient, The (1996)
## 45010 Fierce Creatures (1997)
## 45106 Absolute Power (1997)
## 46382 Air Force One (1997)
## 46813 In & Out (1997)
## 48135 Midnight in the Garden of Good and Evil (1997)
## 48844 In the Name of the Father (1993)
## 48946 Schindler's List (1993)
## 50059 Lost Highway (1997)
## 51154 Kiss the Girls (1997)
## 52622 Fallen (1998)
## 52837 Client, The (1994)
## 52936 One Flew Over the Cuckoo's Nest (1975)
## 53491 Powder (1995)
## 53588 Clueless (1995)
## 53841 Mary Reilly (1996)
## 53947 Jeffrey (1995)
## 54452 Adventures of Priscilla, Queen of the Desert, The (1994)
## 54562 Flintstones, The (1994)
## 54871 Addams Family Values (1993)
## 55215 Mrs. Doubtfire (1993)
## 55418 Robin Hood: Men in Tights (1993)
## 55567 Three Musketeers, The (1993)
## 55674 Brady Bunch Movie, The (1995)
## 55751 Ghost (1990)
## 56223 Mission: Impossible (1996)
## 57313 My Favorite Year (1982)
## 58058 E.T. the Extra-Terrestrial (1982)
## 58376 Bob Roberts (1992)
## 58494 To Kill a Mockingbird (1962)
## 58712 Harold and Maude (1971)
## 58833 Day the Earth Stood Still, The (1951)
## 58931 Duck Soup (1933)
## 59024 Highlander (1986)
## 59350 Heathers (1989)
## 59521 Forbidden Planet (1956)
## 59591 Butch Cassidy and the Sundance Kid (1969)
## 60435 Star Trek: The Motion Picture (1979)
## 60615 Grease (1978)
## 60883 Jackie Chan's First Strike (1996)
## 65685 Bonnie and Clyde (1967)
## 66061 People vs. Larry Flynt, The (1996)
## 67264 Manhattan (1979)
## 67651 Deer Hunter, The (1978)
## 67967 Great Dictator, The (1940)
## 68087 Ben-Hur (1959)
## 68213 Gandhi (1982)
## 69246 Things to Do in Denver when You're Dead (1995)
## 69636 Rob Roy (1995)
## 70153 Heavenly Creatures (1994)
## 70381 Mary Shelley's Frankenstein (1994)
## 71184 Body Snatchers (1993)
## 71369 Coneheads (1993)
## 71521 Englishman Who Went Up a Hill, But Came Down a Mountain, The (1995)
## 72641 Eraser (1996)
## 72925 Rear Window (1954)
## 75251 Once Upon a Time in the West (1969)
## 75720 Rosencrantz and Guildenstern Are Dead (1990)
## 75844 Chinatown (1974)
## 76471 Arsenic and Old Lace (1944)
## 76586 Fried Green Tomatoes (1991)
## 76827 Somewhere in Time (1980)
## 76910 Being There (1979)
## 78662 Seven Years in Tibet (1997)
## 78833 American President, The (1995)
## 79274 Little Women (1994)
## 79640 Enchanted April (1991)
## 79915 Better Off Dead... (1985)
## 80045 Othello (1995)
## 80117 Carrington (1995)
## 80130 To Die For (1995)
## 80217 Home for the Holidays (1995)
## 80275 Juror, The (1996)
## 80357 In the Bleak Midwinter (1995)
## 80373 Canadian Bacon (1994)
## 80402 First Knight (1995)
## 80488 Mallrats (1995)
## 80542 Nine Months (1995)
## 80600 Boys on the Side (1995)
## 80634 Circle of Friends (1995)
## 80710 Exit to Eden (1994)
## 80726 Fluke (1995)
## 80740 Immortal Beloved (1994)
## 80803 Junior (1994)
## 80848 Nell (1994)
## 80929 Queen Margot (Reine Margot, La) (1994)
## 80953 Corrina, Corrina (1994)
## 80992 Dave (1993)
## 81172 Go Fish (1994)
## 81187 Made in America (1993)
## 81214 Philadelphia (1993)
## 81351 Shadowlands (1993)
## 81429 Sirens (1994)
## 81488 Threesome (1994)
## 81519 Pretty Woman (1990)
## 81683 Jane Eyre (1996)
## 81746 Last Supper, The (1995)
## 81804 Ransom (1996)
## 82071 Crow: City of Angels, The (1996)
## 82110 Michael Collins (1996)
## 82202 Ruling Class, The (1972)
## 82218 Real Genius (1985)
## 82337 Benny & Joon (1993)
## 82439 Saint, The (1997)
## 82755 MatchMaker, The (1997)
## 82806 Amistad (1997)
## 82930 Tomorrow Never Dies (1997)
## 83110 Replacement Killers, The (1998)
## 677 Get Shorty (1995)
## 2867 Mr. Holland's Opus (1995)
## 4603 Apollo 13 (1995)
## 6412 Star Wars (1977)
## 9366 Forrest Gump (1994)
## 9935 Lion King, The (1994)
## 11177 Jurassic Park (1993)
## 11976 Sleepless in Seattle (1993)
## 13275 Terminator 2: Judgment Day (1991)
## 13570 Dances with Wolves (1990)
## 13829 Silence of the Lambs, The (1991)
## 17887 Godfather, The (1972)
## 18610 Wizard of Oz, The (1939)
## 18856 Gone with the Wind (1939)
## 20019 Sound of Music, The (1965)
## 22126 Platoon (1986)
## 22311 Basic Instinct (1992)
## 22483 Top Gun (1986)
## 23244 Monty Python and the Holy Grail (1974)
## 23675 Cinema Paradiso (1988)
## 23862 Empire Strikes Back, The (1980)
## 24555 Raiders of the Lost Ark (1981)
## 28369 Amadeus (1984)
## 29159 Terminator, The (1984)
## 29458 Dead Poets Society (1989)
## 30242 Shining, The (1980)
## 30535 Groundhog Day (1993)
## 30817 Unforgiven (1992)
## 30999 Back to the Future (1985)
## 32867 Field of Dreams (1989)
## 33082 When Harry Met Sally... (1989)
## 34894 Star Trek: The Wrath of Khan (1982)
## 36801 Raising Arizona (1987)
## 37490 Kolya (1996)
## 42265 Leaving Las Vegas (1995)
## 42950 Time to Kill, A (1996)
## 46383 Air Force One (1997)
## 48947 Schindler's List (1993)
## 50661 Conspiracy Theory (1997)
## 54351 Muriel's Wedding (1994)
## 55146 Man Without a Face, The (1993)
## 55752 Ghost (1990)
## 57400 Old Yeller (1957)
## 61989 Courage Under Fire (1996)
## 63477 North by Northwest (1959)
## 72246 Primal Fear (1996)
## 78086 In the Line of Fire (1993)
## 79710 Sex, Lies, and Videotape (1989)
## 81215 Philadelphia (1993)
## 83149 Burnt By the Sun (1994)
## 83173 Red Corner (1997)
## 6 Toy Story (1995)
## 455 GoldenEye (1995)
## 678 Get Shorty (1995)
## 884 Copycat (1995)
## 1001 Twelve Monkeys (1995)
## 1391 Babe (1995)
## 1611 Dead Man Walking (1995)
## 2000 Seven (Se7en) (1995)
## 2235 Usual Suspects, The (1995)
## 2501 Mighty Aphrodite (1995)
## 2684 Postino, Il (1994)
## 3198 From Dusk Till Dawn (1996)
## 3442 Muppet Treasure Island (1996)
## 3529 Braveheart (1995)
## 3824 Taxi Driver (1976)
## 4005 Rumble in the Bronx (1995)
## 4181 Birdcage, The (1996)
## 4544 Bad Boys (1995)
## 4604 Apollo 13 (1995)
## 4879 Batman Forever (1995)
## 5184 Crumb (1994)
## 5263 Desperado (1995)
## 5390 Nadja (1994)
## 5399 Net, The (1995)
## 5520 Strange Days (1995)
## 5608 To Wong Foo, Thanks for Everything! Julie Newmar (1995)
## 5701 Clerks (1994)
## 5966 Eat Drink Man Woman (1994)
## 6207 Hoop Dreams (1994)
## 6323 I.Q. (1994)
## 6413 Star Wars (1977)
## 6989 Legends of the Fall (1994)
## 7160 Natural Born Killers (1994)
## 7545 Pulp Fiction (1994)
## 7975 Quiz Show (1994)
## 8151 Three Colors: Red (1994)
## 8233 Three Colors: Blue (1993)
## 8296 Three Colors: White (1994)
## 8357 Stargate (1994)
## 8567 Shawshank Redemption, The (1994)
## 8963 While You Were Sleeping (1995)
## 9124 Ace Ventura: Pet Detective (1994)
## 9228 Crow, The (1994)
## 9367 Forrest Gump (1994)
## 9687 Four Weddings and a Funeral (1994)
## 9936 Lion King, The (1994)
## 10154 Mask, The (1994)
## 10283 Maverick (1994)
## 10628 Free Willy (1993)
## 10665 Fugitive, The (1993)
## 11178 Jurassic Park (1993)
## 11436 Much Ado About Nothing (1993)
## 11690 Remains of the Day, The (1993)
## 11838 Searching for Bobby Fischer (1993)
## 11977 Sleepless in Seattle (1993)
## 12192 Blade Runner (1982)
## 12466 So I Married an Axe Murderer (1993)
## 12559 Nightmare Before Christmas, The (1993)
## 12702 True Romance (1993)
## 12919 Home Alone (1990)
## 13056 Aladdin (1992)
## 13276 Terminator 2: Judgment Day (1991)
## 13571 Dances with Wolves (1990)
## 13830 Silence of the Lambs, The (1991)
## 14217 Snow White and the Seven Dwarfs (1937)
## 14392 Fargo (1996)
## 15295 Mystery Science Theater 3000: The Movie (1996)
## 15425 Operation Dumbo Drop (1995)
## 15457 Truth About Cats & Dogs, The (1996)
## 15838 Cold Comfort Farm (1995)
## 15963 Rock, The (1996)
## 16341 Twister (1996)
## 16707 Independence Day (ID4) (1996)
## 17356 Lone Star (1996)
## 17888 Godfather, The (1972)
## 18295 Supercop (1992)
## 18611 Wizard of Oz, The (1939)
## 19227 2001: A Space Odyssey (1968)
## 19588 Big Night (1996)
## 19757 D3: The Mighty Ducks (1996)
## 19888 20,000 Leagues Under the Sea (1954)
## 20020 Sound of Music, The (1965)
## 20242 Die Hard (1988)
## 20483 Lawnmower Man, The (1992)
## 20556 Long Kiss Goodnight, The (1996)
## 20892 Swingers (1996)
## 21376 Sleeper (1973)
## 21461 Fish Called Wanda, A (1988)
## 21707 Monty Python's Life of Brian (1979)
## 21879 Dirty Dancing (1987)
## 22127 Platoon (1986)
## 22251 Weekend at Bernie's (1989)
## 22413 Glengarry Glen Ross (1992)
## 22484 Top Gun (1986)
## 22809 Return of the Pink Panther, The (1974)
## 22901 Abyss, The (1989)
## 23051 Jean de Florette (1986)
## 23116 Manon of the Spring (Manon des sources) (1986)
## 23173 Private Benjamin (1980)
## 23245 Monty Python and the Holy Grail (1974)
## 23676 Cinema Paradiso (1988)
## 23863 Empire Strikes Back, The (1980)
## 24230 Princess Bride, The (1987)
## 24556 Raiders of the Lost Ark (1981)
## 24974 Brazil (1985)
## 25183 Aliens (1986)
## 25465 Good, The Bad and The Ugly, The (1966)
## 25602 12 Angry Men (1957)
## 25726 Clockwork Orange, A (1971)
## 25949 Apocalypse Now (1979)
## 26170 Return of the Jedi (1983)
## 26677 GoodFellas (1990)
## 26904 Alien (1979)
## 27190 Army of Darkness (1993)
## 27311 Psycho (1960)
## 27549 Blues Brothers, The (1980)
## 27799 Godfather: Part II, The (1974)
## 28008 Full Metal Jacket (1987)
## 28244 Henry V (1989)
## 28370 Amadeus (1984)
## 28759 Right Stuff, The (1983)
## 28919 Sting, The (1973)
## 29160 Terminator, The (1984)
## 29459 Dead Poets Society (1989)
## 29710 Graduate, The (1967)
## 29948 Nikita (La Femme Nikita) (1990)
## 30076 Bridge on the River Kwai, The (1957)
## 30243 Shining, The (1980)
## 30446 Evil Dead II (1987)
## 30536 Groundhog Day (1993)
## 31000 Back to the Future (1985)
## 31348 Patton (1970)
## 31601 Young Frankenstein (1974)
## 31799 This Is Spinal Tap (1984)
## 31992 Indiana Jones and the Last Crusade (1989)
## 32324 M*A*S*H (1970)
## 32526 Unbearable Lightness of Being, The (1988)
## 32868 Field of Dreams (1989)
## 33083 When Harry Met Sally... (1989)
## 33368 Bram Stoker's Dracula (1992)
## 33488 Cape Fear (1991)
## 33660 Nightmare on Elm Street, A (1984)
## 33912 Star Trek: First Contact (1996)
## 34277 Sling Blade (1996)
## 34410 Ridicule (1996)
## 34455 101 Dalmatians (1996)
## 34565 Die Hard 2 (1990)
## 34733 Star Trek VI: The Undiscovered Country (1991)
## 34895 Star Trek: The Wrath of Khan (1982)
## 35138 Star Trek III: The Search for Spock (1984)
## 35309 Star Trek IV: The Voyage Home (1986)
## 35506 Batman Returns (1992)
## 35647 Young Guns (1988)
## 35749 Under Siege (1992)
## 35874 Jaws (1975)
## 36152 Mars Attacks! (1996)
## 36417 Jerry Maguire (1996)
## 36802 Raising Arizona (1987)
## 37055 Sneakers (1992)
## 37363 Last of the Mohicans, The (1992)
## 37491 Kolya (1996)
## 37606 Jungle2Jungle (1997)
## 39430 Contact (1997)
## 40099 Event Horizon (1997)
## 40222 Air Bud (1997)
## 40264 In the Company of Men (1997)
## 40330 Steel (1997)
## 40352 Mimic (1997)
## 40451 Hunt for Red October, The (1990)
## 40725 Full Monty, The (1997)
## 41036 Gattaca (1997)
## 41174 Starship Troopers (1997)
## 41386 Good Will Hunting (1997)
## 41584 Heat (1995)
## 41807 Sabrina (1995)
## 41997 Sense and Sensibility (1995)
## 42266 Leaving Las Vegas (1995)
## 42691 Once Upon a Time... When We Were Colored (1995)
## 42719 Up Close and Personal (1996)
## 42805 River Wild, The (1994)
## 43555 Secrets & Lies (1996)
## 43719 English Patient, The (1996)
## 44195 Marvin's Room (1996)
## 44276 Scream (1996)
## 44752 Evita (1996)
## 45011 Fierce Creatures (1997)
## 45233 Rosewood (1997)
## 45501 Liar Liar (1997)
## 46307 Hoodlum (1997)
## 46384 Air Force One (1997)
## 46814 In & Out (1997)
## 47043 L.A. Confidential (1997)
## 47486 Ice Storm, The (1997)
## 47574 Mrs. Brown (Her Majesty, Mrs. Brown) (1997)
## 47671 Devil's Advocate, The (1997)
## 47858 FairyTale: A True Story (1997)
## 47916 Rainmaker, The (1997)
## 48060 Wings of the Dove, The (1997)
## 48136 Midnight in the Garden of Good and Evil (1997)
## 48215 Titanic (1997)
## 48565 3 Ninjas: High Noon At Mega Mountain (1998)
## 48570 Apt Pupil (1998)
## 48730 As Good As It Gets (1997)
## 48845 In the Name of the Father (1993)
## 48948 Schindler's List (1993)
## 49243 Everyone Says I Love You (1996)
## 49410 Paradise Lost: The Child Murders at Robin Hood Hills (1996)
## 49432 Mother (1996)
## 49599 Murder at 1600 (1997)
## 49817 Dante's Peak (1997)
## 50310 G.I. Jane (1997)
## 50486 Cop Land (1997)
## 50662 Conspiracy Theory (1997)
## 50956 Desperate Measures (1998)
## 51041 Edge, The (1997)
## 51155 Kiss the Girls (1997)
## 51298 Game, The (1997)
## 51550 U Turn (1997)
## 51634 Playing God (1997)
## 51695 Bean (1997)
## 51785 Mad City (1997)
## 51835 Boogie Nights (1997)
## 52023 Critical Care (1997)
## 52032 Man Who Knew Too Little, The (1997)
## 52084 Alien: Resurrection (1997)
## 52208 Apostle, The (1997)
## 52263 Deconstructing Harry (1997)
## 52328 Jackie Brown (1997)
## 52454 Wag the Dog (1997)
## 52591 Hard Rain (1998)
## 52623 Fallen (1998)
## 52663 Prophecy II, The (1998)
## 52709 Deep Rising (1998)
## 52724 Wedding Singer, The (1998)
## 52795 Sphere (1998)
## 52937 One Flew Over the Cuckoo's Nest (1975)
## 53198 Spawn (1997)
## 53358 Wonderland (1997)
## 53378 Blues Brothers 2000 (1998)
## 53406 Sudden Death (1995)
## 53589 Clueless (1995)
## 53842 Mary Reilly (1996)
## 53882 Bridges of Madison County, The (1995)
## 54078 Heavyweights (1994)
## 54193 Tales From the Crypt Presents: Demon Knight (1995)
## 54453 Adventures of Priscilla, Queen of the Desert, The (1994)
## 54594 Naked Gun 33 1/3: The Final Insult (1994)
## 54666 True Lies (1994)
## 54958 Age of Innocence, The (1993)
## 55088 Last Action Hero (1993)
## 55216 Mrs. Doubtfire (1993)
## 55406 Radioland Murders (1994)
## 55475 Serial Mom (1994)
## 55540 Super Mario Bros. (1993)
## 55655 Little Rascals, The (1994)
## 55675 Brady Bunch Movie, The (1995)
## 55753 Ghost (1990)
## 55921 Batman (1989)
## 56122 Pinocchio (1940)
## 56224 Mission: Impossible (1996)
## 56565 Thinner (1996)
## 56769 Jack (1996)
## 56840 Kingpin (1996)
## 57001 Nutty Professor, The (1996)
## 57257 Tales from the Crypt Presents: Bordello of Blood (1996)
## 57314 My Favorite Year (1982)
## 57401 Old Yeller (1957)
## 57464 Parent Trap, The (1961)
## 57538 Cinderella (1950)
## 57667 Mary Poppins (1964)
## 57845 Alice in Wonderland (1951)
## 57925 William Shakespeare's Romeo and Juliet (1996)
## 58059 E.T. the Extra-Terrestrial (1982)
## 58356 Children of the Corn: The Gathering (1996)
## 58495 To Kill a Mockingbird (1962)
## 58713 Harold and Maude (1971)
## 58834 Day the Earth Stood Still, The (1951)
## 58932 Duck Soup (1933)
## 59025 Highlander (1986)
## 59178 Fantasia (1940)
## 59351 Heathers (1989)
## 59592 Butch Cassidy and the Sundance Kid (1969)
## 59804 American Werewolf in London, An (1981)
## 59902 Amityville 1992: It's About Time (1992)
## 59907 Amityville 3-D (1983)
## 59913 Amityville: A New Generation (1993)
## 59919 Amityville II: The Possession (1982)
## 59933 Amityville Horror, The (1979)
## 59985 Amityville Curse, The (1990)
## 59990 Birds, The (1963)
## 60152 Blob, The (1958)
## 60197 Body Snatcher, The (1945)
## 60220 Burnt Offerings (1976)
## 60230 Carrie (1976)
## 60350 Omen, The (1976)
## 60436 Star Trek: The Motion Picture (1979)
## 60552 Star Trek V: The Final Frontier (1989)
## 60616 Grease (1978)
## 60785 Jaws 2 (1978)
## 60850 Jaws 3-D (1983)
## 60884 Jackie Chan's First Strike (1996)
## 61076 Free Willy 3: The Rescue (1997)
## 61319 Like Water For Chocolate (Como agua para chocolate) (1992)
## 61468 Secret of Roan Inish, The (1994)
## 61702 Bronx Tale, A (1993)
## 61990 Courage Under Fire (1996)
## 62210 Dragonheart (1996)
## 62367 James and the Giant Peach (1996)
## 62495 Dr. Strangelove or: How I Learned to Stop Worrying and Love the Bomb (1963)
## 62688 Trainspotting (1996)
## 62937 First Wives Club, The (1996)
## 63097 Matilda (1996)
## 63193 Philadelphia Story, The (1940)
## 63478 North by Northwest (1959)
## 63655 Apartment, The (1960)
## 63719 Some Like It Hot (1959)
## 63848 Casablanca (1942)
## 64090 Maltese Falcon, The (1941)
## 64227 My Fair Lady (1964)
## 64485 Sunset Blvd. (1950)
## 64651 Adventures of Robin Hood, The (1938)
## 64718 East of Eden (1955)
## 64777 Thin Man, The (1934)
## 64836 His Girl Friday (1940)
## 65184 Bringing Up Baby (1938)
## 65252 African Queen, The (1951)
## 65465 Dumbo (1941)
## 65589 Bananas (1971)
## 65686 Bonnie and Clyde (1967)
## 65807 Dial M for Murder (1954)
## 65874 Rebel Without a Cause (1955)
## 65965 Streetcar Named Desire, A (1951)
## 66062 People vs. Larry Flynt, The (1996)
## 66278 My Left Foot (1989)
## 66400 Magnificent Seven, The (1954)
## 66521 Lawrence of Arabia (1962)
## 66821 Annie Hall (1977)
## 67001 Boot, Das (1981)
## 67201 Local Hero (1983)
## 67265 Manhattan (1979)
## 67357 Miller's Crossing (1990)
## 67446 Treasure of the Sierra Madre, The (1948)
## 67525 Great Escape, The (1963)
## 67768 Down by Law (1986)
## 67804 Cool Hand Luke (1967)
## 67968 Great Dictator, The (1940)
## 68014 Big Sleep, The (1946)
## 68088 Ben-Hur (1959)
## 68214 Gandhi (1982)
## 68528 My Life as a Dog (Mitt liv som hund) (1985)
## 68621 Man Who Would Be King, The (1975)
## 68700 Shine (1996)
## 68972 Anastasia (1997)
## 69038 Mouse Hunt (1997)
## 69082 Money Train (1995)
## 69125 Mortal Kombat (1995)
## 69329 Broken Arrow (1996)
## 69583 Young Poisoner's Handbook, The (1995)
## 69624 NeverEnding Story III, The (1994)
## 69637 Rob Roy (1995)
## 69729 Die Hard: With a Vengeance (1995)
## 69879 Lord of Illusions (1995)
## 69948 Walk in the Clouds, A (1995)
## 70011 Waterworld (1995)
## 70154 Heavenly Creatures (1994)
## 70222 Interview with the Vampire (1994)
## 70382 Mary Shelley's Frankenstein (1994)
## 70488 Stephen King's The Langoliers (1995)
## 70517 Tales from the Hood (1995)
## 70544 Village of the Damned (1995)
## 70567 Clear and Present Danger (1994)
## 70745 Wes Craven's New Nightmare (1994)
## 70781 Speed (1994)
## 71010 Wolf (1994)
## 71077 Wyatt Earp (1994)
## 71155 Blown Away (1994)
## 71185 Body Snatchers (1993)
## 71276 Cliffhanger (1993)
## 71410 Demolition Man (1993)
## 71896 Son in Law (1993)
## 71935 Terminal Velocity (1994)
## 71984 Beauty and the Beast (1991)
## 72186 Wild Bunch, The (1969)
## 72228 Hellraiser: Bloodline (1996)
## 72514 Hunchback of Notre Dame, The (1996)
## 72642 Eraser (1996)
## 72854 For Whom the Bell Tolls (1943)
## 72875 American in Paris, An (1951)
## 72926 Rear Window (1954)
## 73134 It Happened One Night (1934)
## 73246 All About Eve (1950)
## 73468 Gigi (1958)
## 73548 Lost Horizon (1937)
## 73582 My Man Godfrey (1936)
## 73609 Giant (1956)
## 73662 39 Steps, The (1935)
## 73784 Blue Angel, The (Blaue Engel, Der) (1930)
## 73819 Extreme Measures (1996)
## 73926 Davy Crockett, King of the Wild Frontier (1955)
## 74015 Three Caballeros, The (1945)
## 74037 Sword in the Stone, The (1963)
## 74368 Victor/Victoria (1982)
## 74444 Great Race, The (1965)
## 74475 Crying Game, The (1992)
## 74594 Sophie's Choice (1982)
## 74745 Fog, The (1980)
## 74768 Escape from New York (1981)
## 74859 Howling, The (1981)
## 74897 Return of Martin Guerre, The (Retour de Martin Guerre, Le) (1982)
## 74941 Tin Drum, The (Blechtrommel, Die) (1979)
## 75252 Once Upon a Time in the West (1969)
## 75289 Ran (1985)
## 75476 Seventh Seal, The (Sjunde inseglet, Det) (1957)
## 75550 Glory (1989)
## 75721 Rosencrantz and Guildenstern Are Dead (1990)
## 75845 Chinatown (1974)
## 75991 Stand by Me (1986)
## 76218 M (1931)
## 76262 Manchurian Candidate, The (1962)
## 76472 Arsenic and Old Lace (1944)
## 76739 High Noon (1952)
## 76828 Somewhere in Time (1980)
## 76911 Being There (1979)
## 77071 Alien 3 (1992)
## 77176 Audrey Rose (1977)
## 77188 Blood Beach (1981)
## 77194 Body Parts (1991)
## 77207 Bride of Frankenstein (1935)
## 77253 Candyman (1992)
## 77318 Cape Fear (1962)
## 77404 Cat People (1982)
## 77452 Nosferatu (Nosferatu, eine Symphonie des Grauens) (1922)
## 77584 Volcano (1997)
## 77803 Conan the Barbarian (1981)
## 77937 I Know What You Did Last Summer (1997)
## 78037 Rocket Man (1997)
## 78087 In the Line of Fire (1993)
## 78255 Executive Decision (1996)
## 78413 Perfect World, A (1993)
## 78462 McHale's Navy (1997)
## 78531 Leave It to Beaver (1997)
## 78575 Jackal, The (1997)
## 78663 Seven Years in Tibet (1997)
## 78817 Dark City (1998)
## 78834 American President, The (1995)
## 79088 Persuasion (1995)
## 79497 Singin' in the Rain (1952)
## 79634 Bad Moon (1996)
## 79811 Strictly Ballroom (1992)
## 79995 Tin Men (1987)
## 80218 Home for the Holidays (1995)
## 80403 First Knight (1995)
## 80543 Nine Months (1995)
## 80993 Dave (1993)
## 81173 Go Fish (1994)
## 81216 Philadelphia (1993)
## 81352 Shadowlands (1993)
## 81430 Sirens (1994)
## 81520 Pretty Woman (1990)
## 81684 Jane Eyre (1996)
## 82219 Real Genius (1985)
## 82338 Benny & Joon (1993)
## 82440 Saint, The (1997)
## 82756 MatchMaker, The (1997)
## 82807 Amistad (1997)
## 82931 Tomorrow Never Dies (1997)
## 83111 Replacement Killers, The (1998)
## 83174 Red Corner (1997)
## 83230 Jumanji (1995)
## 83326 Father of the Bride Part II (1995)
## 83454 Across the Sea of Time (1995)
## 83458 Lawnmower Man 2: Beyond Cyberspace (1996)
## 83479 Fair Game (1995)
## 83490 Screamers (1995)
## 83536 Nick of Time (1995)
## 83580 Beautiful Girls (1996)
## 83695 Happy Gilmore (1996)
## 83844 If Lucy Fell (1996)
## 83873 Boomerang (1992)
## 83905 Man of the Year (1995)
## 83914 Addiction, The (1995)
## 83925 Casper (1995)
## 83977 Congo (1995)
## 84019 Devil in a Blue Dress (1995)
## 84076 Johnny Mnemonic (1995)
## 84117 Kids (1995)
## 84166 Mute Witness (1994)
## 84183 Prophecy, The (1995)
## 84215 Something to Talk About (1995)
## 84241 Three Wishes (1995)
## 84250 Castle Freak (1995)
## 84254 Don Juan DeMarco (1995)
## 84330 Drop Zone (1994)
## 84361 Dumb & Dumber (1994)
## 84430 French Kiss (1995)
## 84514 Little Odessa (1994)
## 84524 Milk Money (1994)
## 84561 Beyond Bedlam (1993)
## 84563 Only You (1994)
## 84602 Perez Family, The (1995)
## 84616 Roommates (1995)
## 84629 Relative Fear (1994)
## 84632 Swimming with Sharks (1995)
## 84679 Tommy Boy (1995)
## 84745 Baby-Sitters Club, The (1995)
## 84755 Bullets Over Broadway (1994)
## 84841 Crooklyn (1994)
## 84851 It Could Happen to You (1994)
## 84897 Richie Rich (1994)
## 84918 Speechless (1994)
## 84954 Timecop (1994)
## 84985 Bad Company (1995)
## 84994 Boys Life (1995)
## 84999 In the Mouth of Madness (1995)
## 85025 Air Up There, The (1994)
## 85041 Hard Target (1993)
## 85081 Heaven & Earth (1993)
## 85090 Jimmy Hollywood (1994)
## 85098 Manhattan Murder Mystery (1993)
## 85125 Menace II Society (1993)
## 85175 Poetic Justice (1993)
## 85184 Program, The (1993)
## 85215 Rising Sun (1993)
## 85258 Shadow, The (1994)
## 85303 Thirty-Two Short Films About Glenn Gould (1993)
## 85321 Andre (1994)
## 85339 Celluloid Closet, The (1995)
## 85395 Great Day in Harlem, A (1994)
## 85396 One Fine Day (1996)
## 85508 Candyman: Farewell to the Flesh (1995)
## 85529 Frisk (1995)
## 85532 Girl 6 (1996)
## 85557 Eddie (1996)
## 85597 Space Jam (1996)
## 85690 Mrs. Winterbourne (1996)
## 85712 Faces (1968)
## 85716 Mulholland Falls (1996)
## 85798 Great White Hype, The (1996)
## 85847 Arrival, The (1996)
## 85930 Phantom, The (1996)
## 86010 Daylight (1996)
## 86067 Alaska (1996)
## 86080 Fled (1996)
## 86114 Power 98 (1995)
## 86115 Escape from L.A. (1996)
## 86206 Bogus (1996)
## 86228 Bulletproof (1996)
## 86277 Halloween: The Curse of Michael Myers (1995)
## 86302 Gay Divorcee, The (1934)
## 86317 Ninotchka (1939)
## 86343 Meet John Doe (1941)
## 86368 In the Line of Duty 2 (1987)
## 86372 Loch Ness (1995)
## 86376 Last Man Standing (1996)
## 86429 Glimmer Man, The (1996)
## 86477 Pollyanna (1960)
## 86504 Shaggy Dog, The (1959)
## 86534 Freeway (1996)
## 86576 That Thing You Do! (1996)
## 86752 To Gillian on Her 37th Birthday (1996)
## 86796 Looking for Richard (1996)
## 86851 Murder, My Sweet (1944)
## 86860 Days of Thunder (1990)
## 86913 Perfect Candidate, A (1996)
## 86917 Two or Three Things I Know About Her (1966)
## 86921 Bloody Child, The (1996)
## 86922 Braindead (1992)
## 86936 Bad Taste (1987)
## 86952 Diva (1981)
## 87018 Night on Earth (1991)
## 87054 Paris Was a Woman (1995)
## 87055 Amityville: Dollhouse (1996)
## 87058 April Fool's Day (1986)
## 87073 Believers, The (1987)
## 87089 Nosferatu a Venezia (1986)
## 87092 Jingle All the Way (1996)
## 87110 Garden of Finzi-Contini, The (Giardino dei Finzi-Contini, Il) (1970)
## 87134 My Fellow Americans (1996)
## 87220 Michael (1996)
## 87339 Whole Wide World, The (1996)
## 87345 Hearts and Minds (1996)
## 87350 Fools Rush In (1997)
## 87374 Touch (1997)
## 87383 Vegas Vacation (1997)
## 87458 Love Jones (1997)
## 87500 Picture Perfect (1997)
## 87581 Career Girls (1997)
## 87620 She's So Lovely (1997)
## 87673 Money Talks (1997)
## 87720 Excess Baggage (1997)
## 87772 That Darn Cat! (1997)
## 87805 Peacemaker, The (1997)
## 87941 Soul Food (1997)
## 88000 Washington Square (1997)
## 88034 Telling Lies in America (1997)
## 88047 Year of the Horse (1997)
## 88054 Phantoms (1998)
## 88067 Life Less Ordinary, A (1997)
## 88120 Eve's Bayou (1997)
## 88184 One Night Stand (1997)
## 88199 Tango Lesson, The (1997)
## 88212 Mortal Kombat: Annihilation (1997)
## 88255 Bent (1997)
## 88261 Flubber (1997)
## 88314 For Richer or Poorer (1997)
## 88328 Home Alone 3 (1997)
## 88347 Scream 2 (1997)
## 88453 Sweet Hereafter, The (1997)
## 88497 Time Tracers (1995)
## 88499 Postman, The (1997)
## 88557 Winter Guest, The (1997)
## 88566 Kundun (1997)
## 88608 Mr. Magoo (1997)
## 88620 Big Lebowski, The (1998)
## 88662 Afterglow (1997)
## 88680 Ma vie en rose (My Life in Pink) (1997)
## 88700 Great Expectations (1998)
## 88727 Oscar & Lucinda (1997)
## 88748 Vermin (1998)
## 88750 Half Baked (1998)
## 88770 Dangerous Beauty (1998)
## 88783 Nil By Mouth (1997)
## 88787 Twilight (1998)
## 88791 U.S. Marshalls (1998)
## 88800 Love and Death on Long Island (1997)
## 88802 Wild Things (1998)
## 88813 Primary Colors (1998)
## 88826 Lost in Space (1998)
## 88844 Mercury Rising (1998)
## 88851 City of Angels (1998)
## 1002 Twelve Monkeys (1995)
## 1612 Dead Man Walking (1995)
## 2236 Usual Suspects, The (1995)
## 2502 Mighty Aphrodite (1995)
## 2685 Postino, Il (1994)
## 2868 Mr. Holland's Opus (1995)
## 3289 White Balloon, The (1995)
## 3301 Antonia's Line (1995)
## 3530 Braveheart (1995)
## 3825 Taxi Driver (1976)
## 4182 Birdcage, The (1996)
## 5185 Crumb (1994)
## 5702 Clerks (1994)
## 6414 Star Wars (1977)
## 7546 Pulp Fiction (1994)
## 9688 Four Weddings and a Funeral (1994)
## 11066 Hudsucker Proxy, The (1994)
## 12807 Welcome to the Dollhouse (1995)
## 13277 Terminator 2: Judgment Day (1991)
## 13831 Silence of the Lambs, The (1991)
## 14393 Fargo (1996)
## 15458 Truth About Cats & Dogs, The (1996)
## 15839 Cold Comfort Farm (1995)
## 16708 Independence Day (ID4) (1996)
## 17357 Lone Star (1996)
## 17889 Godfather, The (1972)
## 21052 Willy Wonka and the Chocolate Factory (1971)
## 23246 Monty Python and the Holy Grail (1974)
## 23864 Empire Strikes Back, The (1980)
## 24231 Princess Bride, The (1987)
## 24557 Raiders of the Lost Ark (1981)
## 24975 Brazil (1985)
## 25184 Aliens (1986)
## 26171 Return of the Jedi (1983)
## 27550 Blues Brothers, The (1980)
## 28371 Amadeus (1984)
## 29161 Terminator, The (1984)
## 30537 Groundhog Day (1993)
## 31001 Back to the Future (1985)
## 31993 Indiana Jones and the Last Crusade (1989)
## 32325 M*A*S*H (1970)
## 32620 Room with a View, A (1986)
## 33913 Star Trek: First Contact (1996)
## 36803 Raising Arizona (1987)
## 37203 Beavis and Butt-head Do America (1996)
## 37492 Kolya (1996)
## 40452 Hunt for Red October, The (1990)
## 40726 Full Monty, The (1997)
## 41998 Sense and Sensibility (1995)
## 42267 Leaving Las Vegas (1995)
## 43183 Emma (1996)
## 43556 Secrets & Lies (1996)
## 44277 Scream (1996)
## 47044 L.A. Confidential (1997)
## 48216 Titanic (1997)
## 49244 Everyone Says I Love You (1996)
## 52938 One Flew Over the Cuckoo's Nest (1975)
## 54454 Adventures of Priscilla, Queen of the Desert, The (1994)
## 56658 Close Shave, A (1995)
## 58496 To Kill a Mockingbird (1962)
## 58714 Harold and Maude (1971)
## 58933 Duck Soup (1933)
## 60885 Jackie Chan's First Strike (1996)
## 62368 James and the Giant Peach (1996)
## 62496 Dr. Strangelove or: How I Learned to Stop Worrying and Love the Bomb (1963)
## 62689 Trainspotting (1996)
## 63098 Matilda (1996)
## 64719 East of Eden (1955)
## 65253 African Queen, The (1951)
## 65966 Streetcar Named Desire, A (1951)
## 66279 My Left Foot (1989)
## 66822 Annie Hall (1977)
## 67266 Manhattan (1979)
## 67447 Treasure of the Sierra Madre, The (1948)
## 67805 Cool Hand Luke (1967)
## 67969 Great Dictator, The (1940)
## 68015 Big Sleep, The (1946)
## 68622 Man Who Would Be King, The (1975)
## 71985 Beauty and the Beast (1991)
## 72515 Hunchback of Notre Dame, The (1996)
## 72927 Rear Window (1954)
## 74198 Sleepers (1996)
## 75846 Chinatown (1974)
## 75992 Stand by Me (1986)
## 76912 Being There (1979)
## 79812 Strictly Ballroom (1992)
## 80219 Home for the Holidays (1995)
## 82808 Amistad (1997)
## 83581 Beautiful Girls (1996)
## 84756 Bullets Over Broadway (1994)
## 85340 Celluloid Closet, The (1995)
## 85598 Space Jam (1996)
## 86577 That Thing You Do! (1996)
## 88859 City of Lost Children, The (1995)
## 88955 Two Bits (1995)
## 88960 Farewell My Concubine (1993)
## 89006 Dead Man (1995)
## 89040 Raise the Red Lantern (1991)
## 7 Toy Story (1995)
## 1003 Twelve Monkeys (1995)
## 1613 Dead Man Walking (1995)
## 2503 Mighty Aphrodite (1995)
## 2686 Postino, Il (1994)
## 2869 Mr. Holland's Opus (1995)
## 3290 White Balloon, The (1995)
## 3368 Angels and Insects (1995)
## 4183 Birdcage, The (1996)
## 6415 Star Wars (1977)
## 15459 Truth About Cats & Dogs, The (1996)
## 16342 Twister (1996)
## 16709 Independence Day (ID4) (1996)
## 17544 Phenomenon (1996)
## 17890 Godfather, The (1972)
## 19589 Big Night (1996)
## 20741 Ghost and the Darkness, The (1996)
## 26172 Return of the Jedi (1983)
## 33769 Mirror Has Two Faces, The (1996)
## 33914 Star Trek: First Contact (1996)
## 34456 101 Dalmatians (1996)
## 36153 Mars Attacks! (1996)
## 36418 Jerry Maguire (1996)
## 37607 Jungle2Jungle (1997)
## 37736 Smilla's Sense of Snow (1997)
## 38154 Grosse Pointe Blank (1997)
## 38313 Austin Powers: International Man of Mystery (1997)
## 38641 Shall We Dance? (1996)
## 38686 Lost World: Jurassic Park, The (1997)
## 38933 My Best Friend's Wedding (1997)
## 39123 Men in Black (1997)
## 39431 Contact (1997)
## 40727 Full Monty, The (1997)
## 41808 Sabrina (1995)
## 41999 Sense and Sensibility (1995)
## 42631 Bed of Roses (1996)
## 42720 Up Close and Personal (1996)
## 42951 Time to Kill, A (1996)
## 43184 Emma (1996)
## 43557 Secrets & Lies (1996)
## 43720 English Patient, The (1996)
## 44753 Evita (1996)
## 45107 Absolute Power (1997)
## 45234 Rosewood (1997)
## 46063 Ulee's Gold (1997)
## 46385 Air Force One (1997)
## 46815 In & Out (1997)
## 47045 L.A. Confidential (1997)
## 47575 Mrs. Brown (Her Majesty, Mrs. Brown) (1997)
## 47672 Devil's Advocate, The (1997)
## 47859 FairyTale: A True Story (1997)
## 47917 Rainmaker, The (1997)
## 49600 Murder at 1600 (1997)
## 49818 Dante's Peak (1997)
## 50663 Conspiracy Theory (1997)
## 51042 Edge, The (1997)
## 51299 Game, The (1997)
## 56225 Mission: Impossible (1996)
## 56770 Jack (1996)
## 57002 Nutty Professor, The (1996)
## 60886 Jackie Chan's First Strike (1996)
## 61102 Nixon (1995)
## 61192 Cry, the Beloved Country (1995)
## 61991 Courage Under Fire (1996)
## 62211 Dragonheart (1996)
## 62369 James and the Giant Peach (1996)
## 62938 First Wives Club, The (1996)
## 66063 People vs. Larry Flynt, The (1996)
## 69330 Broken Arrow (1996)
## 72247 Primal Fear (1996)
## 73883 Chamber, The (1996)
## 77506 Crucible, The (1996)
## 77585 Volcano (1997)
## 78256 Executive Decision (1996)
## 78664 Seven Years in Tibet (1997)
## 79145 City Hall (1996)
## 81805 Ransom (1996)
## 82111 Michael Collins (1996)
## 82441 Saint, The (1997)
## 82757 MatchMaker, The (1997)
## 83175 Red Corner (1997)
## 85397 One Fine Day (1996)
## 85717 Mulholland Falls (1996)
## 86578 That Thing You Do! (1996)
## 87135 My Fellow Americans (1996)
## 87221 Michael (1996)
## 87806 Peacemaker, The (1997)
## 88200 Tango Lesson, The (1997)
## 89098 White Squall (1996)
## 89183 Unforgettable (1996)
## 89217 Down Periscope (1996)
## 89318 Flower of My Secret, The (Flor de mi secreto, La) (1995)
## 89324 Craft, The (1996)
## 89428 Harriet the Spy (1996)
## 89468 Chain Reaction (1996)
## 89548 Island of Dr. Moreau, The (1996)
## 89605 First Kid (1996)
## 89645 Funeral, The (1996)
## 89666 Preacher's Wife, The (1996)
## 89734 Paradise Road (1997)
## 89741 Brassed Off (1996)
## 89773 Thousand Acres, A (1997)
## 89810 Smile Like Yours, A (1997)
## 8 Toy Story (1995)
## 679 Get Shorty (1995)
## 1004 Twelve Monkeys (1995)
## 1392 Babe (1995)
## 1614 Dead Man Walking (1995)
## 2001 Seven (Se7en) (1995)
## 2237 Usual Suspects, The (1995)
## 2870 Mr. Holland's Opus (1995)
## 3531 Braveheart (1995)
## 4545 Bad Boys (1995)
## 4605 Apollo 13 (1995)
## 5028 Crimson Tide (1995)
## 5264 Desperado (1995)
## 5521 Strange Days (1995)
## 6990 Legends of the Fall (1994)
## 7392 Professional, The (1994)
## 7547 Pulp Fiction (1994)
## 7976 Quiz Show (1994)
## 8568 Shawshank Redemption, The (1994)
## 8964 While You Were Sleeping (1995)
## 9368 Forrest Gump (1994)
## 9689 Four Weddings and a Funeral (1994)
## 9937 Lion King, The (1994)
## 10422 Carlito's Way (1993)
## 10666 Fugitive, The (1993)
## 11839 Searching for Bobby Fischer (1993)
## 12193 Blade Runner (1982)
## 12703 True Romance (1993)
## 13057 Aladdin (1992)
## 13278 Terminator 2: Judgment Day (1991)
## 13832 Silence of the Lambs, The (1991)
## 14218 Snow White and the Seven Dwarfs (1937)
## 14394 Fargo (1996)
## 15296 Mystery Science Theater 3000: The Movie (1996)
## 17545 Phenomenon (1996)
## 17891 Godfather, The (1972)
## 19027 Citizen Kane (1941)
## 19228 2001: A Space Odyssey (1968)
## 20021 Sound of Music, The (1965)
## 20243 Die Hard (1988)
## 21053 Willy Wonka and the Chocolate Factory (1971)
## 21377 Sleeper (1973)
## 21880 Dirty Dancing (1987)
## 21979 Reservoir Dogs (1992)
## 22252 Weekend at Bernie's (1989)
## 22414 Glengarry Glen Ross (1992)
## 22485 Top Gun (1986)
## 22902 Abyss, The (1989)
## 23247 Monty Python and the Holy Grail (1974)
## 23865 Empire Strikes Back, The (1980)
## 24558 Raiders of the Lost Ark (1981)
## 25603 12 Angry Men (1957)
## 25950 Apocalypse Now (1979)
## 26678 GoodFellas (1990)
## 26905 Alien (1979)
## 28372 Amadeus (1984)
## 28920 Sting, The (1973)
## 29162 Terminator, The (1984)
## 29711 Graduate, The (1967)
## 30077 Bridge on the River Kwai, The (1957)
## 30244 Shining, The (1980)
## 30538 Groundhog Day (1993)
## 31002 Back to the Future (1985)
## 31602 Young Frankenstein (1974)
## 31800 This Is Spinal Tap (1984)
## 33084 When Harry Met Sally... (1989)
## 34734 Star Trek VI: The Undiscovered Country (1991)
## 34896 Star Trek: The Wrath of Khan (1982)
## 35310 Star Trek IV: The Voyage Home (1986)
## 35750 Under Siege (1992)
## 35875 Jaws (1975)
## 36419 Jerry Maguire (1996)
## 37204 Beavis and Butt-head Do America (1996)
## 41585 Heat (1995)
## 42952 Time to Kill, A (1996)
## 43360 Tin Cup (1996)
## 43721 English Patient, The (1996)
## 44278 Scream (1996)
## 45502 Liar Liar (1997)
## 46386 Air Force One (1997)
## 47046 L.A. Confidential (1997)
## 48949 Schindler's List (1993)
## 49433 Mother (1996)
## 52939 One Flew Over the Cuckoo's Nest (1975)
## 53590 Clueless (1995)
## 54667 True Lies (1994)
## 56123 Pinocchio (1940)
## 56841 Kingpin (1996)
## 57539 Cinderella (1950)
## 58060 E.T. the Extra-Terrestrial (1982)
## 58497 To Kill a Mockingbird (1962)
## 59991 Birds, The (1963)
## 60231 Carrie (1976)
## 60351 Omen, The (1976)
## 61703 Bronx Tale, A (1993)
## 61813 Short Cuts (1993)
## 61992 Courage Under Fire (1996)
## 62939 First Wives Club, The (1996)
## 63299 Vertigo (1958)
## 63479 North by Northwest (1959)
## 63720 Some Like It Hot (1959)
## 64953 It's a Wonderful Life (1946)
## 65254 African Queen, The (1951)
## 65590 Bananas (1971)
## 65687 Bonnie and Clyde (1967)
## 66280 My Left Foot (1989)
## 66401 Magnificent Seven, The (1954)
## 68701 Shine (1996)
## 69331 Broken Arrow (1996)
## 70518 Tales from the Hood (1995)
## 71780 Romeo Is Bleeding (1993)
## 72248 Primal Fear (1996)
## 72876 American in Paris, An (1951)
## 72928 Rear Window (1954)
## 73247 All About Eve (1950)
## 74369 Victor/Victoria (1982)
## 75096 Grifters, The (1990)
## 75847 Chinatown (1974)
## 75993 Stand by Me (1986)
## 76263 Manchurian Candidate, The (1962)
## 76740 High Noon (1952)
## 78088 In the Line of Fire (1993)
## 78835 American President, The (1995)
## 78997 Casino (1995)
## 79498 Singin' in the Rain (1952)
## 80994 Dave (1993)
## 81217 Philadelphia (1993)
## 83537 Nick of Time (1995)
## 84020 Devil in a Blue Dress (1995)
## 85322 Andre (1994)
## 89835 Murder in the First (1995)
## 89895 Airheads (1994)
## 89927 With Honors (1994)
## 89973 What's Love Got to Do with It (1993)
## 90018 Killing Zoe (1994)
## 90058 Renaissance Man (1994)
## 90101 Charade (1963)
## 90141 Fox and the Hound, The (1981)
## 90202 Big Blue, The (Grand bleu, Le) (1988)
## 90219 Booty Call (1997)
## 9 Toy Story (1995)
## 1005 Twelve Monkeys (1995)
## 1615 Dead Man Walking (1995)
## 2504 Mighty Aphrodite (1995)
## 14395 Fargo (1996)
## 15460 Truth About Cats & Dogs, The (1996)
## 15964 Rock, The (1996)
## 17546 Phenomenon (1996)
## 17786 Spitfire Grill, The (1996)
## 19590 Big Night (1996)
## 20893 Swingers (1996)
## 21054 Willy Wonka and the Chocolate Factory (1971)
## 33837 Breaking the Waves (1996)
## 33915 Star Trek: First Contact (1996)
## 36420 Jerry Maguire (1996)
## 37608 Jungle2Jungle (1997)
## 37786 Devil's Own, The (1997)
## 40728 Full Monty, The (1997)
## 42268 Leaving Las Vegas (1995)
## 43722 English Patient, The (1996)
## 45503 Liar Liar (1997)
## 49819 Dante's Peak (1997)
## 61993 Courage Under Fire (1996)
## 62690 Trainspotting (1996)
## 66064 People vs. Larry Flynt, The (1996)
## 74199 Sleepers (1996)
## 82112 Michael Collins (1996)
## 88860 City of Lost Children, The (1995)
## 10 Toy Story (1995)
## 680 Get Shorty (1995)
## 971 Shanghai Triad (Yao a yao yao dao waipo qiao) (1995)
## 1393 Babe (1995)
## 1616 Dead Man Walking (1995)
## 2238 Usual Suspects, The (1995)
## 2505 Mighty Aphrodite (1995)
## 2687 Postino, Il (1994)
## 2871 Mr. Holland's Opus (1995)
## 3302 Antonia's Line (1995)
## 3532 Braveheart (1995)
## 3826 Taxi Driver (1976)
## 4184 Birdcage, The (1996)
## 4470 Brothers McMullen, The (1995)
## 4606 Apollo 13 (1995)
## 5186 Crumb (1994)
## 5703 Clerks (1994)
## 5967 Eat Drink Man Woman (1994)
## 6076 Ed Wood (1994)
## 6208 Hoop Dreams (1994)
## 6416 Star Wars (1977)
## 7070 Madness of King George, The (1994)
## 7548 Pulp Fiction (1994)
## 7935 Priest (1994)
## 7977 Quiz Show (1994)
## 8152 Three Colors: Red (1994)
## 8234 Three Colors: Blue (1993)
## 8297 Three Colors: White (1994)
## 8569 Shawshank Redemption, The (1994)
## 8847 What's Eating Gilbert Grape (1993)
## 8965 While You Were Sleeping (1995)
## 9369 Forrest Gump (1994)
## 9690 Four Weddings and a Funeral (1994)
## 9938 Lion King, The (1994)
## 10155 Mask, The (1994)
## 10667 Fugitive, The (1993)
## 11067 Hudsucker Proxy, The (1994)
## 11179 Jurassic Park (1993)
## 11437 Much Ado About Nothing (1993)
## 11691 Remains of the Day, The (1993)
## 11978 Sleepless in Seattle (1993)
## 12194 Blade Runner (1982)
## 12560 Nightmare Before Christmas, The (1993)
## 12920 Home Alone (1990)
## 13058 Aladdin (1992)
## 13572 Dances with Wolves (1990)
## 13833 Silence of the Lambs, The (1991)
## 14219 Snow White and the Seven Dwarfs (1937)
## 14396 Fargo (1996)
## 15461 Truth About Cats & Dogs, The (1996)
## 15746 Horseman on the Roof, The (Hussard sur le toit, Le) (1995)
## 15840 Cold Comfort Farm (1995)
## 17547 Phenomenon (1996)
## 17787 Spitfire Grill, The (1996)
## 17892 Godfather, The (1972)
## 18514 Breakfast at Tiffany's (1961)
## 18612 Wizard of Oz, The (1939)
## 18857 Gone with the Wind (1939)
## 19028 Citizen Kane (1941)
## 19229 2001: A Space Odyssey (1968)
## 19483 Mr. Smith Goes to Washington (1939)
## 19591 Big Night (1996)
## 19960 Bedknobs and Broomsticks (1971)
## 20022 Sound of Music, The (1965)
## 21055 Willy Wonka and the Chocolate Factory (1971)
## 21378 Sleeper (1973)
## 21462 Fish Called Wanda, A (1988)
## 21708 Monty Python's Life of Brian (1979)
## 22128 Platoon (1986)
## 22704 On Golden Pond (1981)
## 23052 Jean de Florette (1986)
## 23117 Manon of the Spring (Manon des sources) (1986)
## 23248 Monty Python and the Holy Grail (1974)
## 23557 Wrong Trousers, The (1993)
## 23677 Cinema Paradiso (1988)
## 23866 Empire Strikes Back, The (1980)
## 24559 Raiders of the Lost Ark (1981)
## 24976 Brazil (1985)
## 25466 Good, The Bad and The Ugly, The (1966)
## 25604 12 Angry Men (1957)
## 25727 Clockwork Orange, A (1971)
## 25951 Apocalypse Now (1979)
## 26173 Return of the Jedi (1983)
## 26679 GoodFellas (1990)
## 27312 Psycho (1960)
## 27551 Blues Brothers, The (1980)
## 27800 Godfather: Part II, The (1974)
## 28009 Full Metal Jacket (1987)
## 28177 Grand Day Out, A (1992)
## 28245 Henry V (1989)
## 28373 Amadeus (1984)
## 28760 Right Stuff, The (1983)
## 28921 Sting, The (1973)
## 29163 Terminator, The (1984)
## 29460 Dead Poets Society (1989)
## 29712 Graduate, The (1967)
## 29949 Nikita (La Femme Nikita) (1990)
## 30078 Bridge on the River Kwai, The (1957)
## 30245 Shining, The (1980)
## 30539 Groundhog Day (1993)
## 31003 Back to the Future (1985)
## 31603 Young Frankenstein (1974)
## 31801 This Is Spinal Tap (1984)
## 31994 Indiana Jones and the Last Crusade (1989)
## 32326 M*A*S*H (1970)
## 32527 Unbearable Lightness of Being, The (1988)
## 32621 Room with a View, A (1986)
## 32753 Pink Floyd - The Wall (1982)
## 32869 Field of Dreams (1989)
## 33085 When Harry Met Sally... (1989)
## 33838 Breaking the Waves (1996)
## 34278 Sling Blade (1996)
## 34411 Ridicule (1996)
## 35876 Jaws (1975)
## 36368 Citizen Ruth (1996)
## 36421 Jerry Maguire (1996)
## 36804 Raising Arizona (1987)
## 37364 Last of the Mohicans, The (1992)
## 37493 Kolya (1996)
## 40729 Full Monty, The (1997)
## 42000 Sense and Sensibility (1995)
## 42269 Leaving Las Vegas (1995)
## 43185 Emma (1996)
## 43361 Tin Cup (1996)
## 43558 Secrets & Lies (1996)
## 43723 English Patient, The (1996)
## 44196 Marvin's Room (1996)
## 48846 In the Name of the Father (1993)
## 48950 Schindler's List (1993)
## 49245 Everyone Says I Love You (1996)
## 52940 One Flew Over the Cuckoo's Nest (1975)
## 53591 Clueless (1995)
## 54092 Miracle on 34th Street (1994)
## 54352 Muriel's Wedding (1994)
## 54455 Adventures of Priscilla, Queen of the Desert, The (1994)
## 54872 Addams Family Values (1993)
## 54959 Age of Innocence, The (1993)
## 55147 Man Without a Face, The (1993)
## 55217 Mrs. Doubtfire (1993)
## 55754 Ghost (1990)
## 55922 Batman (1989)
## 56124 Pinocchio (1940)
## 56659 Close Shave, A (1995)
## 57003 Nutty Professor, The (1996)
## 57315 My Favorite Year (1982)
## 57402 Old Yeller (1957)
## 57540 Cinderella (1950)
## 57668 Mary Poppins (1964)
## 58061 E.T. the Extra-Terrestrial (1982)
## 58377 Bob Roberts (1992)
## 58498 To Kill a Mockingbird (1962)
## 58715 Harold and Maude (1971)
## 58934 Duck Soup (1933)
## 59179 Fantasia (1940)
## 59522 Forbidden Planet (1956)
## 59593 Butch Cassidy and the Sundance Kid (1969)
## 59992 Birds, The (1963)
## 60617 Grease (1978)
## 61246 Smoke (1995)
## 61320 Like Water For Chocolate (Como agua para chocolate) (1992)
## 61469 Secret of Roan Inish, The (1994)
## 62497 Dr. Strangelove or: How I Learned to Stop Worrying and Love the Bomb (1963)
## 62940 First Wives Club, The (1996)
## 63194 Philadelphia Story, The (1940)
## 63300 Vertigo (1958)
## 63480 North by Northwest (1959)
## 63721 Some Like It Hot (1959)
## 63849 Casablanca (1942)
## 64228 My Fair Lady (1964)
## 64352 Sabrina (1954)
## 64417 Roman Holiday (1953)
## 64486 Sunset Blvd. (1950)
## 64550 Notorious (1946)
## 64720 East of Eden (1955)
## 64778 Thin Man, The (1934)
## 64837 His Girl Friday (1940)
## 64954 It's a Wonderful Life (1946)
## 65185 Bringing Up Baby (1938)
## 65255 African Queen, The (1951)
## 65688 Bonnie and Clyde (1967)
## 66281 My Left Foot (1989)
## 66402 Magnificent Seven, The (1954)
## 66691 Wings of Desire (1987)
## 66750 Third Man, The (1949)
## 66823 Annie Hall (1977)
## 67002 Boot, Das (1981)
## 67202 Local Hero (1983)
## 67267 Manhattan (1979)
## 67448 Treasure of the Sierra Madre, The (1948)
## 67526 Great Escape, The (1963)
## 67806 Cool Hand Luke (1967)
## 67970 Great Dictator, The (1940)
## 68089 Ben-Hur (1959)
## 68215 Gandhi (1982)
## 68406 Killing Fields, The (1984)
## 68529 My Life as a Dog (Mitt liv som hund) (1985)
## 68623 Man Who Would Be King, The (1975)
## 69638 Rob Roy (1995)
## 71613 Piano, The (1993)
## 71986 Beauty and the Beast (1991)
## 72877 American in Paris, An (1951)
## 72929 Rear Window (1954)
## 73135 It Happened One Night (1934)
## 73311 Rebecca (1940)
## 73407 Father of the Bride (1950)
## 73469 Gigi (1958)
## 73549 Lost Horizon (1937)
## 73583 My Man Godfrey (1936)
## 73610 Giant (1956)
## 74123 Robin Hood: Prince of Thieves (1991)
## 74370 Victor/Victoria (1982)
## 74445 Great Race, The (1965)
## 74476 Crying Game, The (1992)
## 74652 Christmas Carol, A (1938)
## 74942 Tin Drum, The (Blechtrommel, Die) (1979)
## 75290 Ran (1985)
## 75426 Once Upon a Time in America (1984)
## 75848 Chinatown (1974)
## 76473 Arsenic and Old Lace (1944)
## 76587 Fried Green Tomatoes (1991)
## 76913 Being There (1979)
## 78836 American President, The (1995)
## 79275 Little Women (1994)
## 79401 Barcelona (1994)
## 79473 House of the Spirits, The (1993)
## 79499 Singin' in the Rain (1952)
## 79641 Enchanted April (1991)
## 79711 Sex, Lies, and Videotape (1989)
## 79813 Strictly Ballroom (1992)
## 80118 Carrington (1995)
## 80220 Home for the Holidays (1995)
## 80635 Circle of Friends (1995)
## 80849 Nell (1994)
## 80995 Dave (1993)
## 81218 Philadelphia (1993)
## 81353 Shadowlands (1993)
## 81431 Sirens (1994)
## 81521 Pretty Woman (1990)
## 82339 Benny & Joon (1993)
## 83150 Burnt By the Sun (1994)
## 83582 Beautiful Girls (1996)
## 84216 Something to Talk About (1995)
## 84255 Don Juan DeMarco (1995)
## 84431 French Kiss (1995)
## 84757 Bullets Over Broadway (1994)
## 84852 It Could Happen to You (1994)
## 85099 Manhattan Murder Mystery (1993)
## 86579 That Thing You Do! (1996)
## 87019 Night on Earth (1991)
## 87111 Garden of Finzi-Contini, The (Giardino dei Finzi-Contini, Il) (1970)
## 88961 Farewell My Concubine (1993)
## 89041 Raise the Red Lantern (1991)
## 90267 How to Make an American Quilt (1995)
## 90338 Georgia (1995)
## 90368 Indian in the Cupboard, The (1995)
## 90407 Blue in the Face (1995)
## 90452 Unstrung Heroes (1995)
## 90474 Unzipped (1995)
## 90485 Before Sunrise (1995)
## 90534 Nobody's Fool (1994)
## 90580 Pushing Hands (1992)
## 90582 To Live (Huozhe) (1994)
## 90596 Dazed and Confused (1993)
## 90660 Naked (1993)
## 90685 Orlando (1993)
## 90719 Ruby in Paradise (1993)
## 90742 Some Folks Call It a Sling Blade (1993)
## 90783 Month by the Lake, A (1995)
## 90792 Funny Face (1957)
## 90813 Affair to Remember, An (1957)
## 90839 Little Lord Fauntleroy (1936)
## 90851 Inspector General, The (1949)
## 90869 Winnie the Pooh and the Blustery Day (1968)
## 90944 Hear My Song (1991)
## 90952 Mediterraneo (1991)
## 90986 Passion Fish (1992)
## 91014 Grateful Dead (1995)
## 681 Get Shorty (1995)
## 1394 Babe (1995)
## 21463 Fish Called Wanda, A (1988)
## 30447 Evil Dead II (1987)
## 30540 Groundhog Day (1993)
## 31995 Indiana Jones and the Last Crusade (1989)
## 32327 M*A*S*H (1970)
## 39432 Contact (1997)
## 44279 Scream (1996)
## 45504 Liar Liar (1997)
## 47918 Rainmaker, The (1997)
## 48217 Titanic (1997)
## 49246 Everyone Says I Love You (1996)
## 50182 Crash (1996)
## 54456 Adventures of Priscilla, Queen of the Desert, The (1994)
## 59594 Butch Cassidy and the Sundance Kid (1969)
## 75994 Stand by Me (1986)
## 78837 American President, The (1995)
## 88121 Eve's Bayou (1997)
## 11 Toy Story (1995)
## 2002 Seven (Se7en) (1995)
## 2872 Mr. Holland's Opus (1995)
## 3533 Braveheart (1995)
## 6417 Star Wars (1977)
## 9370 Forrest Gump (1994)
## 11180 Jurassic Park (1993)
## 11840 Searching for Bobby Fischer (1993)
## 12921 Home Alone (1990)
## 13059 Aladdin (1992)
## 13834 Silence of the Lambs, The (1991)
## 16343 Twister (1996)
## 16710 Independence Day (ID4) (1996)
## 20023 Sound of Music, The (1965)
## 20244 Die Hard (1988)
## 20742 Ghost and the Darkness, The (1996)
## 21056 Willy Wonka and the Chocolate Factory (1971)
## 23867 Empire Strikes Back, The (1980)
## 24560 Raiders of the Lost Ark (1981)
## 25185 Aliens (1986)
## 26174 Return of the Jedi (1983)
## 27552 Blues Brothers, The (1980)
## 28922 Sting, The (1973)
## 31004 Back to the Future (1985)
## 31604 Young Frankenstein (1974)
## 31996 Indiana Jones and the Last Crusade (1989)
## 37609 Jungle2Jungle (1997)
## 38687 Lost World: Jurassic Park, The (1997)
## 41809 Sabrina (1995)
## 44280 Scream (1996)
## 49820 Dante's Peak (1997)
## 52941 One Flew Over the Cuckoo's Nest (1975)
## 54093 Miracle on 34th Street (1994)
## 56226 Mission: Impossible (1996)
## 58062 E.T. the Extra-Terrestrial (1982)
## 64955 It's a Wonderful Life (1946)
## 65256 African Queen, The (1951)
## 70782 Speed (1994)
## 71987 Beauty and the Beast (1991)
## 72643 Eraser (1996)
## 74653 Christmas Carol, A (1938)
## 77586 Volcano (1997)
## 81806 Ransom (1996)
## 83696 Happy Gilmore (1996)
## 85599 Space Jam (1996)
## 87222 Michael (1996)
## 89549 Island of Dr. Moreau, The (1996)
## 89667 Preacher's Wife, The (1996)
## 12 Toy Story (1995)
## 885 Copycat (1995)
## 1006 Twelve Monkeys (1995)
## 1617 Dead Man Walking (1995)
## 2873 Mr. Holland's Opus (1995)
## 3199 From Dusk Till Dawn (1996)
## 6418 Star Wars (1977)
## 7161 Natural Born Killers (1994)
## 7549 Pulp Fiction (1994)
## 13835 Silence of the Lambs, The (1991)
## 14397 Fargo (1996)
## 15021 All Dogs Go to Heaven 2 (1996)
## 15116 Diabolique (1996)
## 16344 Twister (1996)
## 16711 Independence Day (ID4) (1996)
## 17240 Frighteners, The (1996)
## 17893 Godfather, The (1972)
## 18361 Bound (1996)
## 20484 Lawnmower Man, The (1992)
## 20743 Ghost and the Darkness, The (1996)
## 22903 Abyss, The (1989)
## 27191 Army of Darkness (1993)
## 27313 Psycho (1960)
## 30246 Shining, The (1980)
## 30448 Evil Dead II (1987)
## 33369 Bram Stoker's Dracula (1992)
## 33489 Cape Fear (1991)
## 33661 Nightmare on Elm Street, A (1984)
## 33916 Star Trek: First Contact (1996)
## 35877 Jaws (1975)
## 37205 Beavis and Butt-head Do America (1996)
## 37494 Kolya (1996)
## 37610 Jungle2Jungle (1997)
## 37737 Smilla's Sense of Snow (1997)
## 37787 Devil's Own, The (1997)
## 39433 Contact (1997)
## 39937 George of the Jungle (1997)
## 40100 Event Horizon (1997)
## 40223 Air Bud (1997)
## 40265 In the Company of Men (1997)
## 40331 Steel (1997)
## 40353 Mimic (1997)
## 41586 Heat (1995)
## 42806 River Wild, The (1994)
## 43724 English Patient, The (1996)
## 44281 Scream (1996)
## 44754 Evita (1996)
## 45108 Absolute Power (1997)
## 45235 Rosewood (1997)
## 45505 Liar Liar (1997)
## 45979 Breakdown (1997)
## 46114 Face/Off (1997)
## 46308 Hoodlum (1997)
## 46387 Air Force One (1997)
## 46816 In & Out (1997)
## 49247 Everyone Says I Love You (1996)
## 49411 Paradise Lost: The Child Murders at Robin Hood Hills (1996)
## 49434 Mother (1996)
## 49601 Murder at 1600 (1997)
## 49821 Dante's Peak (1997)
## 50060 Lost Highway (1997)
## 50183 Crash (1996)
## 50311 G.I. Jane (1997)
## 50487 Cop Land (1997)
## 50664 Conspiracy Theory (1997)
## 51000 187 (1997)
## 53199 Spawn (1997)
## 53843 Mary Reilly (1996)
## 54194 Tales From the Crypt Presents: Demon Knight (1995)
## 55476 Serial Mom (1994)
## 56566 Thinner (1996)
## 56660 Close Shave, A (1995)
## 57258 Tales from the Crypt Presents: Bordello of Blood (1996)
## 58357 Children of the Corn: The Gathering (1996)
## 59805 American Werewolf in London, An (1981)
## 59903 Amityville 1992: It's About Time (1992)
## 59908 Amityville 3-D (1983)
## 59914 Amityville: A New Generation (1993)
## 59920 Amityville II: The Possession (1982)
## 59934 Amityville Horror, The (1979)
## 59993 Birds, The (1963)
## 60153 Blob, The (1958)
## 60198 Body Snatcher, The (1945)
## 60232 Carrie (1976)
## 60352 Omen, The (1976)
## 60786 Jaws 2 (1978)
## 60851 Jaws 3-D (1983)
## 61077 Free Willy 3: The Rescue (1997)
## 62370 James and the Giant Peach (1996)
## 69584 Young Poisoner's Handbook, The (1995)
## 69880 Lord of Illusions (1995)
## 70155 Heavenly Creatures (1994)
## 70223 Interview with the Vampire (1994)
## 70383 Mary Shelley's Frankenstein (1994)
## 70489 Stephen King's The Langoliers (1995)
## 70519 Tales from the Hood (1995)
## 70545 Village of the Damned (1995)
## 70746 Wes Craven's New Nightmare (1994)
## 71011 Wolf (1994)
## 71186 Body Snatchers (1993)
## 72229 Hellraiser: Bloodline (1996)
## 72249 Primal Fear (1996)
## 72450 Fan, The (1996)
## 72516 Hunchback of Notre Dame, The (1996)
## 73820 Extreme Measures (1996)
## 74200 Sleepers (1996)
## 74746 Fog, The (1980)
## 74860 Howling, The (1981)
## 76219 M (1931)
## 77072 Alien 3 (1992)
## 77189 Blood Beach (1981)
## 77195 Body Parts (1991)
## 77208 Bride of Frankenstein (1935)
## 77254 Candyman (1992)
## 77405 Cat People (1982)
## 77453 Nosferatu (Nosferatu, eine Symphonie des Grauens) (1922)
## 77587 Volcano (1997)
## 78463 McHale's Navy (1997)
## 78532 Leave It to Beaver (1997)
## 79146 City Hall (1996)
## 79635 Bad Moon (1996)
## 80276 Juror, The (1996)
## 81747 Last Supper, The (1995)
## 81807 Ransom (1996)
## 82442 Saint, The (1997)
## 83459 Lawnmower Man 2: Beyond Cyberspace (1996)
## 83491 Screamers (1995)
## 83915 Addiction, The (1995)
## 83978 Congo (1995)
## 84167 Mute Witness (1994)
## 84184 Prophecy, The (1995)
## 85000 In the Mouth of Madness (1995)
## 85509 Candyman: Farewell to the Flesh (1995)
## 85530 Frisk (1995)
## 85600 Space Jam (1996)
## 86278 Halloween: The Curse of Michael Myers (1995)
## 86373 Loch Ness (1995)
## 86535 Freeway (1996)
## 86923 Braindead (1992)
## 86937 Bad Taste (1987)
## 87056 Amityville: Dollhouse (1996)
## 87059 April Fool's Day (1986)
## 87074 Believers, The (1987)
## 87459 Love Jones (1997)
## 87501 Picture Perfect (1997)
## 87582 Career Girls (1997)
## 87621 She's So Lovely (1997)
## 87674 Money Talks (1997)
## 87721 Excess Baggage (1997)
## 87773 That Darn Cat! (1997)
## 89184 Unforgettable (1996)
## 89325 Craft, The (1996)
## 89469 Chain Reaction (1996)
## 89550 Island of Dr. Moreau, The (1996)
## 90220 Booty Call (1997)
## 91018 Eye for an Eye (1996)
## 91050 Fear (1996)
## 91094 Solo (1996)
## 91106 Substitute, The (1996)
## 91155 Heaven's Prisoners (1996)
## 91182 Trigger Effect, The (1996)
## 91217 Mother Night (1996)
## 91239 Dangerous Ground (1997)
## 91247 Maximum Risk (1996)
## 91267 Rich Man's Wife, The (1996)
## 91282 Shadow Conspiracy (1997)
## 91326 Blood & Wine (1997)
## 91348 Turbulence (1997)
## 91371 Underworld (1997)
## 91375 Beautician and the Beast, The (1997)
## 91461 Cats Don't Dance (1997)
## 91493 Anna Karenina (1997)
## 91526 Keys to Tulsa (1997)
## 91551 Head Above Water (1996)
## 91555 Hercules (1997)
## 91621 Last Time I Committed Suicide, The (1997)
## 91628 Kiss Me, Guido (1997)
## 456 GoldenEye (1995)
## 682 Get Shorty (1995)
## 3200 From Dusk Till Dawn (1996)
## 3443 Muppet Treasure Island (1996)
## 4006 Rumble in the Bronx (1995)
## 4880 Batman Forever (1995)
## 6419 Star Wars (1977)
## 7162 Natural Born Killers (1994)
## 8358 Stargate (1994)
## 9229 Crow, The (1994)
## 10668 Fugitive, The (1993)
## 10998 Hot Shots! Part Deux (1993)
## 11630 Ref, The (1994)
## 12195 Blade Runner (1982)
## 12922 Home Alone (1990)
## 13279 Terminator 2: Judgment Day (1991)
## 15042 Sgt. Bilko (1996)
## 15297 Mystery Science Theater 3000: The Movie (1996)
## 15426 Operation Dumbo Drop (1995)
## 15965 Rock, The (1996)
## 16345 Twister (1996)
## 16712 Independence Day (ID4) (1996)
## 17894 Godfather, The (1972)
## 18296 Supercop (1992)
## 20245 Die Hard (1988)
## 21464 Fish Called Wanda, A (1988)
## 21709 Monty Python's Life of Brian (1979)
## 22486 Top Gun (1986)
## 22810 Return of the Pink Panther, The (1974)
## 23174 Private Benjamin (1980)
## 23249 Monty Python and the Holy Grail (1974)
## 23868 Empire Strikes Back, The (1980)
## 24232 Princess Bride, The (1987)
## 24561 Raiders of the Lost Ark (1981)
## 24977 Brazil (1985)
## 25186 Aliens (1986)
## 26175 Return of the Jedi (1983)
## 27192 Army of Darkness (1993)
## 27553 Blues Brothers, The (1980)
## 27801 Godfather: Part II, The (1974)
## 28923 Sting, The (1973)
## 29164 Terminator, The (1984)
## 30449 Evil Dead II (1987)
## 30541 Groundhog Day (1993)
## 31005 Back to the Future (1985)
## 31605 Young Frankenstein (1974)
## 31802 This Is Spinal Tap (1984)
## 31997 Indiana Jones and the Last Crusade (1989)
## 32328 M*A*S*H (1970)
## 33086 When Harry Met Sally... (1989)
## 33917 Star Trek: First Contact (1996)
## 34566 Die Hard 2 (1990)
## 34735 Star Trek VI: The Undiscovered Country (1991)
## 34897 Star Trek: The Wrath of Khan (1982)
## 35139 Star Trek III: The Search for Spock (1984)
## 35311 Star Trek IV: The Voyage Home (1986)
## 35507 Batman Returns (1992)
## 35751 Under Siege (1992)
## 36805 Raising Arizona (1987)
## 37365 Last of the Mohicans, The (1992)
## 38444 Fifth Element, The (1997)
## 39434 Contact (1997)
## 40453 Hunt for Red October, The (1990)
## 45012 Fierce Creatures (1997)
## 45506 Liar Liar (1997)
## 53200 Spawn (1997)
## 53592 Clueless (1995)
## 54054 Houseguest (1994)
## 54079 Heavyweights (1994)
## 54595 Naked Gun 33 1/3: The Final Insult (1994)
## 54668 True Lies (1994)
## 54873 Addams Family Values (1993)
## 55218 Mrs. Doubtfire (1993)
## 55568 Three Musketeers, The (1993)
## 55923 Batman (1989)
## 56227 Mission: Impossible (1996)
## 56614 Spy Hard (1996)
## 57004 Nutty Professor, The (1996)
## 58935 Duck Soup (1933)
## 59026 Highlander (1986)
## 59352 Heathers (1989)
## 59595 Butch Cassidy and the Sundance Kid (1969)
## 60437 Star Trek: The Motion Picture (1979)
## 60618 Grease (1978)
## 60887 Jackie Chan's First Strike (1996)
## 61027 Beverly Hills Ninja (1997)
## 65591 Bananas (1971)
## 66403 Magnificent Seven, The (1954)
## 66522 Lawrence of Arabia (1962)
## 67003 Boot, Das (1981)
## 67807 Cool Hand Luke (1967)
## 68090 Ben-Hur (1959)
## 69332 Broken Arrow (1996)
## 69730 Die Hard: With a Vengeance (1995)
## 70012 Waterworld (1995)
## 70568 Clear and Present Danger (1994)
## 70783 Speed (1994)
## 74769 Escape from New York (1981)
## 75359 Quiet Man, The (1952)
## 75551 Glory (1989)
## 77073 Alien 3 (1992)
## 78038 Rocket Man (1997)
## 78089 In the Line of Fire (1993)
## 78464 McHale's Navy (1997)
## 78533 Leave It to Beaver (1997)
## 78838 American President, The (1995)
## 79996 Tin Men (1987)
## 80954 Corrina, Corrina (1994)
## 80996 Dave (1993)
## 84362 Dumb & Dumber (1994)
## 84746 Baby-Sitters Club, The (1995)
## 84758 Bullets Over Broadway (1994)
## 86377 Last Man Standing (1996)
## 87093 Jingle All the Way (1996)
## 87384 Vegas Vacation (1997)
## 87774 That Darn Cat! (1997)
## 89218 Down Periscope (1996)
## 89606 First Kid (1996)
## 90221 Booty Call (1997)
## 91376 Beautician and the Beast, The (1997)
## 91659 Big Green, The (1995)
## 91673 Stuart Saves His Family (1995)
## 91689 Cabin Boy (1994)
## 91705 Clean Slate (1994)
## 91715 Lightning Jack (1994)
## 91725 Stupids, The (1996)
## 91742 Pest, The (1997)
## 13 Toy Story (1995)
## 1007 Twelve Monkeys (1995)
## 1395 Babe (1995)
## 2506 Mighty Aphrodite (1995)
## 2688 Postino, Il (1994)
## 3303 Antonia's Line (1995)
## 4607 Apollo 13 (1995)
## 5187 Crumb (1994)
## 6420 Star Wars (1977)
## 7393 Professional, The (1994)
## 7550 Pulp Fiction (1994)
## 8153 Three Colors: Red (1994)
## 8359 Stargate (1994)
## 9691 Four Weddings and a Funeral (1994)
## 9939 Lion King, The (1994)
## 10284 Maverick (1994)
## 10669 Fugitive, The (1993)
## 11181 Jurassic Park (1993)
## 11438 Much Ado About Nothing (1993)
## 11979 Sleepless in Seattle (1993)
## 12196 Blade Runner (1982)
## 12467 So I Married an Axe Murderer (1993)
## 12561 Nightmare Before Christmas, The (1993)
## 13060 Aladdin (1992)
## 13280 Terminator 2: Judgment Day (1991)
## 13836 Silence of the Lambs, The (1991)
## 14220 Snow White and the Seven Dwarfs (1937)
## 14398 Fargo (1996)
## 14968 Aristocats, The (1970)
## 15298 Mystery Science Theater 3000: The Movie (1996)
## 15841 Cold Comfort Farm (1995)
## 17358 Lone Star (1996)
## 18515 Breakfast at Tiffany's (1961)
## 18613 Wizard of Oz, The (1939)
## 18858 Gone with the Wind (1939)
## 19029 Citizen Kane (1941)
## 20024 Sound of Music, The (1965)
## 20246 Die Hard (1988)
## 20485 Lawnmower Man, The (1992)
## 21057 Willy Wonka and the Chocolate Factory (1971)
## 21465 Fish Called Wanda, A (1988)
## 21710 Monty Python's Life of Brian (1979)
## 21881 Dirty Dancing (1987)
## 21980 Reservoir Dogs (1992)
## 22487 Top Gun (1986)
## 22705 On Golden Pond (1981)
## 23678 Cinema Paradiso (1988)
## 23795 Delicatessen (1991)
## 23869 Empire Strikes Back, The (1980)
## 24233 Princess Bride, The (1987)
## 24562 Raiders of the Lost Ark (1981)
## 24978 Brazil (1985)
## 25187 Aliens (1986)
## 25467 Good, The Bad and The Ugly, The (1966)
## 26176 Return of the Jedi (1983)
## 26906 Alien (1979)
## 27314 Psycho (1960)
## 28010 Full Metal Jacket (1987)
## 28178 Grand Day Out, A (1992)
## 28374 Amadeus (1984)
## 28924 Sting, The (1973)
## 29165 Terminator, The (1984)
## 29461 Dead Poets Society (1989)
## 30542 Groundhog Day (1993)
## 30818 Unforgiven (1992)
## 31006 Back to the Future (1985)
## 31803 This Is Spinal Tap (1984)
## 32329 M*A*S*H (1970)
## 32622 Room with a View, A (1986)
## 32754 Pink Floyd - The Wall (1982)
## 32870 Field of Dreams (1989)
## 33087 When Harry Met Sally... (1989)
## 33370 Bram Stoker's Dracula (1992)
## 33662 Nightmare on Elm Street, A (1984)
## 33918 Star Trek: First Contact (1996)
## 34412 Ridicule (1996)
## 34736 Star Trek VI: The Undiscovered Country (1991)
## 34898 Star Trek: The Wrath of Khan (1982)
## 35140 Star Trek III: The Search for Spock (1984)
## 35312 Star Trek IV: The Voyage Home (1986)
## 35878 Jaws (1975)
## 36154 Mars Attacks! (1996)
## 36806 Raising Arizona (1987)
## 38445 Fifth Element, The (1997)
## 39124 Men in Black (1997)
## 39435 Contact (1997)
## 40730 Full Monty, The (1997)
## 42001 Sense and Sensibility (1995)
## 43186 Emma (1996)
## 45507 Liar Liar (1997)
## 48571 Apt Pupil (1998)
## 49822 Dante's Peak (1997)
## 52942 One Flew Over the Cuckoo's Nest (1975)
## 53593 Clueless (1995)
## 54236 Star Trek: Generations (1994)
## 54353 Muriel's Wedding (1994)
## 54669 True Lies (1994)
## 54874 Addams Family Values (1993)
## 54960 Age of Innocence, The (1993)
## 56125 Pinocchio (1940)
## 56228 Mission: Impossible (1996)
## 56661 Close Shave, A (1995)
## 57316 My Favorite Year (1982)
## 57541 Cinderella (1950)
## 57669 Mary Poppins (1964)
## 57926 William Shakespeare's Romeo and Juliet (1996)
## 58063 E.T. the Extra-Terrestrial (1982)
## 58499 To Kill a Mockingbird (1962)
## 59180 Fantasia (1940)
## 59353 Heathers (1989)
## 60438 Star Trek: The Motion Picture (1979)
## 60619 Grease (1978)
## 61470 Secret of Roan Inish, The (1994)
## 62212 Dragonheart (1996)
## 63301 Vertigo (1958)
## 63850 Casablanca (1942)
## 65689 Bonnie and Clyde (1967)
## 66523 Lawrence of Arabia (1962)
## 66692 Wings of Desire (1987)
## 67203 Local Hero (1983)
## 67358 Miller's Crossing (1990)
## 67769 Down by Law (1986)
## 68091 Ben-Hur (1959)
## 68216 Gandhi (1982)
## 68407 Killing Fields, The (1984)
## 68624 Man Who Would Be King, The (1975)
## 69126 Mortal Kombat (1995)
## 69333 Broken Arrow (1996)
## 69639 Rob Roy (1995)
## 71988 Beauty and the Beast (1991)
## 72644 Eraser (1996)
## 72930 Rear Window (1954)
## 74371 Victor/Victoria (1982)
## 75097 Grifters, The (1990)
## 75722 Rosencrantz and Guildenstern Are Dead (1990)
## 75995 Stand by Me (1986)
## 76829 Somewhere in Time (1980)
## 77804 Conan the Barbarian (1981)
## 79089 Persuasion (1995)
## 79500 Singin' in the Rain (1952)
## 79916 Better Off Dead... (1985)
## 80046 Othello (1995)
## 81522 Pretty Woman (1990)
## 82340 Benny & Joon (1993)
## 84363 Dumb & Dumber (1994)
## 87020 Night on Earth (1991)
## 88861 City of Lost Children, The (1995)
## 90686 Orlando (1993)
## 91750 Geronimo: An American Legend (1993)
## 91759 Double vie de Veronique, La (Double Life of Veronique, The) (1991)
## 91781 Until the End of the World (Bis ans Ende der Welt) (1991)
## 1008 Twelve Monkeys (1995)
## 1396 Babe (1995)
## 1618 Dead Man Walking (1995)
## 2003 Seven (Se7en) (1995)
## 2239 Usual Suspects, The (1995)
## 4185 Birdcage, The (1996)
## 5662 Billy Madison (1995)
## 7394 Professional, The (1994)
## 7551 Pulp Fiction (1994)
## 7978 Quiz Show (1994)
## 8570 Shawshank Redemption, The (1994)
## 9371 Forrest Gump (1994)
## 9940 Lion King, The (1994)
## 10670 Fugitive, The (1993)
## 12704 True Romance (1993)
## 13573 Dances with Wolves (1990)
## 13837 Silence of the Lambs, The (1991)
## 14399 Fargo (1996)
## 15299 Mystery Science Theater 3000: The Movie (1996)
## 15966 Rock, The (1996)
## 17895 Godfather, The (1972)
## 18362 Bound (1996)
## 18614 Wizard of Oz, The (1939)
## 21058 Willy Wonka and the Chocolate Factory (1971)
## 21466 Fish Called Wanda, A (1988)
## 24234 Princess Bride, The (1987)
## 25188 Aliens (1986)
## 25605 12 Angry Men (1957)
## 25952 Apocalypse Now (1979)
## 28375 Amadeus (1984)
## 30247 Shining, The (1980)
## 33088 When Harry Met Sally... (1989)
## 34279 Sling Blade (1996)
## 36422 Jerry Maguire (1996)
## 36807 Raising Arizona (1987)
## 38314 Austin Powers: International Man of Mystery (1997)
## 39436 Contact (1997)
## 42002 Sense and Sensibility (1995)
## 42270 Leaving Las Vegas (1995)
## 43725 English Patient, The (1996)
## 44282 Scream (1996)
## 44755 Evita (1996)
## 45508 Liar Liar (1997)
## 46388 Air Force One (1997)
## 48951 Schindler's List (1993)
## 50061 Lost Highway (1997)
## 52943 One Flew Over the Cuckoo's Nest (1975)
## 53201 Spawn (1997)
## 53594 Clueless (1995)
## 53948 Jeffrey (1995)
## 55755 Ghost (1990)
## 57927 William Shakespeare's Romeo and Juliet (1996)
## 58500 To Kill a Mockingbird (1962)
## 62691 Trainspotting (1996)
## 63099 Matilda (1996)
## 64353 Sabrina (1954)
## 66065 People vs. Larry Flynt, The (1996)
## 67359 Miller's Crossing (1990)
## 71614 Piano, The (1993)
## 75996 Stand by Me (1986)
## 76830 Somewhere in Time (1980)
## 79276 Little Women (1994)
## 80741 Immortal Beloved (1994)
## 80850 Nell (1994)
## 81808 Ransom (1996)
## 83697 Happy Gilmore (1996)
## 88862 City of Lost Children, The (1995)
## 91804 Waiting for Guffman (1996)
## 14 Toy Story (1995)
## 1009 Twelve Monkeys (1995)
## 1397 Babe (1995)
## 2507 Mighty Aphrodite (1995)
## 3827 Taxi Driver (1976)
## 4186 Birdcage, The (1996)
## 6421 Star Wars (1977)
## 10671 Fugitive, The (1993)
## 11182 Jurassic Park (1993)
## 11692 Remains of the Day, The (1993)
## 13838 Silence of the Lambs, The (1991)
## 15755 Wallace & Gromit: The Best of Aardman Animation (1996)
## 15842 Cold Comfort Farm (1995)
## 16713 Independence Day (ID4) (1996)
## 17548 Phenomenon (1996)
## 17896 Godfather, The (1972)
## 18516 Breakfast at Tiffany's (1961)
## 18859 Gone with the Wind (1939)
## 19030 Citizen Kane (1941)
## 19230 2001: A Space Odyssey (1968)
## 19889 20,000 Leagues Under the Sea (1954)
## 20025 Sound of Music, The (1965)
## 21059 Willy Wonka and the Chocolate Factory (1971)
## 23558 Wrong Trousers, The (1993)
## 24235 Princess Bride, The (1987)
## 24563 Raiders of the Lost Ark (1981)
## 25189 Aliens (1986)
## 25468 Good, The Bad and The Ugly, The (1966)
## 26177 Return of the Jedi (1983)
## 26907 Alien (1979)
## 27554 Blues Brothers, The (1980)
## 28179 Grand Day Out, A (1992)
## 29166 Terminator, The (1984)
## 29713 Graduate, The (1967)
## 31007 Back to the Future (1985)
## 31606 Young Frankenstein (1974)
## 33919 Star Trek: First Contact (1996)
## 34899 Star Trek: The Wrath of Khan (1982)
## 36808 Raising Arizona (1987)
## 37056 Sneakers (1992)
## 39125 Men in Black (1997)
## 39437 Contact (1997)
## 40454 Hunt for Red October, The (1990)
## 40731 Full Monty, The (1997)
## 42003 Sense and Sensibility (1995)
## 52944 One Flew Over the Cuckoo's Nest (1975)
## 56126 Pinocchio (1940)
## 56662 Close Shave, A (1995)
## 57670 Mary Poppins (1964)
## 58501 To Kill a Mockingbird (1962)
## 58936 Duck Soup (1933)
## 59181 Fantasia (1940)
## 60888 Jackie Chan's First Strike (1996)
## 61471 Secret of Roan Inish, The (1994)
## 62498 Dr. Strangelove or: How I Learned to Stop Worrying and Love the Bomb (1963)
## 63100 Matilda (1996)
## 63195 Philadelphia Story, The (1940)
## 63302 Vertigo (1958)
## 63481 North by Northwest (1959)
## 64894 Around the World in 80 Days (1956)
## 65257 African Queen, The (1951)
## 65466 Dumbo (1941)
## 67527 Great Escape, The (1963)
## 68217 Gandhi (1982)
## 70784 Speed (1994)
## 73136 It Happened One Night (1934)
## 73550 Lost Horizon (1937)
## 73663 39 Steps, The (1935)
## 74654 Christmas Carol, A (1938)
## 75997 Stand by Me (1986)
## 76264 Manchurian Candidate, The (1962)
## 78839 American President, The (1995)
## 80851 Nell (1994)
## 81809 Ransom (1996)
## 86344 Meet John Doe (1941)
## 89429 Harriet the Spy (1996)
## 90852 Inspector General, The (1949)
## 90870 Winnie the Pooh and the Blustery Day (1968)
## 15 Toy Story (1995)
## 1010 Twelve Monkeys (1995)
## 1619 Dead Man Walking (1995)
## 2508 Mighty Aphrodite (1995)
## 2689 Postino, Il (1994)
## 2874 Mr. Holland's Opus (1995)
## 4007 Rumble in the Bronx (1995)
## 4187 Birdcage, The (1996)
## 6422 Star Wars (1977)
## 14400 Fargo (1996)
## 15300 Mystery Science Theater 3000: The Movie (1996)
## 15462 Truth About Cats & Dogs, The (1996)
## 15843 Cold Comfort Farm (1995)
## 15967 Rock, The (1996)
## 16346 Twister (1996)
## 16714 Independence Day (ID4) (1996)
## 17133 Cable Guy, The (1996)
## 17549 Phenomenon (1996)
## 17788 Spitfire Grill, The (1996)
## 17897 Godfather, The (1972)
## 18363 Bound (1996)
## 20744 Ghost and the Darkness, The (1996)
## 20894 Swingers (1996)
## 21060 Willy Wonka and the Chocolate Factory (1971)
## 26178 Return of the Jedi (1983)
## 33920 Star Trek: First Contact (1996)
## 36155 Mars Attacks! (1996)
## 36423 Jerry Maguire (1996)
## 37206 Beavis and Butt-head Do America (1996)
## 38025 Chasing Amy (1997)
## 38155 Grosse Pointe Blank (1997)
## 38315 Austin Powers: International Man of Mystery (1997)
## 38446 Fifth Element, The (1997)
## 38688 Lost World: Jurassic Park, The (1997)
## 38934 My Best Friend's Wedding (1997)
## 39126 Men in Black (1997)
## 39438 Contact (1997)
## 40732 Full Monty, The (1997)
## 41175 Starship Troopers (1997)
## 41810 Sabrina (1995)
## 42271 Leaving Las Vegas (1995)
## 42953 Time to Kill, A (1996)
## 43187 Emma (1996)
## 43362 Tin Cup (1996)
## 43726 English Patient, The (1996)
## 44283 Scream (1996)
## 45109 Absolute Power (1997)
## 45236 Rosewood (1997)
## 45348 Donnie Brasco (1997)
## 45509 Liar Liar (1997)
## 46115 Face/Off (1997)
## 46389 Air Force One (1997)
## 47047 L.A. Confidential (1997)
## 47338 Fly Away Home (1996)
## 48218 Titanic (1997)
## 48572 Apt Pupil (1998)
## 48731 As Good As It Gets (1997)
## 49435 Mother (1996)
## 49602 Murder at 1600 (1997)
## 49823 Dante's Peak (1997)
## 50665 Conspiracy Theory (1997)
## 51300 Game, The (1997)
## 52085 Alien: Resurrection (1997)
## 53786 Black Sheep (1996)
## 56229 Mission: Impossible (1996)
## 56842 Kingpin (1996)
## 57259 Tales from the Crypt Presents: Bordello of Blood (1996)
## 60889 Jackie Chan's First Strike (1996)
## 61028 Beverly Hills Ninja (1997)
## 61103 Nixon (1995)
## 61994 Courage Under Fire (1996)
## 62692 Trainspotting (1996)
## 62941 First Wives Club, The (1996)
## 66066 People vs. Larry Flynt, The (1996)
## 67004 Boot, Das (1981)
## 69334 Broken Arrow (1996)
## 72250 Primal Fear (1996)
## 72645 Eraser (1996)
## 74201 Sleepers (1996)
## 77588 Volcano (1997)
## 78039 Rocket Man (1997)
## 78257 Executive Decision (1996)
## 81810 Ransom (1996)
## 82443 Saint, The (1997)
## 82809 Amistad (1997)
## 82932 Tomorrow Never Dies (1997)
## 83492 Screamers (1995)
## 85398 One Fine Day (1996)
## 86116 Escape from L.A. (1996)
## 86378 Last Man Standing (1996)
## 86430 Glimmer Man, The (1996)
## 86580 That Thing You Do! (1996)
## 87136 My Fellow Americans (1996)
## 87385 Vegas Vacation (1997)
## 89219 Down Periscope (1996)
## 89470 Chain Reaction (1996)
## 89742 Brassed Off (1996)
## 91183 Trigger Effect, The (1996)
## 91851 I Shot Andy Warhol (1996)
## 91888 Stealing Beauty (1996)
## 91952 Basquiat (1996)
## 91996 2 Days in the Valley (1996)
## 92089 Private Parts (1997)
## 92189 Anaconda (1997)
## 92227 Romy and Michele's High School Reunion (1997)
## 92325 Shiloh (1997)
## 92337 Con Air (1997)
## 1620 Dead Man Walking (1995)
## 6423 Star Wars (1977)
## 14401 Fargo (1996)
## 16347 Twister (1996)
## 16715 Independence Day (ID4) (1996)
## 17241 Frighteners, The (1996)
## 20745 Ghost and the Darkness, The (1996)
## 37738 Smilla's Sense of Snow (1997)
## 38026 Chasing Amy (1997)
## 42807 River Wild, The (1994)
## 43727 English Patient, The (1996)
## 44284 Scream (1996)
## 45980 Breakdown (1997)
## 46116 Face/Off (1997)
## 50184 Crash (1996)
## 53844 Mary Reilly (1996)
## 62693 Trainspotting (1996)
## 66067 People vs. Larry Flynt, The (1996)
## 67005 Boot, Das (1981)
## 72517 Hunchback of Notre Dame, The (1996)
## 81811 Ransom (1996)
## 89185 Unforgettable (1996)
## 89471 Chain Reaction (1996)
## 91156 Heaven's Prisoners (1996)
## 92474 Trees Lounge (1996)
## 886 Copycat (1995)
## 1011 Twelve Monkeys (1995)
## 2004 Seven (Se7en) (1995)
## 2240 Usual Suspects, The (1995)
## 4608 Apollo 13 (1995)
## 5029 Crimson Tide (1995)
## 6424 Star Wars (1977)
## 7552 Pulp Fiction (1994)
## 9692 Four Weddings and a Funeral (1994)
## 10672 Fugitive, The (1993)
## 12197 Blade Runner (1982)
## 13061 Aladdin (1992)
## 13281 Terminator 2: Judgment Day (1991)
## 13839 Silence of the Lambs, The (1991)
## 14402 Fargo (1996)
## 15968 Rock, The (1996)
## 20026 Sound of Music, The (1965)
## 20486 Lawnmower Man, The (1992)
## 21467 Fish Called Wanda, A (1988)
## 22904 Abyss, The (1989)
## 24236 Princess Bride, The (1987)
## 24564 Raiders of the Lost Ark (1981)
## 25190 Aliens (1986)
## 27193 Army of Darkness (1993)
## 27315 Psycho (1960)
## 29167 Terminator, The (1984)
## 29462 Dead Poets Society (1989)
## 30248 Shining, The (1980)
## 30450 Evil Dead II (1987)
## 31804 This Is Spinal Tap (1984)
## 33371 Bram Stoker's Dracula (1992)
## 33490 Cape Fear (1991)
## 33663 Nightmare on Elm Street, A (1984)
## 33921 Star Trek: First Contact (1996)
## 34280 Sling Blade (1996)
## 34737 Star Trek VI: The Undiscovered Country (1991)
## 34900 Star Trek: The Wrath of Khan (1982)
## 35141 Star Trek III: The Search for Spock (1984)
## 35313 Star Trek IV: The Voyage Home (1986)
## 35879 Jaws (1975)
## 39439 Contact (1997)
## 41176 Starship Troopers (1997)
## 42954 Time to Kill, A (1996)
## 43728 English Patient, The (1996)
## 44285 Scream (1996)
## 45510 Liar Liar (1997)
## 49603 Murder at 1600 (1997)
## 49824 Dante's Peak (1997)
## 51156 Kiss the Girls (1997)
## 54237 Star Trek: Generations (1994)
## 58064 E.T. the Extra-Terrestrial (1982)
## 58835 Day the Earth Stood Still, The (1951)
## 59523 Forbidden Planet (1956)
## 59806 American Werewolf in London, An (1981)
## 59935 Amityville Horror, The (1979)
## 59994 Birds, The (1963)
## 60154 Blob, The (1958)
## 60233 Carrie (1976)
## 60353 Omen, The (1976)
## 60439 Star Trek: The Motion Picture (1979)
## 60553 Star Trek V: The Final Frontier (1989)
## 63303 Vertigo (1958)
## 63482 North by Northwest (1959)
## 68530 My Life as a Dog (Mitt liv som hund) (1985)
## 70747 Wes Craven's New Nightmare (1994)
## 70785 Speed (1994)
## 71187 Body Snatchers (1993)
## 71989 Beauty and the Beast (1991)
## 72931 Rear Window (1954)
## 73408 Father of the Bride (1950)
## 75253 Once Upon a Time in the West (1969)
## 77074 Alien 3 (1992)
## 77255 Candyman (1992)
## 77589 Volcano (1997)
## 83493 Screamers (1995)
## 85001 In the Mouth of Madness (1995)
## 87060 April Fool's Day (1986)
## 88348 Scream 2 (1997)
## 2241 Usual Suspects, The (1995)
## 10673 Fugitive, The (1993)
## 13840 Silence of the Lambs, The (1991)
## 25953 Apocalypse Now (1979)
## 26680 GoodFellas (1990)
## 28180 Grand Day Out, A (1992)
## 37788 Devil's Own, The (1997)
## 39938 George of the Jungle (1997)
## 40354 Mimic (1997)
## 40733 Full Monty, The (1997)
## 41037 Gattaca (1997)
## 43729 English Patient, The (1996)
## 45511 Liar Liar (1997)
## 46390 Air Force One (1997)
## 47048 L.A. Confidential (1997)
## 47576 Mrs. Brown (Her Majesty, Mrs. Brown) (1997)
## 48137 Midnight in the Garden of Good and Evil (1997)
## 50312 G.I. Jane (1997)
## 51157 Kiss the Girls (1997)
## 52086 Alien: Resurrection (1997)
## 53202 Spawn (1997)
## 63483 North by Northwest (1959)
## 69039 Mouse Hunt (1997)
## 76265 Manchurian Candidate, The (1962)
## 76741 High Noon (1952)
## 77590 Volcano (1997)
## 78576 Jackal, The (1997)
## 82444 Saint, The (1997)
## 87583 Career Girls (1997)
## 87807 Peacemaker, The (1997)
## 92524 Tie Me Up! Tie Me Down! (1990)
## 92556 Die xue shuang xiong (Killer, The) (1989)
## 457 GoldenEye (1995)
## 1012 Twelve Monkeys (1995)
## 4609 Apollo 13 (1995)
## 4881 Batman Forever (1995)
## 6425 Star Wars (1977)
## 9372 Forrest Gump (1994)
## 11183 Jurassic Park (1993)
## 19231 2001: A Space Odyssey (1968)
## 22488 Top Gun (1986)
## 22905 Abyss, The (1989)
## 23870 Empire Strikes Back, The (1980)
## 24565 Raiders of the Lost Ark (1981)
## 26179 Return of the Jedi (1983)
## 35508 Batman Returns (1992)
## 37495 Kolya (1996)
## 38689 Lost World: Jurassic Park, The (1997)
## 38935 My Best Friend's Wedding (1997)
## 39127 Men in Black (1997)
## 39440 Contact (1997)
## 39939 George of the Jungle (1997)
## 43730 English Patient, The (1996)
## 44756 Evita (1996)
## 45512 Liar Liar (1997)
## 46817 In & Out (1997)
## 47339 Fly Away Home (1996)
## 48219 Titanic (1997)
## 48573 Apt Pupil (1998)
## 49248 Everyone Says I Love You (1996)
## 49436 Mother (1996)
## 55924 Batman (1989)
## 59596 Butch Cassidy and the Sundance Kid (1969)
## 68702 Shine (1996)
## 68973 Anastasia (1997)
## 69040 Mouse Hunt (1997)
## 77591 Volcano (1997)
## 78040 Rocket Man (1997)
## 78534 Leave It to Beaver (1997)
## 82933 Tomorrow Never Dies (1997)
## 84364 Dumb & Dumber (1994)
## 87502 Picture Perfect (1997)
## 88262 Flubber (1997)
## 91805 Waiting for Guffman (1996)
## 92190 Anaconda (1997)
## 5188 Crumb (1994)
## 10674 Fugitive, The (1993)
## 17359 Lone Star (1996)
## 19232 2001: A Space Odyssey (1968)
## 19484 Mr. Smith Goes to Washington (1939)
## 21468 Fish Called Wanda, A (1988)
## 24979 Brazil (1985)
## 28644 Raging Bull (1980)
## 40266 In the Company of Men (1997)
## 41177 Starship Troopers (1997)
## 46309 Hoodlum (1997)
## 47049 L.A. Confidential (1997)
## 47577 Mrs. Brown (Her Majesty, Mrs. Brown) (1997)
## 49249 Everyone Says I Love You (1996)
## 49437 Mother (1996)
## 50666 Conspiracy Theory (1997)
## 51836 Boogie Nights (1997)
## 64091 Maltese Falcon, The (1941)
## 64600 To Catch a Thief (1955)
## 64779 Thin Man, The (1934)
## 65258 African Queen, The (1951)
## 65690 Bonnie and Clyde (1967)
## 66824 Annie Hall (1977)
## 67449 Treasure of the Sierra Madre, The (1948)
## 73509 Laura (1944)
## 77938 I Know What You Did Last Summer (1997)
## 79501 Singin' in the Rain (1952)
## 85304 Thirty-Two Short Films About Glenn Gould (1993)
## 87622 She's So Lovely (1997)
## 88068 Life Less Ordinary, A (1997)
## 92557 Die xue shuang xiong (Killer, The) (1989)
## 92587 Gaslight (1944)
## 92622 8 1/2 (1963)
## 92660 Fast, Cheap & Out of Control (1997)
## 1013 Twelve Monkeys (1995)
## 1621 Dead Man Walking (1995)
## 6426 Star Wars (1977)
## 14403 Fargo (1996)
## 15463 Truth About Cats & Dogs, The (1996)
## 15969 Rock, The (1996)
## 16348 Twister (1996)
## 17134 Cable Guy, The (1996)
## 21061 Willy Wonka and the Chocolate Factory (1971)
## 26180 Return of the Jedi (1983)
## 33922 Star Trek: First Contact (1996)
## 36156 Mars Attacks! (1996)
## 37207 Beavis and Butt-head Do America (1996)
## 37789 Devil's Own, The (1997)
## 38027 Chasing Amy (1997)
## 38156 Grosse Pointe Blank (1997)
## 38316 Austin Powers: International Man of Mystery (1997)
## 38447 Fifth Element, The (1997)
## 39128 Men in Black (1997)
## 39940 George of the Jungle (1997)
## 41178 Starship Troopers (1997)
## 42272 Leaving Las Vegas (1995)
## 44286 Scream (1996)
## 45013 Fierce Creatures (1997)
## 45513 Liar Liar (1997)
## 46117 Face/Off (1997)
## 47673 Devil's Advocate, The (1997)
## 48220 Titanic (1997)
## 56230 Mission: Impossible (1996)
## 56663 Close Shave, A (1995)
## 60890 Jackie Chan's First Strike (1996)
## 62694 Trainspotting (1996)
## 66068 People vs. Larry Flynt, The (1996)
## 72251 Primal Fear (1996)
## 74202 Sleepers (1996)
## 81812 Ransom (1996)
## 87223 Michael (1996)
## 92090 Private Parts (1997)
## 92338 Con Air (1997)
## 92692 Fathers' Day (1997)
## 37790 Devil's Own, The (1997)
## 39441 Contact (1997)
## 40101 Event Horizon (1997)
## 41179 Starship Troopers (1997)
## 44287 Scream (1996)
## 45237 Rosewood (1997)
## 45514 Liar Liar (1997)
## 46391 Air Force One (1997)
## 47674 Devil's Advocate, The (1997)
## 48221 Titanic (1997)
## 49825 Dante's Peak (1997)
## 50667 Conspiracy Theory (1997)
## 50957 Desperate Measures (1998)
## 51301 Game, The (1997)
## 51786 Mad City (1997)
## 52087 Alien: Resurrection (1997)
## 77592 Volcano (1997)
## 77939 I Know What You Did Last Summer (1997)
## 82934 Tomorrow Never Dies (1997)
## 87460 Love Jones (1997)
## 87808 Peacemaker, The (1997)
## 87942 Soul Food (1997)
## 88349 Scream 2 (1997)
## 37496 Kolya (1996)
## 37791 Devil's Own, The (1997)
## 39941 George of the Jungle (1997)
## 43731 English Patient, The (1996)
## 44288 Scream (1996)
## 44757 Evita (1996)
## 45238 Rosewood (1997)
## 45515 Liar Liar (1997)
## 46310 Hoodlum (1997)
## 47919 Rainmaker, The (1997)
## 48138 Midnight in the Garden of Good and Evil (1997)
## 50062 Lost Highway (1997)
## 50958 Desperate Measures (1998)
## 51158 Kiss the Girls (1997)
## 78665 Seven Years in Tibet (1997)
## 88500 Postman, The (1997)
## 88558 Winter Guest, The (1997)
## 91494 Anna Karenina (1997)
## 91527 Keys to Tulsa (1997)
## 92723 Mrs. Dalloway (1997)
## 37497 Kolya (1996)
## 37611 Jungle2Jungle (1997)
## 39442 Contact (1997)
## 39942 George of the Jungle (1997)
## 40224 Air Bud (1997)
## 40355 Mimic (1997)
## 40678 Kull the Conqueror (1997)
## 46392 Air Force One (1997)
## 49438 Mother (1996)
## 49604 Murder at 1600 (1997)
## 50313 G.I. Jane (1997)
## 50488 Cop Land (1997)
## 50668 Conspiracy Theory (1997)
## 51159 Kiss the Girls (1997)
## 51302 Game, The (1997)
## 53203 Spawn (1997)
## 77593 Volcano (1997)
## 82445 Saint, The (1997)
## 87675 Money Talks (1997)
## 87722 Excess Baggage (1997)
## 87809 Peacemaker, The (1997)
## 89774 Thousand Acres, A (1997)
## 92738 Fire Down Below (1997)
## 40225 Air Bud (1997)
## 40734 Full Monty, The (1997)
## 44289 Scream (1996)
## 44758 Evita (1996)
## 47675 Devil's Advocate, The (1997)
## 47920 Rainmaker, The (1997)
## 49250 Everyone Says I Love You (1996)
## 51303 Game, The (1997)
## 51787 Mad City (1997)
## 53204 Spawn (1997)
## 77940 I Know What You Did Last Summer (1997)
## 82446 Saint, The (1997)
## 87503 Picture Perfect (1997)
## 87623 She's So Lovely (1997)
## 87775 That Darn Cat! (1997)
## 88001 Washington Square (1997)
## 88035 Telling Lies in America (1997)
## 88055 Phantoms (1998)
## 92782 Lay of the Land, The (1997)
## 1014 Twelve Monkeys (1995)
## 2005 Seven (Se7en) (1995)
## 3534 Braveheart (1995)
## 4008 Rumble in the Bronx (1995)
## 4546 Bad Boys (1995)
## 6427 Star Wars (1977)
## 7395 Professional, The (1994)
## 7553 Pulp Fiction (1994)
## 8360 Stargate (1994)
## 9230 Crow, The (1994)
## 10675 Fugitive, The (1993)
## 11184 Jurassic Park (1993)
## 12198 Blade Runner (1982)
## 12705 True Romance (1993)
## 13282 Terminator 2: Judgment Day (1991)
## 15970 Rock, The (1996)
## 16349 Twister (1996)
## 16716 Independence Day (ID4) (1996)
## 17898 Godfather, The (1972)
## 20557 Long Kiss Goodnight, The (1996)
## 22489 Top Gun (1986)
## 23871 Empire Strikes Back, The (1980)
## 24566 Raiders of the Lost Ark (1981)
## 25191 Aliens (1986)
## 26908 Alien (1979)
## 29168 Terminator, The (1984)
## 31998 Indiana Jones and the Last Crusade (1989)
## 33923 Star Trek: First Contact (1996)
## 34567 Die Hard 2 (1990)
## 35314 Star Trek IV: The Voyage Home (1986)
## 35509 Batman Returns (1992)
## 35752 Under Siege (1992)
## 40455 Hunt for Red October, The (1990)
## 41587 Heat (1995)
## 44290 Scream (1996)
## 53407 Sudden Death (1995)
## 54670 True Lies (1994)
## 55925 Batman (1989)
## 56231 Mission: Impossible (1996)
## 62213 Dragonheart (1996)
## 69083 Money Train (1995)
## 69335 Broken Arrow (1996)
## 69731 Die Hard: With a Vengeance (1995)
## 70569 Clear and Present Danger (1994)
## 70786 Speed (1994)
## 71411 Demolition Man (1993)
## 72646 Eraser (1996)
## 77075 Alien 3 (1992)
## 78258 Executive Decision (1996)
## 85848 Arrival, The (1996)
## 86011 Daylight (1996)
## 86117 Escape from L.A. (1996)
## 86229 Bulletproof (1996)
## 86431 Glimmer Man, The (1996)
## 89472 Chain Reaction (1996)
## 90222 Booty Call (1997)
## 92786 Shooter, The (1995)
## 16 Toy Story (1995)
## 3535 Braveheart (1995)
## 4610 Apollo 13 (1995)
## 5366 Free Willy 2: The Adventure Home (1995)
## 9125 Ace Ventura: Pet Detective (1994)
## 9373 Forrest Gump (1994)
## 9693 Four Weddings and a Funeral (1994)
## 9941 Lion King, The (1994)
## 10629 Free Willy (1993)
## 10676 Fugitive, The (1993)
## 11185 Jurassic Park (1993)
## 11611 Robert A. Heinlein's The Puppet Masters (1994)
## 11980 Sleepless in Seattle (1993)
## 12923 Home Alone (1990)
## 13062 Aladdin (1992)
## 13574 Dances with Wolves (1990)
## 14221 Snow White and the Seven Dwarfs (1937)
## 15043 Sgt. Bilko (1996)
## 15726 Flipper (1996)
## 16350 Twister (1996)
## 17135 Cable Guy, The (1996)
## 17899 Godfather, The (1972)
## 18860 Gone with the Wind (1939)
## 19778 Love Bug, The (1969)
## 19827 Homeward Bound: The Incredible Journey (1993)
## 20247 Die Hard (1988)
## 20487 Lawnmower Man, The (1992)
## 21469 Fish Called Wanda, A (1988)
## 21882 Dirty Dancing (1987)
## 22490 Top Gun (1986)
## 22706 On Golden Pond (1981)
## 27316 Psycho (1960)
## 28011 Full Metal Jacket (1987)
## 29169 Terminator, The (1984)
## 30249 Shining, The (1980)
## 30543 Groundhog Day (1993)
## 32330 M*A*S*H (1970)
## 33089 When Harry Met Sally... (1989)
## 33491 Cape Fear (1991)
## 34457 101 Dalmatians (1996)
## 34568 Die Hard 2 (1990)
## 35880 Jaws (1975)
## 37612 Jungle2Jungle (1997)
## 38148 Turbo: A Power Rangers Movie (1997)
## 38690 Lost World: Jurassic Park, The (1997)
## 39129 Men in Black (1997)
## 39943 George of the Jungle (1997)
## 44291 Scream (1996)
## 45516 Liar Liar (1997)
## 48222 Titanic (1997)
## 48952 Schindler's List (1993)
## 50314 G.I. Jane (1997)
## 50669 Conspiracy Theory (1997)
## 52838 Client, The (1994)
## 54563 Flintstones, The (1994)
## 54596 Naked Gun 33 1/3: The Final Insult (1994)
## 55051 Black Beauty (1994)
## 55148 Man Without a Face, The (1993)
## 55219 Mrs. Doubtfire (1993)
## 55419 Robin Hood: Men in Tights (1993)
## 55656 Little Rascals, The (1994)
## 55676 Brady Bunch Movie, The (1995)
## 55756 Ghost (1990)
## 55926 Batman (1989)
## 56127 Pinocchio (1940)
## 56232 Mission: Impossible (1996)
## 56567 Thinner (1996)
## 56771 Jack (1996)
## 56843 Kingpin (1996)
## 57005 Nutty Professor, The (1996)
## 57260 Tales from the Crypt Presents: Bordello of Blood (1996)
## 57542 Cinderella (1950)
## 57671 Mary Poppins (1964)
## 57846 Alice in Wonderland (1951)
## 58065 E.T. the Extra-Terrestrial (1982)
## 58358 Children of the Corn: The Gathering (1996)
## 59182 Fantasia (1940)
## 59354 Heathers (1989)
## 60155 Blob, The (1958)
## 60199 Body Snatcher, The (1945)
## 60234 Carrie (1976)
## 60554 Star Trek V: The Final Frontier (1989)
## 60620 Grease (1978)
## 60787 Jaws 2 (1978)
## 61565 Jungle Book, The (1994)
## 65467 Dumbo (1941)
## 66069 People vs. Larry Flynt, The (1996)
## 68092 Ben-Hur (1959)
## 69732 Die Hard: With a Vengeance (1995)
## 71188 Body Snatchers (1993)
## 71990 Beauty and the Beast (1991)
## 72230 Hellraiser: Bloodline (1996)
## 73719 Night of the Living Dead (1968)
## 74124 Robin Hood: Prince of Thieves (1991)
## 74861 Howling, The (1981)
## 77256 Candyman (1992)
## 77319 Cape Fear (1962)
## 77594 Volcano (1997)
## 77805 Conan the Barbarian (1981)
## 77910 Wishmaster (1997)
## 80277 Juror, The (1996)
## 80404 First Knight (1995)
## 81813 Ransom (1996)
## 83460 Lawnmower Man 2: Beyond Cyberspace (1996)
## 83926 Casper (1995)
## 84365 Dumb & Dumber (1994)
## 86369 In the Line of Duty 2 (1987)
## 88827 Lost in Space (1998)
## 89896 Airheads (1994)
## 92228 Romy and Michele's High School Reunion (1997)
## 92339 Con Air (1997)
## 92789 Grumpier Old Men (1995)
## 92937 Jury Duty (1995)
## 92951 Beverly Hillbillies, The (1993)
## 92971 Lassie (1994)
## 92978 Little Big League (1994)
## 92994 Homeward Bound II: Lost in San Francisco (1996)
## 93026 Quest, The (1996)
## 93053 Cool Runnings (1993)
## 93121 Drop Dead Fred (1991)
## 93145 Grease 2 (1982)
## 39443 Contact (1997)
## 40735 Full Monty, The (1997)
## 41038 Gattaca (1997)
## 41387 Good Will Hunting (1997)
## 44292 Scream (1996)
## 45517 Liar Liar (1997)
## 46393 Air Force One (1997)
## 46818 In & Out (1997)
## 47050 L.A. Confidential (1997)
## 47578 Mrs. Brown (Her Majesty, Mrs. Brown) (1997)
## 47676 Devil's Advocate, The (1997)
## 48223 Titanic (1997)
## 48574 Apt Pupil (1998)
## 49251 Everyone Says I Love You (1996)
## 51304 Game, The (1997)
## 51788 Mad City (1997)
## 52264 Deconstructing Harry (1997)
## 52455 Wag the Dog (1997)
## 52683 Spice World (1997)
## 82447 Saint, The (1997)
## 88567 Kundun (1997)
## 89775 Thousand Acres, A (1997)
## 37498 Kolya (1996)
## 37613 Jungle2Jungle (1997)
## 37792 Devil's Own, The (1997)
## 39444 Contact (1997)
## 39944 George of the Jungle (1997)
## 40736 Full Monty, The (1997)
## 41039 Gattaca (1997)
## 41180 Starship Troopers (1997)
## 41388 Good Will Hunting (1997)
## 43732 English Patient, The (1996)
## 45518 Liar Liar (1997)
## 46394 Air Force One (1997)
## 47051 L.A. Confidential (1997)
## 47487 Ice Storm, The (1997)
## 47921 Rainmaker, The (1997)
## 48732 As Good As It Gets (1997)
## 49439 Mother (1996)
## 50670 Conspiracy Theory (1997)
## 51305 Game, The (1997)
## 51676 House of Yes, The (1997)
## 51837 Boogie Nights (1997)
## 52088 Alien: Resurrection (1997)
## 52265 Deconstructing Harry (1997)
## 52329 Jackie Brown (1997)
## 52456 Wag the Dog (1997)
## 53205 Spawn (1997)
## 82810 Amistad (1997)
## 83176 Red Corner (1997)
## 87676 Money Talks (1997)
## 87810 Peacemaker, The (1997)
## 87943 Soul Food (1997)
## 88454 Sweet Hereafter, The (1997)
## 93169 Switchback (1997)
## 17 Toy Story (1995)
## 4611 Apollo 13 (1995)
## 5030 Crimson Tide (1995)
## 6428 Star Wars (1977)
## 7554 Pulp Fiction (1994)
## 7979 Quiz Show (1994)
## 9374 Forrest Gump (1994)
## 13283 Terminator 2: Judgment Day (1991)
## 13575 Dances with Wolves (1990)
## 13841 Silence of the Lambs, The (1991)
## 14404 Fargo (1996)
## 19233 2001: A Space Odyssey (1968)
## 21379 Sleeper (1973)
## 21470 Fish Called Wanda, A (1988)
## 21981 Reservoir Dogs (1992)
## 23250 Monty Python and the Holy Grail (1974)
## 23679 Cinema Paradiso (1988)
## 24237 Princess Bride, The (1987)
## 24567 Raiders of the Lost Ark (1981)
## 24980 Brazil (1985)
## 25954 Apocalypse Now (1979)
## 26181 Return of the Jedi (1983)
## 28012 Full Metal Jacket (1987)
## 28376 Amadeus (1984)
## 28925 Sting, The (1973)
## 29170 Terminator, The (1984)
## 29463 Dead Poets Society (1989)
## 30544 Groundhog Day (1993)
## 31349 Patton (1970)
## 31805 This Is Spinal Tap (1984)
## 33090 When Harry Met Sally... (1989)
## 36809 Raising Arizona (1987)
## 40456 Hunt for Red October, The (1990)
## 42273 Leaving Las Vegas (1995)
## 43733 English Patient, The (1996)
## 44759 Evita (1996)
## 48224 Titanic (1997)
## 48953 Schindler's List (1993)
## 52945 One Flew Over the Cuckoo's Nest (1975)
## 57317 My Favorite Year (1982)
## 58066 E.T. the Extra-Terrestrial (1982)
## 58937 Duck Soup (1933)
## 59597 Butch Cassidy and the Sundance Kid (1969)
## 62499 Dr. Strangelove or: How I Learned to Stop Worrying and Love the Bomb (1963)
## 64354 Sabrina (1954)
## 66825 Annie Hall (1977)
## 67204 Local Hero (1983)
## 67360 Miller's Crossing (1990)
## 82220 Real Genius (1985)
## 82935 Tomorrow Never Dies (1997)
## 90871 Winnie the Pooh and the Blustery Day (1968)
## 93186 Hamlet (1996)
## 18 Toy Story (1995)
## 458 GoldenEye (1995)
## 2242 Usual Suspects, The (1995)
## 2875 Mr. Holland's Opus (1995)
## 4188 Birdcage, The (1996)
## 4612 Apollo 13 (1995)
## 5400 Net, The (1995)
## 5847 Disclosure (1994)
## 5888 Dolores Claiborne (1994)
## 6209 Hoop Dreams (1994)
## 6429 Star Wars (1977)
## 7289 Outbreak (1995)
## 7980 Quiz Show (1994)
## 8483 Santa Clause, The (1994)
## 8571 Shawshank Redemption, The (1994)
## 8966 While You Were Sleeping (1995)
## 9375 Forrest Gump (1994)
## 9694 Four Weddings and a Funeral (1994)
## 9942 Lion King, The (1994)
## 10156 Mask, The (1994)
## 10285 Maverick (1994)
## 10477 Firm, The (1993)
## 10677 Fugitive, The (1993)
## 11186 Jurassic Park (1993)
## 11439 Much Ado About Nothing (1993)
## 11693 Remains of the Day, The (1993)
## 11841 Searching for Bobby Fischer (1993)
## 11981 Sleepless in Seattle (1993)
## 13063 Aladdin (1992)
## 13284 Terminator 2: Judgment Day (1991)
## 13576 Dances with Wolves (1990)
## 13842 Silence of the Lambs, The (1991)
## 14222 Snow White and the Seven Dwarfs (1937)
## 14969 Aristocats, The (1970)
## 15022 All Dogs Go to Heaven 2 (1996)
## 15464 Truth About Cats & Dogs, The (1996)
## 16351 Twister (1996)
## 16717 Independence Day (ID4) (1996)
## 17550 Phenomenon (1996)
## 18517 Breakfast at Tiffany's (1961)
## 18615 Wizard of Oz, The (1939)
## 19234 2001: A Space Odyssey (1968)
## 19485 Mr. Smith Goes to Washington (1939)
## 19890 20,000 Leagues Under the Sea (1954)
## 19961 Bedknobs and Broomsticks (1971)
## 20027 Sound of Music, The (1965)
## 21062 Willy Wonka and the Chocolate Factory (1971)
## 22491 Top Gun (1986)
## 23251 Monty Python and the Holy Grail (1974)
## 23872 Empire Strikes Back, The (1980)
## 24238 Princess Bride, The (1987)
## 24568 Raiders of the Lost Ark (1981)
## 24981 Brazil (1985)
## 25192 Aliens (1986)
## 26182 Return of the Jedi (1983)
## 26909 Alien (1979)
## 27317 Psycho (1960)
## 28926 Sting, The (1973)
## 29171 Terminator, The (1984)
## 29464 Dead Poets Society (1989)
## 30545 Groundhog Day (1993)
## 30819 Unforgiven (1992)
## 31008 Back to the Future (1985)
## 31999 Indiana Jones and the Last Crusade (1989)
## 32331 M*A*S*H (1970)
## 32871 Field of Dreams (1989)
## 33091 When Harry Met Sally... (1989)
## 33664 Nightmare on Elm Street, A (1984)
## 33924 Star Trek: First Contact (1996)
## 34738 Star Trek VI: The Undiscovered Country (1991)
## 34901 Star Trek: The Wrath of Khan (1982)
## 35142 Star Trek III: The Search for Spock (1984)
## 35315 Star Trek IV: The Voyage Home (1986)
## 35881 Jaws (1975)
## 36424 Jerry Maguire (1996)
## 37057 Sneakers (1992)
## 40457 Hunt for Red October, The (1990)
## 41588 Heat (1995)
## 41811 Sabrina (1995)
## 42274 Leaving Las Vegas (1995)
## 42721 Up Close and Personal (1996)
## 42808 River Wild, The (1994)
## 42955 Time to Kill, A (1996)
## 43188 Emma (1996)
## 43363 Tin Cup (1996)
## 45014 Fierce Creatures (1997)
## 45519 Liar Liar (1997)
## 48954 Schindler's List (1993)
## 52946 One Flew Over the Cuckoo's Nest (1975)
## 53595 Clueless (1995)
## 53787 Black Sheep (1996)
## 53883 Bridges of Madison County, The (1995)
## 54238 Star Trek: Generations (1994)
## 54671 True Lies (1994)
## 54961 Age of Innocence, The (1993)
## 55757 Ghost (1990)
## 55927 Batman (1989)
## 56128 Pinocchio (1940)
## 56233 Mission: Impossible (1996)
## 56772 Jack (1996)
## 56844 Kingpin (1996)
## 57006 Nutty Professor, The (1996)
## 57261 Tales from the Crypt Presents: Bordello of Blood (1996)
## 57543 Cinderella (1950)
## 57672 Mary Poppins (1964)
## 58067 E.T. the Extra-Terrestrial (1982)
## 58502 To Kill a Mockingbird (1962)
## 58716 Harold and Maude (1971)
## 59183 Fantasia (1940)
## 59355 Heathers (1989)
## 59995 Birds, The (1963)
## 60621 Grease (1978)
## 61029 Beverly Hills Ninja (1997)
## 61321 Like Water For Chocolate (Como agua para chocolate) (1992)
## 61704 Bronx Tale, A (1993)
## 61749 Rudy (1993)
## 61814 Short Cuts (1993)
## 61995 Courage Under Fire (1996)
## 63304 Vertigo (1958)
## 64652 Adventures of Robin Hood, The (1938)
## 64956 It's a Wonderful Life (1946)
## 65468 Dumbo (1941)
## 65875 Rebel Without a Cause (1955)
## 67652 Deer Hunter, The (1978)
## 67808 Cool Hand Luke (1967)
## 69336 Broken Arrow (1996)
## 70224 Interview with the Vampire (1994)
## 70570 Clear and Present Danger (1994)
## 70787 Speed (1994)
## 71615 Piano, The (1993)
## 71991 Beauty and the Beast (1991)
## 72252 Primal Fear (1996)
## 72451 Fan, The (1996)
## 72932 Rear Window (1954)
## 73248 All About Eve (1950)
## 74038 Sword in the Stone, The (1963)
## 74125 Robin Hood: Prince of Thieves (1991)
## 75998 Stand by Me (1986)
## 76392 Pump Up the Volume (1990)
## 76588 Fried Green Tomatoes (1991)
## 77806 Conan the Barbarian (1981)
## 78090 In the Line of Fire (1993)
## 78259 Executive Decision (1996)
## 78840 American President, The (1995)
## 80405 First Knight (1995)
## 80852 Nell (1994)
## 80997 Dave (1993)
## 81219 Philadelphia (1993)
## 81354 Shadowlands (1993)
## 81814 Ransom (1996)
## 82221 Real Genius (1985)
## 83231 Jumanji (1995)
## 83327 Father of the Bride Part II (1995)
## 84432 French Kiss (1995)
## 84564 Only You (1994)
## 84853 It Could Happen to You (1994)
## 85931 Phantom, The (1996)
## 86279 Halloween: The Curse of Michael Myers (1995)
## 86581 That Thing You Do! (1996)
## 87224 Michael (1996)
## 89099 White Squall (1996)
## 89186 Unforgettable (1996)
## 89220 Down Periscope (1996)
## 89668 Preacher's Wife, The (1996)
## 89836 Murder in the First (1995)
## 89928 With Honors (1994)
## 90453 Unstrung Heroes (1995)
## 90872 Winnie the Pooh and the Blustery Day (1968)
## 91107 Substitute, The (1996)
## 91706 Clean Slate (1994)
## 92790 Grumpier Old Men (1995)
## 93276 Two if by Sea (1996)
## 93301 Forget Paris (1995)
## 93363 Just Cause (1995)
## 93391 Rent-a-Kid (1995)
## 93399 Paper, The (1994)
## 93439 Fearless (1993)
## 93464 Malice (1993)
## 93510 Multiplicity (1996)
## 93644 She's the One (1996)
## 93717 House Arrest (1996)
## 93742 Ghost and Mrs. Muir, The (1947)
## 93785 Associate, The (1996)
## 19 Toy Story (1995)
## 585 Four Rooms (1995)
## 683 Get Shorty (1995)
## 887 Copycat (1995)
## 1015 Twelve Monkeys (1995)
## 1398 Babe (1995)
## 1622 Dead Man Walking (1995)
## 2006 Seven (Se7en) (1995)
## 2243 Usual Suspects, The (1995)
## 2690 Postino, Il (1994)
## 2876 Mr. Holland's Opus (1995)
## 3201 From Dusk Till Dawn (1996)
## 4189 Birdcage, The (1996)
## 4471 Brothers McMullen, The (1995)
## 4613 Apollo 13 (1995)
## 5609 To Wong Foo, Thanks for Everything! Julie Newmar (1995)
## 6077 Ed Wood (1994)
## 6324 I.Q. (1994)
## 6430 Star Wars (1977)
## 6991 Legends of the Fall (1994)
## 7071 Madness of King George, The (1994)
## 7290 Outbreak (1995)
## 7555 Pulp Fiction (1994)
## 7981 Quiz Show (1994)
## 8484 Santa Clause, The (1994)
## 8572 Shawshank Redemption, The (1994)
## 8967 While You Were Sleeping (1995)
## 9376 Forrest Gump (1994)
## 9695 Four Weddings and a Funeral (1994)
## 9943 Lion King, The (1994)
## 10286 Maverick (1994)
## 10478 Firm, The (1993)
## 10678 Fugitive, The (1993)
## 11187 Jurassic Park (1993)
## 11694 Remains of the Day, The (1993)
## 11982 Sleepless in Seattle (1993)
## 12562 Nightmare Before Christmas, The (1993)
## 13064 Aladdin (1992)
## 13577 Dances with Wolves (1990)
## 13843 Silence of the Lambs, The (1991)
## 14405 Fargo (1996)
## 14970 Aristocats, The (1970)
## 15465 Truth About Cats & Dogs, The (1996)
## 15756 Wallace & Gromit: The Best of Aardman Animation (1996)
## 15971 Rock, The (1996)
## 16352 Twister (1996)
## 16638 Striptease (1996)
## 16718 Independence Day (ID4) (1996)
## 17136 Cable Guy, The (1996)
## 17242 Frighteners, The (1996)
## 17360 Lone Star (1996)
## 17900 Godfather, The (1972)
## 18518 Breakfast at Tiffany's (1961)
## 18861 Gone with the Wind (1939)
## 19592 Big Night (1996)
## 19828 Homeward Bound: The Incredible Journey (1993)
## 20028 Sound of Music, The (1965)
## 20248 Die Hard (1988)
## 21063 Willy Wonka and the Chocolate Factory (1971)
## 21471 Fish Called Wanda, A (1988)
## 21883 Dirty Dancing (1987)
## 22492 Top Gun (1986)
## 23252 Monty Python and the Holy Grail (1974)
## 23559 Wrong Trousers, The (1993)
## 23873 Empire Strikes Back, The (1980)
## 24239 Princess Bride, The (1987)
## 24569 Raiders of the Lost Ark (1981)
## 24982 Brazil (1985)
## 26183 Return of the Jedi (1983)
## 27555 Blues Brothers, The (1980)
## 28181 Grand Day Out, A (1992)
## 28377 Amadeus (1984)
## 29465 Dead Poets Society (1989)
## 30546 Groundhog Day (1993)
## 30820 Unforgiven (1992)
## 31009 Back to the Future (1985)
## 31607 Young Frankenstein (1974)
## 32000 Indiana Jones and the Last Crusade (1989)
## 32332 M*A*S*H (1970)
## 32872 Field of Dreams (1989)
## 33092 When Harry Met Sally... (1989)
## 33372 Bram Stoker's Dracula (1992)
## 33925 Star Trek: First Contact (1996)
## 34458 101 Dalmatians (1996)
## 34569 Die Hard 2 (1990)
## 35510 Batman Returns (1992)
## 36157 Mars Attacks! (1996)
## 36425 Jerry Maguire (1996)
## 36810 Raising Arizona (1987)
## 37366 Last of the Mohicans, The (1992)
## 38157 Grosse Pointe Blank (1997)
## 38448 Fifth Element, The (1997)
## 38691 Lost World: Jurassic Park, The (1997)
## 38870 Batman & Robin (1997)
## 39130 Men in Black (1997)
## 39445 Contact (1997)
## 40737 Full Monty, The (1997)
## 41181 Starship Troopers (1997)
## 41389 Good Will Hunting (1997)
## 41812 Sabrina (1995)
## 42004 Sense and Sensibility (1995)
## 42275 Leaving Las Vegas (1995)
## 42561 Restoration (1995)
## 42632 Bed of Roses (1996)
## 42722 Up Close and Personal (1996)
## 43189 Emma (1996)
## 43364 Tin Cup (1996)
## 43559 Secrets & Lies (1996)
## 43734 English Patient, The (1996)
## 44760 Evita (1996)
## 45015 Fierce Creatures (1997)
## 45110 Absolute Power (1997)
## 45520 Liar Liar (1997)
## 46118 Face/Off (1997)
## 46395 Air Force One (1997)
## 46819 In & Out (1997)
## 47052 L.A. Confidential (1997)
## 48139 Midnight in the Garden of Good and Evil (1997)
## 48225 Titanic (1997)
## 48575 Apt Pupil (1998)
## 48733 As Good As It Gets (1997)
## 48847 In the Name of the Father (1993)
## 48955 Schindler's List (1993)
## 49440 Mother (1996)
## 49826 Dante's Peak (1997)
## 50671 Conspiracy Theory (1997)
## 51635 Playing God (1997)
## 52457 Wag the Dog (1997)
## 52725 Wedding Singer, The (1998)
## 53596 Clueless (1995)
## 53884 Bridges of Madison County, The (1995)
## 54457 Adventures of Priscilla, Queen of the Desert, The (1994)
## 54672 True Lies (1994)
## 55220 Mrs. Doubtfire (1993)
## 55758 Ghost (1990)
## 55928 Batman (1989)
## 56234 Mission: Impossible (1996)
## 56664 Close Shave, A (1995)
## 56773 Jack (1996)
## 57007 Nutty Professor, The (1996)
## 57544 Cinderella (1950)
## 57928 William Shakespeare's Romeo and Juliet (1996)
## 58068 E.T. the Extra-Terrestrial (1982)
## 59184 Fantasia (1940)
## 61996 Courage Under Fire (1996)
## 62371 James and the Giant Peach (1996)
## 63305 Vertigo (1958)
## 63722 Some Like It Hot (1959)
## 64355 Sabrina (1954)
## 64653 Adventures of Robin Hood, The (1938)
## 64957 It's a Wonderful Life (1946)
## 65259 African Queen, The (1951)
## 65469 Dumbo (1941)
## 67205 Local Hero (1983)
## 68703 Shine (1996)
## 69041 Mouse Hunt (1997)
## 69174 Pocahontas (1995)
## 69337 Broken Arrow (1996)
## 69733 Die Hard: With a Vengeance (1995)
## 69949 Walk in the Clouds, A (1995)
## 70225 Interview with the Vampire (1994)
## 70571 Clear and Present Danger (1994)
## 70788 Speed (1994)
## 71522 Englishman Who Went Up a Hill, But Came Down a Mountain, The (1995)
## 71553 Kalifornia (1993)
## 71992 Beauty and the Beast (1991)
## 72253 Primal Fear (1996)
## 72518 Hunchback of Notre Dame, The (1996)
## 72647 Eraser (1996)
## 74039 Sword in the Stone, The (1963)
## 74203 Sleepers (1996)
## 74477 Crying Game, The (1992)
## 75360 Quiet Man, The (1952)
## 76589 Fried Green Tomatoes (1991)
## 78091 In the Line of Fire (1993)
## 78414 Perfect World, A (1993)
## 78841 American President, The (1995)
## 79277 Little Women (1994)
## 79502 Singin' in the Rain (1952)
## 80636 Circle of Friends (1995)
## 80853 Nell (1994)
## 80955 Corrina, Corrina (1994)
## 80998 Dave (1993)
## 81220 Philadelphia (1993)
## 81815 Ransom (1996)
## 82341 Benny & Joon (1993)
## 82936 Tomorrow Never Dies (1997)
## 83232 Jumanji (1995)
## 83328 Father of the Bride Part II (1995)
## 84256 Don Juan DeMarco (1995)
## 84433 French Kiss (1995)
## 84565 Only You (1994)
## 84759 Bullets Over Broadway (1994)
## 85399 One Fine Day (1996)
## 85601 Space Jam (1996)
## 86582 That Thing You Do! (1996)
## 86797 Looking for Richard (1996)
## 87225 Michael (1996)
## 87811 Peacemaker, The (1997)
## 88263 Flubber (1997)
## 89221 Down Periscope (1996)
## 89551 Island of Dr. Moreau, The (1996)
## 89837 Murder in the First (1995)
## 90059 Renaissance Man (1994)
## 90142 Fox and the Hound, The (1981)
## 90339 Georgia (1995)
## 90369 Indian in the Cupboard, The (1995)
## 90535 Nobody's Fool (1994)
## 90814 Affair to Remember, An (1957)
## 90873 Winnie the Pooh and the Blustery Day (1968)
## 91556 Hercules (1997)
## 92693 Fathers' Day (1997)
## 93054 Cool Runnings (1993)
## 93511 Multiplicity (1996)
## 93645 She's the One (1996)
## 93826 Dracula: Dead and Loving It (1995)
## 93851 Now and Then (1995)
## 93875 Mr. Wrong (1996)
## 93898 Simple Twist of Fate, A (1994)
## 93908 Cronos (1992)
## 93918 Pallbearer, The (1996)
## 20 Toy Story (1995)
## 888 Copycat (1995)
## 1016 Twelve Monkeys (1995)
## 1623 Dead Man Walking (1995)
## 2007 Seven (Se7en) (1995)
## 2877 Mr. Holland's Opus (1995)
## 3444 Muppet Treasure Island (1996)
## 3536 Braveheart (1995)
## 4009 Rumble in the Bronx (1995)
## 4190 Birdcage, The (1996)
## 5031 Crimson Tide (1995)
## 6431 Star Wars (1977)
## 7396 Professional, The (1994)
## 7556 Pulp Fiction (1994)
## 8573 Shawshank Redemption, The (1994)
## 9126 Ace Ventura: Pet Detective (1994)
## 9377 Forrest Gump (1994)
## 9944 Lion King, The (1994)
## 11068 Hudsucker Proxy, The (1994)
## 11188 Jurassic Park (1993)
## 11842 Searching for Bobby Fischer (1993)
## 11983 Sleepless in Seattle (1993)
## 12199 Blade Runner (1982)
## 12468 So I Married an Axe Murderer (1993)
## 12563 Nightmare Before Christmas, The (1993)
## 13065 Aladdin (1992)
## 13285 Terminator 2: Judgment Day (1991)
## 13578 Dances with Wolves (1990)
## 13844 Silence of the Lambs, The (1991)
## 14223 Snow White and the Seven Dwarfs (1937)
## 14406 Fargo (1996)
## 14971 Aristocats, The (1970)
## 15117 Diabolique (1996)
## 15301 Mystery Science Theater 3000: The Movie (1996)
## 16353 Twister (1996)
## 16639 Striptease (1996)
## 16719 Independence Day (ID4) (1996)
## 17243 Frighteners, The (1996)
## 18616 Wizard of Oz, The (1939)
## 18862 Gone with the Wind (1939)
## 19235 2001: A Space Odyssey (1968)
## 20029 Sound of Music, The (1965)
## 20249 Die Hard (1988)
## 20558 Long Kiss Goodnight, The (1996)
## 20746 Ghost and the Darkness, The (1996)
## 21064 Willy Wonka and the Chocolate Factory (1971)
## 21472 Fish Called Wanda, A (1988)
## 21884 Dirty Dancing (1987)
## 22129 Platoon (1986)
## 22312 Basic Instinct (1992)
## 22493 Top Gun (1986)
## 22811 Return of the Pink Panther, The (1974)
## 22906 Abyss, The (1989)
## 23253 Monty Python and the Holy Grail (1974)
## 23874 Empire Strikes Back, The (1980)
## 24240 Princess Bride, The (1987)
## 24570 Raiders of the Lost Ark (1981)
## 24983 Brazil (1985)
## 25193 Aliens (1986)
## 26184 Return of the Jedi (1983)
## 26910 Alien (1979)
## 27318 Psycho (1960)
## 28246 Henry V (1989)
## 28378 Amadeus (1984)
## 28761 Right Stuff, The (1983)
## 28927 Sting, The (1973)
## 29172 Terminator, The (1984)
## 29466 Dead Poets Society (1989)
## 29714 Graduate, The (1967)
## 29950 Nikita (La Femme Nikita) (1990)
## 30250 Shining, The (1980)
## 30451 Evil Dead II (1987)
## 30547 Groundhog Day (1993)
## 31010 Back to the Future (1985)
## 31608 Young Frankenstein (1974)
## 31806 This Is Spinal Tap (1984)
## 32333 M*A*S*H (1970)
## 32755 Pink Floyd - The Wall (1982)
## 33093 When Harry Met Sally... (1989)
## 33926 Star Trek: First Contact (1996)
## 34739 Star Trek VI: The Undiscovered Country (1991)
## 34902 Star Trek: The Wrath of Khan (1982)
## 35143 Star Trek III: The Search for Spock (1984)
## 35316 Star Trek IV: The Voyage Home (1986)
## 35511 Batman Returns (1992)
## 36426 Jerry Maguire (1996)
## 36811 Raising Arizona (1987)
## 37208 Beavis and Butt-head Do America (1996)
## 37793 Devil's Own, The (1997)
## 38317 Austin Powers: International Man of Mystery (1997)
## 38449 Fifth Element, The (1997)
## 38692 Lost World: Jurassic Park, The (1997)
## 39131 Men in Black (1997)
## 39446 Contact (1997)
## 40102 Event Horizon (1997)
## 41813 Sabrina (1995)
## 45521 Liar Liar (1997)
## 46119 Face/Off (1997)
## 47677 Devil's Advocate, The (1997)
## 48226 Titanic (1997)
## 48848 In the Name of the Father (1993)
## 48956 Schindler's List (1993)
## 50672 Conspiracy Theory (1997)
## 52947 One Flew Over the Cuckoo's Nest (1975)
## 54094 Miracle on 34th Street (1994)
## 54239 Star Trek: Generations (1994)
## 54673 True Lies (1994)
## 56235 Mission: Impossible (1996)
## 57164 Very Brady Sequel, A (1996)
## 57673 Mary Poppins (1964)
## 58069 E.T. the Extra-Terrestrial (1982)
## 58503 To Kill a Mockingbird (1962)
## 58836 Day the Earth Stood Still, The (1951)
## 59185 Fantasia (1940)
## 59356 Heathers (1989)
## 59524 Forbidden Planet (1956)
## 59996 Birds, The (1963)
## 60235 Carrie (1976)
## 60354 Omen, The (1976)
## 60440 Star Trek: The Motion Picture (1979)
## 60555 Star Trek V: The Final Frontier (1989)
## 61882 Tombstone (1993)
## 62500 Dr. Strangelove or: How I Learned to Stop Worrying and Love the Bomb (1963)
## 63484 North by Northwest (1959)
## 64958 It's a Wonderful Life (1946)
## 65967 Streetcar Named Desire, A (1951)
## 67528 Great Escape, The (1963)
## 67809 Cool Hand Luke (1967)
## 68625 Man Who Would Be King, The (1975)
## 69175 Pocahontas (1995)
## 69950 Walk in the Clouds, A (1995)
## 71993 Beauty and the Beast (1991)
## 72254 Primal Fear (1996)
## 72933 Rear Window (1954)
## 74040 Sword in the Stone, The (1963)
## 74478 Crying Game, The (1992)
## 74655 Christmas Carol, A (1938)
## 74770 Escape from New York (1981)
## 75189 Thin Blue Line, The (1988)
## 75999 Stand by Me (1986)
## 76590 Fried Green Tomatoes (1991)
## 77076 Alien 3 (1992)
## 77595 Volcano (1997)
## 78842 American President, The (1995)
## 80278 Juror, The (1996)
## 81432 Sirens (1994)
## 83233 Jumanji (1995)
## 83329 Father of the Bride Part II (1995)
## 87386 Vegas Vacation (1997)
## 90143 Fox and the Hound, The (1981)
## 93940 War, The (1994)
## 21 Toy Story (1995)
## 1017 Twelve Monkeys (1995)
## 2509 Mighty Aphrodite (1995)
## 2878 Mr. Holland's Opus (1995)
## 3445 Muppet Treasure Island (1996)
## 4010 Rumble in the Bronx (1995)
## 4191 Birdcage, The (1996)
## 6432 Star Wars (1977)
## 14407 Fargo (1996)
## 15228 Kids in the Hall: Brain Candy (1996)
## 15302 Mystery Science Theater 3000: The Movie (1996)
## 15466 Truth About Cats & Dogs, The (1996)
## 16354 Twister (1996)
## 16720 Independence Day (ID4) (1996)
## 17901 Godfather, The (1972)
## 21065 Willy Wonka and the Chocolate Factory (1971)
## 26185 Return of the Jedi (1983)
## 34459 101 Dalmatians (1996)
## 36427 Jerry Maguire (1996)
## 39132 Men in Black (1997)
## 42276 Leaving Las Vegas (1995)
## 42633 Bed of Roses (1996)
## 42956 Time to Kill, A (1996)
## 43365 Tin Cup (1996)
## 44293 Scream (1996)
## 57008 Nutty Professor, The (1996)
## 62214 Dragonheart (1996)
## 62372 James and the Giant Peach (1996)
## 62942 First Wives Club, The (1996)
## 72519 Hunchback of Notre Dame, The (1996)
## 72648 Eraser (1996)
## 81816 Ransom (1996)
## 83330 Father of the Bride Part II (1995)
## 83583 Beautiful Girls (1996)
## 83698 Happy Gilmore (1996)
## 83845 If Lucy Fell (1996)
## 85602 Space Jam (1996)
## 85718 Mulholland Falls (1996)
## 85932 Phantom, The (1996)
## 86583 That Thing You Do! (1996)
## 89222 Down Periscope (1996)
## 89669 Preacher's Wife, The (1996)
## 90408 Blue in the Face (1995)
## 91557 Hercules (1997)
## 91726 Stupids, The (1996)
## 93955 Don't Be a Menace to South Central While Drinking Your Juice in the Hood (1996)
## 93990 Adventures of Pinocchio, The (1996)
## 94029 Evening Star, The (1996)
## 1018 Twelve Monkeys (1995)
## 6433 Star Wars (1977)
## 12808 Welcome to the Dollhouse (1995)
## 14408 Fargo (1996)
## 17551 Phenomenon (1996)
## 17902 Godfather, The (1972)
## 21066 Willy Wonka and the Chocolate Factory (1971)
## 26186 Return of the Jedi (1983)
## 37794 Devil's Own, The (1997)
## 40267 In the Company of Men (1997)
## 43735 English Patient, The (1996)
## 44294 Scream (1996)
## 45522 Liar Liar (1997)
## 46396 Air Force One (1997)
## 47488 Ice Storm, The (1997)
## 47678 Devil's Advocate, The (1997)
## 48227 Titanic (1997)
## 50489 Cop Land (1997)
## 50673 Conspiracy Theory (1997)
## 51160 Kiss the Girls (1997)
## 51306 Game, The (1997)
## 68974 Anastasia (1997)
## 78666 Seven Years in Tibet (1997)
## 82448 Saint, The (1997)
## 88771 Dangerous Beauty (1998)
## 92724 Mrs. Dalloway (1997)
## 94058 Four Days in September (1997)
## 39447 Contact (1997)
## 40268 In the Company of Men (1997)
## 40738 Full Monty, The (1997)
## 43736 English Patient, The (1996)
## 44295 Scream (1996)
## 44761 Evita (1996)
## 45239 Rosewood (1997)
## 46820 In & Out (1997)
## 47053 L.A. Confidential (1997)
## 47340 Fly Away Home (1996)
## 47489 Ice Storm, The (1997)
## 47579 Mrs. Brown (Her Majesty, Mrs. Brown) (1997)
## 47679 Devil's Advocate, The (1997)
## 49441 Mother (1996)
## 49605 Murder at 1600 (1997)
## 49827 Dante's Peak (1997)
## 50063 Lost Highway (1997)
## 50490 Cop Land (1997)
## 51838 Boogie Nights (1997)
## 78041 Rocket Man (1997)
## 87584 Career Girls (1997)
## 91629 Kiss Me, Guido (1997)
## 92661 Fast, Cheap & Out of Control (1997)
## 4614 Apollo 13 (1995)
## 6434 Star Wars (1977)
## 7557 Pulp Fiction (1994)
## 9945 Lion King, The (1994)
## 13845 Silence of the Lambs, The (1991)
## 18617 Wizard of Oz, The (1939)
## 19486 Mr. Smith Goes to Washington (1939)
## 23680 Cinema Paradiso (1988)
## 23875 Empire Strikes Back, The (1980)
## 24571 Raiders of the Lost Ark (1981)
## 26187 Return of the Jedi (1983)
## 26911 Alien (1979)
## 27319 Psycho (1960)
## 27802 Godfather: Part II, The (1974)
## 28379 Amadeus (1984)
## 28762 Right Stuff, The (1983)
## 28928 Sting, The (1973)
## 29173 Terminator, The (1984)
## 30548 Groundhog Day (1993)
## 31807 This Is Spinal Tap (1984)
## 32001 Indiana Jones and the Last Crusade (1989)
## 32873 Field of Dreams (1989)
## 34903 Star Trek: The Wrath of Khan (1982)
## 37614 Jungle2Jungle (1997)
## 39945 George of the Jungle (1997)
## 40679 Kull the Conqueror (1997)
## 40739 Full Monty, The (1997)
## 43737 English Patient, The (1996)
## 44762 Evita (1996)
## 45523 Liar Liar (1997)
## 47054 L.A. Confidential (1997)
## 47580 Mrs. Brown (Her Majesty, Mrs. Brown) (1997)
## 47860 FairyTale: A True Story (1997)
## 47889 Deceiver (1997)
## 49828 Dante's Peak (1997)
## 52948 One Flew Over the Cuckoo's Nest (1975)
## 58070 E.T. the Extra-Terrestrial (1982)
## 58378 Bob Roberts (1992)
## 58504 To Kill a Mockingbird (1962)
## 58717 Harold and Maude (1971)
## 59357 Heathers (1989)
## 63306 Vertigo (1958)
## 63485 North by Northwest (1959)
## 63851 Casablanca (1942)
## 64959 It's a Wonderful Life (1946)
## 66524 Lawrence of Arabia (1962)
## 67450 Treasure of the Sierra Madre, The (1948)
## 67770 Down by Law (1986)
## 67810 Cool Hand Luke (1967)
## 67971 Great Dictator, The (1940)
## 68218 Gandhi (1982)
## 68408 Killing Fields, The (1984)
## 68531 My Life as a Dog (Mitt liv som hund) (1985)
## 72934 Rear Window (1954)
## 73409 Father of the Bride (1950)
## 75291 Ran (1985)
## 75477 Seventh Seal, The (Sjunde inseglet, Det) (1957)
## 75849 Chinatown (1974)
## 76220 M (1931)
## 76742 High Noon (1952)
## 78667 Seven Years in Tibet (1997)
## 91377 Beautician and the Beast, The (1997)
## 94070 Little Princess, A (1995)
## 94111 Crossfire (1947)
## 94115 Koyaanisqatsi (1983)
## 22 Toy Story (1995)
## 459 GoldenEye (1995)
## 586 Four Rooms (1995)
## 684 Get Shorty (1995)
## 1019 Twelve Monkeys (1995)
## 1399 Babe (1995)
## 1908 Richard III (1995)
## 2008 Seven (Se7en) (1995)
## 2244 Usual Suspects, The (1995)
## 2510 Mighty Aphrodite (1995)
## 3202 From Dusk Till Dawn (1996)
## 4192 Birdcage, The (1996)
## 5401 Net, The (1995)
## 5522 Strange Days (1995)
## 5610 To Wong Foo, Thanks for Everything! Julie Newmar (1995)
## 5704 Clerks (1994)
## 6078 Ed Wood (1994)
## 6325 I.Q. (1994)
## 6435 Star Wars (1977)
## 7072 Madness of King George, The (1994)
## 7163 Natural Born Killers (1994)
## 7291 Outbreak (1995)
## 7397 Professional, The (1994)
## 7558 Pulp Fiction (1994)
## 7936 Priest (1994)
## 8361 Stargate (1994)
## 9231 Crow, The (1994)
## 9696 Four Weddings and a Funeral (1994)
## 9946 Lion King, The (1994)
## 10157 Mask, The (1994)
## 10479 Firm, The (1993)
## 10999 Hot Shots! Part Deux (1993)
## 11189 Jurassic Park (1993)
## 11631 Ref, The (1994)
## 12469 So I Married an Axe Murderer (1993)
## 12564 Nightmare Before Christmas, The (1993)
## 12809 Welcome to the Dollhouse (1995)
## 13066 Aladdin (1992)
## 13286 Terminator 2: Judgment Day (1991)
## 13846 Silence of the Lambs, The (1991)
## 14224 Snow White and the Seven Dwarfs (1937)
## 14409 Fargo (1996)
## 14896 Heavy Metal (1981)
## 14972 Aristocats, The (1970)
## 15229 Kids in the Hall: Brain Candy (1996)
## 15467 Truth About Cats & Dogs, The (1996)
## 15844 Cold Comfort Farm (1995)
## 15972 Rock, The (1996)
## 16721 Independence Day (ID4) (1996)
## 17137 Cable Guy, The (1996)
## 17244 Frighteners, The (1996)
## 18364 Bound (1996)
## 20030 Sound of Music, The (1965)
## 20488 Lawnmower Man, The (1992)
## 20559 Long Kiss Goodnight, The (1996)
## 20747 Ghost and the Darkness, The (1996)
## 21067 Willy Wonka and the Chocolate Factory (1971)
## 21711 Monty Python's Life of Brian (1979)
## 22313 Basic Instinct (1992)
## 22494 Top Gun (1986)
## 23254 Monty Python and the Holy Grail (1974)
## 23796 Delicatessen (1991)
## 23876 Empire Strikes Back, The (1980)
## 24241 Princess Bride, The (1987)
## 24572 Raiders of the Lost Ark (1981)
## 24984 Brazil (1985)
## 25728 Clockwork Orange, A (1971)
## 26188 Return of the Jedi (1983)
## 26681 GoodFellas (1990)
## 27320 Psycho (1960)
## 30251 Shining, The (1980)
## 30549 Groundhog Day (1993)
## 31011 Back to the Future (1985)
## 31609 Young Frankenstein (1974)
## 31808 This Is Spinal Tap (1984)
## 32623 Room with a View, A (1986)
## 33373 Bram Stoker's Dracula (1992)
## 33492 Cape Fear (1991)
## 33665 Nightmare on Elm Street, A (1984)
## 34460 101 Dalmatians (1996)
## 35512 Batman Returns (1992)
## 36158 Mars Attacks! (1996)
## 36812 Raising Arizona (1987)
## 37058 Sneakers (1992)
## 37209 Beavis and Butt-head Do America (1996)
## 39104 When the Cats Away (Chacun cherche son chat) (1996)
## 39448 Contact (1997)
## 40269 In the Company of Men (1997)
## 41040 Gattaca (1997)
## 43190 Emma (1996)
## 44197 Marvin's Room (1996)
## 44763 Evita (1996)
## 45016 Fierce Creatures (1997)
## 45524 Liar Liar (1997)
## 46311 Hoodlum (1997)
## 46397 Air Force One (1997)
## 46821 In & Out (1997)
## 47055 L.A. Confidential (1997)
## 48140 Midnight in the Garden of Good and Evil (1997)
## 48228 Titanic (1997)
## 49412 Paradise Lost: The Child Murders at Robin Hood Hills (1996)
## 50064 Lost Highway (1997)
## 50185 Crash (1996)
## 50674 Conspiracy Theory (1997)
## 51551 U Turn (1997)
## 52089 Alien: Resurrection (1997)
## 52330 Jackie Brown (1997)
## 52458 Wag the Dog (1997)
## 53206 Spawn (1997)
## 53597 Clueless (1995)
## 53788 Black Sheep (1996)
## 53949 Jeffrey (1995)
## 54458 Adventures of Priscilla, Queen of the Desert, The (1994)
## 54674 True Lies (1994)
## 54875 Addams Family Values (1993)
## 55477 Serial Mom (1994)
## 55677 Brady Bunch Movie, The (1995)
## 55929 Batman (1989)
## 56129 Pinocchio (1940)
## 56568 Thinner (1996)
## 57262 Tales from the Crypt Presents: Bordello of Blood (1996)
## 57545 Cinderella (1950)
## 57674 Mary Poppins (1964)
## 57847 Alice in Wonderland (1951)
## 58071 E.T. the Extra-Terrestrial (1982)
## 58718 Harold and Maude (1971)
## 59186 Fantasia (1940)
## 59358 Heathers (1989)
## 60891 Jackie Chan's First Strike (1996)
## 61322 Like Water For Chocolate (Como agua para chocolate) (1992)
## 61566 Jungle Book, The (1994)
## 62373 James and the Giant Peach (1996)
## 62695 Trainspotting (1996)
## 62943 First Wives Club, The (1996)
## 63101 Matilda (1996)
## 65470 Dumbo (1941)
## 66070 People vs. Larry Flynt, The (1996)
## 66826 Annie Hall (1977)
## 67361 Miller's Crossing (1990)
## 68704 Shine (1996)
## 69176 Pocahontas (1995)
## 69338 Broken Arrow (1996)
## 69585 Young Poisoner's Handbook, The (1995)
## 70135 Farinelli: il castrato (1994)
## 70226 Interview with the Vampire (1994)
## 70384 Mary Shelley's Frankenstein (1994)
## 71012 Wolf (1994)
## 71370 Coneheads (1993)
## 71554 Kalifornia (1993)
## 71781 Romeo Is Bleeding (1993)
## 71994 Beauty and the Beast (1991)
## 72231 Hellraiser: Bloodline (1996)
## 72445 Heavy (1995)
## 74041 Sword in the Stone, The (1963)
## 74126 Robin Hood: Prince of Thieves (1991)
## 74204 Sleepers (1996)
## 74981 Cook the Thief His Wife & Her Lover, The (1989)
## 75723 Rosencrantz and Guildenstern Are Dead (1990)
## 76266 Manchurian Candidate, The (1962)
## 78843 American President, The (1995)
## 79132 Kicking and Screaming (1995)
## 79264 Browning Version, The (1994)
## 79402 Barcelona (1994)
## 80047 Othello (1995)
## 80131 To Die For (1995)
## 80279 Juror, The (1996)
## 80489 Mallrats (1995)
## 80711 Exit to Eden (1994)
## 80999 Dave (1993)
## 81433 Sirens (1994)
## 81489 Threesome (1994)
## 81748 Last Supper, The (1995)
## 83461 Lawnmower Man 2: Beyond Cyberspace (1996)
## 84185 Prophecy, The (1995)
## 84633 Swimming with Sharks (1995)
## 85341 Celluloid Closet, The (1995)
## 85603 Space Jam (1996)
## 85691 Mrs. Winterbourne (1996)
## 87776 That Darn Cat! (1997)
## 88681 Ma vie en rose (My Life in Pink) (1997)
## 88863 City of Lost Children, The (1995)
## 89223 Down Periscope (1996)
## 89326 Craft, The (1996)
## 89552 Island of Dr. Moreau, The (1996)
## 90144 Fox and the Hound, The (1981)
## 90597 Dazed and Confused (1993)
## 91630 Kiss Me, Guido (1997)
## 91674 Stuart Saves His Family (1995)
## 91690 Cabin Boy (1994)
## 91889 Stealing Beauty (1996)
## 92475 Trees Lounge (1996)
## 92525 Tie Me Up! Tie Me Down! (1990)
## 92623 8 1/2 (1963)
## 92791 Grumpier Old Men (1995)
## 93122 Drop Dead Fred (1991)
## 94168 Balto (1995)
## 94184 Bottle Rocket (1996)
## 94228 Star Maker, The (Uomo delle stelle, L') (1995)
## 94240 Amateur (1994)
## 94258 Living in Oblivion (1995)
## 94285 Party Girl (1995)
## 94301 Pyromaniac's Love Story, A (1995)
## 94308 Shallow Grave (1994)
## 94374 Reality Bites (1994)
## 94451 Man of No Importance, A (1994)
## 94458 Pagemaster, The (1994)
## 94470 Love and a .45 (1994)
## 94478 Oliver & Company (1988)
## 94500 Joe's Apartment (1996)
## 94545 Celestial Clockwork (1994)
## 94547 Curdled (1996)
## 94555 Female Perversions (1996)
## 94563 Albino Alligator (1996)
## 1624 Dead Man Walking (1995)
## 2879 Mr. Holland's Opus (1995)
## 14410 Fargo (1996)
## 17245 Frighteners, The (1996)
## 17361 Lone Star (1996)
## 17552 Phenomenon (1996)
## 38028 Chasing Amy (1997)
## 38844 Pillow Book, The (1995)
## 42277 Leaving Las Vegas (1995)
## 43738 English Patient, The (1996)
## 44296 Scream (1996)
## 49252 Everyone Says I Love You (1996)
## 50065 Lost Highway (1997)
## 50186 Crash (1996)
## 50491 Cop Land (1997)
## 62696 Trainspotting (1996)
## 66071 People vs. Larry Flynt, The (1996)
## 69247 Things to Do in Denver when You're Dead (1995)
## 69586 Young Poisoner's Handbook, The (1995)
## 85719 Mulholland Falls (1996)
## 91852 I Shot Andy Warhol (1996)
## 91953 Basquiat (1996)
## 94569 Anne Frank Remembered (1995)
## 6436 Star Wars (1977)
## 8574 Shawshank Redemption, The (1994)
## 11440 Much Ado About Nothing (1993)
## 18618 Wizard of Oz, The (1939)
## 19031 Citizen Kane (1941)
## 19487 Mr. Smith Goes to Washington (1939)
## 20250 Die Hard (1988)
## 20748 Ghost and the Darkness, The (1996)
## 23877 Empire Strikes Back, The (1980)
## 24242 Princess Bride, The (1987)
## 26189 Return of the Jedi (1983)
## 26682 GoodFellas (1990)
## 27194 Army of Darkness (1993)
## 30821 Unforgiven (1992)
## 32002 Indiana Jones and the Last Crusade (1989)
## 63307 Vertigo (1958)
## 64229 My Fair Lady (1964)
## 64960 It's a Wonderful Life (1946)
## 72935 Rear Window (1954)
## 76000 Stand by Me (1986)
## 77807 Conan the Barbarian (1981)
## 78844 American President, The (1995)
## 79503 Singin' in the Rain (1952)
## 1020 Twelve Monkeys (1995)
## 2511 Mighty Aphrodite (1995)
## 2880 Mr. Holland's Opus (1995)
## 3304 Antonia's Line (1995)
## 3537 Braveheart (1995)
## 4193 Birdcage, The (1996)
## 12810 Welcome to the Dollhouse (1995)
## 13067 Aladdin (1992)
## 14411 Fargo (1996)
## 15187 Moll Flanders (1996)
## 15468 Truth About Cats & Dogs, The (1996)
## 15845 Cold Comfort Farm (1995)
## 15973 Rock, The (1996)
## 16722 Independence Day (ID4) (1996)
## 17789 Spitfire Grill, The (1996)
## 21068 Willy Wonka and the Chocolate Factory (1971)
## 28380 Amadeus (1984)
## 31012 Back to the Future (1985)
## 36159 Mars Attacks! (1996)
## 36428 Jerry Maguire (1996)
## 38450 Fifth Element, The (1997)
## 39133 Men in Black (1997)
## 39449 Contact (1997)
## 42005 Sense and Sensibility (1995)
## 42562 Restoration (1995)
## 42723 Up Close and Personal (1996)
## 42957 Time to Kill, A (1996)
## 43560 Secrets & Lies (1996)
## 44198 Marvin's Room (1996)
## 44297 Scream (1996)
## 47056 L.A. Confidential (1997)
## 48957 Schindler's List (1993)
## 51307 Game, The (1997)
## 56236 Mission: Impossible (1996)
## 58505 To Kill a Mockingbird (1962)
## 61472 Secret of Roan Inish, The (1994)
## 61997 Courage Under Fire (1996)
## 62374 James and the Giant Peach (1996)
## 62697 Trainspotting (1996)
## 65260 African Queen, The (1951)
## 68219 Gandhi (1982)
## 68705 Shine (1996)
## 71995 Beauty and the Beast (1991)
## 76267 Manchurian Candidate, The (1962)
## 81749 Last Supper, The (1995)
## 81817 Ransom (1996)
## 82449 Saint, The (1997)
## 83584 Beautiful Girls (1996)
## 85400 One Fine Day (1996)
## 86584 That Thing You Do! (1996)
## 87137 My Fellow Americans (1996)
## 88864 City of Lost Children, The (1995)
## 91890 Stealing Beauty (1996)
## 91997 2 Days in the Valley (1996)
## 94590 Carried Away (1996)
## 94601 It's My Party (1995)
## 1021 Twelve Monkeys (1995)
## 2881 Mr. Holland's Opus (1995)
## 4011 Rumble in the Bronx (1995)
## 4194 Birdcage, The (1996)
## 6437 Star Wars (1977)
## 8575 Shawshank Redemption, The (1994)
## 13287 Terminator 2: Judgment Day (1991)
## 14412 Fargo (1996)
## 16355 Twister (1996)
## 16723 Independence Day (ID4) (1996)
## 21069 Willy Wonka and the Chocolate Factory (1971)
## 21982 Reservoir Dogs (1992)
## 24573 Raiders of the Lost Ark (1981)
## 26190 Return of the Jedi (1983)
## 30079 Bridge on the River Kwai, The (1957)
## 34904 Star Trek: The Wrath of Khan (1982)
## 38451 Fifth Element, The (1997)
## 39134 Men in Black (1997)
## 39450 Contact (1997)
## 42809 River Wild, The (1994)
## 43366 Tin Cup (1996)
## 69339 Broken Arrow (1996)
## 70789 Speed (1994)
## 74205 Sleepers (1996)
## 82450 Saint, The (1997)
## 86585 That Thing You Do! (1996)
## 89100 White Squall (1996)
## 94622 Bloodsport 2 (1995)
## 23 Toy Story (1995)
## 1022 Twelve Monkeys (1995)
## 4012 Rumble in the Bronx (1995)
## 4195 Birdcage, The (1996)
## 6438 Star Wars (1977)
## 14413 Fargo (1996)
## 15118 Diabolique (1996)
## 15974 Rock, The (1996)
## 16356 Twister (1996)
## 16724 Independence Day (ID4) (1996)
## 17903 Godfather, The (1972)
## 20560 Long Kiss Goodnight, The (1996)
## 20749 Ghost and the Darkness, The (1996)
## 21070 Willy Wonka and the Chocolate Factory (1971)
## 26191 Return of the Jedi (1983)
## 36429 Jerry Maguire (1996)
## 37210 Beavis and Butt-head Do America (1996)
## 37795 Devil's Own, The (1997)
## 38452 Fifth Element, The (1997)
## 38693 Lost World: Jurassic Park, The (1997)
## 38936 My Best Friend's Wedding (1997)
## 39135 Men in Black (1997)
## 39451 Contact (1997)
## 40103 Event Horizon (1997)
## 41390 Good Will Hunting (1997)
## 41589 Heat (1995)
## 42278 Leaving Las Vegas (1995)
## 44298 Scream (1996)
## 45111 Absolute Power (1997)
## 45981 Breakdown (1997)
## 46120 Face/Off (1997)
## 47057 L.A. Confidential (1997)
## 47680 Devil's Advocate, The (1997)
## 48229 Titanic (1997)
## 50187 Crash (1996)
## 50492 Cop Land (1997)
## 50675 Conspiracy Theory (1997)
## 51308 Game, The (1997)
## 51696 Bean (1997)
## 51839 Boogie Nights (1997)
## 52331 Jackie Brown (1997)
## 56237 Mission: Impossible (1996)
## 56569 Thinner (1996)
## 57009 Nutty Professor, The (1996)
## 61998 Courage Under Fire (1996)
## 62698 Trainspotting (1996)
## 69340 Broken Arrow (1996)
## 72452 Fan, The (1996)
## 72649 Eraser (1996)
## 74721 Microcosmos: Le peuple de l'herbe (1996)
## 77507 Crucible, The (1996)
## 78260 Executive Decision (1996)
## 81750 Last Supper, The (1995)
## 81818 Ransom (1996)
## 82451 Saint, The (1997)
## 85604 Space Jam (1996)
## 85720 Mulholland Falls (1996)
## 86012 Daylight (1996)
## 86081 Fled (1996)
## 87387 Vegas Vacation (1997)
## 89473 Chain Reaction (1996)
## 92091 Private Parts (1997)
## 92340 Con Air (1997)
## 94632 Double Team (1997)
## 1023 Twelve Monkeys (1995)
## 3538 Braveheart (1995)
## 6439 Star Wars (1977)
## 7559 Pulp Fiction (1994)
## 10679 Fugitive, The (1993)
## 12200 Blade Runner (1982)
## 15975 Rock, The (1996)
## 16357 Twister (1996)
## 16725 Independence Day (ID4) (1996)
## 20251 Die Hard (1988)
## 24574 Raiders of the Lost Ark (1981)
## 26192 Return of the Jedi (1983)
## 38871 Batman & Robin (1997)
## 39136 Men in Black (1997)
## 41590 Heat (1995)
## 56238 Mission: Impossible (1996)
## 72650 Eraser (1996)
## 77596 Volcano (1997)
## 78261 Executive Decision (1996)
## 92341 Con Air (1997)
## 94645 Speed 2: Cruise Control (1997)
## 24 Toy Story (1995)
## 1024 Twelve Monkeys (1995)
## 2009 Seven (Se7en) (1995)
## 3539 Braveheart (1995)
## 4196 Birdcage, The (1996)
## 4615 Apollo 13 (1995)
## 4882 Batman Forever (1995)
## 5032 Crimson Tide (1995)
## 5402 Net, The (1995)
## 5705 Clerks (1994)
## 5889 Dolores Claiborne (1994)
## 6440 Star Wars (1977)
## 6992 Legends of the Fall (1994)
## 7164 Natural Born Killers (1994)
## 7560 Pulp Fiction (1994)
## 8362 Stargate (1994)
## 8485 Santa Clause, The (1994)
## 8576 Shawshank Redemption, The (1994)
## 8968 While You Were Sleeping (1995)
## 9127 Ace Ventura: Pet Detective (1994)
## 9232 Crow, The (1994)
## 9378 Forrest Gump (1994)
## 9697 Four Weddings and a Funeral (1994)
## 9947 Lion King, The (1994)
## 10287 Maverick (1994)
## 10480 Firm, The (1993)
## 10630 Free Willy (1993)
## 10680 Fugitive, The (1993)
## 11190 Jurassic Park (1993)
## 11843 Searching for Bobby Fischer (1993)
## 11984 Sleepless in Seattle (1993)
## 12201 Blade Runner (1982)
## 12470 So I Married an Axe Murderer (1993)
## 12565 Nightmare Before Christmas, The (1993)
## 12924 Home Alone (1990)
## 13068 Aladdin (1992)
## 13288 Terminator 2: Judgment Day (1991)
## 13579 Dances with Wolves (1990)
## 13847 Silence of the Lambs, The (1991)
## 15469 Truth About Cats & Dogs, The (1996)
## 15757 Wallace & Gromit: The Best of Aardman Animation (1996)
## 15976 Rock, The (1996)
## 16358 Twister (1996)
## 16726 Independence Day (ID4) (1996)
## 17138 Cable Guy, The (1996)
## 20031 Sound of Music, The (1965)
## 20252 Die Hard (1988)
## 21071 Willy Wonka and the Chocolate Factory (1971)
## 21473 Fish Called Wanda, A (1988)
## 21712 Monty Python's Life of Brian (1979)
## 22253 Weekend at Bernie's (1989)
## 22495 Top Gun (1986)
## 22907 Abyss, The (1989)
## 23175 Private Benjamin (1980)
## 23255 Monty Python and the Holy Grail (1974)
## 23560 Wrong Trousers, The (1993)
## 23878 Empire Strikes Back, The (1980)
## 24243 Princess Bride, The (1987)
## 24575 Raiders of the Lost Ark (1981)
## 25194 Aliens (1986)
## 25729 Clockwork Orange, A (1971)
## 26193 Return of the Jedi (1983)
## 26912 Alien (1979)
## 27195 Army of Darkness (1993)
## 27556 Blues Brothers, The (1980)
## 28182 Grand Day Out, A (1992)
## 28381 Amadeus (1984)
## 28763 Right Stuff, The (1983)
## 28929 Sting, The (1973)
## 29174 Terminator, The (1984)
## 29467 Dead Poets Society (1989)
## 30252 Shining, The (1980)
## 30452 Evil Dead II (1987)
## 30550 Groundhog Day (1993)
## 31013 Back to the Future (1985)
## 32003 Indiana Jones and the Last Crusade (1989)
## 32874 Field of Dreams (1989)
## 33094 When Harry Met Sally... (1989)
## 33666 Nightmare on Elm Street, A (1984)
## 33927 Star Trek: First Contact (1996)
## 34461 101 Dalmatians (1996)
## 34570 Die Hard 2 (1990)
## 34740 Star Trek VI: The Undiscovered Country (1991)
## 34905 Star Trek: The Wrath of Khan (1982)
## 35144 Star Trek III: The Search for Spock (1984)
## 35317 Star Trek IV: The Voyage Home (1986)
## 35513 Batman Returns (1992)
## 35648 Young Guns (1988)
## 35753 Under Siege (1992)
## 35882 Jaws (1975)
## 36160 Mars Attacks! (1996)
## 36430 Jerry Maguire (1996)
## 36813 Raising Arizona (1987)
## 37059 Sneakers (1992)
## 39452 Contact (1997)
## 40458 Hunt for Red October, The (1990)
## 42724 Up Close and Personal (1996)
## 42810 River Wild, The (1994)
## 45525 Liar Liar (1997)
## 45982 Breakdown (1997)
## 46121 Face/Off (1997)
## 46398 Air Force One (1997)
## 49829 Dante's Peak (1997)
## 53755 Bio-Dome (1996)
## 53950 Jeffrey (1995)
## 53981 Judge Dredd (1995)
## 54055 Houseguest (1994)
## 54564 Flintstones, The (1994)
## 54675 True Lies (1994)
## 54876 Addams Family Values (1993)
## 55089 Last Action Hero (1993)
## 55149 Man Without a Face, The (1993)
## 55221 Mrs. Doubtfire (1993)
## 55420 Robin Hood: Men in Tights (1993)
## 55569 Three Musketeers, The (1993)
## 55759 Ghost (1990)
## 55930 Batman (1989)
## 56239 Mission: Impossible (1996)
## 56665 Close Shave, A (1995)
## 56845 Kingpin (1996)
## 57929 William Shakespeare's Romeo and Juliet (1996)
## 58072 E.T. the Extra-Terrestrial (1982)
## 58460 Transformers: The Movie, The (1986)
## 59187 Fantasia (1940)
## 59359 Heathers (1989)
## 59598 Butch Cassidy and the Sundance Kid (1969)
## 59936 Amityville Horror, The (1979)
## 59997 Birds, The (1963)
## 60236 Carrie (1976)
## 60441 Star Trek: The Motion Picture (1979)
## 60556 Star Trek V: The Final Frontier (1989)
## 60622 Grease (1978)
## 62375 James and the Giant Peach (1996)
## 63852 Casablanca (1942)
## 65471 Dumbo (1941)
## 67811 Cool Hand Luke (1967)
## 69341 Broken Arrow (1996)
## 69734 Die Hard: With a Vengeance (1995)
## 70013 Waterworld (1995)
## 70227 Interview with the Vampire (1994)
## 70790 Speed (1994)
## 71232 City Slickers II: The Legend of Curly's Gold (1994)
## 71412 Demolition Man (1993)
## 71897 Son in Law (1993)
## 71996 Beauty and the Beast (1991)
## 72520 Hunchback of Notre Dame, The (1996)
## 72651 Eraser (1996)
## 73976 Angels in the Outfield (1994)
## 74771 Escape from New York (1981)
## 76001 Stand by Me (1986)
## 77597 Volcano (1997)
## 78845 American President, The (1995)
## 80132 To Die For (1995)
## 80406 First Knight (1995)
## 80804 Junior (1994)
## 81000 Dave (1993)
## 81221 Philadelphia (1993)
## 81490 Threesome (1994)
## 82222 Real Genius (1985)
## 82342 Benny & Joon (1993)
## 82452 Saint, The (1997)
## 83234 Jumanji (1995)
## 83538 Nick of Time (1995)
## 83979 Congo (1995)
## 84257 Don Juan DeMarco (1995)
## 84434 French Kiss (1995)
## 84854 It Could Happen to You (1994)
## 84955 Timecop (1994)
## 85401 One Fine Day (1996)
## 85605 Space Jam (1996)
## 86861 Days of Thunder (1990)
## 87094 Jingle All the Way (1996)
## 87351 Fools Rush In (1997)
## 87388 Vegas Vacation (1997)
## 89474 Chain Reaction (1996)
## 90145 Fox and the Hound, The (1981)
## 90874 Winnie the Pooh and the Blustery Day (1968)
## 91558 Hercules (1997)
## 92792 Grumpier Old Men (1995)
## 93055 Cool Runnings (1993)
## 93123 Drop Dead Fred (1991)
## 93512 Multiplicity (1996)
## 93919 Pallbearer, The (1996)
## 94375 Reality Bites (1994)
## 94683 Sliver (1993)
## 94720 Pete's Dragon (1977)
## 94763 Dear God (1996)
## 25 Toy Story (1995)
## 1025 Twelve Monkeys (1995)
## 1400 Babe (1995)
## 2010 Seven (Se7en) (1995)
## 2882 Mr. Holland's Opus (1995)
## 4013 Rumble in the Bronx (1995)
## 4616 Apollo 13 (1995)
## 5706 Clerks (1994)
## 6441 Star Wars (1977)
## 7561 Pulp Fiction (1994)
## 8577 Shawshank Redemption, The (1994)
## 10681 Fugitive, The (1993)
## 14414 Fargo (1996)
## 15044 Sgt. Bilko (1996)
## 15303 Mystery Science Theater 3000: The Movie (1996)
## 15470 Truth About Cats & Dogs, The (1996)
## 15977 Rock, The (1996)
## 16727 Independence Day (ID4) (1996)
## 17553 Phenomenon (1996)
## 17790 Spitfire Grill, The (1996)
## 20253 Die Hard (1988)
## 21072 Willy Wonka and the Chocolate Factory (1971)
## 23256 Monty Python and the Holy Grail (1974)
## 24244 Princess Bride, The (1987)
## 26194 Return of the Jedi (1983)
## 28930 Sting, The (1973)
## 29175 Terminator, The (1984)
## 30080 Bridge on the River Kwai, The (1957)
## 31014 Back to the Future (1985)
## 33928 Star Trek: First Contact (1996)
## 34462 101 Dalmatians (1996)
## 36431 Jerry Maguire (1996)
## 37211 Beavis and Butt-head Do America (1996)
## 37615 Jungle2Jungle (1997)
## 37796 Devil's Own, The (1997)
## 38158 Grosse Pointe Blank (1997)
## 38318 Austin Powers: International Man of Mystery (1997)
## 38453 Fifth Element, The (1997)
## 38694 Lost World: Jurassic Park, The (1997)
## 39137 Men in Black (1997)
## 39453 Contact (1997)
## 40356 Mimic (1997)
## 41182 Starship Troopers (1997)
## 42811 River Wild, The (1994)
## 42958 Time to Kill, A (1996)
## 43367 Tin Cup (1996)
## 44299 Scream (1996)
## 45526 Liar Liar (1997)
## 45983 Breakdown (1997)
## 46122 Face/Off (1997)
## 47341 Fly Away Home (1996)
## 48958 Schindler's List (1993)
## 49442 Mother (1996)
## 49830 Dante's Peak (1997)
## 56240 Mission: Impossible (1996)
## 56774 Jack (1996)
## 56846 Kingpin (1996)
## 57010 Nutty Professor, The (1996)
## 57675 Mary Poppins (1964)
## 61030 Beverly Hills Ninja (1997)
## 61999 Courage Under Fire (1996)
## 62215 Dragonheart (1996)
## 62376 James and the Giant Peach (1996)
## 62699 Trainspotting (1996)
## 62944 First Wives Club, The (1996)
## 63102 Matilda (1996)
## 64961 It's a Wonderful Life (1946)
## 69342 Broken Arrow (1996)
## 71997 Beauty and the Beast (1991)
## 72652 Eraser (1996)
## 77598 Volcano (1997)
## 77941 I Know What You Did Last Summer (1997)
## 79917 Better Off Dead... (1985)
## 80280 Juror, The (1996)
## 82113 Michael Collins (1996)
## 82453 Saint, The (1997)
## 83331 Father of the Bride Part II (1995)
## 83494 Screamers (1995)
## 83699 Happy Gilmore (1996)
## 85606 Space Jam (1996)
## 85849 Arrival, The (1996)
## 85933 Phantom, The (1996)
## 86118 Escape from L.A. (1996)
## 86230 Bulletproof (1996)
## 86536 Freeway (1996)
## 86586 That Thing You Do! (1996)
## 87138 My Fellow Americans (1996)
## 87226 Michael (1996)
## 87389 Vegas Vacation (1997)
## 89224 Down Periscope (1996)
## 89475 Chain Reaction (1996)
## 89607 First Kid (1996)
## 91051 Fear (1996)
## 91378 Beautician and the Beast, The (1997)
## 91727 Stupids, The (1996)
## 91998 2 Days in the Valley (1996)
## 92342 Con Air (1997)
## 92793 Grumpier Old Men (1995)
## 93513 Multiplicity (1996)
## 93956 Don't Be a Menace to South Central While Drinking Your Juice in the Hood (1996)
## 94286 Party Girl (1995)
## 94309 Shallow Grave (1994)
## 94775 Live Nude Girls (1995)
## 94798 Thin Line Between Love and Hate, A (1996)
## 94810 High School High (1996)
## 94839 Commandments (1997)
## 26 Toy Story (1995)
## 1026 Twelve Monkeys (1995)
## 1401 Babe (1995)
## 1625 Dead Man Walking (1995)
## 2011 Seven (Se7en) (1995)
## 2245 Usual Suspects, The (1995)
## 2512 Mighty Aphrodite (1995)
## 3369 Angels and Insects (1995)
## 4197 Birdcage, The (1996)
## 5189 Crumb (1994)
## 5707 Clerks (1994)
## 5968 Eat Drink Man Woman (1994)
## 6442 Star Wars (1977)
## 7562 Pulp Fiction (1994)
## 8298 Three Colors: White (1994)
## 8578 Shawshank Redemption, The (1994)
## 9379 Forrest Gump (1994)
## 9698 Four Weddings and a Funeral (1994)
## 12202 Blade Runner (1982)
## 13848 Silence of the Lambs, The (1991)
## 14415 Fargo (1996)
## 15304 Mystery Science Theater 3000: The Movie (1996)
## 15471 Truth About Cats & Dogs, The (1996)
## 15846 Cold Comfort Farm (1995)
## 16640 Striptease (1996)
## 16728 Independence Day (ID4) (1996)
## 17246 Frighteners, The (1996)
## 17362 Lone Star (1996)
## 17904 Godfather, The (1972)
## 19032 Citizen Kane (1941)
## 19236 2001: A Space Odyssey (1968)
## 19593 Big Night (1996)
## 20254 Die Hard (1988)
## 20895 Swingers (1996)
## 21073 Willy Wonka and the Chocolate Factory (1971)
## 21474 Fish Called Wanda, A (1988)
## 21983 Reservoir Dogs (1992)
## 23257 Monty Python and the Holy Grail (1974)
## 23561 Wrong Trousers, The (1993)
## 23797 Delicatessen (1991)
## 23879 Empire Strikes Back, The (1980)
## 24245 Princess Bride, The (1987)
## 24576 Raiders of the Lost Ark (1981)
## 24985 Brazil (1985)
## 25195 Aliens (1986)
## 26195 Return of the Jedi (1983)
## 26683 GoodFellas (1990)
## 27321 Psycho (1960)
## 28183 Grand Day Out, A (1992)
## 28382 Amadeus (1984)
## 28764 Right Stuff, The (1983)
## 28931 Sting, The (1973)
## 29176 Terminator, The (1984)
## 29951 Nikita (La Femme Nikita) (1990)
## 30081 Bridge on the River Kwai, The (1957)
## 30253 Shining, The (1980)
## 30822 Unforgiven (1992)
## 31015 Back to the Future (1985)
## 31809 This Is Spinal Tap (1984)
## 32004 Indiana Jones and the Last Crusade (1989)
## 32624 Room with a View, A (1986)
## 32756 Pink Floyd - The Wall (1982)
## 33095 When Harry Met Sally... (1989)
## 33929 Star Trek: First Contact (1996)
## 34281 Sling Blade (1996)
## 34906 Star Trek: The Wrath of Khan (1982)
## 36432 Jerry Maguire (1996)
## 36814 Raising Arizona (1987)
## 37212 Beavis and Butt-head Do America (1996)
## 38029 Chasing Amy (1997)
## 38159 Grosse Pointe Blank (1997)
## 38319 Austin Powers: International Man of Mystery (1997)
## 38937 My Best Friend's Wedding (1997)
## 39138 Men in Black (1997)
## 40740 Full Monty, The (1997)
## 41391 Good Will Hunting (1997)
## 42006 Sense and Sensibility (1995)
## 43191 Emma (1996)
## 43368 Tin Cup (1996)
## 46399 Air Force One (1997)
## 47922 Rainmaker, The (1997)
## 48061 Wings of the Dove, The (1997)
## 48230 Titanic (1997)
## 48959 Schindler's List (1993)
## 51840 Boogie Nights (1997)
## 52459 Wag the Dog (1997)
## 52726 Wedding Singer, The (1998)
## 53598 Clueless (1995)
## 54354 Muriel's Wedding (1994)
## 56241 Mission: Impossible (1996)
## 56666 Close Shave, A (1995)
## 58379 Bob Roberts (1992)
## 59360 Heathers (1989)
## 61323 Like Water For Chocolate (Como agua para chocolate) (1992)
## 61473 Secret of Roan Inish, The (1994)
## 62501 Dr. Strangelove or: How I Learned to Stop Worrying and Love the Bomb (1963)
## 62700 Trainspotting (1996)
## 63486 North by Northwest (1959)
## 63853 Casablanca (1942)
## 64601 To Catch a Thief (1955)
## 64654 Adventures of Robin Hood, The (1938)
## 64962 It's a Wonderful Life (1946)
## 65186 Bringing Up Baby (1938)
## 65472 Dumbo (1941)
## 66525 Lawrence of Arabia (1962)
## 66693 Wings of Desire (1987)
## 66827 Annie Hall (1977)
## 69343 Broken Arrow (1996)
## 70156 Heavenly Creatures (1994)
## 70791 Speed (1994)
## 71817 Secret Garden, The (1993)
## 72936 Rear Window (1954)
## 74982 Cook the Thief His Wife & Her Lover, The (1989)
## 75224 Paris Is Burning (1990)
## 75552 Glory (1989)
## 75724 Rosencrantz and Guildenstern Are Dead (1990)
## 75850 Chinatown (1974)
## 76002 Stand by Me (1986)
## 76914 Being There (1979)
## 78092 In the Line of Fire (1993)
## 78846 American President, The (1995)
## 79814 Strictly Ballroom (1992)
## 80930 Queen Margot (Reine Margot, La) (1994)
## 81001 Dave (1993)
## 81751 Last Supper, The (1995)
## 84168 Mute Witness (1994)
## 85342 Celluloid Closet, The (1995)
## 85721 Mulholland Falls (1996)
## 86914 Perfect Candidate, A (1996)
## 89042 Raise the Red Lantern (1991)
## 90340 Georgia (1995)
## 90486 Before Sunrise (1995)
## 90661 Naked (1993)
## 91782 Until the End of the World (Bis ans Ende der Welt) (1991)
## 91853 I Shot Andy Warhol (1996)
## 92092 Private Parts (1997)
## 92558 Die xue shuang xiong (Killer, The) (1989)
## 93646 She's the One (1996)
## 94071 Little Princess, A (1995)
## 94241 Amateur (1994)
## 94259 Living in Oblivion (1995)
## 94570 Anne Frank Remembered (1995)
## 94646 Speed 2: Cruise Control (1997)
## 94842 Hate (Haine, La) (1995)
## 94860 Flirting With Disaster (1996)
## 94902 Red Firecracker, Green Firecracker (1994)
## 94915 What Happened Was... (1994)
## 94923 Six Degrees of Separation (1993)
## 94997 Two Much (1996)
## 95004 Trust (1990)
## 95023 C'est arrive pres de chez vous (1992)
## 95027 Firestorm (1998)
## 95045 Newton Boys, The (1998)
## 27 Toy Story (1995)
## 587 Four Rooms (1995)
## 685 Get Shorty (1995)
## 1027 Twelve Monkeys (1995)
## 1626 Dead Man Walking (1995)
## 1909 Richard III (1995)
## 2012 Seven (Se7en) (1995)
## 2246 Usual Suspects, The (1995)
## 2513 Mighty Aphrodite (1995)
## 2691 Postino, Il (1994)
## 2883 Mr. Holland's Opus (1995)
## 3291 White Balloon, The (1995)
## 3540 Braveheart (1995)
## 3828 Taxi Driver (1976)
## 4014 Rumble in the Bronx (1995)
## 4198 Birdcage, The (1996)
## 4617 Apollo 13 (1995)
## 4990 Belle de jour (1967)
## 5190 Crumb (1994)
## 5265 Desperado (1995)
## 5523 Strange Days (1995)
## 5708 Clerks (1994)
## 5890 Dolores Claiborne (1994)
## 5969 Eat Drink Man Woman (1994)
## 6079 Ed Wood (1994)
## 6210 Hoop Dreams (1994)
## 6443 Star Wars (1977)
## 6993 Legends of the Fall (1994)
## 7073 Madness of King George, The (1994)
## 7165 Natural Born Killers (1994)
## 7292 Outbreak (1995)
## 7398 Professional, The (1994)
## 7563 Pulp Fiction (1994)
## 7982 Quiz Show (1994)
## 8154 Three Colors: Red (1994)
## 8235 Three Colors: Blue (1993)
## 8299 Three Colors: White (1994)
## 8579 Shawshank Redemption, The (1994)
## 8848 What's Eating Gilbert Grape (1993)
## 9233 Crow, The (1994)
## 9380 Forrest Gump (1994)
## 9699 Four Weddings and a Funeral (1994)
## 9948 Lion King, The (1994)
## 10288 Maverick (1994)
## 10481 Firm, The (1993)
## 10682 Fugitive, The (1993)
## 11069 Hudsucker Proxy, The (1994)
## 11191 Jurassic Park (1993)
## 11441 Much Ado About Nothing (1993)
## 11695 Remains of the Day, The (1993)
## 11844 Searching for Bobby Fischer (1993)
## 12203 Blade Runner (1982)
## 12471 So I Married an Axe Murderer (1993)
## 12566 Nightmare Before Christmas, The (1993)
## 12706 True Romance (1993)
## 13069 Aladdin (1992)
## 13289 Terminator 2: Judgment Day (1991)
## 13580 Dances with Wolves (1990)
## 13849 Silence of the Lambs, The (1991)
## 14225 Snow White and the Seven Dwarfs (1937)
## 14416 Fargo (1996)
## 14897 Heavy Metal (1981)
## 14973 Aristocats, The (1970)
## 15119 Diabolique (1996)
## 15305 Mystery Science Theater 3000: The Movie (1996)
## 15472 Truth About Cats & Dogs, The (1996)
## 15847 Cold Comfort Farm (1995)
## 16359 Twister (1996)
## 16729 Independence Day (ID4) (1996)
## 17247 Frighteners, The (1996)
## 17554 Phenomenon (1996)
## 17791 Spitfire Grill, The (1996)
## 17905 Godfather, The (1972)
## 18365 Bound (1996)
## 18519 Breakfast at Tiffany's (1961)
## 18619 Wizard of Oz, The (1939)
## 18863 Gone with the Wind (1939)
## 19033 Citizen Kane (1941)
## 19237 2001: A Space Odyssey (1968)
## 19488 Mr. Smith Goes to Washington (1939)
## 19594 Big Night (1996)
## 19829 Homeward Bound: The Incredible Journey (1993)
## 19891 20,000 Leagues Under the Sea (1954)
## 19962 Bedknobs and Broomsticks (1971)
## 20032 Sound of Music, The (1965)
## 20561 Long Kiss Goodnight, The (1996)
## 20750 Ghost and the Darkness, The (1996)
## 20869 Jude (1996)
## 21074 Willy Wonka and the Chocolate Factory (1971)
## 22496 Top Gun (1986)
## 23258 Monty Python and the Holy Grail (1974)
## 23562 Wrong Trousers, The (1993)
## 23681 Cinema Paradiso (1988)
## 23880 Empire Strikes Back, The (1980)
## 24246 Princess Bride, The (1987)
## 24577 Raiders of the Lost Ark (1981)
## 24986 Brazil (1985)
## 25196 Aliens (1986)
## 25469 Good, The Bad and The Ugly, The (1966)
## 25730 Clockwork Orange, A (1971)
## 25955 Apocalypse Now (1979)
## 26196 Return of the Jedi (1983)
## 26684 GoodFellas (1990)
## 26913 Alien (1979)
## 27196 Army of Darkness (1993)
## 27322 Psycho (1960)
## 27557 Blues Brothers, The (1980)
## 27803 Godfather: Part II, The (1974)
## 28013 Full Metal Jacket (1987)
## 28247 Henry V (1989)
## 28383 Amadeus (1984)
## 28765 Right Stuff, The (1983)
## 28932 Sting, The (1973)
## 29177 Terminator, The (1984)
## 29468 Dead Poets Society (1989)
## 29715 Graduate, The (1967)
## 29952 Nikita (La Femme Nikita) (1990)
## 30082 Bridge on the River Kwai, The (1957)
## 30254 Shining, The (1980)
## 30453 Evil Dead II (1987)
## 30551 Groundhog Day (1993)
## 30823 Unforgiven (1992)
## 31016 Back to the Future (1985)
## 31350 Patton (1970)
## 31610 Young Frankenstein (1974)
## 31810 This Is Spinal Tap (1984)
## 32005 Indiana Jones and the Last Crusade (1989)
## 32334 M*A*S*H (1970)
## 32528 Unbearable Lightness of Being, The (1988)
## 32875 Field of Dreams (1989)
## 33096 When Harry Met Sally... (1989)
## 33493 Cape Fear (1991)
## 33667 Nightmare on Elm Street, A (1984)
## 33770 Mirror Has Two Faces, The (1996)
## 34571 Die Hard 2 (1990)
## 34741 Star Trek VI: The Undiscovered Country (1991)
## 34907 Star Trek: The Wrath of Khan (1982)
## 35145 Star Trek III: The Search for Spock (1984)
## 35318 Star Trek IV: The Voyage Home (1986)
## 35649 Young Guns (1988)
## 35883 Jaws (1975)
## 36161 Mars Attacks! (1996)
## 36433 Jerry Maguire (1996)
## 36815 Raising Arizona (1987)
## 37213 Beavis and Butt-head Do America (1996)
## 37367 Last of the Mohicans, The (1992)
## 37616 Jungle2Jungle (1997)
## 39454 Contact (1997)
## 40459 Hunt for Red October, The (1990)
## 41591 Heat (1995)
## 41814 Sabrina (1995)
## 42279 Leaving Las Vegas (1995)
## 42563 Restoration (1995)
## 43369 Tin Cup (1996)
## 43561 Secrets & Lies (1996)
## 43739 English Patient, The (1996)
## 44199 Marvin's Room (1996)
## 44300 Scream (1996)
## 45017 Fierce Creatures (1997)
## 48231 Titanic (1997)
## 48960 Schindler's List (1993)
## 49443 Mother (1996)
## 49831 Dante's Peak (1997)
## 52949 One Flew Over the Cuckoo's Nest (1975)
## 53599 Clueless (1995)
## 53789 Black Sheep (1996)
## 53885 Bridges of Madison County, The (1995)
## 54240 Star Trek: Generations (1994)
## 54355 Muriel's Wedding (1994)
## 54459 Adventures of Priscilla, Queen of the Desert, The (1994)
## 54676 True Lies (1994)
## 54962 Age of Innocence, The (1993)
## 55150 Man Without a Face, The (1993)
## 55222 Mrs. Doubtfire (1993)
## 55760 Ghost (1990)
## 55931 Batman (1989)
## 56130 Pinocchio (1940)
## 56242 Mission: Impossible (1996)
## 56847 Kingpin (1996)
## 57403 Old Yeller (1957)
## 57546 Cinderella (1950)
## 57676 Mary Poppins (1964)
## 57930 William Shakespeare's Romeo and Juliet (1996)
## 58073 E.T. the Extra-Terrestrial (1982)
## 58380 Bob Roberts (1992)
## 58506 To Kill a Mockingbird (1962)
## 58719 Harold and Maude (1971)
## 58837 Day the Earth Stood Still, The (1951)
## 58938 Duck Soup (1933)
## 59027 Highlander (1986)
## 59188 Fantasia (1940)
## 59361 Heathers (1989)
## 59525 Forbidden Planet (1956)
## 59599 Butch Cassidy and the Sundance Kid (1969)
## 59807 American Werewolf in London, An (1981)
## 59998 Birds, The (1963)
## 60237 Carrie (1976)
## 60355 Omen, The (1976)
## 60623 Grease (1978)
## 61104 Nixon (1995)
## 61324 Like Water For Chocolate (Como agua para chocolate) (1992)
## 61567 Jungle Book, The (1994)
## 61649 Red Rock West (1992)
## 61750 Rudy (1993)
## 61883 Tombstone (1993)
## 62216 Dragonheart (1996)
## 62377 James and the Giant Peach (1996)
## 62502 Dr. Strangelove or: How I Learned to Stop Worrying and Love the Bomb (1963)
## 62945 First Wives Club, The (1996)
## 63103 Matilda (1996)
## 63308 Vertigo (1958)
## 63487 North by Northwest (1959)
## 63854 Casablanca (1942)
## 64092 Maltese Falcon, The (1941)
## 64230 My Fair Lady (1964)
## 64487 Sunset Blvd. (1950)
## 64551 Notorious (1946)
## 64602 To Catch a Thief (1955)
## 64655 Adventures of Robin Hood, The (1938)
## 64721 East of Eden (1955)
## 64963 It's a Wonderful Life (1946)
## 65261 African Queen, The (1951)
## 65473 Dumbo (1941)
## 65645 Candidate, The (1972)
## 65691 Bonnie and Clyde (1967)
## 65808 Dial M for Murder (1954)
## 65876 Rebel Without a Cause (1955)
## 65968 Streetcar Named Desire, A (1951)
## 66072 People vs. Larry Flynt, The (1996)
## 66404 Magnificent Seven, The (1954)
## 66526 Lawrence of Arabia (1962)
## 66751 Third Man, The (1949)
## 66828 Annie Hall (1977)
## 67006 Boot, Das (1981)
## 67206 Local Hero (1983)
## 67268 Manhattan (1979)
## 67451 Treasure of the Sierra Madre, The (1948)
## 67653 Deer Hunter, The (1978)
## 67812 Cool Hand Luke (1967)
## 67972 Great Dictator, The (1940)
## 68016 Big Sleep, The (1946)
## 68093 Ben-Hur (1959)
## 68220 Gandhi (1982)
## 68409 Killing Fields, The (1984)
## 68532 My Life as a Dog (Mitt liv som hund) (1985)
## 69587 Young Poisoner's Handbook, The (1995)
## 69640 Rob Roy (1995)
## 69735 Die Hard: With a Vengeance (1995)
## 70228 Interview with the Vampire (1994)
## 70440 Quick and the Dead, The (1995)
## 70520 Tales from the Hood (1995)
## 70572 Clear and Present Danger (1994)
## 70748 Wes Craven's New Nightmare (1994)
## 70792 Speed (1994)
## 71013 Wolf (1994)
## 71078 Wyatt Earp (1994)
## 71555 Kalifornia (1993)
## 71616 Piano, The (1993)
## 71782 Romeo Is Bleeding (1993)
## 71818 Secret Garden, The (1993)
## 71998 Beauty and the Beast (1991)
## 72255 Primal Fear (1996)
## 72453 Fan, The (1996)
## 72653 Eraser (1996)
## 72878 American in Paris, An (1951)
## 72937 Rear Window (1954)
## 73137 It Happened One Night (1934)
## 73249 All About Eve (1950)
## 73377 Spellbound (1945)
## 73410 Father of the Bride (1950)
## 73470 Gigi (1958)
## 73510 Laura (1944)
## 73551 Lost Horizon (1937)
## 73664 39 Steps, The (1935)
## 73720 Night of the Living Dead (1968)
## 73801 Picnic (1955)
## 73884 Chamber, The (1996)
## 73937 Swiss Family Robinson (1960)
## 74042 Sword in the Stone, The (1963)
## 74656 Christmas Carol, A (1938)
## 74983 Cook the Thief His Wife & Her Lover, The (1989)
## 75098 Grifters, The (1990)
## 75190 Thin Blue Line, The (1988)
## 75292 Ran (1985)
## 75427 Once Upon a Time in America (1984)
## 75478 Seventh Seal, The (Sjunde inseglet, Det) (1957)
## 75553 Glory (1989)
## 75851 Chinatown (1974)
## 76003 Stand by Me (1986)
## 76268 Manchurian Candidate, The (1962)
## 76393 Pump Up the Volume (1990)
## 76474 Arsenic and Old Lace (1944)
## 76591 Fried Green Tomatoes (1991)
## 76831 Somewhere in Time (1980)
## 76915 Being There (1979)
## 77026 Paris, Texas (1984)
## 77257 Candyman (1992)
## 77320 Cape Fear (1962)
## 77454 Nosferatu (Nosferatu, eine Symphonie des Grauens) (1922)
## 77808 Conan the Barbarian (1981)
## 78093 In the Line of Fire (1993)
## 78465 McHale's Navy (1997)
## 78847 American President, The (1995)
## 79278 Little Women (1994)
## 79403 Barcelona (1994)
## 79504 Singin' in the Rain (1952)
## 79642 Enchanted April (1991)
## 79712 Sex, Lies, and Videotape (1989)
## 79815 Strictly Ballroom (1992)
## 79918 Better Off Dead... (1985)
## 80048 Othello (1995)
## 80133 To Die For (1995)
## 80281 Juror, The (1996)
## 80637 Circle of Friends (1995)
## 80742 Immortal Beloved (1994)
## 80854 Nell (1994)
## 81002 Dave (1993)
## 81222 Philadelphia (1993)
## 81355 Shadowlands (1993)
## 81523 Pretty Woman (1990)
## 81752 Last Supper, The (1995)
## 81819 Ransom (1996)
## 82223 Real Genius (1985)
## 82343 Benny & Joon (1993)
## 83235 Jumanji (1995)
## 83332 Father of the Bride Part II (1995)
## 83495 Screamers (1995)
## 83585 Beautiful Girls (1996)
## 83846 If Lucy Fell (1996)
## 84021 Devil in a Blue Dress (1995)
## 84186 Prophecy, The (1995)
## 84435 French Kiss (1995)
## 84634 Swimming with Sharks (1995)
## 84760 Bullets Over Broadway (1994)
## 85722 Mulholland Falls (1996)
## 85850 Arrival, The (1996)
## 86587 That Thing You Do! (1996)
## 86753 To Gillian on Her 37th Birthday (1996)
## 86953 Diva (1981)
## 87227 Michael (1996)
## 87390 Vegas Vacation (1997)
## 88568 Kundun (1997)
## 88865 City of Lost Children, The (1995)
## 89225 Down Periscope (1996)
## 89327 Craft, The (1996)
## 89430 Harriet the Spy (1996)
## 89553 Island of Dr. Moreau, The (1996)
## 90146 Fox and the Hound, The (1981)
## 90370 Indian in the Cupboard, The (1995)
## 90454 Unstrung Heroes (1995)
## 90598 Dazed and Confused (1993)
## 90743 Some Folks Call It a Sling Blade (1993)
## 90875 Winnie the Pooh and the Blustery Day (1968)
## 90987 Passion Fish (1992)
## 91019 Eye for an Eye (1996)
## 91052 Fear (1996)
## 91760 Double vie de Veronique, La (Double Life of Veronique, The) (1991)
## 91891 Stealing Beauty (1996)
## 92624 8 1/2 (1963)
## 92794 Grumpier Old Men (1995)
## 93514 Multiplicity (1996)
## 93647 She's the One (1996)
## 93743 Ghost and Mrs. Muir, The (1947)
## 94116 Koyaanisqatsi (1983)
## 94376 Reality Bites (1994)
## 94776 Live Nude Girls (1995)
## 94924 Six Degrees of Separation (1993)
## 95049 Beyond Rangoon (1995)
## 95067 Feast of July (1995)
## 95072 Death and the Maiden (1994)
## 95100 Tank Girl (1995)
## 95141 Double Happiness (1994)
## 95148 Cobb (1994)
## 95163 Mrs. Parker and the Vicious Circle (1994)
## 95185 Faithful (1996)
## 95195 Twelfth Night (1996)
## 95224 Mark of Zorro, The (1940)
## 95237 Surviving Picasso (1996)
## 95256 Up in Smoke (1978)
## 95303 Some Kind of Wonderful (1987)
## 95362 I'm Not Rappaport (1996)
## 1028 Twelve Monkeys (1995)
## 1402 Babe (1995)
## 1627 Dead Man Walking (1995)
## 2247 Usual Suspects, The (1995)
## 2514 Mighty Aphrodite (1995)
## 2884 Mr. Holland's Opus (1995)
## 3446 Muppet Treasure Island (1996)
## 3829 Taxi Driver (1976)
## 4618 Apollo 13 (1995)
## 4991 Belle de jour (1967)
## 6080 Ed Wood (1994)
## 6444 Star Wars (1977)
## 7564 Pulp Fiction (1994)
## 8155 Three Colors: Red (1994)
## 8236 Three Colors: Blue (1993)
## 8300 Three Colors: White (1994)
## 8580 Shawshank Redemption, The (1994)
## 9381 Forrest Gump (1994)
## 9700 Four Weddings and a Funeral (1994)
## 9949 Lion King, The (1994)
## 10289 Maverick (1994)
## 10482 Firm, The (1993)
## 10683 Fugitive, The (1993)
## 11192 Jurassic Park (1993)
## 11985 Sleepless in Seattle (1993)
## 12204 Blade Runner (1982)
## 13070 Aladdin (1992)
## 13290 Terminator 2: Judgment Day (1991)
## 13581 Dances with Wolves (1990)
## 13850 Silence of the Lambs, The (1991)
## 16730 Independence Day (ID4) (1996)
## 18297 Supercop (1992)
## 18520 Breakfast at Tiffany's (1961)
## 18620 Wizard of Oz, The (1939)
## 18864 Gone with the Wind (1939)
## 19034 Citizen Kane (1941)
## 19238 2001: A Space Odyssey (1968)
## 19489 Mr. Smith Goes to Washington (1939)
## 19758 D3: The Mighty Ducks (1996)
## 19892 20,000 Leagues Under the Sea (1954)
## 20033 Sound of Music, The (1965)
## 20255 Die Hard (1988)
## 21075 Willy Wonka and the Chocolate Factory (1971)
## 21380 Sleeper (1973)
## 21475 Fish Called Wanda, A (1988)
## 22415 Glengarry Glen Ross (1992)
## 22497 Top Gun (1986)
## 22707 On Golden Pond (1981)
## 22812 Return of the Pink Panther, The (1974)
## 23118 Manon of the Spring (Manon des sources) (1986)
## 23259 Monty Python and the Holy Grail (1974)
## 23881 Empire Strikes Back, The (1980)
## 24247 Princess Bride, The (1987)
## 24578 Raiders of the Lost Ark (1981)
## 24987 Brazil (1985)
## 25197 Aliens (1986)
## 25606 12 Angry Men (1957)
## 25731 Clockwork Orange, A (1971)
## 25956 Apocalypse Now (1979)
## 26197 Return of the Jedi (1983)
## 26914 Alien (1979)
## 27323 Psycho (1960)
## 27558 Blues Brothers, The (1980)
## 28933 Sting, The (1973)
## 29178 Terminator, The (1984)
## 29716 Graduate, The (1967)
## 30083 Bridge on the River Kwai, The (1957)
## 30255 Shining, The (1980)
## 31017 Back to the Future (1985)
## 31351 Patton (1970)
## 31532 Cyrano de Bergerac (1990)
## 31611 Young Frankenstein (1974)
## 31811 This Is Spinal Tap (1984)
## 32006 Indiana Jones and the Last Crusade (1989)
## 32335 M*A*S*H (1970)
## 32529 Unbearable Lightness of Being, The (1988)
## 32876 Field of Dreams (1989)
## 33097 When Harry Met Sally... (1989)
## 33494 Cape Fear (1991)
## 33930 Star Trek: First Contact (1996)
## 34463 101 Dalmatians (1996)
## 34742 Star Trek VI: The Undiscovered Country (1991)
## 34908 Star Trek: The Wrath of Khan (1982)
## 35146 Star Trek III: The Search for Spock (1984)
## 35319 Star Trek IV: The Voyage Home (1986)
## 35884 Jaws (1975)
## 36434 Jerry Maguire (1996)
## 40460 Hunt for Red October, The (1990)
## 41392 Good Will Hunting (1997)
## 42007 Sense and Sensibility (1995)
## 43740 English Patient, The (1996)
## 50493 Cop Land (1997)
## 52950 One Flew Over the Cuckoo's Nest (1975)
## 53538 Dangerous Minds (1995)
## 54095 Miracle on 34th Street (1994)
## 54677 True Lies (1994)
## 55223 Mrs. Doubtfire (1993)
## 55932 Batman (1989)
## 56131 Pinocchio (1940)
## 56243 Mission: Impossible (1996)
## 57011 Nutty Professor, The (1996)
## 57404 Old Yeller (1957)
## 57465 Parent Trap, The (1961)
## 57547 Cinderella (1950)
## 57677 Mary Poppins (1964)
## 57848 Alice in Wonderland (1951)
## 58074 E.T. the Extra-Terrestrial (1982)
## 58507 To Kill a Mockingbird (1962)
## 58838 Day the Earth Stood Still, The (1951)
## 58939 Duck Soup (1933)
## 59362 Heathers (1989)
## 59526 Forbidden Planet (1956)
## 59600 Butch Cassidy and the Sundance Kid (1969)
## 59999 Birds, The (1963)
## 60200 Body Snatcher, The (1945)
## 62503 Dr. Strangelove or: How I Learned to Stop Worrying and Love the Bomb (1963)
## 63196 Philadelphia Story, The (1940)
## 63309 Vertigo (1958)
## 63488 North by Northwest (1959)
## 63723 Some Like It Hot (1959)
## 63855 Casablanca (1942)
## 64093 Maltese Falcon, The (1941)
## 64231 My Fair Lady (1964)
## 64552 Notorious (1946)
## 64603 To Catch a Thief (1955)
## 64656 Adventures of Robin Hood, The (1938)
## 64722 East of Eden (1955)
## 64780 Thin Man, The (1934)
## 64838 His Girl Friday (1940)
## 64895 Around the World in 80 Days (1956)
## 64964 It's a Wonderful Life (1946)
## 65262 African Queen, The (1951)
## 65404 Cat on a Hot Tin Roof (1958)
## 65474 Dumbo (1941)
## 65592 Bananas (1971)
## 65809 Dial M for Murder (1954)
## 65877 Rebel Without a Cause (1955)
## 65969 Streetcar Named Desire, A (1951)
## 66073 People vs. Larry Flynt, The (1996)
## 66405 Magnificent Seven, The (1954)
## 66527 Lawrence of Arabia (1962)
## 66752 Third Man, The (1949)
## 66829 Annie Hall (1977)
## 67007 Boot, Das (1981)
## 67269 Manhattan (1979)
## 67452 Treasure of the Sierra Madre, The (1948)
## 67813 Cool Hand Luke (1967)
## 67973 Great Dictator, The (1940)
## 68017 Big Sleep, The (1946)
## 68410 Killing Fields, The (1984)
## 68533 My Life as a Dog (Mitt liv som hund) (1985)
## 69344 Broken Arrow (1996)
## 70157 Heavenly Creatures (1994)
## 71617 Piano, The (1993)
## 72424 True Crime (1995)
## 72433 Stalingrad (1993)
## 72855 For Whom the Bell Tolls (1943)
## 72879 American in Paris, An (1951)
## 72938 Rear Window (1954)
## 73138 It Happened One Night (1934)
## 73214 Meet Me in St. Louis (1944)
## 73250 All About Eve (1950)
## 73378 Spellbound (1945)
## 73411 Father of the Bride (1950)
## 73584 My Man Godfrey (1936)
## 73665 39 Steps, The (1935)
## 73721 Night of the Living Dead (1968)
## 73785 Blue Angel, The (Blaue Engel, Der) (1930)
## 73802 Picnic (1955)
## 74372 Victor/Victoria (1982)
## 74657 Christmas Carol, A (1938)
## 74862 Howling, The (1981)
## 74898 Return of Martin Guerre, The (Retour de Martin Guerre, Le) (1982)
## 75063 Paths of Glory (1957)
## 75479 Seventh Seal, The (Sjunde inseglet, Det) (1957)
## 75852 Chinatown (1974)
## 76221 M (1931)
## 76475 Arsenic and Old Lace (1944)
## 76592 Fried Green Tomatoes (1991)
## 76743 High Noon (1952)
## 77077 Alien 3 (1992)
## 77209 Bride of Frankenstein (1935)
## 77321 Cape Fear (1962)
## 77455 Nosferatu (Nosferatu, eine Symphonie des Grauens) (1922)
## 78094 In the Line of Fire (1993)
## 79279 Little Women (1994)
## 79505 Singin' in the Rain (1952)
## 79713 Sex, Lies, and Videotape (1989)
## 80855 Nell (1994)
## 81223 Philadelphia (1993)
## 81356 Shadowlands (1993)
## 82203 Ruling Class, The (1972)
## 82937 Tomorrow Never Dies (1997)
## 83236 Jumanji (1995)
## 84995 Boys Life (1995)
## 85259 Shadow, The (1994)
## 86303 Gay Divorcee, The (1934)
## 86478 Pollyanna (1960)
## 92588 Gaslight (1944)
## 92625 8 1/2 (1963)
## 93744 Ghost and Mrs. Muir, The (1947)
## 93991 Adventures of Pinocchio, The (1996)
## 95379 Umbrellas of Cherbourg, The (Parapluies de Cherbourg, Les) (1964)
## 95400 They Made Me a Criminal (1939)
## 95401 Last Time I Saw Paris, The (1954)
## 95404 Farewell to Arms, A (1932)
## 95416 Innocents, The (1961)
## 95420 Old Man and the Sea, The (1958)
## 37617 Jungle2Jungle (1997)
## 39455 Contact (1997)
## 40741 Full Monty, The (1997)
## 41183 Starship Troopers (1997)
## 45527 Liar Liar (1997)
## 46400 Air Force One (1997)
## 46822 In & Out (1997)
## 47342 Fly Away Home (1996)
## 47923 Rainmaker, The (1997)
## 49832 Dante's Peak (1997)
## 50494 Cop Land (1997)
## 50676 Conspiracy Theory (1997)
## 51043 Edge, The (1997)
## 51309 Game, The (1997)
## 52033 Man Who Knew Too Little, The (1997)
## 52460 Wag the Dog (1997)
## 77599 Volcano (1997)
## 78668 Seven Years in Tibet (1997)
## 82454 Saint, The (1997)
## 82938 Tomorrow Never Dies (1997)
## 95452 Truman Show, The (1998)
## 28 Toy Story (1995)
## 588 Four Rooms (1995)
## 686 Get Shorty (1995)
## 1029 Twelve Monkeys (1995)
## 1403 Babe (1995)
## 1628 Dead Man Walking (1995)
## 2248 Usual Suspects, The (1995)
## 2515 Mighty Aphrodite (1995)
## 2692 Postino, Il (1994)
## 2885 Mr. Holland's Opus (1995)
## 3370 Angels and Insects (1995)
## 3447 Muppet Treasure Island (1996)
## 3541 Braveheart (1995)
## 4015 Rumble in the Bronx (1995)
## 4619 Apollo 13 (1995)
## 5266 Desperado (1995)
## 5891 Dolores Claiborne (1994)
## 6081 Ed Wood (1994)
## 6445 Star Wars (1977)
## 7166 Natural Born Killers (1994)
## 7399 Professional, The (1994)
## 7565 Pulp Fiction (1994)
## 8156 Three Colors: Red (1994)
## 8363 Stargate (1994)
## 8581 Shawshank Redemption, The (1994)
## 8849 What's Eating Gilbert Grape (1993)
## 9234 Crow, The (1994)
## 9382 Forrest Gump (1994)
## 9701 Four Weddings and a Funeral (1994)
## 9950 Lion King, The (1994)
## 10158 Mask, The (1994)
## 10423 Carlito's Way (1993)
## 10631 Free Willy (1993)
## 11070 Hudsucker Proxy, The (1994)
## 11193 Jurassic Park (1993)
## 11442 Much Ado About Nothing (1993)
## 11696 Remains of the Day, The (1993)
## 12205 Blade Runner (1982)
## 12567 Nightmare Before Christmas, The (1993)
## 13291 Terminator 2: Judgment Day (1991)
## 13582 Dances with Wolves (1990)
## 13851 Silence of the Lambs, The (1991)
## 14417 Fargo (1996)
## 15473 Truth About Cats & Dogs, The (1996)
## 15758 Wallace & Gromit: The Best of Aardman Animation (1996)
## 15848 Cold Comfort Farm (1995)
## 15978 Rock, The (1996)
## 16360 Twister (1996)
## 16731 Independence Day (ID4) (1996)
## 17555 Phenomenon (1996)
## 17906 Godfather, The (1972)
## 18298 Supercop (1992)
## 18366 Bound (1996)
## 18621 Wizard of Oz, The (1939)
## 19035 Citizen Kane (1941)
## 19239 2001: A Space Odyssey (1968)
## 19759 D3: The Mighty Ducks (1996)
## 20256 Die Hard (1988)
## 20562 Long Kiss Goodnight, The (1996)
## 21076 Willy Wonka and the Chocolate Factory (1971)
## 21476 Fish Called Wanda, A (1988)
## 21885 Dirty Dancing (1987)
## 22130 Platoon (1986)
## 22314 Basic Instinct (1992)
## 22708 On Golden Pond (1981)
## 22908 Abyss, The (1989)
## 23176 Private Benjamin (1980)
## 23260 Monty Python and the Holy Grail (1974)
## 23682 Cinema Paradiso (1988)
## 23798 Delicatessen (1991)
## 23882 Empire Strikes Back, The (1980)
## 24248 Princess Bride, The (1987)
## 24579 Raiders of the Lost Ark (1981)
## 25198 Aliens (1986)
## 25732 Clockwork Orange, A (1971)
## 25957 Apocalypse Now (1979)
## 26198 Return of the Jedi (1983)
## 26685 GoodFellas (1990)
## 26915 Alien (1979)
## 28014 Full Metal Jacket (1987)
## 28248 Henry V (1989)
## 28384 Amadeus (1984)
## 29179 Terminator, The (1984)
## 29469 Dead Poets Society (1989)
## 30084 Bridge on the River Kwai, The (1957)
## 31018 Back to the Future (1985)
## 31533 Cyrano de Bergerac (1990)
## 31812 This Is Spinal Tap (1984)
## 32007 Indiana Jones and the Last Crusade (1989)
## 32625 Room with a View, A (1986)
## 32877 Field of Dreams (1989)
## 33098 When Harry Met Sally... (1989)
## 33374 Bram Stoker's Dracula (1992)
## 33931 Star Trek: First Contact (1996)
## 34464 101 Dalmatians (1996)
## 34743 Star Trek VI: The Undiscovered Country (1991)
## 34909 Star Trek: The Wrath of Khan (1982)
## 35147 Star Trek III: The Search for Spock (1984)
## 35320 Star Trek IV: The Voyage Home (1986)
## 35650 Young Guns (1988)
## 36162 Mars Attacks! (1996)
## 36435 Jerry Maguire (1996)
## 36816 Raising Arizona (1987)
## 37368 Last of the Mohicans, The (1992)
## 37797 Devil's Own, The (1997)
## 38320 Austin Powers: International Man of Mystery (1997)
## 38454 Fifth Element, The (1997)
## 38695 Lost World: Jurassic Park, The (1997)
## 39139 Men in Black (1997)
## 39456 Contact (1997)
## 41041 Gattaca (1997)
## 41184 Starship Troopers (1997)
## 41592 Heat (1995)
## 42008 Sense and Sensibility (1995)
## 42280 Leaving Las Vegas (1995)
## 42812 River Wild, The (1994)
## 43192 Emma (1996)
## 43562 Secrets & Lies (1996)
## 43741 English Patient, The (1996)
## 44301 Scream (1996)
## 45018 Fierce Creatures (1997)
## 45528 Liar Liar (1997)
## 46123 Face/Off (1997)
## 47058 L.A. Confidential (1997)
## 47581 Mrs. Brown (Her Majesty, Mrs. Brown) (1997)
## 48961 Schindler's List (1993)
## 50677 Conspiracy Theory (1997)
## 52951 One Flew Over the Cuckoo's Nest (1975)
## 53492 Powder (1995)
## 54241 Star Trek: Generations (1994)
## 54460 Adventures of Priscilla, Queen of the Desert, The (1994)
## 54963 Age of Innocence, The (1993)
## 55678 Brady Bunch Movie, The (1995)
## 55761 Ghost (1990)
## 55933 Batman (1989)
## 56244 Mission: Impossible (1996)
## 57931 William Shakespeare's Romeo and Juliet (1996)
## 58075 E.T. the Extra-Terrestrial (1982)
## 59028 Highlander (1986)
## 59363 Heathers (1989)
## 59808 American Werewolf in London, An (1981)
## 60000 Birds, The (1963)
## 60356 Omen, The (1976)
## 60624 Grease (1978)
## 60892 Jackie Chan's First Strike (1996)
## 61325 Like Water For Chocolate (Como agua para chocolate) (1992)
## 61474 Secret of Roan Inish, The (1994)
## 61537 Vanya on 42nd Street (1994)
## 61650 Red Rock West (1992)
## 62217 Dragonheart (1996)
## 62378 James and the Giant Peach (1996)
## 62504 Dr. Strangelove or: How I Learned to Stop Worrying and Love the Bomb (1963)
## 62701 Trainspotting (1996)
## 63856 Casablanca (1942)
## 65263 African Queen, The (1951)
## 66074 People vs. Larry Flynt, The (1996)
## 66282 My Left Foot (1989)
## 66528 Lawrence of Arabia (1962)
## 66694 Wings of Desire (1987)
## 66830 Annie Hall (1977)
## 67654 Deer Hunter, The (1978)
## 68221 Gandhi (1982)
## 68411 Killing Fields, The (1984)
## 69127 Mortal Kombat (1995)
## 69345 Broken Arrow (1996)
## 70014 Waterworld (1995)
## 70229 Interview with the Vampire (1994)
## 70793 Speed (1994)
## 71014 Wolf (1994)
## 71618 Piano, The (1993)
## 72654 Eraser (1996)
## 73215 Meet Me in St. Louis (1944)
## 75554 Glory (1989)
## 75725 Rosencrantz and Guildenstern Are Dead (1990)
## 76004 Stand by Me (1986)
## 76593 Fried Green Tomatoes (1991)
## 77027 Paris, Texas (1984)
## 77078 Alien 3 (1992)
## 77322 Cape Fear (1962)
## 77508 Crucible, The (1996)
## 78262 Executive Decision (1996)
## 79224 Basketball Diaries, The (1995)
## 79280 Little Women (1994)
## 79404 Barcelona (1994)
## 79474 House of the Spirits, The (1993)
## 79714 Sex, Lies, and Videotape (1989)
## 79919 Better Off Dead... (1985)
## 79997 Tin Men (1987)
## 80134 To Die For (1995)
## 80221 Home for the Holidays (1995)
## 80601 Boys on the Side (1995)
## 80856 Nell (1994)
## 81524 Pretty Woman (1990)
## 81820 Ransom (1996)
## 82114 Michael Collins (1996)
## 82344 Benny & Joon (1993)
## 83700 Happy Gilmore (1996)
## 84187 Prophecy, The (1995)
## 85402 One Fine Day (1996)
## 86013 Daylight (1996)
## 86588 That Thing You Do! (1996)
## 87021 Night on Earth (1991)
## 87228 Michael (1996)
## 87624 She's So Lovely (1997)
## 88962 Farewell My Concubine (1993)
## 89101 White Squall (1996)
## 89554 Island of Dr. Moreau, The (1996)
## 90268 How to Make an American Quilt (1995)
## 90409 Blue in the Face (1995)
## 90487 Before Sunrise (1995)
## 90599 Dazed and Confused (1993)
## 91892 Stealing Beauty (1996)
## 92093 Private Parts (1997)
## 92343 Con Air (1997)
## 92526 Tie Me Up! Tie Me Down! (1990)
## 92795 Grumpier Old Men (1995)
## 93992 Adventures of Pinocchio, The (1996)
## 94310 Shallow Grave (1994)
## 94377 Reality Bites (1994)
## 94471 Love and a .45 (1994)
## 94721 Pete's Dragon (1977)
## 95050 Beyond Rangoon (1995)
## 95257 Up in Smoke (1978)
## 95463 Heidi Fleiss: Hollywood Madam (1995)
## 95476 Chungking Express (1994)
## 95504 Jupiter's Wife (1994)
## 95505 Safe (1995)
## 95518 Feeling Minnesota (1996)
## 95550 Escape to Witch Mountain (1975)
## 95580 Get on the Bus (1996)
## 95618 Doors, The (1991)
## 95664 Ghosts of Mississippi (1996)
## 29 Toy Story (1995)
## 589 Four Rooms (1995)
## 972 Shanghai Triad (Yao a yao yao dao waipo qiao) (1995)
## 1910 Richard III (1995)
## 2516 Mighty Aphrodite (1995)
## 2693 Postino, Il (1994)
## 2886 Mr. Holland's Opus (1995)
## 3371 Angels and Insects (1995)
## 4199 Birdcage, The (1996)
## 6446 Star Wars (1977)
## 10684 Fugitive, The (1993)
## 14418 Fargo (1996)
## 15120 Diabolique (1996)
## 15230 Kids in the Hall: Brain Candy (1996)
## 15306 Mystery Science Theater 3000: The Movie (1996)
## 15474 Truth About Cats & Dogs, The (1996)
## 15849 Cold Comfort Farm (1995)
## 16732 Independence Day (ID4) (1996)
## 17792 Spitfire Grill, The (1996)
## 19595 Big Night (1996)
## 20896 Swingers (1996)
## 26199 Return of the Jedi (1983)
## 33932 Star Trek: First Contact (1996)
## 34413 Ridicule (1996)
## 34465 101 Dalmatians (1996)
## 36436 Jerry Maguire (1996)
## 37499 Kolya (1996)
## 38030 Chasing Amy (1997)
## 38455 Fifth Element, The (1997)
## 38642 Shall We Dance? (1996)
## 38938 My Best Friend's Wedding (1997)
## 39140 Men in Black (1997)
## 39457 Contact (1997)
## 39946 George of the Jungle (1997)
## 40270 In the Company of Men (1997)
## 40742 Full Monty, The (1997)
## 42281 Leaving Las Vegas (1995)
## 42564 Restoration (1995)
## 42959 Time to Kill, A (1996)
## 43193 Emma (1996)
## 43370 Tin Cup (1996)
## 43563 Secrets & Lies (1996)
## 43742 English Patient, The (1996)
## 44200 Marvin's Room (1996)
## 44302 Scream (1996)
## 44764 Evita (1996)
## 45529 Liar Liar (1997)
## 46401 Air Force One (1997)
## 46823 In & Out (1997)
## 47059 L.A. Confidential (1997)
## 47582 Mrs. Brown (Her Majesty, Mrs. Brown) (1997)
## 49444 Mother (1996)
## 49606 Murder at 1600 (1997)
## 49833 Dante's Peak (1997)
## 50188 Crash (1996)
## 50678 Conspiracy Theory (1997)
## 51310 Game, The (1997)
## 56245 Mission: Impossible (1996)
## 56667 Close Shave, A (1995)
## 57165 Very Brady Sequel, A (1996)
## 62379 James and the Giant Peach (1996)
## 62702 Trainspotting (1996)
## 63489 North by Northwest (1959)
## 66075 People vs. Larry Flynt, The (1996)
## 69346 Broken Arrow (1996)
## 72256 Primal Fear (1996)
## 72521 Hunchback of Notre Dame, The (1996)
## 77509 Crucible, The (1996)
## 77600 Volcano (1997)
## 80049 Othello (1995)
## 81753 Last Supper, The (1995)
## 82455 Saint, The (1997)
## 83586 Beautiful Girls (1996)
## 85343 Celluloid Closet, The (1995)
## 86068 Alaska (1996)
## 86432 Glimmer Man, The (1996)
## 89102 White Squall (1996)
## 89431 Harriet the Spy (1996)
## 90223 Booty Call (1997)
## 90410 Blue in the Face (1995)
## 91184 Trigger Effect, The (1996)
## 91559 Hercules (1997)
## 91806 Waiting for Guffman (1996)
## 91854 I Shot Andy Warhol (1996)
## 91893 Stealing Beauty (1996)
## 91954 Basquiat (1996)
## 91999 2 Days in the Valley (1996)
## 92094 Private Parts (1997)
## 92796 Grumpier Old Men (1995)
## 94185 Bottle Rocket (1996)
## 95693 Beautiful Thing (1996)
## 95722 Best Men (1997)
## 30 Toy Story (1995)
## 460 GoldenEye (1995)
## 687 Get Shorty (1995)
## 1030 Twelve Monkeys (1995)
## 1404 Babe (1995)
## 1629 Dead Man Walking (1995)
## 1911 Richard III (1995)
## 2013 Seven (Se7en) (1995)
## 2249 Usual Suspects, The (1995)
## 3203 From Dusk Till Dawn (1996)
## 3542 Braveheart (1995)
## 4620 Apollo 13 (1995)
## 5033 Crimson Tide (1995)
## 5191 Crumb (1994)
## 5403 Net, The (1995)
## 6211 Hoop Dreams (1994)
## 6447 Star Wars (1977)
## 7074 Madness of King George, The (1994)
## 7566 Pulp Fiction (1994)
## 7983 Quiz Show (1994)
## 8364 Stargate (1994)
## 8582 Shawshank Redemption, The (1994)
## 9383 Forrest Gump (1994)
## 9702 Four Weddings and a Funeral (1994)
## 9951 Lion King, The (1994)
## 10159 Mask, The (1994)
## 10483 Firm, The (1993)
## 10685 Fugitive, The (1993)
## 11071 Hudsucker Proxy, The (1994)
## 11194 Jurassic Park (1993)
## 11443 Much Ado About Nothing (1993)
## 11845 Searching for Bobby Fischer (1993)
## 12206 Blade Runner (1982)
## 12568 Nightmare Before Christmas, The (1993)
## 12811 Welcome to the Dollhouse (1995)
## 13071 Aladdin (1992)
## 13292 Terminator 2: Judgment Day (1991)
## 13583 Dances with Wolves (1990)
## 13852 Silence of the Lambs, The (1991)
## 14419 Fargo (1996)
## 14898 Heavy Metal (1981)
## 15475 Truth About Cats & Dogs, The (1996)
## 16733 Independence Day (ID4) (1996)
## 17556 Phenomenon (1996)
## 17907 Godfather, The (1972)
## 18622 Wizard of Oz, The (1939)
## 19240 2001: A Space Odyssey (1968)
## 19893 20,000 Leagues Under the Sea (1954)
## 20034 Sound of Music, The (1965)
## 20257 Die Hard (1988)
## 21077 Willy Wonka and the Chocolate Factory (1971)
## 21477 Fish Called Wanda, A (1988)
## 21713 Monty Python's Life of Brian (1979)
## 21984 Reservoir Dogs (1992)
## 22131 Platoon (1986)
## 22416 Glengarry Glen Ross (1992)
## 22498 Top Gun (1986)
## 22709 On Golden Pond (1981)
## 23261 Monty Python and the Holy Grail (1974)
## 23883 Empire Strikes Back, The (1980)
## 24249 Princess Bride, The (1987)
## 24580 Raiders of the Lost Ark (1981)
## 24988 Brazil (1985)
## 25199 Aliens (1986)
## 25733 Clockwork Orange, A (1971)
## 26200 Return of the Jedi (1983)
## 26686 GoodFellas (1990)
## 26916 Alien (1979)
## 27197 Army of Darkness (1993)
## 27324 Psycho (1960)
## 27559 Blues Brothers, The (1980)
## 27804 Godfather: Part II, The (1974)
## 28015 Full Metal Jacket (1987)
## 28249 Henry V (1989)
## 28385 Amadeus (1984)
## 28934 Sting, The (1973)
## 29180 Terminator, The (1984)
## 29470 Dead Poets Society (1989)
## 29717 Graduate, The (1967)
## 30085 Bridge on the River Kwai, The (1957)
## 30552 Groundhog Day (1993)
## 30824 Unforgiven (1992)
## 31813 This Is Spinal Tap (1984)
## 32008 Indiana Jones and the Last Crusade (1989)
## 32336 M*A*S*H (1970)
## 32530 Unbearable Lightness of Being, The (1988)
## 32757 Pink Floyd - The Wall (1982)
## 32878 Field of Dreams (1989)
## 33099 When Harry Met Sally... (1989)
## 33375 Bram Stoker's Dracula (1992)
## 33495 Cape Fear (1991)
## 33933 Star Trek: First Contact (1996)
## 34744 Star Trek VI: The Undiscovered Country (1991)
## 34910 Star Trek: The Wrath of Khan (1982)
## 35148 Star Trek III: The Search for Spock (1984)
## 35321 Star Trek IV: The Voyage Home (1986)
## 35514 Batman Returns (1992)
## 35651 Young Guns (1988)
## 35885 Jaws (1975)
## 36163 Mars Attacks! (1996)
## 36437 Jerry Maguire (1996)
## 36817 Raising Arizona (1987)
## 37060 Sneakers (1992)
## 37214 Beavis and Butt-head Do America (1996)
## 37369 Last of the Mohicans, The (1992)
## 39458 Contact (1997)
## 40461 Hunt for Red October, The (1990)
## 40743 Full Monty, The (1997)
## 41185 Starship Troopers (1997)
## 41593 Heat (1995)
## 42009 Sense and Sensibility (1995)
## 43371 Tin Cup (1996)
## 44303 Scream (1996)
## 46402 Air Force One (1997)
## 47924 Rainmaker, The (1997)
## 48062 Wings of the Dove, The (1997)
## 48232 Titanic (1997)
## 48962 Schindler's List (1993)
## 50315 G.I. Jane (1997)
## 51311 Game, The (1997)
## 51841 Boogie Nights (1997)
## 52461 Wag the Dog (1997)
## 52839 Client, The (1994)
## 53600 Clueless (1995)
## 54356 Muriel's Wedding (1994)
## 54597 Naked Gun 33 1/3: The Final Insult (1994)
## 54678 True Lies (1994)
## 55052 Black Beauty (1994)
## 55151 Man Without a Face, The (1993)
## 55934 Batman (1989)
## 56246 Mission: Impossible (1996)
## 57678 Mary Poppins (1964)
## 57849 Alice in Wonderland (1951)
## 58076 E.T. the Extra-Terrestrial (1982)
## 58381 Bob Roberts (1992)
## 58839 Day the Earth Stood Still, The (1951)
## 59029 Highlander (1986)
## 59364 Heathers (1989)
## 59527 Forbidden Planet (1956)
## 59601 Butch Cassidy and the Sundance Kid (1969)
## 59809 American Werewolf in London, An (1981)
## 60238 Carrie (1976)
## 60625 Grease (1978)
## 61475 Secret of Roan Inish, The (1994)
## 62703 Trainspotting (1996)
## 62946 First Wives Club, The (1996)
## 63490 North by Northwest (1959)
## 64965 It's a Wonderful Life (1946)
## 65646 Candidate, The (1972)
## 66283 My Left Foot (1989)
## 66529 Lawrence of Arabia (1962)
## 67008 Boot, Das (1981)
## 67207 Local Hero (1983)
## 67529 Great Escape, The (1963)
## 68222 Gandhi (1982)
## 68706 Shine (1996)
## 69042 Mouse Hunt (1997)
## 69347 Broken Arrow (1996)
## 70230 Interview with the Vampire (1994)
## 70573 Clear and Present Danger (1994)
## 70794 Speed (1994)
## 71015 Wolf (1994)
## 71619 Piano, The (1993)
## 71999 Beauty and the Beast (1991)
## 72257 Primal Fear (1996)
## 72939 Rear Window (1954)
## 74043 Sword in the Stone, The (1963)
## 74658 Christmas Carol, A (1938)
## 74772 Escape from New York (1981)
## 75480 Seventh Seal, The (Sjunde inseglet, Det) (1957)
## 75555 Glory (1989)
## 75726 Rosencrantz and Guildenstern Are Dead (1990)
## 76005 Stand by Me (1986)
## 76832 Somewhere in Time (1980)
## 76916 Being There (1979)
## 77809 Conan the Barbarian (1981)
## 78095 In the Line of Fire (1993)
## 78998 Casino (1995)
## 79506 Singin' in the Rain (1952)
## 80358 In the Bleak Midwinter (1995)
## 80956 Corrina, Corrina (1994)
## 81003 Dave (1993)
## 81357 Shadowlands (1993)
## 82224 Real Genius (1985)
## 82456 Saint, The (1997)
## 82939 Tomorrow Never Dies (1997)
## 83927 Casper (1995)
## 84258 Don Juan DeMarco (1995)
## 86798 Looking for Richard (1996)
## 87812 Peacemaker, The (1997)
## 88501 Postman, The (1997)
## 88866 City of Lost Children, The (1995)
## 90600 Dazed and Confused (1993)
## 90876 Winnie the Pooh and the Blustery Day (1968)
## 94072 Little Princess, A (1995)
## 94117 Koyaanisqatsi (1983)
## 95551 Escape to Witch Mountain (1975)
## 95727 Hackers (1995)
## 95760 Road to Wellville, The (1994)
## 95777 War Room, The (1993)
## 31 Toy Story (1995)
## 1031 Twelve Monkeys (1995)
## 1630 Dead Man Walking (1995)
## 2887 Mr. Holland's Opus (1995)
## 4200 Birdcage, The (1996)
## 4621 Apollo 13 (1995)
## 6082 Ed Wood (1994)
## 6212 Hoop Dreams (1994)
## 6448 Star Wars (1977)
## 7567 Pulp Fiction (1994)
## 8486 Santa Clause, The (1994)
## 8583 Shawshank Redemption, The (1994)
## 8850 What's Eating Gilbert Grape (1993)
## 8969 While You Were Sleeping (1995)
## 9384 Forrest Gump (1994)
## 9703 Four Weddings and a Funeral (1994)
## 10290 Maverick (1994)
## 10484 Firm, The (1993)
## 11846 Searching for Bobby Fischer (1993)
## 11986 Sleepless in Seattle (1993)
## 13584 Dances with Wolves (1990)
## 13853 Silence of the Lambs, The (1991)
## 14420 Fargo (1996)
## 15476 Truth About Cats & Dogs, The (1996)
## 16734 Independence Day (ID4) (1996)
## 17557 Phenomenon (1996)
## 19241 2001: A Space Odyssey (1968)
## 23262 Monty Python and the Holy Grail (1974)
## 24250 Princess Bride, The (1987)
## 25607 12 Angry Men (1957)
## 25734 Clockwork Orange, A (1971)
## 27325 Psycho (1960)
## 28386 Amadeus (1984)
## 28935 Sting, The (1973)
## 29471 Dead Poets Society (1989)
## 29718 Graduate, The (1967)
## 30553 Groundhog Day (1993)
## 32009 Indiana Jones and the Last Crusade (1989)
## 32337 M*A*S*H (1970)
## 32879 Field of Dreams (1989)
## 33100 When Harry Met Sally... (1989)
## 36438 Jerry Maguire (1996)
## 36818 Raising Arizona (1987)
## 37061 Sneakers (1992)
## 38939 My Best Friend's Wedding (1997)
## 39459 Contact (1997)
## 45530 Liar Liar (1997)
## 48963 Schindler's List (1993)
## 50679 Conspiracy Theory (1997)
## 52840 Client, The (1994)
## 53493 Powder (1995)
## 54096 Miracle on 34th Street (1994)
## 55152 Man Without a Face, The (1993)
## 55224 Mrs. Doubtfire (1993)
## 55762 Ghost (1990)
## 58077 E.T. the Extra-Terrestrial (1982)
## 58508 To Kill a Mockingbird (1962)
## 58840 Day the Earth Stood Still, The (1951)
## 59602 Butch Cassidy and the Sundance Kid (1969)
## 62000 Courage Under Fire (1996)
## 62947 First Wives Club, The (1996)
## 66530 Lawrence of Arabia (1962)
## 66831 Annie Hall (1977)
## 68094 Ben-Hur (1959)
## 68707 Shine (1996)
## 71620 Piano, The (1993)
## 75556 Glory (1989)
## 76006 Stand by Me (1986)
## 76594 Fried Green Tomatoes (1991)
## 76744 High Noon (1952)
## 77510 Crucible, The (1996)
## 81224 Philadelphia (1993)
## 81358 Shadowlands (1993)
## 84259 Don Juan DeMarco (1995)
## 85126 Menace II Society (1993)
## 90536 Nobody's Fool (1994)
## 93302 Forget Paris (1995)
## 93400 Paper, The (1994)
## 95477 Chungking Express (1994)
## 95786 When We Were Kings (1996)
## 32 Toy Story (1995)
## 1032 Twelve Monkeys (1995)
## 1631 Dead Man Walking (1995)
## 2888 Mr. Holland's Opus (1995)
## 3448 Muppet Treasure Island (1996)
## 4016 Rumble in the Bronx (1995)
## 6449 Star Wars (1977)
## 15979 Rock, The (1996)
## 16735 Independence Day (ID4) (1996)
## 17908 Godfather, The (1972)
## 26201 Return of the Jedi (1983)
## 36439 Jerry Maguire (1996)
## 38160 Grosse Pointe Blank (1997)
## 38321 Austin Powers: International Man of Mystery (1997)
## 39141 Men in Black (1997)
## 39460 Contact (1997)
## 42725 Up Close and Personal (1996)
## 42813 River Wild, The (1994)
## 42960 Time to Kill, A (1996)
## 43372 Tin Cup (1996)
## 43743 English Patient, The (1996)
## 44304 Scream (1996)
## 45531 Liar Liar (1997)
## 45984 Breakdown (1997)
## 46124 Face/Off (1997)
## 46403 Air Force One (1997)
## 56247 Mission: Impossible (1996)
## 62001 Courage Under Fire (1996)
## 62704 Trainspotting (1996)
## 66076 People vs. Larry Flynt, The (1996)
## 68878 Addicted to Love (1997)
## 72655 Eraser (1996)
## 81754 Last Supper, The (1995)
## 81821 Ransom (1996)
## 83701 Happy Gilmore (1996)
## 85851 Arrival, The (1996)
## 87723 Excess Baggage (1997)
## 92344 Con Air (1997)
## 33 Toy Story (1995)
## 1033 Twelve Monkeys (1995)
## 4017 Rumble in the Bronx (1995)
## 4201 Birdcage, The (1996)
## 8584 Shawshank Redemption, The (1994)
## 15045 Sgt. Bilko (1996)
## 15980 Rock, The (1996)
## 16736 Independence Day (ID4) (1996)
## 17139 Cable Guy, The (1996)
## 17248 Frighteners, The (1996)
## 17558 Phenomenon (1996)
## 20563 Long Kiss Goodnight, The (1996)
## 21078 Willy Wonka and the Chocolate Factory (1971)
## 36164 Mars Attacks! (1996)
## 37215 Beavis and Butt-head Do America (1996)
## 41594 Heat (1995)
## 42282 Leaving Las Vegas (1995)
## 56248 Mission: Impossible (1996)
## 57166 Very Brady Sequel, A (1996)
## 62218 Dragonheart (1996)
## 69348 Broken Arrow (1996)
## 82072 Crow: City of Angels, The (1996)
## 83333 Father of the Bride Part II (1995)
## 86014 Daylight (1996)
## 86231 Bulletproof (1996)
## 87391 Vegas Vacation (1997)
## 93515 Multiplicity (1996)
## 93827 Dracula: Dead and Loving It (1995)
## 94777 Live Nude Girls (1995)
## 94811 High School High (1996)
## 1034 Twelve Monkeys (1995)
## 1632 Dead Man Walking (1995)
## 4202 Birdcage, The (1996)
## 6450 Star Wars (1977)
## 15477 Truth About Cats & Dogs, The (1996)
## 15981 Rock, The (1996)
## 16361 Twister (1996)
## 16737 Independence Day (ID4) (1996)
## 17559 Phenomenon (1996)
## 17909 Godfather, The (1972)
## 25608 12 Angry Men (1957)
## 26202 Return of the Jedi (1983)
## 36440 Jerry Maguire (1996)
## 37798 Devil's Own, The (1997)
## 39461 Contact (1997)
## 42010 Sense and Sensibility (1995)
## 42283 Leaving Las Vegas (1995)
## 42961 Time to Kill, A (1996)
## 43744 English Patient, The (1996)
## 44305 Scream (1996)
## 56249 Mission: Impossible (1996)
## 56775 Jack (1996)
## 57012 Nutty Professor, The (1996)
## 61105 Nixon (1995)
## 62002 Courage Under Fire (1996)
## 62705 Trainspotting (1996)
## 72522 Hunchback of Notre Dame, The (1996)
## 80050 Othello (1995)
## 81822 Ransom (1996)
## 83702 Happy Gilmore (1996)
## 89226 Down Periscope (1996)
## 92797 Grumpier Old Men (1995)
## 93516 Multiplicity (1996)
## 94647 Speed 2: Cruise Control (1997)
## 1035 Twelve Monkeys (1995)
## 1633 Dead Man Walking (1995)
## 2250 Usual Suspects, The (1995)
## 5709 Clerks (1994)
## 6213 Hoop Dreams (1994)
## 6451 Star Wars (1977)
## 7568 Pulp Fiction (1994)
## 10686 Fugitive, The (1993)
## 13854 Silence of the Lambs, The (1991)
## 14421 Fargo (1996)
## 15307 Mystery Science Theater 3000: The Movie (1996)
## 15982 Rock, The (1996)
## 17249 Frighteners, The (1996)
## 17363 Lone Star (1996)
## 18367 Bound (1996)
## 20564 Long Kiss Goodnight, The (1996)
## 20897 Swingers (1996)
## 21079 Willy Wonka and the Chocolate Factory (1971)
## 23884 Empire Strikes Back, The (1980)
## 24581 Raiders of the Lost Ark (1981)
## 24989 Brazil (1985)
## 26203 Return of the Jedi (1983)
## 26687 GoodFellas (1990)
## 29719 Graduate, The (1967)
## 33934 Star Trek: First Contact (1996)
## 35886 Jaws (1975)
## 36165 Mars Attacks! (1996)
## 36369 Citizen Ruth (1996)
## 36441 Jerry Maguire (1996)
## 37216 Beavis and Butt-head Do America (1996)
## 37799 Devil's Own, The (1997)
## 38031 Chasing Amy (1997)
## 39105 When the Cats Away (Chacun cherche son chat) (1996)
## 39462 Contact (1997)
## 40462 Hunt for Red October, The (1990)
## 41595 Heat (1995)
## 42962 Time to Kill, A (1996)
## 44306 Scream (1996)
## 44765 Evita (1996)
## 45532 Liar Liar (1997)
## 46125 Face/Off (1997)
## 46404 Air Force One (1997)
## 47060 L.A. Confidential (1997)
## 47681 Devil's Advocate, The (1997)
## 49445 Mother (1996)
## 51312 Game, The (1997)
## 51552 U Turn (1997)
## 58509 To Kill a Mockingbird (1962)
## 62706 Trainspotting (1996)
## 66077 People vs. Larry Flynt, The (1996)
## 72258 Primal Fear (1996)
## 74206 Sleepers (1996)
## 78577 Jackal, The (1997)
## 81823 Ransom (1996)
## 82457 Saint, The (1997)
## 83703 Happy Gilmore (1996)
## 87813 Peacemaker, The (1997)
## 88069 Life Less Ordinary, A (1997)
## 92345 Con Air (1997)
## 92476 Trees Lounge (1996)
## 95581 Get on the Bus (1996)
## 95787 When We Were Kings (1996)
## 95830 Hard Eight (1996)
## 95845 Quiet Room, The (1996)
## 34 Toy Story (1995)
## 1405 Babe (1995)
## 2889 Mr. Holland's Opus (1995)
## 4018 Rumble in the Bronx (1995)
## 4622 Apollo 13 (1995)
## 6214 Hoop Dreams (1994)
## 6452 Star Wars (1977)
## 8487 Santa Clause, The (1994)
## 9385 Forrest Gump (1994)
## 9952 Lion King, The (1994)
## 10687 Fugitive, The (1993)
## 11195 Jurassic Park (1993)
## 11444 Much Ado About Nothing (1993)
## 11987 Sleepless in Seattle (1993)
## 12207 Blade Runner (1982)
## 12569 Nightmare Before Christmas, The (1993)
## 12925 Home Alone (1990)
## 13072 Aladdin (1992)
## 13293 Terminator 2: Judgment Day (1991)
## 14226 Snow White and the Seven Dwarfs (1937)
## 14899 Heavy Metal (1981)
## 15308 Mystery Science Theater 3000: The Movie (1996)
## 16738 Independence Day (ID4) (1996)
## 18299 Supercop (1992)
## 18623 Wizard of Oz, The (1939)
## 19242 2001: A Space Odyssey (1968)
## 19779 Love Bug, The (1969)
## 19963 Bedknobs and Broomsticks (1971)
## 20035 Sound of Music, The (1965)
## 20898 Swingers (1996)
## 21080 Willy Wonka and the Chocolate Factory (1971)
## 21381 Sleeper (1973)
## 22499 Top Gun (1986)
## 23263 Monty Python and the Holy Grail (1974)
## 23563 Wrong Trousers, The (1993)
## 23885 Empire Strikes Back, The (1980)
## 24251 Princess Bride, The (1987)
## 24582 Raiders of the Lost Ark (1981)
## 24990 Brazil (1985)
## 25200 Aliens (1986)
## 26204 Return of the Jedi (1983)
## 26917 Alien (1979)
## 27326 Psycho (1960)
## 27560 Blues Brothers, The (1980)
## 28184 Grand Day Out, A (1992)
## 28387 Amadeus (1984)
## 28766 Right Stuff, The (1983)
## 29720 Graduate, The (1967)
## 30554 Groundhog Day (1993)
## 31019 Back to the Future (1985)
## 31481 Akira (1988)
## 31612 Young Frankenstein (1974)
## 32010 Indiana Jones and the Last Crusade (1989)
## 32338 M*A*S*H (1970)
## 32758 Pink Floyd - The Wall (1982)
## 33376 Bram Stoker's Dracula (1992)
## 33935 Star Trek: First Contact (1996)
## 34466 101 Dalmatians (1996)
## 34745 Star Trek VI: The Undiscovered Country (1991)
## 34911 Star Trek: The Wrath of Khan (1982)
## 35149 Star Trek III: The Search for Spock (1984)
## 35322 Star Trek IV: The Voyage Home (1986)
## 35515 Batman Returns (1992)
## 39142 Men in Black (1997)
## 40104 Event Horizon (1997)
## 40357 Mimic (1997)
## 40463 Hunt for Red October, The (1990)
## 44766 Evita (1996)
## 46126 Face/Off (1997)
## 46405 Air Force One (1997)
## 48233 Titanic (1997)
## 51697 Bean (1997)
## 52090 Alien: Resurrection (1997)
## 54242 Star Trek: Generations (1994)
## 54565 Flintstones, The (1994)
## 55225 Mrs. Doubtfire (1993)
## 55541 Super Mario Bros. (1993)
## 55570 Three Musketeers, The (1993)
## 55935 Batman (1989)
## 56132 Pinocchio (1940)
## 56250 Mission: Impossible (1996)
## 56668 Close Shave, A (1995)
## 57013 Nutty Professor, The (1996)
## 57466 Parent Trap, The (1961)
## 57548 Cinderella (1950)
## 57679 Mary Poppins (1964)
## 58078 E.T. the Extra-Terrestrial (1982)
## 58841 Day the Earth Stood Still, The (1951)
## 59030 Highlander (1986)
## 59189 Fantasia (1940)
## 60442 Star Trek: The Motion Picture (1979)
## 60557 Star Trek V: The Final Frontier (1989)
## 60626 Grease (1978)
## 62219 Dragonheart (1996)
## 62380 James and the Giant Peach (1996)
## 63724 Some Like It Hot (1959)
## 63857 Casablanca (1942)
## 64966 It's a Wonderful Life (1946)
## 65475 Dumbo (1941)
## 65970 Streetcar Named Desire, A (1951)
## 66531 Lawrence of Arabia (1962)
## 68223 Gandhi (1982)
## 68975 Anastasia (1997)
## 69177 Pocahontas (1995)
## 69349 Broken Arrow (1996)
## 70015 Waterworld (1995)
## 70231 Interview with the Vampire (1994)
## 70795 Speed (1994)
## 71277 Cliffhanger (1993)
## 71819 Secret Garden, The (1993)
## 72000 Beauty and the Beast (1991)
## 72523 Hunchback of Notre Dame, The (1996)
## 72656 Eraser (1996)
## 74044 Sword in the Stone, The (1963)
## 76007 Stand by Me (1986)
## 77601 Volcano (1997)
## 78096 In the Line of Fire (1993)
## 81525 Pretty Woman (1990)
## 82225 Real Genius (1985)
## 82940 Tomorrow Never Dies (1997)
## 83237 Jumanji (1995)
## 83587 Beautiful Girls (1996)
## 85607 Space Jam (1996)
## 90147 Fox and the Hound, The (1981)
## 91560 Hercules (1997)
## 92952 Beverly Hillbillies, The (1993)
## 93056 Cool Runnings (1993)
## 94118 Koyaanisqatsi (1983)
## 95552 Escape to Witch Mountain (1975)
## 95848 Blue Chips (1994)
## 95857 Calendar Girl (1993)
## 973 Shanghai Triad (Yao a yao yao dao waipo qiao) (1995)
## 2694 Postino, Il (1994)
## 6453 Star Wars (1977)
## 7075 Madness of King George, The (1994)
## 7569 Pulp Fiction (1994)
## 8585 Shawshank Redemption, The (1994)
## 8851 What's Eating Gilbert Grape (1993)
## 12208 Blade Runner (1982)
## 13855 Silence of the Lambs, The (1991)
## 14422 Fargo (1996)
## 19036 Citizen Kane (1941)
## 19243 2001: A Space Odyssey (1968)
## 21081 Willy Wonka and the Chocolate Factory (1971)
## 21478 Fish Called Wanda, A (1988)
## 21714 Monty Python's Life of Brian (1979)
## 23264 Monty Python and the Holy Grail (1974)
## 24583 Raiders of the Lost Ark (1981)
## 24991 Brazil (1985)
## 25470 Good, The Bad and The Ugly, The (1966)
## 26205 Return of the Jedi (1983)
## 29721 Graduate, The (1967)
## 33936 Star Trek: First Contact (1996)
## 38161 Grosse Pointe Blank (1997)
## 39143 Men in Black (1997)
## 42284 Leaving Las Vegas (1995)
## 42963 Time to Kill, A (1996)
## 43564 Secrets & Lies (1996)
## 43745 English Patient, The (1996)
## 44767 Evita (1996)
## 47061 L.A. Confidential (1997)
## 52332 Jackie Brown (1997)
## 52952 One Flew Over the Cuckoo's Nest (1975)
## 58842 Day the Earth Stood Still, The (1951)
## 61326 Like Water For Chocolate (Como agua para chocolate) (1992)
## 62707 Trainspotting (1996)
## 66832 Annie Hall (1977)
## 82115 Michael Collins (1996)
## 89043 Raise the Red Lantern (1991)
## 35 Toy Story (1995)
## 461 GoldenEye (1995)
## 889 Copycat (1995)
## 1036 Twelve Monkeys (1995)
## 1634 Dead Man Walking (1995)
## 2251 Usual Suspects, The (1995)
## 2890 Mr. Holland's Opus (1995)
## 3830 Taxi Driver (1976)
## 4203 Birdcage, The (1996)
## 4623 Apollo 13 (1995)
## 5404 Net, The (1995)
## 5970 Eat Drink Man Woman (1994)
## 6215 Hoop Dreams (1994)
## 6454 Star Wars (1977)
## 6994 Legends of the Fall (1994)
## 7293 Outbreak (1995)
## 7570 Pulp Fiction (1994)
## 7984 Quiz Show (1994)
## 8586 Shawshank Redemption, The (1994)
## 9235 Crow, The (1994)
## 9386 Forrest Gump (1994)
## 9704 Four Weddings and a Funeral (1994)
## 10485 Firm, The (1993)
## 10688 Fugitive, The (1993)
## 11072 Hudsucker Proxy, The (1994)
## 11196 Jurassic Park (1993)
## 11847 Searching for Bobby Fischer (1993)
## 12209 Blade Runner (1982)
## 13294 Terminator 2: Judgment Day (1991)
## 13585 Dances with Wolves (1990)
## 13856 Silence of the Lambs, The (1991)
## 14423 Fargo (1996)
## 15121 Diabolique (1996)
## 15983 Rock, The (1996)
## 16362 Twister (1996)
## 16739 Independence Day (ID4) (1996)
## 17364 Lone Star (1996)
## 17910 Godfather, The (1972)
## 18368 Bound (1996)
## 19037 Citizen Kane (1941)
## 19244 2001: A Space Odyssey (1968)
## 20565 Long Kiss Goodnight, The (1996)
## 22500 Top Gun (1986)
## 23683 Cinema Paradiso (1988)
## 23886 Empire Strikes Back, The (1980)
## 24584 Raiders of the Lost Ark (1981)
## 25201 Aliens (1986)
## 25471 Good, The Bad and The Ugly, The (1966)
## 25958 Apocalypse Now (1979)
## 26206 Return of the Jedi (1983)
## 26688 GoodFellas (1990)
## 27805 Godfather: Part II, The (1974)
## 28016 Full Metal Jacket (1987)
## 28388 Amadeus (1984)
## 28936 Sting, The (1973)
## 29181 Terminator, The (1984)
## 29472 Dead Poets Society (1989)
## 29722 Graduate, The (1967)
## 29953 Nikita (La Femme Nikita) (1990)
## 30825 Unforgiven (1992)
## 31020 Back to the Future (1985)
## 32011 Indiana Jones and the Last Crusade (1989)
## 32531 Unbearable Lightness of Being, The (1988)
## 32880 Field of Dreams (1989)
## 33771 Mirror Has Two Faces, The (1996)
## 33937 Star Trek: First Contact (1996)
## 34572 Die Hard 2 (1990)
## 34912 Star Trek: The Wrath of Khan (1982)
## 35150 Star Trek III: The Search for Spock (1984)
## 35323 Star Trek IV: The Voyage Home (1986)
## 35754 Under Siege (1992)
## 35887 Jaws (1975)
## 36442 Jerry Maguire (1996)
## 37370 Last of the Mohicans, The (1992)
## 40464 Hunt for Red October, The (1990)
## 41186 Starship Troopers (1997)
## 48964 Schindler's List (1993)
## 52841 Client, The (1994)
## 52953 One Flew Over the Cuckoo's Nest (1975)
## 54243 Star Trek: Generations (1994)
## 54461 Adventures of Priscilla, Queen of the Desert, The (1994)
## 55763 Ghost (1990)
## 55936 Batman (1989)
## 56251 Mission: Impossible (1996)
## 58079 E.T. the Extra-Terrestrial (1982)
## 58510 To Kill a Mockingbird (1962)
## 59603 Butch Cassidy and the Sundance Kid (1969)
## 60001 Birds, The (1963)
## 61247 Smoke (1995)
## 61651 Red Rock West (1992)
## 62003 Courage Under Fire (1996)
## 62948 First Wives Club, The (1996)
## 63310 Vertigo (1958)
## 63491 North by Northwest (1959)
## 64094 Maltese Falcon, The (1941)
## 64781 Thin Man, The (1934)
## 65692 Bonnie and Clyde (1967)
## 66284 My Left Foot (1989)
## 67009 Boot, Das (1981)
## 67362 Miller's Crossing (1990)
## 67530 Great Escape, The (1963)
## 67655 Deer Hunter, The (1978)
## 68018 Big Sleep, The (1946)
## 68095 Ben-Hur (1959)
## 68224 Gandhi (1982)
## 68412 Killing Fields, The (1984)
## 68626 Man Who Would Be King, The (1975)
## 69736 Die Hard: With a Vengeance (1995)
## 69951 Walk in the Clouds, A (1995)
## 70574 Clear and Present Danger (1994)
## 70796 Speed (1994)
## 71556 Kalifornia (1993)
## 71621 Piano, The (1993)
## 72259 Primal Fear (1996)
## 72940 Rear Window (1954)
## 74207 Sleepers (1996)
## 75099 Grifters, The (1990)
## 75191 Thin Blue Line, The (1988)
## 75293 Ran (1985)
## 75428 Once Upon a Time in America (1984)
## 75853 Chinatown (1974)
## 76008 Stand by Me (1986)
## 77028 Paris, Texas (1984)
## 77810 Conan the Barbarian (1981)
## 78097 In the Line of Fire (1993)
## 78263 Executive Decision (1996)
## 79281 Little Women (1994)
## 79715 Sex, Lies, and Videotape (1989)
## 84022 Devil in a Blue Dress (1995)
## 84761 Bullets Over Broadway (1994)
## 86537 Freeway (1996)
## 87229 Michael (1996)
## 90988 Passion Fish (1992)
## 93786 Associate, The (1996)
## 95101 Tank Girl (1995)
## 95860 My Family (1995)
## 95881 Tom & Viv (1994)
## 36 Toy Story (1995)
## 1037 Twelve Monkeys (1995)
## 2252 Usual Suspects, The (1995)
## 4624 Apollo 13 (1995)
## 5192 Crumb (1994)
## 6216 Hoop Dreams (1994)
## 7571 Pulp Fiction (1994)
## 8157 Three Colors: Red (1994)
## 8587 Shawshank Redemption, The (1994)
## 11073 Hudsucker Proxy, The (1994)
## 11197 Jurassic Park (1993)
## 12210 Blade Runner (1982)
## 12926 Home Alone (1990)
## 13295 Terminator 2: Judgment Day (1991)
## 14424 Fargo (1996)
## 17911 Godfather, The (1972)
## 18369 Bound (1996)
## 19245 2001: A Space Odyssey (1968)
## 21382 Sleeper (1973)
## 21479 Fish Called Wanda, A (1988)
## 21715 Monty Python's Life of Brian (1979)
## 21985 Reservoir Dogs (1992)
## 23799 Delicatessen (1991)
## 24252 Princess Bride, The (1987)
## 24992 Brazil (1985)
## 25735 Clockwork Orange, A (1971)
## 25959 Apocalypse Now (1979)
## 26918 Alien (1979)
## 27806 Godfather: Part II, The (1974)
## 28017 Full Metal Jacket (1987)
## 29473 Dead Poets Society (1989)
## 29723 Graduate, The (1967)
## 30555 Groundhog Day (1993)
## 31482 Akira (1988)
## 32626 Room with a View, A (1986)
## 38032 Chasing Amy (1997)
## 38940 My Best Friend's Wedding (1997)
## 40744 Full Monty, The (1997)
## 41187 Starship Troopers (1997)
## 41393 Good Will Hunting (1997)
## 43565 Secrets & Lies (1996)
## 43746 English Patient, The (1996)
## 44307 Scream (1996)
## 44768 Evita (1996)
## 48965 Schindler's List (1993)
## 52954 One Flew Over the Cuckoo's Nest (1975)
## 54462 Adventures of Priscilla, Queen of the Desert, The (1994)
## 59365 Heathers (1989)
## 62505 Dr. Strangelove or: How I Learned to Stop Worrying and Love the Bomb (1963)
## 62708 Trainspotting (1996)
## 63311 Vertigo (1958)
## 63492 North by Northwest (1959)
## 65971 Streetcar Named Desire, A (1951)
## 66833 Annie Hall (1977)
## 67363 Miller's Crossing (1990)
## 72001 Beauty and the Beast (1991)
## 75481 Seventh Seal, The (Sjunde inseglet, Det) (1957)
## 76269 Manchurian Candidate, The (1962)
## 76595 Fried Green Tomatoes (1991)
## 78042 Rocket Man (1997)
## 82458 Saint, The (1997)
## 88329 Home Alone 3 (1997)
## 89044 Raise the Red Lantern (1991)
## 94311 Shallow Grave (1994)
## 95890 Walkabout (1971)
## 1038 Twelve Monkeys (1995)
## 1635 Dead Man Walking (1995)
## 2517 Mighty Aphrodite (1995)
## 2891 Mr. Holland's Opus (1995)
## 14425 Fargo (1996)
## 16740 Independence Day (ID4) (1996)
## 17365 Lone Star (1996)
## 17793 Spitfire Grill, The (1996)
## 18370 Bound (1996)
## 19596 Big Night (1996)
## 20899 Swingers (1996)
## 36443 Jerry Maguire (1996)
## 37800 Devil's Own, The (1997)
## 39463 Contact (1997)
## 41394 Good Will Hunting (1997)
## 42285 Leaving Las Vegas (1995)
## 43566 Secrets & Lies (1996)
## 44308 Scream (1996)
## 45533 Liar Liar (1997)
## 46406 Air Force One (1997)
## 46824 In & Out (1997)
## 47062 L.A. Confidential (1997)
## 47682 Devil's Advocate, The (1997)
## 48234 Titanic (1997)
## 48576 Apt Pupil (1998)
## 50066 Lost Highway (1997)
## 50316 G.I. Jane (1997)
## 50680 Conspiracy Theory (1997)
## 51044 Edge, The (1997)
## 51313 Game, The (1997)
## 51842 Boogie Nights (1997)
## 52664 Prophecy II, The (1998)
## 52727 Wedding Singer, The (1998)
## 53207 Spawn (1997)
## 66078 People vs. Larry Flynt, The (1996)
## 69043 Mouse Hunt (1997)
## 78669 Seven Years in Tibet (1997)
## 94571 Anne Frank Remembered (1995)
## 37 Toy Story (1995)
## 2518 Mighty Aphrodite (1995)
## 4204 Birdcage, The (1996)
## 7572 Pulp Fiction (1994)
## 10689 Fugitive, The (1993)
## 14426 Fargo (1996)
## 15231 Kids in the Hall: Brain Candy (1996)
## 15478 Truth About Cats & Dogs, The (1996)
## 15759 Wallace & Gromit: The Best of Aardman Animation (1996)
## 15984 Rock, The (1996)
## 16363 Twister (1996)
## 16741 Independence Day (ID4) (1996)
## 17250 Frighteners, The (1996)
## 17560 Phenomenon (1996)
## 18371 Bound (1996)
## 19597 Big Night (1996)
## 20566 Long Kiss Goodnight, The (1996)
## 21082 Willy Wonka and the Chocolate Factory (1971)
## 28250 Henry V (1989)
## 29474 Dead Poets Society (1989)
## 33772 Mirror Has Two Faces, The (1996)
## 33938 Star Trek: First Contact (1996)
## 34467 101 Dalmatians (1996)
## 36166 Mars Attacks! (1996)
## 36444 Jerry Maguire (1996)
## 37217 Beavis and Butt-head Do America (1996)
## 41188 Starship Troopers (1997)
## 41596 Heat (1995)
## 43373 Tin Cup (1996)
## 44769 Evita (1996)
## 45019 Fierce Creatures (1997)
## 45112 Absolute Power (1997)
## 45534 Liar Liar (1997)
## 46825 In & Out (1997)
## 47343 Fly Away Home (1996)
## 49607 Murder at 1600 (1997)
## 49834 Dante's Peak (1997)
## 56252 Mission: Impossible (1996)
## 56669 Close Shave, A (1995)
## 56776 Jack (1996)
## 56848 Kingpin (1996)
## 57014 Nutty Professor, The (1996)
## 57263 Tales from the Crypt Presents: Bordello of Blood (1996)
## 58511 To Kill a Mockingbird (1962)
## 61216 Crossing Guard, The (1995)
## 62220 Dragonheart (1996)
## 62381 James and the Giant Peach (1996)
## 62709 Trainspotting (1996)
## 62949 First Wives Club, The (1996)
## 63104 Matilda (1996)
## 64967 It's a Wonderful Life (1946)
## 66079 People vs. Larry Flynt, The (1996)
## 69350 Broken Arrow (1996)
## 72657 Eraser (1996)
## 77602 Volcano (1997)
## 78264 Executive Decision (1996)
## 79147 City Hall (1996)
## 81824 Ransom (1996)
## 83334 Father of the Bride Part II (1995)
## 85608 Space Jam (1996)
## 85799 Great White Hype, The (1996)
## 85852 Arrival, The (1996)
## 86119 Escape from L.A. (1996)
## 86232 Bulletproof (1996)
## 86589 That Thing You Do! (1996)
## 87139 My Fellow Americans (1996)
## 87230 Michael (1996)
## 89227 Down Periscope (1996)
## 90411 Blue in the Face (1995)
## 91379 Beautician and the Beast, The (1997)
## 91728 Stupids, The (1996)
## 92477 Trees Lounge (1996)
## 92798 Grumpier Old Men (1995)
## 93517 Multiplicity (1996)
## 93648 She's the One (1996)
## 93957 Don't Be a Menace to South Central While Drinking Your Juice in the Hood (1996)
## 95916 Last Dance (1996)
## 95925 Original Gangstas (1996)
## 95932 In Love and War (1996)
## 974 Shanghai Triad (Yao a yao yao dao waipo qiao) (1995)
## 1039 Twelve Monkeys (1995)
## 2253 Usual Suspects, The (1995)
## 3831 Taxi Driver (1976)
## 4019 Rumble in the Bronx (1995)
## 5710 Clerks (1994)
## 7573 Pulp Fiction (1994)
## 8158 Three Colors: Red (1994)
## 8237 Three Colors: Blue (1993)
## 8301 Three Colors: White (1994)
## 8588 Shawshank Redemption, The (1994)
## 9705 Four Weddings and a Funeral (1994)
## 10486 Firm, The (1993)
## 12211 Blade Runner (1982)
## 12707 True Romance (1993)
## 12812 Welcome to the Dollhouse (1995)
## 13296 Terminator 2: Judgment Day (1991)
## 13857 Silence of the Lambs, The (1991)
## 14427 Fargo (1996)
## 16742 Independence Day (ID4) (1996)
## 18372 Bound (1996)
## 19246 2001: A Space Odyssey (1968)
## 19598 Big Night (1996)
## 20900 Swingers (1996)
## 21986 Reservoir Dogs (1992)
## 23887 Empire Strikes Back, The (1980)
## 24993 Brazil (1985)
## 26689 GoodFellas (1990)
## 28645 Raging Bull (1980)
## 29724 Graduate, The (1967)
## 30256 Shining, The (1980)
## 30826 Unforgiven (1992)
## 33101 When Harry Met Sally... (1989)
## 34282 Sling Blade (1996)
## 39464 Contact (1997)
## 40358 Mimic (1997)
## 41042 Gattaca (1997)
## 42286 Leaving Las Vegas (1995)
## 43747 English Patient, The (1996)
## 44309 Scream (1996)
## 45349 Donnie Brasco (1997)
## 48966 Schindler's List (1993)
## 50067 Lost Highway (1997)
## 50189 Crash (1996)
## 50495 Cop Land (1997)
## 51314 Game, The (1997)
## 52091 Alien: Resurrection (1997)
## 53208 Spawn (1997)
## 54679 True Lies (1994)
## 57932 William Shakespeare's Romeo and Juliet (1996)
## 62506 Dr. Strangelove or: How I Learned to Stop Worrying and Love the Bomb (1963)
## 66753 Third Man, The (1949)
## 66834 Annie Hall (1977)
## 67270 Manhattan (1979)
## 67364 Miller's Crossing (1990)
## 68708 Shine (1996)
## 69588 Young Poisoner's Handbook, The (1995)
## 71622 Piano, The (1993)
## 72941 Rear Window (1954)
## 74208 Sleepers (1996)
## 78670 Seven Years in Tibet (1997)
## 83980 Congo (1995)
## 84118 Kids (1995)
## 85127 Menace II Society (1993)
## 85305 Thirty-Two Short Films About Glenn Gould (1993)
## 86918 Two or Three Things I Know About Her (1966)
## 88867 City of Lost Children, The (1995)
## 90488 Before Sunrise (1995)
## 90662 Naked (1993)
## 91783 Until the End of the World (Bis ans Ende der Welt) (1991)
## 91807 Waiting for Guffman (1996)
## 92559 Die xue shuang xiong (Killer, The) (1989)
## 93649 She's the One (1996)
## 94287 Party Girl (1995)
## 95478 Chungking Express (1994)
## 95960 Backbeat (1993)
## 95979 Alphaville (1965)
## 95991 Rendezvous in Paris (Rendez-vous de Paris, Les) (1995)
## 95994 Cyclo (1995)
## 95995 Relic, The (1997)
## 96020 Fille seule, La (A Single Girl) (1995)
## 96024 Stalker (1979)
## 38 Toy Story (1995)
## 688 Get Shorty (1995)
## 2892 Mr. Holland's Opus (1995)
## 3832 Taxi Driver (1976)
## 4205 Birdcage, The (1996)
## 4625 Apollo 13 (1995)
## 5034 Crimson Tide (1995)
## 5711 Clerks (1994)
## 6455 Star Wars (1977)
## 7076 Madness of King George, The (1994)
## 7574 Pulp Fiction (1994)
## 9387 Forrest Gump (1994)
## 12212 Blade Runner (1982)
## 12570 Nightmare Before Christmas, The (1993)
## 13297 Terminator 2: Judgment Day (1991)
## 13586 Dances with Wolves (1990)
## 13858 Silence of the Lambs, The (1991)
## 14428 Fargo (1996)
## 16743 Independence Day (ID4) (1996)
## 17561 Phenomenon (1996)
## 17912 Godfather, The (1972)
## 18624 Wizard of Oz, The (1939)
## 18865 Gone with the Wind (1939)
## 19038 Citizen Kane (1941)
## 20258 Die Hard (1988)
## 21480 Fish Called Wanda, A (1988)
## 21716 Monty Python's Life of Brian (1979)
## 21987 Reservoir Dogs (1992)
## 23265 Monty Python and the Holy Grail (1974)
## 23888 Empire Strikes Back, The (1980)
## 24253 Princess Bride, The (1987)
## 24585 Raiders of the Lost Ark (1981)
## 24994 Brazil (1985)
## 25202 Aliens (1986)
## 25736 Clockwork Orange, A (1971)
## 26207 Return of the Jedi (1983)
## 26919 Alien (1979)
## 28389 Amadeus (1984)
## 28646 Raging Bull (1980)
## 29182 Terminator, The (1984)
## 30086 Bridge on the River Kwai, The (1957)
## 30454 Evil Dead II (1987)
## 31814 This Is Spinal Tap (1984)
## 32012 Indiana Jones and the Last Crusade (1989)
## 32881 Field of Dreams (1989)
## 33939 Star Trek: First Contact (1996)
## 34913 Star Trek: The Wrath of Khan (1982)
## 36819 Raising Arizona (1987)
## 38033 Chasing Amy (1997)
## 38456 Fifth Element, The (1997)
## 38696 Lost World: Jurassic Park, The (1997)
## 40465 Hunt for Red October, The (1990)
## 42287 Leaving Las Vegas (1995)
## 52955 One Flew Over the Cuckoo's Nest (1975)
## 56253 Mission: Impossible (1996)
## 59031 Highlander (1986)
## 60893 Jackie Chan's First Strike (1996)
## 62507 Dr. Strangelove or: How I Learned to Stop Worrying and Love the Bomb (1963)
## 63858 Casablanca (1942)
## 64095 Maltese Falcon, The (1941)
## 65264 African Queen, The (1951)
## 66532 Lawrence of Arabia (1962)
## 67365 Miller's Crossing (1990)
## 67453 Treasure of the Sierra Madre, The (1948)
## 67814 Cool Hand Luke (1967)
## 68225 Gandhi (1982)
## 74773 Escape from New York (1981)
## 75064 Paths of Glory (1957)
## 84260 Don Juan DeMarco (1995)
## 86233 Bulletproof (1996)
## 92799 Grumpier Old Men (1995)
## 4206 Birdcage, The (1996)
## 12813 Welcome to the Dollhouse (1995)
## 36445 Jerry Maguire (1996)
## 38941 My Best Friend's Wedding (1997)
## 39144 Men in Black (1997)
## 40745 Full Monty, The (1997)
## 44310 Scream (1996)
## 44770 Evita (1996)
## 45535 Liar Liar (1997)
## 46127 Face/Off (1997)
## 46826 In & Out (1997)
## 49835 Dante's Peak (1997)
## 50496 Cop Land (1997)
## 57015 Nutty Professor, The (1996)
## 57167 Very Brady Sequel, A (1996)
## 62950 First Wives Club, The (1996)
## 85344 Celluloid Closet, The (1995)
## 87392 Vegas Vacation (1997)
## 87944 Soul Food (1997)
## 93518 Multiplicity (1996)
## 96035 Love! Valour! Compassion! (1997)
## 39 Toy Story (1995)
## 975 Shanghai Triad (Yao a yao yao dao waipo qiao) (1995)
## 1040 Twelve Monkeys (1995)
## 1912 Richard III (1995)
## 2519 Mighty Aphrodite (1995)
## 3305 Antonia's Line (1995)
## 6456 Star Wars (1977)
## 12814 Welcome to the Dollhouse (1995)
## 14429 Fargo (1996)
## 15850 Cold Comfort Farm (1995)
## 17366 Lone Star (1996)
## 19599 Big Night (1996)
## 20901 Swingers (1996)
## 33940 Star Trek: First Contact (1996)
## 36370 Citizen Ruth (1996)
## 38034 Chasing Amy (1997)
## 38643 Shall We Dance? (1996)
## 39145 Men in Black (1997)
## 39465 Contact (1997)
## 40271 In the Company of Men (1997)
## 40746 Full Monty, The (1997)
## 42011 Sense and Sensibility (1995)
## 42288 Leaving Las Vegas (1995)
## 43194 Emma (1996)
## 43567 Secrets & Lies (1996)
## 43748 English Patient, The (1996)
## 44311 Scream (1996)
## 45020 Fierce Creatures (1997)
## 46827 In & Out (1997)
## 47583 Mrs. Brown (Her Majesty, Mrs. Brown) (1997)
## 48063 Wings of the Dove, The (1997)
## 48235 Titanic (1997)
## 49253 Everyone Says I Love You (1996)
## 50190 Crash (1996)
## 51315 Game, The (1997)
## 51843 Boogie Nights (1997)
## 53845 Mary Reilly (1996)
## 66080 People vs. Larry Flynt, The (1996)
## 67010 Boot, Das (1981)
## 71623 Piano, The (1993)
## 77511 Crucible, The (1996)
## 78671 Seven Years in Tibet (1997)
## 81685 Jane Eyre (1996)
## 83704 Happy Gilmore (1996)
## 85345 Celluloid Closet, The (1995)
## 88569 Kundun (1997)
## 88621 Big Lebowski, The (1998)
## 88728 Oscar & Lucinda (1997)
## 89776 Thousand Acres, A (1997)
## 91855 I Shot Andy Warhol (1996)
## 92478 Trees Lounge (1996)
## 92662 Fast, Cheap & Out of Control (1997)
## 96061 Palookaville (1996)
## 5971 Eat Drink Man Woman (1994)
## 6457 Star Wars (1977)
## 7985 Quiz Show (1994)
## 8589 Shawshank Redemption, The (1994)
## 10690 Fugitive, The (1993)
## 11697 Remains of the Day, The (1993)
## 11848 Searching for Bobby Fischer (1993)
## 14430 Fargo (1996)
## 21717 Monty Python's Life of Brian (1979)
## 28937 Sting, The (1973)
## 30087 Bridge on the River Kwai, The (1957)
## 31352 Patton (1970)
## 31613 Young Frankenstein (1974)
## 32627 Room with a View, A (1986)
## 32882 Field of Dreams (1989)
## 35888 Jaws (1975)
## 36446 Jerry Maguire (1996)
## 40105 Event Horizon (1997)
## 40747 Full Monty, The (1997)
## 58080 E.T. the Extra-Terrestrial (1982)
## 61652 Red Rock West (1992)
## 63859 Casablanca (1942)
## 66835 Annie Hall (1977)
## 68709 Shine (1996)
## 71624 Piano, The (1993)
## 79282 Little Women (1994)
## 88070 Life Less Ordinary, A (1997)
## 88122 Eve's Bayou (1997)
## 40 Toy Story (1995)
## 590 Four Rooms (1995)
## 1041 Twelve Monkeys (1995)
## 4207 Birdcage, The (1996)
## 5712 Clerks (1994)
## 10691 Fugitive, The (1993)
## 12815 Welcome to the Dollhouse (1995)
## 13859 Silence of the Lambs, The (1991)
## 14431 Fargo (1996)
## 15479 Truth About Cats & Dogs, The (1996)
## 15851 Cold Comfort Farm (1995)
## 16364 Twister (1996)
## 16744 Independence Day (ID4) (1996)
## 17367 Lone Star (1996)
## 20567 Long Kiss Goodnight, The (1996)
## 20902 Swingers (1996)
## 21083 Willy Wonka and the Chocolate Factory (1971)
## 23564 Wrong Trousers, The (1993)
## 27561 Blues Brothers, The (1980)
## 32013 Indiana Jones and the Last Crusade (1989)
## 33941 Star Trek: First Contact (1996)
## 36447 Jerry Maguire (1996)
## 40748 Full Monty, The (1997)
## 41597 Heat (1995)
## 41815 Sabrina (1995)
## 42012 Sense and Sensibility (1995)
## 42289 Leaving Las Vegas (1995)
## 42726 Up Close and Personal (1996)
## 42964 Time to Kill, A (1996)
## 43195 Emma (1996)
## 43374 Tin Cup (1996)
## 44312 Scream (1996)
## 44771 Evita (1996)
## 48967 Schindler's List (1993)
## 56254 Mission: Impossible (1996)
## 56849 Kingpin (1996)
## 57016 Nutty Professor, The (1996)
## 57168 Very Brady Sequel, A (1996)
## 59190 Fantasia (1940)
## 61031 Beverly Hills Ninja (1997)
## 62004 Courage Under Fire (1996)
## 62710 Trainspotting (1996)
## 62951 First Wives Club, The (1996)
## 69248 Things to Do in Denver when You're Dead (1995)
## 72260 Primal Fear (1996)
## 72454 Fan, The (1996)
## 72524 Hunchback of Notre Dame, The (1996)
## 73821 Extreme Measures (1996)
## 80282 Juror, The (1996)
## 80727 Fluke (1995)
## 81825 Ransom (1996)
## 83335 Father of the Bride Part II (1995)
## 85800 Great White Hype, The (1996)
## 89228 Down Periscope (1996)
## 89328 Craft, The (1996)
## 92800 Grumpier Old Men (1995)
## 93519 Multiplicity (1996)
## 93958 Don't Be a Menace to South Central While Drinking Your Juice in the Hood (1996)
## 41 Toy Story (1995)
## 591 Four Rooms (1995)
## 1042 Twelve Monkeys (1995)
## 1406 Babe (1995)
## 1636 Dead Man Walking (1995)
## 2014 Seven (Se7en) (1995)
## 2520 Mighty Aphrodite (1995)
## 2695 Postino, Il (1994)
## 2893 Mr. Holland's Opus (1995)
## 3449 Muppet Treasure Island (1996)
## 3543 Braveheart (1995)
## 4208 Birdcage, The (1996)
## 4626 Apollo 13 (1995)
## 6458 Star Wars (1977)
## 7575 Pulp Fiction (1994)
## 8590 Shawshank Redemption, The (1994)
## 9388 Forrest Gump (1994)
## 9706 Four Weddings and a Funeral (1994)
## 9953 Lion King, The (1994)
## 10291 Maverick (1994)
## 10692 Fugitive, The (1993)
## 11074 Hudsucker Proxy, The (1994)
## 11849 Searching for Bobby Fischer (1993)
## 13587 Dances with Wolves (1990)
## 14227 Snow White and the Seven Dwarfs (1937)
## 14432 Fargo (1996)
## 15023 All Dogs Go to Heaven 2 (1996)
## 15309 Mystery Science Theater 3000: The Movie (1996)
## 15480 Truth About Cats & Dogs, The (1996)
## 15727 Flipper (1996)
## 16365 Twister (1996)
## 16745 Independence Day (ID4) (1996)
## 17562 Phenomenon (1996)
## 17913 Godfather, The (1972)
## 18866 Gone with the Wind (1939)
## 19039 Citizen Kane (1941)
## 19247 2001: A Space Odyssey (1968)
## 19830 Homeward Bound: The Incredible Journey (1993)
## 20568 Long Kiss Goodnight, The (1996)
## 21084 Willy Wonka and the Chocolate Factory (1971)
## 23266 Monty Python and the Holy Grail (1974)
## 23565 Wrong Trousers, The (1993)
## 23684 Cinema Paradiso (1988)
## 24586 Raiders of the Lost Ark (1981)
## 24995 Brazil (1985)
## 25609 12 Angry Men (1957)
## 26208 Return of the Jedi (1983)
## 26920 Alien (1979)
## 27327 Psycho (1960)
## 28390 Amadeus (1984)
## 28938 Sting, The (1973)
## 29725 Graduate, The (1967)
## 30088 Bridge on the River Kwai, The (1957)
## 30556 Groundhog Day (1993)
## 31614 Young Frankenstein (1974)
## 32339 M*A*S*H (1970)
## 32532 Unbearable Lightness of Being, The (1988)
## 33102 When Harry Met Sally... (1989)
## 33496 Cape Fear (1991)
## 33773 Mirror Has Two Faces, The (1996)
## 33942 Star Trek: First Contact (1996)
## 34468 101 Dalmatians (1996)
## 34914 Star Trek: The Wrath of Khan (1982)
## 35324 Star Trek IV: The Voyage Home (1986)
## 35516 Batman Returns (1992)
## 36167 Mars Attacks! (1996)
## 36448 Jerry Maguire (1996)
## 36820 Raising Arizona (1987)
## 37218 Beavis and Butt-head Do America (1996)
## 37371 Last of the Mohicans, The (1992)
## 40466 Hunt for Red October, The (1990)
## 41816 Sabrina (1995)
## 42013 Sense and Sensibility (1995)
## 42290 Leaving Las Vegas (1995)
## 42814 River Wild, The (1994)
## 43196 Emma (1996)
## 43375 Tin Cup (1996)
## 43749 English Patient, The (1996)
## 44313 Scream (1996)
## 44772 Evita (1996)
## 45536 Liar Liar (1997)
## 47344 Fly Away Home (1996)
## 47925 Rainmaker, The (1997)
## 48968 Schindler's List (1993)
## 50317 G.I. Jane (1997)
## 51698 Bean (1997)
## 52092 Alien: Resurrection (1997)
## 52956 One Flew Over the Cuckoo's Nest (1975)
## 53601 Clueless (1995)
## 56255 Mission: Impossible (1996)
## 56777 Jack (1996)
## 57017 Nutty Professor, The (1996)
## 57169 Very Brady Sequel, A (1996)
## 57264 Tales from the Crypt Presents: Bordello of Blood (1996)
## 57318 My Favorite Year (1982)
## 57549 Cinderella (1950)
## 58359 Children of the Corn: The Gathering (1996)
## 58940 Duck Soup (1933)
## 59191 Fantasia (1940)
## 59604 Butch Cassidy and the Sundance Kid (1969)
## 60894 Jackie Chan's First Strike (1996)
## 61032 Beverly Hills Ninja (1997)
## 61106 Nixon (1995)
## 61327 Like Water For Chocolate (Como agua para chocolate) (1992)
## 62221 Dragonheart (1996)
## 62382 James and the Giant Peach (1996)
## 62508 Dr. Strangelove or: How I Learned to Stop Worrying and Love the Bomb (1963)
## 62711 Trainspotting (1996)
## 62952 First Wives Club, The (1996)
## 63105 Matilda (1996)
## 63312 Vertigo (1958)
## 63493 North by Northwest (1959)
## 63656 Apartment, The (1960)
## 63725 Some Like It Hot (1959)
## 63860 Casablanca (1942)
## 64096 Maltese Falcon, The (1941)
## 64896 Around the World in 80 Days (1956)
## 64968 It's a Wonderful Life (1946)
## 65693 Bonnie and Clyde (1967)
## 66081 People vs. Larry Flynt, The (1996)
## 66533 Lawrence of Arabia (1962)
## 66754 Third Man, The (1949)
## 66836 Annie Hall (1977)
## 67366 Miller's Crossing (1990)
## 67454 Treasure of the Sierra Madre, The (1948)
## 67531 Great Escape, The (1963)
## 67815 Cool Hand Luke (1967)
## 68226 Gandhi (1982)
## 68534 My Life as a Dog (Mitt liv som hund) (1985)
## 69044 Mouse Hunt (1997)
## 69351 Broken Arrow (1996)
## 71625 Piano, The (1993)
## 72002 Beauty and the Beast (1991)
## 72525 Hunchback of Notre Dame, The (1996)
## 72658 Eraser (1996)
## 72942 Rear Window (1954)
## 74984 Cook the Thief His Wife & Her Lover, The (1989)
## 76270 Manchurian Candidate, The (1962)
## 76596 Fried Green Tomatoes (1991)
## 76745 High Noon (1952)
## 77210 Bride of Frankenstein (1935)
## 77603 Volcano (1997)
## 79507 Singin' in the Rain (1952)
## 80283 Juror, The (1996)
## 81686 Jane Eyre (1996)
## 83336 Father of the Bride Part II (1995)
## 84023 Devil in a Blue Dress (1995)
## 85609 Space Jam (1996)
## 85713 Faces (1968)
## 85934 Phantom, The (1996)
## 86280 Halloween: The Curse of Michael Myers (1995)
## 87231 Michael (1996)
## 88350 Scream 2 (1997)
## 88868 City of Lost Children, The (1995)
## 90148 Fox and the Hound, The (1981)
## 91729 Stupids, The (1996)
## 92801 Grumpier Old Men (1995)
## 92995 Homeward Bound II: Lost in San Francisco (1996)
## 93959 Don't Be a Menace to South Central While Drinking Your Juice in the Hood (1996)
## 94073 Little Princess, A (1995)
## 94479 Oliver & Company (1988)
## 94925 Six Degrees of Separation (1993)
## 95421 Old Man and the Sea, The (1958)
## 95464 Heidi Fleiss: Hollywood Madam (1995)
## 95582 Get on the Bus (1996)
## 96074 Phat Beach (1996)
## 96079 Portrait of a Lady, The (1996)
## 96104 Zeus and Roxanne (1997)
## 42 Toy Story (1995)
## 462 GoldenEye (1995)
## 689 Get Shorty (1995)
## 2894 Mr. Holland's Opus (1995)
## 3544 Braveheart (1995)
## 4209 Birdcage, The (1996)
## 4627 Apollo 13 (1995)
## 5035 Crimson Tide (1995)
## 5367 Free Willy 2: The Adventure Home (1995)
## 5405 Net, The (1995)
## 5848 Disclosure (1994)
## 6459 Star Wars (1977)
## 7576 Pulp Fiction (1994)
## 8488 Santa Clause, The (1994)
## 8591 Shawshank Redemption, The (1994)
## 8970 While You Were Sleeping (1995)
## 9389 Forrest Gump (1994)
## 9707 Four Weddings and a Funeral (1994)
## 9954 Lion King, The (1994)
## 10487 Firm, The (1993)
## 10632 Free Willy (1993)
## 10693 Fugitive, The (1993)
## 11198 Jurassic Park (1993)
## 11988 Sleepless in Seattle (1993)
## 12927 Home Alone (1990)
## 13073 Aladdin (1992)
## 13588 Dances with Wolves (1990)
## 15046 Sgt. Bilko (1996)
## 15122 Diabolique (1996)
## 15427 Operation Dumbo Drop (1995)
## 15481 Truth About Cats & Dogs, The (1996)
## 15985 Rock, The (1996)
## 16366 Twister (1996)
## 16746 Independence Day (ID4) (1996)
## 17140 Cable Guy, The (1996)
## 17563 Phenomenon (1996)
## 17914 Godfather, The (1972)
## 19780 Love Bug, The (1969)
## 21085 Willy Wonka and the Chocolate Factory (1971)
## 22501 Top Gun (1986)
## 24587 Raiders of the Lost Ark (1981)
## 26209 Return of the Jedi (1983)
## 27562 Blues Brothers, The (1980)
## 28391 Amadeus (1984)
## 29475 Dead Poets Society (1989)
## 31021 Back to the Future (1985)
## 32014 Indiana Jones and the Last Crusade (1989)
## 32883 Field of Dreams (1989)
## 33103 When Harry Met Sally... (1989)
## 34469 101 Dalmatians (1996)
## 35755 Under Siege (1992)
## 35889 Jaws (1975)
## 36168 Mars Attacks! (1996)
## 37219 Beavis and Butt-head Do America (1996)
## 37618 Jungle2Jungle (1997)
## 37801 Devil's Own, The (1997)
## 38162 Grosse Pointe Blank (1997)
## 38322 Austin Powers: International Man of Mystery (1997)
## 38697 Lost World: Jurassic Park, The (1997)
## 38872 Batman & Robin (1997)
## 38942 My Best Friend's Wedding (1997)
## 39947 George of the Jungle (1997)
## 40467 Hunt for Red October, The (1990)
## 41817 Sabrina (1995)
## 42815 River Wild, The (1994)
## 45537 Liar Liar (1997)
## 46128 Face/Off (1997)
## 46407 Air Force One (1997)
## 46828 In & Out (1997)
## 49254 Everyone Says I Love You (1996)
## 49608 Murder at 1600 (1997)
## 49836 Dante's Peak (1997)
## 51699 Bean (1997)
## 52842 Client, The (1994)
## 53453 Ace Ventura: When Nature Calls (1995)
## 53886 Bridges of Madison County, The (1995)
## 54680 True Lies (1994)
## 55090 Last Action Hero (1993)
## 55226 Mrs. Doubtfire (1993)
## 56256 Mission: Impossible (1996)
## 56570 Thinner (1996)
## 56615 Spy Hard (1996)
## 56778 Jack (1996)
## 57018 Nutty Professor, The (1996)
## 57170 Very Brady Sequel, A (1996)
## 57265 Tales from the Crypt Presents: Bordello of Blood (1996)
## 58081 E.T. the Extra-Terrestrial (1982)
## 60788 Jaws 2 (1978)
## 61568 Jungle Book, The (1994)
## 61751 Rudy (1993)
## 62005 Courage Under Fire (1996)
## 62953 First Wives Club, The (1996)
## 63106 Matilda (1996)
## 63313 Vertigo (1958)
## 66082 People vs. Larry Flynt, The (1996)
## 68227 Gandhi (1982)
## 69225 Miserables, Les (1995)
## 69352 Broken Arrow (1996)
## 70575 Clear and Present Danger (1994)
## 70797 Speed (1994)
## 71233 City Slickers II: The Legend of Curly's Gold (1994)
## 71278 Cliffhanger (1993)
## 71523 Englishman Who Went Up a Hill, But Came Down a Mountain, The (1995)
## 71820 Secret Garden, The (1993)
## 72261 Primal Fear (1996)
## 72659 Eraser (1996)
## 73412 Father of the Bride (1950)
## 73977 Angels in the Outfield (1994)
## 74479 Crying Game, The (1992)
## 74985 Cook the Thief His Wife & Her Lover, The (1989)
## 76597 Fried Green Tomatoes (1991)
## 76917 Being There (1979)
## 78098 In the Line of Fire (1993)
## 78265 Executive Decision (1996)
## 78848 American President, The (1995)
## 79475 House of the Spirits, The (1993)
## 80284 Juror, The (1996)
## 80407 First Knight (1995)
## 80544 Nine Months (1995)
## 80805 Junior (1994)
## 81004 Dave (1993)
## 81526 Pretty Woman (1990)
## 82459 Saint, The (1997)
## 82941 Tomorrow Never Dies (1997)
## 83238 Jumanji (1995)
## 83337 Father of the Bride Part II (1995)
## 83928 Casper (1995)
## 84436 French Kiss (1995)
## 84525 Milk Money (1994)
## 84898 Richie Rich (1994)
## 85610 Space Jam (1996)
## 86069 Alaska (1996)
## 86207 Bogus (1996)
## 86590 That Thing You Do! (1996)
## 86754 To Gillian on Her 37th Birthday (1996)
## 87095 Jingle All the Way (1996)
## 87140 My Fellow Americans (1996)
## 87232 Michael (1996)
## 87393 Vegas Vacation (1997)
## 88264 Flubber (1997)
## 89432 Harriet the Spy (1996)
## 89608 First Kid (1996)
## 90060 Renaissance Man (1994)
## 91108 Substitute, The (1996)
## 91561 Hercules (1997)
## 92346 Con Air (1997)
## 92802 Grumpier Old Men (1995)
## 93057 Cool Runnings (1993)
## 93303 Forget Paris (1995)
## 93392 Rent-a-Kid (1995)
## 93520 Multiplicity (1996)
## 93718 House Arrest (1996)
## 93993 Adventures of Pinocchio, The (1996)
## 94926 Six Degrees of Separation (1993)
## 96110 Big Bully (1996)
## 43 Toy Story (1995)
## 690 Get Shorty (1995)
## 1043 Twelve Monkeys (1995)
## 2254 Usual Suspects, The (1995)
## 2895 Mr. Holland's Opus (1995)
## 4210 Birdcage, The (1996)
## 5036 Crimson Tide (1995)
## 8592 Shawshank Redemption, The (1994)
## 9708 Four Weddings and a Funeral (1994)
## 10694 Fugitive, The (1993)
## 11850 Searching for Bobby Fischer (1993)
## 13074 Aladdin (1992)
## 13860 Silence of the Lambs, The (1991)
## 14433 Fargo (1996)
## 15482 Truth About Cats & Dogs, The (1996)
## 15986 Rock, The (1996)
## 16747 Independence Day (ID4) (1996)
## 20751 Ghost and the Darkness, The (1996)
## 21086 Willy Wonka and the Chocolate Factory (1971)
## 28939 Sting, The (1973)
## 30827 Unforgiven (1992)
## 33943 Star Trek: First Contact (1996)
## 34470 101 Dalmatians (1996)
## 36449 Jerry Maguire (1996)
## 37802 Devil's Own, The (1997)
## 39466 Contact (1997)
## 40468 Hunt for Red October, The (1990)
## 41598 Heat (1995)
## 41818 Sabrina (1995)
## 42291 Leaving Las Vegas (1995)
## 42965 Time to Kill, A (1996)
## 43376 Tin Cup (1996)
## 43750 English Patient, The (1996)
## 44773 Evita (1996)
## 45113 Absolute Power (1997)
## 45538 Liar Liar (1997)
## 46408 Air Force One (1997)
## 48849 In the Name of the Father (1993)
## 48969 Schindler's List (1993)
## 49609 Murder at 1600 (1997)
## 54681 True Lies (1994)
## 56257 Mission: Impossible (1996)
## 56670 Close Shave, A (1995)
## 57019 Nutty Professor, The (1996)
## 61653 Red Rock West (1992)
## 63107 Matilda (1996)
## 64356 Sabrina (1954)
## 67816 Cool Hand Luke (1967)
## 68413 Killing Fields, The (1984)
## 68535 My Life as a Dog (Mitt liv som hund) (1985)
## 69226 Miserables, Les (1995)
## 69353 Broken Arrow (1996)
## 72262 Primal Fear (1996)
## 72660 Eraser (1996)
## 74209 Sleepers (1996)
## 78266 Executive Decision (1996)
## 81826 Ransom (1996)
## 82116 Michael Collins (1996)
## 82460 Saint, The (1997)
## 83338 Father of the Bride Part II (1995)
## 85403 One Fine Day (1996)
## 85723 Mulholland Falls (1996)
## 87233 Michael (1996)
## 87814 Peacemaker, The (1997)
## 92803 Grumpier Old Men (1995)
## 92996 Homeward Bound II: Lost in San Francisco (1996)
## 93277 Two if by Sea (1996)
## 93521 Multiplicity (1996)
## 1407 Babe (1995)
## 1637 Dead Man Walking (1995)
## 1913 Richard III (1995)
## 2521 Mighty Aphrodite (1995)
## 2696 Postino, Il (1994)
## 3833 Taxi Driver (1976)
## 4211 Birdcage, The (1996)
## 4547 Bad Boys (1995)
## 4628 Apollo 13 (1995)
## 4992 Belle de jour (1967)
## 5713 Clerks (1994)
## 5972 Eat Drink Man Woman (1994)
## 6460 Star Wars (1977)
## 6995 Legends of the Fall (1994)
## 7077 Madness of King George, The (1994)
## 7167 Natural Born Killers (1994)
## 7577 Pulp Fiction (1994)
## 7937 Priest (1994)
## 7986 Quiz Show (1994)
## 8593 Shawshank Redemption, The (1994)
## 8852 What's Eating Gilbert Grape (1993)
## 9390 Forrest Gump (1994)
## 9709 Four Weddings and a Funeral (1994)
## 9955 Lion King, The (1994)
## 10695 Fugitive, The (1993)
## 11199 Jurassic Park (1993)
## 11445 Much Ado About Nothing (1993)
## 11698 Remains of the Day, The (1993)
## 11851 Searching for Bobby Fischer (1993)
## 12213 Blade Runner (1982)
## 12928 Home Alone (1990)
## 13075 Aladdin (1992)
## 13589 Dances with Wolves (1990)
## 13861 Silence of the Lambs, The (1991)
## 14228 Snow White and the Seven Dwarfs (1937)
## 14434 Fargo (1996)
## 15232 Kids in the Hall: Brain Candy (1996)
## 16748 Independence Day (ID4) (1996)
## 17368 Lone Star (1996)
## 17915 Godfather, The (1972)
## 18625 Wizard of Oz, The (1939)
## 18867 Gone with the Wind (1939)
## 19040 Citizen Kane (1941)
## 19248 2001: A Space Odyssey (1968)
## 19490 Mr. Smith Goes to Washington (1939)
## 19894 20,000 Leagues Under the Sea (1954)
## 20036 Sound of Music, The (1965)
## 20903 Swingers (1996)
## 21383 Sleeper (1973)
## 21481 Fish Called Wanda, A (1988)
## 21718 Monty Python's Life of Brian (1979)
## 22132 Platoon (1986)
## 22417 Glengarry Glen Ross (1992)
## 22502 Top Gun (1986)
## 22710 On Golden Pond (1981)
## 22813 Return of the Pink Panther, The (1974)
## 23267 Monty Python and the Holy Grail (1974)
## 23685 Cinema Paradiso (1988)
## 23889 Empire Strikes Back, The (1980)
## 24254 Princess Bride, The (1987)
## 24588 Raiders of the Lost Ark (1981)
## 24996 Brazil (1985)
## 25737 Clockwork Orange, A (1971)
## 25960 Apocalypse Now (1979)
## 26210 Return of the Jedi (1983)
## 26690 GoodFellas (1990)
## 27563 Blues Brothers, The (1980)
## 27807 Godfather: Part II, The (1974)
## 28018 Full Metal Jacket (1987)
## 28251 Henry V (1989)
## 28392 Amadeus (1984)
## 28647 Raging Bull (1980)
## 28767 Right Stuff, The (1983)
## 28940 Sting, The (1973)
## 29183 Terminator, The (1984)
## 29476 Dead Poets Society (1989)
## 29726 Graduate, The (1967)
## 30089 Bridge on the River Kwai, The (1957)
## 30828 Unforgiven (1992)
## 31022 Back to the Future (1985)
## 31353 Patton (1970)
## 31615 Young Frankenstein (1974)
## 31815 This Is Spinal Tap (1984)
## 32015 Indiana Jones and the Last Crusade (1989)
## 32340 M*A*S*H (1970)
## 32533 Unbearable Lightness of Being, The (1988)
## 32628 Room with a View, A (1986)
## 32884 Field of Dreams (1989)
## 33104 When Harry Met Sally... (1989)
## 33839 Breaking the Waves (1996)
## 33944 Star Trek: First Contact (1996)
## 34915 Star Trek: The Wrath of Khan (1982)
## 35151 Star Trek III: The Search for Spock (1984)
## 35325 Star Trek IV: The Voyage Home (1986)
## 35517 Batman Returns (1992)
## 35652 Young Guns (1988)
## 35890 Jaws (1975)
## 36450 Jerry Maguire (1996)
## 36821 Raising Arizona (1987)
## 37372 Last of the Mohicans, The (1992)
## 38035 Chasing Amy (1997)
## 38457 Fifth Element, The (1997)
## 39467 Contact (1997)
## 39948 George of the Jungle (1997)
## 40749 Full Monty, The (1997)
## 41043 Gattaca (1997)
## 41395 Good Will Hunting (1997)
## 42014 Sense and Sensibility (1995)
## 42565 Restoration (1995)
## 42816 River Wild, The (1994)
## 42966 Time to Kill, A (1996)
## 43197 Emma (1996)
## 43377 Tin Cup (1996)
## 43751 English Patient, The (1996)
## 44774 Evita (1996)
## 45114 Absolute Power (1997)
## 46129 Face/Off (1997)
## 46409 Air Force One (1997)
## 46829 In & Out (1997)
## 47926 Rainmaker, The (1997)
## 48236 Titanic (1997)
## 48734 As Good As It Gets (1997)
## 48850 In the Name of the Father (1993)
## 48970 Schindler's List (1993)
## 49255 Everyone Says I Love You (1996)
## 50191 Crash (1996)
## 50497 Cop Land (1997)
## 50681 Conspiracy Theory (1997)
## 51316 Game, The (1997)
## 51844 Boogie Nights (1997)
## 52266 Deconstructing Harry (1997)
## 52957 One Flew Over the Cuckoo's Nest (1975)
## 53951 Jeffrey (1995)
## 54097 Miracle on 34th Street (1994)
## 54244 Star Trek: Generations (1994)
## 54463 Adventures of Priscilla, Queen of the Desert, The (1994)
## 54682 True Lies (1994)
## 55053 Black Beauty (1994)
## 55227 Mrs. Doubtfire (1993)
## 56133 Pinocchio (1940)
## 56258 Mission: Impossible (1996)
## 57171 Very Brady Sequel, A (1996)
## 57319 My Favorite Year (1982)
## 57405 Old Yeller (1957)
## 57467 Parent Trap, The (1961)
## 57550 Cinderella (1950)
## 57680 Mary Poppins (1964)
## 57850 Alice in Wonderland (1951)
## 58082 E.T. the Extra-Terrestrial (1982)
## 58382 Bob Roberts (1992)
## 58512 To Kill a Mockingbird (1962)
## 58720 Harold and Maude (1971)
## 59192 Fantasia (1940)
## 59366 Heathers (1989)
## 59605 Butch Cassidy and the Sundance Kid (1969)
## 60002 Birds, The (1963)
## 60239 Carrie (1976)
## 60443 Star Trek: The Motion Picture (1979)
## 60627 Grease (1978)
## 61107 Nixon (1995)
## 61328 Like Water For Chocolate (Como agua para chocolate) (1992)
## 61538 Vanya on 42nd Street (1994)
## 61569 Jungle Book, The (1994)
## 62509 Dr. Strangelove or: How I Learned to Stop Worrying and Love the Bomb (1963)
## 62954 First Wives Club, The (1996)
## 63197 Philadelphia Story, The (1940)
## 63314 Vertigo (1958)
## 63494 North by Northwest (1959)
## 63657 Apartment, The (1960)
## 63726 Some Like It Hot (1959)
## 63861 Casablanca (1942)
## 64232 My Fair Lady (1964)
## 64488 Sunset Blvd. (1950)
## 64723 East of Eden (1955)
## 64897 Around the World in 80 Days (1956)
## 64969 It's a Wonderful Life (1946)
## 65265 African Queen, The (1951)
## 65405 Cat on a Hot Tin Roof (1958)
## 65476 Dumbo (1941)
## 65593 Bananas (1971)
## 65694 Bonnie and Clyde (1967)
## 65878 Rebel Without a Cause (1955)
## 65972 Streetcar Named Desire, A (1951)
## 66083 People vs. Larry Flynt, The (1996)
## 66285 My Left Foot (1989)
## 66406 Magnificent Seven, The (1954)
## 66534 Lawrence of Arabia (1962)
## 66695 Wings of Desire (1987)
## 66755 Third Man, The (1949)
## 66837 Annie Hall (1977)
## 67011 Boot, Das (1981)
## 67208 Local Hero (1983)
## 67271 Manhattan (1979)
## 67455 Treasure of the Sierra Madre, The (1948)
## 67532 Great Escape, The (1963)
## 67656 Deer Hunter, The (1978)
## 67817 Cool Hand Luke (1967)
## 68096 Ben-Hur (1959)
## 68228 Gandhi (1982)
## 68414 Killing Fields, The (1984)
## 68536 My Life as a Dog (Mitt liv som hund) (1985)
## 68627 Man Who Would Be King, The (1975)
## 68710 Shine (1996)
## 70576 Clear and Present Danger (1994)
## 70798 Speed (1994)
## 71626 Piano, The (1993)
## 72003 Beauty and the Beast (1991)
## 72187 Wild Bunch, The (1969)
## 72526 Hunchback of Notre Dame, The (1996)
## 73139 It Happened One Night (1934)
## 73251 All About Eve (1950)
## 73471 Gigi (1958)
## 73938 Swiss Family Robinson (1960)
## 74373 Victor/Victoria (1982)
## 74446 Great Race, The (1965)
## 74480 Crying Game, The (1992)
## 74595 Sophie's Choice (1982)
## 74943 Tin Drum, The (Blechtrommel, Die) (1979)
## 75065 Paths of Glory (1957)
## 75100 Grifters, The (1990)
## 75294 Ran (1985)
## 75854 Chinatown (1974)
## 76009 Stand by Me (1986)
## 76271 Manchurian Candidate, The (1962)
## 76394 Pump Up the Volume (1990)
## 76476 Arsenic and Old Lace (1944)
## 76598 Fried Green Tomatoes (1991)
## 76746 High Noon (1952)
## 76918 Being There (1979)
## 77029 Paris, Texas (1984)
## 78672 Seven Years in Tibet (1997)
## 78849 American President, The (1995)
## 79225 Basketball Diaries, The (1995)
## 79405 Barcelona (1994)
## 79508 Singin' in the Rain (1952)
## 79643 Enchanted April (1991)
## 79716 Sex, Lies, and Videotape (1989)
## 79816 Strictly Ballroom (1992)
## 79920 Better Off Dead... (1985)
## 79998 Tin Men (1987)
## 80135 To Die For (1995)
## 81005 Dave (1993)
## 81225 Philadelphia (1993)
## 82204 Ruling Class, The (1972)
## 82942 Tomorrow Never Dies (1997)
## 84515 Little Odessa (1994)
## 84762 Bullets Over Broadway (1994)
## 85346 Celluloid Closet, The (1995)
## 85714 Faces (1968)
## 86479 Pollyanna (1960)
## 86591 That Thing You Do! (1996)
## 86954 Diva (1981)
## 88963 Farewell My Concubine (1993)
## 89045 Raise the Red Lantern (1991)
## 89103 White Squall (1996)
## 90489 Before Sunrise (1995)
## 90953 Mediterraneo (1991)
## 91283 Shadow Conspiracy (1997)
## 91784 Until the End of the World (Bis ans Ende der Welt) (1991)
## 91894 Stealing Beauty (1996)
## 91955 Basquiat (1996)
## 92527 Tie Me Up! Tie Me Down! (1990)
## 92626 8 1/2 (1963)
## 93187 Hamlet (1996)
## 94119 Koyaanisqatsi (1983)
## 94260 Living in Oblivion (1995)
## 94378 Reality Bites (1994)
## 94452 Man of No Importance, A (1994)
## 94861 Flirting With Disaster (1996)
## 94927 Six Degrees of Separation (1993)
## 95005 Trust (1990)
## 95164 Mrs. Parker and the Vicious Circle (1994)
## 95380 Umbrellas of Cherbourg, The (Parapluies de Cherbourg, Les) (1964)
## 95506 Safe (1995)
## 95665 Ghosts of Mississippi (1996)
## 95694 Beautiful Thing (1996)
## 95891 Walkabout (1971)
## 95961 Backbeat (1993)
## 96124 Love & Human Remains (1993)
## 96136 Sum of Us, The (1994)
## 96147 Little Buddha (1993)
## 96169 Fresh (1994)
## 96179 Spanking the Monkey (1994)
## 96206 Wild Reeds (1994)
## 96220 Women, The (1939)
## 96235 Bliss (1997)
## 96242 Caught (1996)
## 37500 Kolya (1996)
## 39468 Contact (1997)
## 39949 George of the Jungle (1997)
## 40750 Full Monty, The (1997)
## 41044 Gattaca (1997)
## 43752 English Patient, The (1996)
## 44314 Scream (1996)
## 44775 Evita (1996)
## 46410 Air Force One (1997)
## 47345 Fly Away Home (1996)
## 49256 Everyone Says I Love You (1996)
## 50318 G.I. Jane (1997)
## 50498 Cop Land (1997)
## 50682 Conspiracy Theory (1997)
## 51700 Bean (1997)
## 78043 Rocket Man (1997)
## 87461 Love Jones (1997)
## 87815 Peacemaker, The (1997)
## 88185 One Night Stand (1997)
## 88201 Tango Lesson, The (1997)
## 96250 Hugo Pool (1997)
## 96255 Welcome To Sarajevo (1997)
## 463 GoldenEye (1995)
## 691 Get Shorty (1995)
## 1044 Twelve Monkeys (1995)
## 1408 Babe (1995)
## 1638 Dead Man Walking (1995)
## 2522 Mighty Aphrodite (1995)
## 3450 Muppet Treasure Island (1996)
## 3545 Braveheart (1995)
## 4212 Birdcage, The (1996)
## 4548 Bad Boys (1995)
## 5267 Desperado (1995)
## 5406 Net, The (1995)
## 5524 Strange Days (1995)
## 5611 To Wong Foo, Thanks for Everything! Julie Newmar (1995)
## 6083 Ed Wood (1994)
## 6217 Hoop Dreams (1994)
## 6326 I.Q. (1994)
## 6461 Star Wars (1977)
## 7400 Professional, The (1994)
## 7578 Pulp Fiction (1994)
## 8365 Stargate (1994)
## 8489 Santa Clause, The (1994)
## 8594 Shawshank Redemption, The (1994)
## 8971 While You Were Sleeping (1995)
## 9128 Ace Ventura: Pet Detective (1994)
## 9236 Crow, The (1994)
## 9710 Four Weddings and a Funeral (1994)
## 10160 Mask, The (1994)
## 10292 Maverick (1994)
## 10696 Fugitive, The (1993)
## 11000 Hot Shots! Part Deux (1993)
## 11200 Jurassic Park (1993)
## 11852 Searching for Bobby Fischer (1993)
## 11989 Sleepless in Seattle (1993)
## 12214 Blade Runner (1982)
## 12472 So I Married an Axe Murderer (1993)
## 12929 Home Alone (1990)
## 13298 Terminator 2: Judgment Day (1991)
## 13590 Dances with Wolves (1990)
## 14435 Fargo (1996)
## 15483 Truth About Cats & Dogs, The (1996)
## 16367 Twister (1996)
## 16641 Striptease (1996)
## 16749 Independence Day (ID4) (1996)
## 17916 Godfather, The (1972)
## 18300 Supercop (1992)
## 18626 Wizard of Oz, The (1939)
## 19041 Citizen Kane (1941)
## 19249 2001: A Space Odyssey (1968)
## 20259 Die Hard (1988)
## 21384 Sleeper (1973)
## 21482 Fish Called Wanda, A (1988)
## 21719 Monty Python's Life of Brian (1979)
## 22133 Platoon (1986)
## 22254 Weekend at Bernie's (1989)
## 22503 Top Gun (1986)
## 22814 Return of the Pink Panther, The (1974)
## 23177 Private Benjamin (1980)
## 23890 Empire Strikes Back, The (1980)
## 24589 Raiders of the Lost Ark (1981)
## 25472 Good, The Bad and The Ugly, The (1966)
## 25738 Clockwork Orange, A (1971)
## 25961 Apocalypse Now (1979)
## 26211 Return of the Jedi (1983)
## 26691 GoodFellas (1990)
## 26921 Alien (1979)
## 27564 Blues Brothers, The (1980)
## 28019 Full Metal Jacket (1987)
## 28648 Raging Bull (1980)
## 28941 Sting, The (1973)
## 29184 Terminator, The (1984)
## 29477 Dead Poets Society (1989)
## 30090 Bridge on the River Kwai, The (1957)
## 30455 Evil Dead II (1987)
## 30557 Groundhog Day (1993)
## 31023 Back to the Future (1985)
## 31616 Young Frankenstein (1974)
## 31816 This Is Spinal Tap (1984)
## 32016 Indiana Jones and the Last Crusade (1989)
## 32341 M*A*S*H (1970)
## 33105 When Harry Met Sally... (1989)
## 33945 Star Trek: First Contact (1996)
## 34916 Star Trek: The Wrath of Khan (1982)
## 35152 Star Trek III: The Search for Spock (1984)
## 35326 Star Trek IV: The Voyage Home (1986)
## 35518 Batman Returns (1992)
## 35653 Young Guns (1988)
## 35756 Under Siege (1992)
## 36169 Mars Attacks! (1996)
## 36822 Raising Arizona (1987)
## 37062 Sneakers (1992)
## 38698 Lost World: Jurassic Park, The (1997)
## 38873 Batman & Robin (1997)
## 41599 Heat (1995)
## 41819 Sabrina (1995)
## 42817 River Wild, The (1994)
## 46064 Ulee's Gold (1997)
## 46411 Air Force One (1997)
## 48971 Schindler's List (1993)
## 49446 Mother (1996)
## 49837 Dante's Peak (1997)
## 53602 Clueless (1995)
## 53952 Jeffrey (1995)
## 54464 Adventures of Priscilla, Queen of the Desert, The (1994)
## 54598 Naked Gun 33 1/3: The Final Insult (1994)
## 54683 True Lies (1994)
## 54877 Addams Family Values (1993)
## 55228 Mrs. Doubtfire (1993)
## 55478 Serial Mom (1994)
## 55679 Brady Bunch Movie, The (1995)
## 55937 Batman (1989)
## 56259 Mission: Impossible (1996)
## 56779 Jack (1996)
## 56850 Kingpin (1996)
## 57020 Nutty Professor, The (1996)
## 57320 My Favorite Year (1982)
## 58083 E.T. the Extra-Terrestrial (1982)
## 58513 To Kill a Mockingbird (1962)
## 59367 Heathers (1989)
## 59606 Butch Cassidy and the Sundance Kid (1969)
## 60444 Star Trek: The Motion Picture (1979)
## 60628 Grease (1978)
## 62222 Dragonheart (1996)
## 62955 First Wives Club, The (1996)
## 63108 Matilda (1996)
## 64657 Adventures of Robin Hood, The (1938)
## 64970 It's a Wonderful Life (1946)
## 65594 Bananas (1971)
## 66407 Magnificent Seven, The (1954)
## 66838 Annie Hall (1977)
## 67012 Boot, Das (1981)
## 67456 Treasure of the Sierra Madre, The (1948)
## 67657 Deer Hunter, The (1978)
## 67818 Cool Hand Luke (1967)
## 68879 Addicted to Love (1997)
## 69354 Broken Arrow (1996)
## 69737 Die Hard: With a Vengeance (1995)
## 70016 Waterworld (1995)
## 70577 Clear and Present Danger (1994)
## 70799 Speed (1994)
## 71079 Wyatt Earp (1994)
## 71234 City Slickers II: The Legend of Curly's Gold (1994)
## 71279 Cliffhanger (1993)
## 71371 Coneheads (1993)
## 71413 Demolition Man (1993)
## 71898 Son in Law (1993)
## 72847 Big Squeeze, The (1996)
## 74210 Sleepers (1996)
## 74374 Victor/Victoria (1982)
## 75361 Quiet Man, The (1952)
## 75557 Glory (1989)
## 76272 Manchurian Candidate, The (1962)
## 77811 Conan the Barbarian (1981)
## 78099 In the Line of Fire (1993)
## 78267 Executive Decision (1996)
## 78850 American President, The (1995)
## 79406 Barcelona (1994)
## 79509 Singin' in the Rain (1952)
## 79817 Strictly Ballroom (1992)
## 80136 To Die For (1995)
## 80545 Nine Months (1995)
## 80806 Junior (1994)
## 81006 Dave (1993)
## 83874 Boomerang (1992)
## 84217 Something to Talk About (1995)
## 84366 Dumb & Dumber (1994)
## 84437 French Kiss (1995)
## 84526 Milk Money (1994)
## 84635 Swimming with Sharks (1995)
## 84680 Tommy Boy (1995)
## 84747 Baby-Sitters Club, The (1995)
## 84919 Speechless (1994)
## 85026 Air Up There, The (1994)
## 85042 Hard Target (1993)
## 85091 Jimmy Hollywood (1994)
## 85185 Program, The (1993)
## 85260 Shadow, The (1994)
## 85801 Great White Hype, The (1996)
## 86592 That Thing You Do! (1996)
## 86862 Days of Thunder (1990)
## 87234 Michael (1996)
## 87394 Vegas Vacation (1997)
## 89229 Down Periscope (1996)
## 90061 Renaissance Man (1994)
## 91660 Big Green, The (1995)
## 91716 Lightning Jack (1994)
## 92347 Con Air (1997)
## 92804 Grumpier Old Men (1995)
## 93304 Forget Paris (1995)
## 93522 Multiplicity (1996)
## 93719 House Arrest (1996)
## 94302 Pyromaniac's Love Story, A (1995)
## 94379 Reality Bites (1994)
## 94501 Joe's Apartment (1996)
## 94648 Speed 2: Cruise Control (1997)
## 95258 Up in Smoke (1978)
## 96277 Dunston Checks In (1996)
## 96284 Major Payne (1994)
## 96303 Man of the House (1995)
## 96312 I Love Trouble (1994)
## 96322 Low Down Dirty Shame, A (1994)
## 96332 Cops and Robbersons (1994)
## 96345 Cowboy Way, The (1994)
## 96364 Endless Summer 2, The (1994)
## 96374 In the Army Now (1994)
## 96392 Inkwell, The (1994)
## 96395 Switchblade Sisters (1975)
## 96408 Young Guns II (1990)
## 96452 Prefontaine (1997)
## 96455 That Old Feeling (1997)
## 40226 Air Bud (1997)
## 43753 English Patient, The (1996)
## 46412 Air Force One (1997)
## 46830 In & Out (1997)
## 47063 L.A. Confidential (1997)
## 47861 FairyTale: A True Story (1997)
## 48064 Wings of the Dove, The (1997)
## 48237 Titanic (1997)
## 48577 Apt Pupil (1998)
## 49257 Everyone Says I Love You (1996)
## 49447 Mother (1996)
## 50319 G.I. Jane (1997)
## 52728 Wedding Singer, The (1998)
## 78673 Seven Years in Tibet (1997)
## 82811 Amistad (1997)
## 87945 Soul Food (1997)
## 88071 Life Less Ordinary, A (1997)
## 88502 Postman, The (1997)
## 88682 Ma vie en rose (My Life in Pink) (1997)
## 96466 Letter From Death Row, A (1998)
## 44 Toy Story (1995)
## 1045 Twelve Monkeys (1995)
## 2523 Mighty Aphrodite (1995)
## 2697 Postino, Il (1994)
## 2896 Mr. Holland's Opus (1995)
## 4213 Birdcage, The (1996)
## 4472 Brothers McMullen, The (1995)
## 6327 I.Q. (1994)
## 6462 Star Wars (1977)
## 8972 While You Were Sleeping (1995)
## 11446 Much Ado About Nothing (1993)
## 11699 Remains of the Day, The (1993)
## 11990 Sleepless in Seattle (1993)
## 12816 Welcome to the Dollhouse (1995)
## 14436 Fargo (1996)
## 15188 Moll Flanders (1996)
## 15484 Truth About Cats & Dogs, The (1996)
## 15987 Rock, The (1996)
## 16750 Independence Day (ID4) (1996)
## 17917 Godfather, The (1972)
## 19600 Big Night (1996)
## 20904 Swingers (1996)
## 21087 Willy Wonka and the Chocolate Factory (1971)
## 24255 Princess Bride, The (1987)
## 26212 Return of the Jedi (1983)
## 27808 Godfather: Part II, The (1974)
## 29727 Graduate, The (1967)
## 30558 Groundhog Day (1993)
## 32534 Unbearable Lightness of Being, The (1988)
## 32629 Room with a View, A (1986)
## 33106 When Harry Met Sally... (1989)
## 33840 Breaking the Waves (1996)
## 33946 Star Trek: First Contact (1996)
## 36170 Mars Attacks! (1996)
## 36371 Citizen Ruth (1996)
## 36451 Jerry Maguire (1996)
## 37220 Beavis and Butt-head Do America (1996)
## 38036 Chasing Amy (1997)
## 39146 Men in Black (1997)
## 40751 Full Monty, The (1997)
## 42015 Sense and Sensibility (1995)
## 42566 Restoration (1995)
## 43198 Emma (1996)
## 46831 In & Out (1997)
## 49448 Mother (1996)
## 54357 Muriel's Wedding (1994)
## 54964 Age of Innocence, The (1993)
## 55764 Ghost (1990)
## 56260 Mission: Impossible (1996)
## 60629 Grease (1978)
## 62712 Trainspotting (1996)
## 67272 Manhattan (1979)
## 79090 Persuasion (1995)
## 79407 Barcelona (1994)
## 79644 Enchanted April (1991)
## 79818 Strictly Ballroom (1992)
## 80222 Home for the Holidays (1995)
## 80638 Circle of Friends (1995)
## 80957 Corrina, Corrina (1994)
## 81007 Dave (1993)
## 81359 Shadowlands (1993)
## 81434 Sirens (1994)
## 81527 Pretty Woman (1990)
## 83588 Beautiful Girls (1996)
## 85347 Celluloid Closet, The (1995)
## 85404 One Fine Day (1996)
## 86593 That Thing You Do! (1996)
## 87625 She's So Lovely (1997)
## 87946 Soul Food (1997)
## 89743 Brassed Off (1996)
## 90269 How to Make an American Quilt (1995)
## 90412 Blue in the Face (1995)
## 93650 She's the One (1996)
## 94380 Reality Bites (1994)
## 95304 Some Kind of Wonderful (1987)
## 976 Shanghai Triad (Yao a yao yao dao waipo qiao) (1995)
## 1409 Babe (1995)
## 1639 Dead Man Walking (1995)
## 1914 Richard III (1995)
## 2015 Seven (Se7en) (1995)
## 2255 Usual Suspects, The (1995)
## 2698 Postino, Il (1994)
## 3204 From Dusk Till Dawn (1996)
## 3292 White Balloon, The (1995)
## 3306 Antonia's Line (1995)
## 3372 Angels and Insects (1995)
## 3546 Braveheart (1995)
## 3834 Taxi Driver (1976)
## 4214 Birdcage, The (1996)
## 4473 Brothers McMullen, The (1995)
## 4993 Belle de jour (1967)
## 5037 Crimson Tide (1995)
## 5268 Desperado (1995)
## 5714 Clerks (1994)
## 5973 Eat Drink Man Woman (1994)
## 7078 Madness of King George, The (1994)
## 7579 Pulp Fiction (1994)
## 7938 Priest (1994)
## 8159 Three Colors: Red (1994)
## 8238 Three Colors: Blue (1993)
## 8595 Shawshank Redemption, The (1994)
## 8853 What's Eating Gilbert Grape (1993)
## 9391 Forrest Gump (1994)
## 9711 Four Weddings and a Funeral (1994)
## 10697 Fugitive, The (1993)
## 11447 Much Ado About Nothing (1993)
## 11700 Remains of the Day, The (1993)
## 12215 Blade Runner (1982)
## 13299 Terminator 2: Judgment Day (1991)
## 13591 Dances with Wolves (1990)
## 13862 Silence of the Lambs, The (1991)
## 14437 Fargo (1996)
## 15988 Rock, The (1996)
## 17794 Spitfire Grill, The (1996)
## 17918 Godfather, The (1972)
## 18521 Breakfast at Tiffany's (1961)
## 18627 Wizard of Oz, The (1939)
## 18868 Gone with the Wind (1939)
## 19042 Citizen Kane (1941)
## 19250 2001: A Space Odyssey (1968)
## 19491 Mr. Smith Goes to Washington (1939)
## 19601 Big Night (1996)
## 19895 20,000 Leagues Under the Sea (1954)
## 20037 Sound of Music, The (1965)
## 20752 Ghost and the Darkness, The (1996)
## 20870 Jude (1996)
## 20905 Swingers (1996)
## 21088 Willy Wonka and the Chocolate Factory (1971)
## 21483 Fish Called Wanda, A (1988)
## 21720 Monty Python's Life of Brian (1979)
## 21886 Dirty Dancing (1987)
## 21988 Reservoir Dogs (1992)
## 22711 On Golden Pond (1981)
## 23119 Manon of the Spring (Manon des sources) (1986)
## 23686 Cinema Paradiso (1988)
## 23800 Delicatessen (1991)
## 24590 Raiders of the Lost Ark (1981)
## 24997 Brazil (1985)
## 25473 Good, The Bad and The Ugly, The (1966)
## 25610 12 Angry Men (1957)
## 25739 Clockwork Orange, A (1971)
## 25962 Apocalypse Now (1979)
## 26692 GoodFellas (1990)
## 27328 Psycho (1960)
## 27809 Godfather: Part II, The (1974)
## 28252 Henry V (1989)
## 28393 Amadeus (1984)
## 28649 Raging Bull (1980)
## 28768 Right Stuff, The (1983)
## 28942 Sting, The (1973)
## 29478 Dead Poets Society (1989)
## 29728 Graduate, The (1967)
## 29954 Nikita (La Femme Nikita) (1990)
## 30091 Bridge on the River Kwai, The (1957)
## 30559 Groundhog Day (1993)
## 30829 Unforgiven (1992)
## 31617 Young Frankenstein (1974)
## 31817 This Is Spinal Tap (1984)
## 32342 M*A*S*H (1970)
## 32535 Unbearable Lightness of Being, The (1988)
## 32630 Room with a View, A (1986)
## 32885 Field of Dreams (1989)
## 33107 When Harry Met Sally... (1989)
## 33497 Cape Fear (1991)
## 33774 Mirror Has Two Faces, The (1996)
## 33841 Breaking the Waves (1996)
## 34283 Sling Blade (1996)
## 35891 Jaws (1975)
## 36452 Jerry Maguire (1996)
## 37373 Last of the Mohicans, The (1992)
## 37501 Kolya (1996)
## 37803 Devil's Own, The (1997)
## 39469 Contact (1997)
## 39950 George of the Jungle (1997)
## 40752 Full Monty, The (1997)
## 41045 Gattaca (1997)
## 41396 Good Will Hunting (1997)
## 41600 Heat (1995)
## 42016 Sense and Sensibility (1995)
## 42292 Leaving Las Vegas (1995)
## 43568 Secrets & Lies (1996)
## 43754 English Patient, The (1996)
## 44201 Marvin's Room (1996)
## 44776 Evita (1996)
## 46413 Air Force One (1997)
## 46832 In & Out (1997)
## 47064 L.A. Confidential (1997)
## 47584 Mrs. Brown (Her Majesty, Mrs. Brown) (1997)
## 47683 Devil's Advocate, The (1997)
## 47927 Rainmaker, The (1997)
## 48065 Wings of the Dove, The (1997)
## 48141 Midnight in the Garden of Good and Evil (1997)
## 48238 Titanic (1997)
## 48735 As Good As It Gets (1997)
## 48851 In the Name of the Father (1993)
## 48972 Schindler's List (1993)
## 49610 Murder at 1600 (1997)
## 49838 Dante's Peak (1997)
## 50683 Conspiracy Theory (1997)
## 51845 Boogie Nights (1997)
## 52462 Wag the Dog (1997)
## 52729 Wedding Singer, The (1998)
## 52843 Client, The (1994)
## 52958 One Flew Over the Cuckoo's Nest (1975)
## 53603 Clueless (1995)
## 54465 Adventures of Priscilla, Queen of the Desert, The (1994)
## 54684 True Lies (1994)
## 54965 Age of Innocence, The (1993)
## 55765 Ghost (1990)
## 57933 William Shakespeare's Romeo and Juliet (1996)
## 58084 E.T. the Extra-Terrestrial (1982)
## 58383 Bob Roberts (1992)
## 58514 To Kill a Mockingbird (1962)
## 58941 Duck Soup (1933)
## 59368 Heathers (1989)
## 59607 Butch Cassidy and the Sundance Kid (1969)
## 60003 Birds, The (1963)
## 60240 Carrie (1976)
## 60866 Bastard Out of Carolina (1996)
## 61329 Like Water For Chocolate (Como agua para chocolate) (1992)
## 61539 Vanya on 42nd Street (1994)
## 62006 Courage Under Fire (1996)
## 62510 Dr. Strangelove or: How I Learned to Stop Worrying and Love the Bomb (1963)
## 62713 Trainspotting (1996)
## 63198 Philadelphia Story, The (1940)
## 63315 Vertigo (1958)
## 63495 North by Northwest (1959)
## 63658 Apartment, The (1960)
## 63727 Some Like It Hot (1959)
## 63862 Casablanca (1942)
## 64233 My Fair Lady (1964)
## 64357 Sabrina (1954)
## 64489 Sunset Blvd. (1950)
## 64553 Notorious (1946)
## 64604 To Catch a Thief (1955)
## 64658 Adventures of Robin Hood, The (1938)
## 64782 Thin Man, The (1934)
## 64839 His Girl Friday (1940)
## 64971 It's a Wonderful Life (1946)
## 65187 Bringing Up Baby (1938)
## 65266 African Queen, The (1951)
## 65406 Cat on a Hot Tin Roof (1958)
## 65477 Dumbo (1941)
## 65810 Dial M for Murder (1954)
## 65879 Rebel Without a Cause (1955)
## 65973 Streetcar Named Desire, A (1951)
## 66286 My Left Foot (1989)
## 66535 Lawrence of Arabia (1962)
## 66696 Wings of Desire (1987)
## 66839 Annie Hall (1977)
## 67013 Boot, Das (1981)
## 67209 Local Hero (1983)
## 67273 Manhattan (1979)
## 67367 Miller's Crossing (1990)
## 67457 Treasure of the Sierra Madre, The (1948)
## 67658 Deer Hunter, The (1978)
## 67819 Cool Hand Luke (1967)
## 68097 Ben-Hur (1959)
## 68229 Gandhi (1982)
## 68415 Killing Fields, The (1984)
## 68537 My Life as a Dog (Mitt liv som hund) (1985)
## 68628 Man Who Would Be King, The (1975)
## 68711 Shine (1996)
## 69227 Miserables, Les (1995)
## 69589 Young Poisoner's Handbook, The (1995)
## 69952 Walk in the Clouds, A (1995)
## 70800 Speed (1994)
## 72880 American in Paris, An (1951)
## 72943 Rear Window (1954)
## 73140 It Happened One Night (1934)
## 73252 All About Eve (1950)
## 73312 Rebecca (1940)
## 73413 Father of the Bride (1950)
## 73472 Gigi (1958)
## 73511 Laura (1944)
## 73585 My Man Godfrey (1936)
## 73611 Giant (1956)
## 73786 Blue Angel, The (Blaue Engel, Der) (1930)
## 73803 Picnic (1955)
## 74481 Crying Game, The (1992)
## 74596 Sophie's Choice (1982)
## 74944 Tin Drum, The (Blechtrommel, Die) (1979)
## 75192 Thin Blue Line, The (1988)
## 75295 Ran (1985)
## 75362 Quiet Man, The (1952)
## 75482 Seventh Seal, The (Sjunde inseglet, Det) (1957)
## 75558 Glory (1989)
## 75727 Rosencrantz and Guildenstern Are Dead (1990)
## 75855 Chinatown (1974)
## 76222 M (1931)
## 76273 Manchurian Candidate, The (1962)
## 76477 Arsenic and Old Lace (1944)
## 76599 Fried Green Tomatoes (1991)
## 76747 High Noon (1952)
## 76833 Somewhere in Time (1980)
## 77512 Crucible, The (1996)
## 78100 In the Line of Fire (1993)
## 78674 Seven Years in Tibet (1997)
## 78851 American President, The (1995)
## 78999 Casino (1995)
## 79283 Little Women (1994)
## 79454 Widows' Peak (1994)
## 79510 Singin' in the Rain (1952)
## 79645 Enchanted April (1991)
## 79717 Sex, Lies, and Videotape (1989)
## 79819 Strictly Ballroom (1992)
## 80051 Othello (1995)
## 80490 Mallrats (1995)
## 80931 Queen Margot (Reine Margot, La) (1994)
## 81008 Dave (1993)
## 81528 Pretty Woman (1990)
## 82812 Amistad (1997)
## 83151 Burnt By the Sun (1994)
## 83589 Beautiful Girls (1996)
## 85306 Thirty-Two Short Films About Glenn Gould (1993)
## 85348 Celluloid Closet, The (1995)
## 85692 Mrs. Winterbourne (1996)
## 86318 Ninotchka (1939)
## 86345 Meet John Doe (1941)
## 86799 Looking for Richard (1996)
## 86955 Diva (1981)
## 87112 Garden of Finzi-Contini, The (Giardino dei Finzi-Contini, Il) (1970)
## 87626 She's So Lovely (1997)
## 87816 Peacemaker, The (1997)
## 88202 Tango Lesson, The (1997)
## 88455 Sweet Hereafter, The (1997)
## 88570 Kundun (1997)
## 88663 Afterglow (1997)
## 88683 Ma vie en rose (My Life in Pink) (1997)
## 88701 Great Expectations (1998)
## 88729 Oscar & Lucinda (1997)
## 89046 Raise the Red Lantern (1991)
## 89974 What's Love Got to Do with It (1993)
## 90102 Charade (1963)
## 90475 Unzipped (1995)
## 90583 To Live (Huozhe) (1994)
## 90720 Ruby in Paradise (1993)
## 90784 Month by the Lake, A (1995)
## 90793 Funny Face (1957)
## 90815 Affair to Remember, An (1957)
## 90954 Mediterraneo (1991)
## 90989 Passion Fish (1992)
## 91495 Anna Karenina (1997)
## 91631 Kiss Me, Guido (1997)
## 91761 Double vie de Veronique, La (Double Life of Veronique, The) (1991)
## 92589 Gaslight (1944)
## 93188 Hamlet (1996)
## 93440 Fearless (1993)
## 93651 She's the One (1996)
## 94602 It's My Party (1995)
## 94843 Hate (Haine, La) (1995)
## 94928 Six Degrees of Separation (1993)
## 95073 Death and the Maiden (1994)
## 95417 Innocents, The (1961)
## 95583 Get on the Bus (1996)
## 95666 Ghosts of Mississippi (1996)
## 95695 Beautiful Thing (1996)
## 96469 Boys of St. Vincent, The (1993)
## 96482 Before the Rain (Pred dozhdot) (1994)
## 96492 Once Were Warriors (1994)
## 96523 Strawberry and Chocolate (Fresa y chocolate) (1993)
## 96534 Savage Nights (Nuits fauves, Les) (1992)
## 96537 Family Thing, A (1996)
## 96582 Purple Noon (1960)
## 96589 Cemetery Man (Dellamorte Dellamore) (1994)
## 96612 Kim (1950)
## 96619 Marlene Dietrich: Shadow and Light (1996)
## 96620 Maybe, Maybe Not (Bewegte Mann, Der) (1994)
## 96628 Top Hat (1935)
## 96649 To Be or Not to Be (1942)
## 96667 Secret Agent, The (1996)
## 96673 Amos & Andrew (1993)
## 3547 Braveheart (1995)
## 4629 Apollo 13 (1995)
## 5038 Crimson Tide (1995)
## 6463 Star Wars (1977)
## 7580 Pulp Fiction (1994)
## 8596 Shawshank Redemption, The (1994)
## 9392 Forrest Gump (1994)
## 10698 Fugitive, The (1993)
## 11201 Jurassic Park (1993)
## 13592 Dances with Wolves (1990)
## 13863 Silence of the Lambs, The (1991)
## 14229 Snow White and the Seven Dwarfs (1937)
## 17919 Godfather, The (1972)
## 18522 Breakfast at Tiffany's (1961)
## 18628 Wizard of Oz, The (1939)
## 19043 Citizen Kane (1941)
## 19251 2001: A Space Odyssey (1968)
## 19492 Mr. Smith Goes to Washington (1939)
## 20038 Sound of Music, The (1965)
## 22504 Top Gun (1986)
## 23891 Empire Strikes Back, The (1980)
## 24591 Raiders of the Lost Ark (1981)
## 25203 Aliens (1986)
## 26213 Return of the Jedi (1983)
## 26693 GoodFellas (1990)
## 26922 Alien (1979)
## 27810 Godfather: Part II, The (1974)
## 28650 Raging Bull (1980)
## 28769 Right Stuff, The (1983)
## 29185 Terminator, The (1984)
## 31024 Back to the Future (1985)
## 31354 Patton (1970)
## 32017 Indiana Jones and the Last Crusade (1989)
## 32343 M*A*S*H (1970)
## 35327 Star Trek IV: The Voyage Home (1986)
## 35892 Jaws (1975)
## 40359 Mimic (1997)
## 40469 Hunt for Red October, The (1990)
## 44777 Evita (1996)
## 45539 Liar Liar (1997)
## 46414 Air Force One (1997)
## 48239 Titanic (1997)
## 48973 Schindler's List (1993)
## 49611 Murder at 1600 (1997)
## 49839 Dante's Peak (1997)
## 50320 G.I. Jane (1997)
## 50499 Cop Land (1997)
## 50684 Conspiracy Theory (1997)
## 51045 Edge, The (1997)
## 51317 Game, The (1997)
## 51701 Bean (1997)
## 52093 Alien: Resurrection (1997)
## 52665 Prophecy II, The (1998)
## 52959 One Flew Over the Cuckoo's Nest (1975)
## 55054 Black Beauty (1994)
## 57551 Cinderella (1950)
## 58085 E.T. the Extra-Terrestrial (1982)
## 58515 To Kill a Mockingbird (1962)
## 58843 Day the Earth Stood Still, The (1951)
## 59608 Butch Cassidy and the Sundance Kid (1969)
## 62511 Dr. Strangelove or: How I Learned to Stop Worrying and Love the Bomb (1963)
## 63316 Vertigo (1958)
## 63496 North by Northwest (1959)
## 63728 Some Like It Hot (1959)
## 63863 Casablanca (1942)
## 64097 Maltese Falcon, The (1941)
## 64898 Around the World in 80 Days (1956)
## 65267 African Queen, The (1951)
## 65478 Dumbo (1941)
## 65695 Bonnie and Clyde (1967)
## 65974 Streetcar Named Desire, A (1951)
## 66408 Magnificent Seven, The (1954)
## 66536 Lawrence of Arabia (1962)
## 67014 Boot, Das (1981)
## 67533 Great Escape, The (1963)
## 68098 Ben-Hur (1959)
## 68230 Gandhi (1982)
## 68538 My Life as a Dog (Mitt liv som hund) (1985)
## 70801 Speed (1994)
## 72856 For Whom the Bell Tolls (1943)
## 72944 Rear Window (1954)
## 73552 Lost Horizon (1937)
## 73612 Giant (1956)
## 73722 Night of the Living Dead (1968)
## 73804 Picnic (1955)
## 75559 Glory (1989)
## 76274 Manchurian Candidate, The (1962)
## 76834 Somewhere in Time (1980)
## 77942 I Know What You Did Last Summer (1997)
## 78044 Rocket Man (1997)
## 78578 Jackal, The (1997)
## 81226 Philadelphia (1993)
## 82461 Saint, The (1997)
## 82813 Amistad (1997)
## 91380 Beautician and the Beast, The (1997)
## 93745 Ghost and Mrs. Muir, The (1947)
## 95422 Old Man and the Sea, The (1958)
## 96470 Boys of St. Vincent, The (1993)
## 45 Toy Story (1995)
## 464 GoldenEye (1995)
## 692 Get Shorty (1995)
## 890 Copycat (1995)
## 1046 Twelve Monkeys (1995)
## 1410 Babe (1995)
## 1640 Dead Man Walking (1995)
## 2016 Seven (Se7en) (1995)
## 2256 Usual Suspects, The (1995)
## 2524 Mighty Aphrodite (1995)
## 2897 Mr. Holland's Opus (1995)
## 3548 Braveheart (1995)
## 4020 Rumble in the Bronx (1995)
## 4215 Birdcage, The (1996)
## 4630 Apollo 13 (1995)
## 4883 Batman Forever (1995)
## 5039 Crimson Tide (1995)
## 5193 Crumb (1994)
## 5407 Net, The (1995)
## 5525 Strange Days (1995)
## 5612 To Wong Foo, Thanks for Everything! Julie Newmar (1995)
## 5715 Clerks (1994)
## 5849 Disclosure (1994)
## 5892 Dolores Claiborne (1994)
## 6046 Exotica (1994)
## 6084 Ed Wood (1994)
## 6218 Hoop Dreams (1994)
## 6328 I.Q. (1994)
## 6464 Star Wars (1977)
## 6996 Legends of the Fall (1994)
## 7168 Natural Born Killers (1994)
## 7294 Outbreak (1995)
## 7401 Professional, The (1994)
## 7581 Pulp Fiction (1994)
## 7987 Quiz Show (1994)
## 8366 Stargate (1994)
## 8490 Santa Clause, The (1994)
## 8597 Shawshank Redemption, The (1994)
## 8854 What's Eating Gilbert Grape (1993)
## 8973 While You Were Sleeping (1995)
## 9129 Ace Ventura: Pet Detective (1994)
## 9237 Crow, The (1994)
## 9393 Forrest Gump (1994)
## 9956 Lion King, The (1994)
## 10161 Mask, The (1994)
## 10293 Maverick (1994)
## 10488 Firm, The (1993)
## 10633 Free Willy (1993)
## 10699 Fugitive, The (1993)
## 11001 Hot Shots! Part Deux (1993)
## 11075 Hudsucker Proxy, The (1994)
## 11202 Jurassic Park (1993)
## 11632 Ref, The (1994)
## 11853 Searching for Bobby Fischer (1993)
## 11991 Sleepless in Seattle (1993)
## 12216 Blade Runner (1982)
## 12571 Nightmare Before Christmas, The (1993)
## 12708 True Romance (1993)
## 12817 Welcome to the Dollhouse (1995)
## 12930 Home Alone (1990)
## 13076 Aladdin (1992)
## 13300 Terminator 2: Judgment Day (1991)
## 13864 Silence of the Lambs, The (1991)
## 14438 Fargo (1996)
## 14900 Heavy Metal (1981)
## 14974 Aristocats, The (1970)
## 15123 Diabolique (1996)
## 15233 Kids in the Hall: Brain Candy (1996)
## 15310 Mystery Science Theater 3000: The Movie (1996)
## 15485 Truth About Cats & Dogs, The (1996)
## 15822 Haunted World of Edward D. Wood Jr., The (1995)
## 15852 Cold Comfort Farm (1995)
## 15989 Rock, The (1996)
## 16368 Twister (1996)
## 16642 Striptease (1996)
## 16751 Independence Day (ID4) (1996)
## 17141 Cable Guy, The (1996)
## 17251 Frighteners, The (1996)
## 17369 Lone Star (1996)
## 17564 Phenomenon (1996)
## 18373 Bound (1996)
## 18629 Wizard of Oz, The (1939)
## 19044 Citizen Kane (1941)
## 19252 2001: A Space Odyssey (1968)
## 20039 Sound of Music, The (1965)
## 20260 Die Hard (1988)
## 20489 Lawnmower Man, The (1992)
## 20569 Long Kiss Goodnight, The (1996)
## 20753 Ghost and the Darkness, The (1996)
## 20871 Jude (1996)
## 21484 Fish Called Wanda, A (1988)
## 21721 Monty Python's Life of Brian (1979)
## 21887 Dirty Dancing (1987)
## 21989 Reservoir Dogs (1992)
## 22134 Platoon (1986)
## 22315 Basic Instinct (1992)
## 22418 Glengarry Glen Ross (1992)
## 22505 Top Gun (1986)
## 22909 Abyss, The (1989)
## 23178 Private Benjamin (1980)
## 23268 Monty Python and the Holy Grail (1974)
## 23566 Wrong Trousers, The (1993)
## 23801 Delicatessen (1991)
## 23892 Empire Strikes Back, The (1980)
## 24256 Princess Bride, The (1987)
## 24592 Raiders of the Lost Ark (1981)
## 24998 Brazil (1985)
## 25204 Aliens (1986)
## 25740 Clockwork Orange, A (1971)
## 25963 Apocalypse Now (1979)
## 26214 Return of the Jedi (1983)
## 26694 GoodFellas (1990)
## 26923 Alien (1979)
## 27198 Army of Darkness (1993)
## 27565 Blues Brothers, The (1980)
## 28185 Grand Day Out, A (1992)
## 28253 Henry V (1989)
## 28394 Amadeus (1984)
## 28770 Right Stuff, The (1983)
## 29186 Terminator, The (1984)
## 29479 Dead Poets Society (1989)
## 29955 Nikita (La Femme Nikita) (1990)
## 30092 Bridge on the River Kwai, The (1957)
## 30257 Shining, The (1980)
## 30456 Evil Dead II (1987)
## 30560 Groundhog Day (1993)
## 30830 Unforgiven (1992)
## 31025 Back to the Future (1985)
## 31618 Young Frankenstein (1974)
## 31818 This Is Spinal Tap (1984)
## 32018 Indiana Jones and the Last Crusade (1989)
## 32536 Unbearable Lightness of Being, The (1988)
## 32759 Pink Floyd - The Wall (1982)
## 32886 Field of Dreams (1989)
## 33108 When Harry Met Sally... (1989)
## 33377 Bram Stoker's Dracula (1992)
## 33498 Cape Fear (1991)
## 33668 Nightmare on Elm Street, A (1984)
## 33775 Mirror Has Two Faces, The (1996)
## 33947 Star Trek: First Contact (1996)
## 34284 Sling Blade (1996)
## 34471 101 Dalmatians (1996)
## 34573 Die Hard 2 (1990)
## 34746 Star Trek VI: The Undiscovered Country (1991)
## 34917 Star Trek: The Wrath of Khan (1982)
## 35153 Star Trek III: The Search for Spock (1984)
## 35328 Star Trek IV: The Voyage Home (1986)
## 35519 Batman Returns (1992)
## 35757 Under Siege (1992)
## 35893 Jaws (1975)
## 36171 Mars Attacks! (1996)
## 36453 Jerry Maguire (1996)
## 36823 Raising Arizona (1987)
## 37063 Sneakers (1992)
## 37221 Beavis and Butt-head Do America (1996)
## 37374 Last of the Mohicans, The (1992)
## 37619 Jungle2Jungle (1997)
## 37804 Devil's Own, The (1997)
## 38037 Chasing Amy (1997)
## 38163 Grosse Pointe Blank (1997)
## 38323 Austin Powers: International Man of Mystery (1997)
## 38458 Fifth Element, The (1997)
## 38699 Lost World: Jurassic Park, The (1997)
## 39147 Men in Black (1997)
## 39470 Contact (1997)
## 40106 Event Horizon (1997)
## 40470 Hunt for Red October, The (1990)
## 41189 Starship Troopers (1997)
## 41601 Heat (1995)
## 41820 Sabrina (1995)
## 42293 Leaving Las Vegas (1995)
## 42634 Bed of Roses (1996)
## 42818 River Wild, The (1994)
## 42967 Time to Kill, A (1996)
## 43378 Tin Cup (1996)
## 44315 Scream (1996)
## 44778 Evita (1996)
## 45115 Absolute Power (1997)
## 45540 Liar Liar (1997)
## 45985 Breakdown (1997)
## 47346 Fly Away Home (1996)
## 47684 Devil's Advocate, The (1997)
## 48240 Titanic (1997)
## 48974 Schindler's List (1993)
## 49612 Murder at 1600 (1997)
## 50685 Conspiracy Theory (1997)
## 52844 Client, The (1994)
## 53408 Sudden Death (1995)
## 53454 Ace Ventura: When Nature Calls (1995)
## 53604 Clueless (1995)
## 53756 Bio-Dome (1996)
## 53790 Black Sheep (1996)
## 53846 Mary Reilly (1996)
## 54056 Houseguest (1994)
## 54466 Adventures of Priscilla, Queen of the Desert, The (1994)
## 54566 Flintstones, The (1994)
## 54685 True Lies (1994)
## 54878 Addams Family Values (1993)
## 55229 Mrs. Doubtfire (1993)
## 55479 Serial Mom (1994)
## 55680 Brady Bunch Movie, The (1995)
## 55766 Ghost (1990)
## 55938 Batman (1989)
## 56261 Mission: Impossible (1996)
## 56571 Thinner (1996)
## 56671 Close Shave, A (1995)
## 56780 Jack (1996)
## 56851 Kingpin (1996)
## 57021 Nutty Professor, The (1996)
## 57172 Very Brady Sequel, A (1996)
## 57552 Cinderella (1950)
## 57934 William Shakespeare's Romeo and Juliet (1996)
## 58086 E.T. the Extra-Terrestrial (1982)
## 58384 Bob Roberts (1992)
## 58721 Harold and Maude (1971)
## 59032 Highlander (1986)
## 59193 Fantasia (1940)
## 59369 Heathers (1989)
## 59810 American Werewolf in London, An (1981)
## 60445 Star Trek: The Motion Picture (1979)
## 60558 Star Trek V: The Final Frontier (1989)
## 60630 Grease (1978)
## 60789 Jaws 2 (1978)
## 60852 Jaws 3-D (1983)
## 60895 Jackie Chan's First Strike (1996)
## 61033 Beverly Hills Ninja (1997)
## 61476 Secret of Roan Inish, The (1994)
## 61654 Red Rock West (1992)
## 62007 Courage Under Fire (1996)
## 62512 Dr. Strangelove or: How I Learned to Stop Worrying and Love the Bomb (1963)
## 62714 Trainspotting (1996)
## 62956 First Wives Club, The (1996)
## 65479 Dumbo (1941)
## 65696 Bonnie and Clyde (1967)
## 66084 People vs. Larry Flynt, The (1996)
## 67015 Boot, Das (1981)
## 67368 Miller's Crossing (1990)
## 67659 Deer Hunter, The (1978)
## 68231 Gandhi (1982)
## 68416 Killing Fields, The (1984)
## 68712 Shine (1996)
## 69084 Money Train (1995)
## 69355 Broken Arrow (1996)
## 69881 Lord of Illusions (1995)
## 69903 Species (1995)
## 70017 Waterworld (1995)
## 70158 Heavenly Creatures (1994)
## 70232 Interview with the Vampire (1994)
## 70385 Mary Shelley's Frankenstein (1994)
## 70578 Clear and Present Danger (1994)
## 70802 Speed (1994)
## 71235 City Slickers II: The Legend of Curly's Gold (1994)
## 71280 Cliffhanger (1993)
## 71372 Coneheads (1993)
## 71557 Kalifornia (1993)
## 71627 Piano, The (1993)
## 71783 Romeo Is Bleeding (1993)
## 71969 Hour of the Pig, The (1993)
## 72263 Primal Fear (1996)
## 72455 Fan, The (1996)
## 72527 Hunchback of Notre Dame, The (1996)
## 72661 Eraser (1996)
## 73822 Extreme Measures (1996)
## 73885 Chamber, The (1996)
## 74127 Robin Hood: Prince of Thieves (1991)
## 74211 Sleepers (1996)
## 74482 Crying Game, The (1992)
## 74774 Escape from New York (1981)
## 74986 Cook the Thief His Wife & Her Lover, The (1989)
## 75101 Grifters, The (1990)
## 75560 Glory (1989)
## 76010 Stand by Me (1986)
## 76395 Pump Up the Volume (1990)
## 76600 Fried Green Tomatoes (1991)
## 76919 Being There (1979)
## 77079 Alien 3 (1992)
## 77258 Candyman (1992)
## 77323 Cape Fear (1962)
## 77406 Cat People (1982)
## 77604 Volcano (1997)
## 77812 Conan the Barbarian (1981)
## 78101 In the Line of Fire (1993)
## 78268 Executive Decision (1996)
## 78852 American President, The (1995)
## 79408 Barcelona (1994)
## 79476 House of the Spirits, The (1993)
## 79646 Enchanted April (1991)
## 79718 Sex, Lies, and Videotape (1989)
## 79820 Strictly Ballroom (1992)
## 79999 Tin Men (1987)
## 80137 To Die For (1995)
## 80285 Juror, The (1996)
## 80408 First Knight (1995)
## 80546 Nine Months (1995)
## 80712 Exit to Eden (1994)
## 80743 Immortal Beloved (1994)
## 80807 Junior (1994)
## 80857 Nell (1994)
## 80958 Corrina, Corrina (1994)
## 81009 Dave (1993)
## 81227 Philadelphia (1993)
## 81435 Sirens (1994)
## 81529 Pretty Woman (1990)
## 81827 Ransom (1996)
## 82073 Crow: City of Angels, The (1996)
## 82345 Benny & Joon (1993)
## 82462 Saint, The (1997)
## 83239 Jumanji (1995)
## 83339 Father of the Bride Part II (1995)
## 83462 Lawnmower Man 2: Beyond Cyberspace (1996)
## 83539 Nick of Time (1995)
## 83705 Happy Gilmore (1996)
## 84077 Johnny Mnemonic (1995)
## 84261 Don Juan DeMarco (1995)
## 84367 Dumb & Dumber (1994)
## 84438 French Kiss (1995)
## 84527 Milk Money (1994)
## 84566 Only You (1994)
## 84636 Swimming with Sharks (1995)
## 84681 Tommy Boy (1995)
## 84855 It Could Happen to You (1994)
## 85002 In the Mouth of Madness (1995)
## 85043 Hard Target (1993)
## 85611 Space Jam (1996)
## 85724 Mulholland Falls (1996)
## 85853 Arrival, The (1996)
## 85935 Phantom, The (1996)
## 86120 Escape from L.A. (1996)
## 86281 Halloween: The Curse of Michael Myers (1995)
## 86433 Glimmer Man, The (1996)
## 86594 That Thing You Do! (1996)
## 86755 To Gillian on Her 37th Birthday (1996)
## 86956 Diva (1981)
## 89007 Dead Man (1995)
## 89187 Unforgettable (1996)
## 89230 Down Periscope (1996)
## 89329 Craft, The (1996)
## 89476 Chain Reaction (1996)
## 89555 Island of Dr. Moreau, The (1996)
## 89670 Preacher's Wife, The (1996)
## 90203 Big Blue, The (Grand bleu, Le) (1988)
## 90270 How to Make an American Quilt (1995)
## 90490 Before Sunrise (1995)
## 90687 Orlando (1993)
## 90744 Some Folks Call It a Sling Blade (1993)
## 91020 Eye for an Eye (1996)
## 91109 Substitute, The (1996)
## 91218 Mother Night (1996)
## 91284 Shadow Conspiracy (1997)
## 91349 Turbulence (1997)
## 91562 Hercules (1997)
## 91691 Cabin Boy (1994)
## 92000 2 Days in the Valley (1996)
## 92095 Private Parts (1997)
## 92229 Romy and Michele's High School Reunion (1997)
## 92348 Con Air (1997)
## 92528 Tie Me Up! Tie Me Down! (1990)
## 92694 Fathers' Day (1997)
## 92805 Grumpier Old Men (1995)
## 92997 Homeward Bound II: Lost in San Francisco (1996)
## 93146 Grease 2 (1982)
## 93278 Two if by Sea (1996)
## 93305 Forget Paris (1995)
## 93364 Just Cause (1995)
## 93465 Malice (1993)
## 93523 Multiplicity (1996)
## 93720 House Arrest (1996)
## 93828 Dracula: Dead and Loving It (1995)
## 94312 Shallow Grave (1994)
## 94381 Reality Bites (1994)
## 94502 Joe's Apartment (1996)
## 94684 Sliver (1993)
## 94812 High School High (1996)
## 95788 When We Were Kings (1996)
## 95996 Relic, The (1997)
## 96493 Once Were Warriors (1994)
## 96692 Jade (1995)
## 96709 Kiss of Death (1995)
## 96729 Mixed Nuts (1994)
## 96744 Virtuosity (1995)
## 96782 Blue Sky (1994)
## 96794 Flesh and Bone (1993)
## 96800 Guilty as Sin (1993)
## 96806 In the Realm of the Senses (Ai no corrida) (1976)
## 96815 Barb Wire (1996)
## 96845 Kissed (1996)
## 46 Toy Story (1995)
## 2699 Postino, Il (1994)
## 2898 Mr. Holland's Opus (1995)
## 16369 Twister (1996)
## 16752 Independence Day (ID4) (1996)
## 17565 Phenomenon (1996)
## 21089 Willy Wonka and the Chocolate Factory (1971)
## 33948 Star Trek: First Contact (1996)
## 36172 Mars Attacks! (1996)
## 42017 Sense and Sensibility (1995)
## 42294 Leaving Las Vegas (1995)
## 43199 Emma (1996)
## 57173 Very Brady Sequel, A (1996)
## 62957 First Wives Club, The (1996)
## 63109 Matilda (1996)
## 85405 One Fine Day (1996)
## 85612 Space Jam (1996)
## 86595 That Thing You Do! (1996)
## 87235 Michael (1996)
## 89671 Preacher's Wife, The (1996)
## 47 Toy Story (1995)
## 693 Get Shorty (1995)
## 1047 Twelve Monkeys (1995)
## 1411 Babe (1995)
## 1641 Dead Man Walking (1995)
## 2017 Seven (Se7en) (1995)
## 2257 Usual Suspects, The (1995)
## 3205 From Dusk Till Dawn (1996)
## 3549 Braveheart (1995)
## 3835 Taxi Driver (1976)
## 4021 Rumble in the Bronx (1995)
## 4216 Birdcage, The (1996)
## 4631 Apollo 13 (1995)
## 4884 Batman Forever (1995)
## 5040 Crimson Tide (1995)
## 5194 Crumb (1994)
## 5269 Desperado (1995)
## 5359 Doom Generation, The (1995)
## 5408 Net, The (1995)
## 5526 Strange Days (1995)
## 5663 Billy Madison (1995)
## 5716 Clerks (1994)
## 5974 Eat Drink Man Woman (1994)
## 6085 Ed Wood (1994)
## 6329 I.Q. (1994)
## 6465 Star Wars (1977)
## 6997 Legends of the Fall (1994)
## 7079 Madness of King George, The (1994)
## 7169 Natural Born Killers (1994)
## 7295 Outbreak (1995)
## 7402 Professional, The (1994)
## 7582 Pulp Fiction (1994)
## 7988 Quiz Show (1994)
## 8302 Three Colors: White (1994)
## 8367 Stargate (1994)
## 8491 Santa Clause, The (1994)
## 8598 Shawshank Redemption, The (1994)
## 8974 While You Were Sleeping (1995)
## 9130 Ace Ventura: Pet Detective (1994)
## 9238 Crow, The (1994)
## 9394 Forrest Gump (1994)
## 9712 Four Weddings and a Funeral (1994)
## 9957 Lion King, The (1994)
## 10162 Mask, The (1994)
## 10424 Carlito's Way (1993)
## 10489 Firm, The (1993)
## 10700 Fugitive, The (1993)
## 11002 Hot Shots! Part Deux (1993)
## 11076 Hudsucker Proxy, The (1994)
## 11203 Jurassic Park (1993)
## 11448 Much Ado About Nothing (1993)
## 11701 Remains of the Day, The (1993)
## 11992 Sleepless in Seattle (1993)
## 12217 Blade Runner (1982)
## 12473 So I Married an Axe Murderer (1993)
## 12572 Nightmare Before Christmas, The (1993)
## 12709 True Romance (1993)
## 12818 Welcome to the Dollhouse (1995)
## 12931 Home Alone (1990)
## 13301 Terminator 2: Judgment Day (1991)
## 13593 Dances with Wolves (1990)
## 13865 Silence of the Lambs, The (1991)
## 14230 Snow White and the Seven Dwarfs (1937)
## 14439 Fargo (1996)
## 14901 Heavy Metal (1981)
## 14975 Aristocats, The (1970)
## 15311 Mystery Science Theater 3000: The Movie (1996)
## 15486 Truth About Cats & Dogs, The (1996)
## 16370 Twister (1996)
## 16753 Independence Day (ID4) (1996)
## 17566 Phenomenon (1996)
## 17920 Godfather, The (1972)
## 18630 Wizard of Oz, The (1939)
## 18869 Gone with the Wind (1939)
## 19045 Citizen Kane (1941)
## 19253 2001: A Space Odyssey (1968)
## 19964 Bedknobs and Broomsticks (1971)
## 20040 Sound of Music, The (1965)
## 20261 Die Hard (1988)
## 21090 Willy Wonka and the Chocolate Factory (1971)
## 21485 Fish Called Wanda, A (1988)
## 21722 Monty Python's Life of Brian (1979)
## 21888 Dirty Dancing (1987)
## 21990 Reservoir Dogs (1992)
## 22135 Platoon (1986)
## 22316 Basic Instinct (1992)
## 22419 Glengarry Glen Ross (1992)
## 22506 Top Gun (1986)
## 22910 Abyss, The (1989)
## 23269 Monty Python and the Holy Grail (1974)
## 23687 Cinema Paradiso (1988)
## 23893 Empire Strikes Back, The (1980)
## 24257 Princess Bride, The (1987)
## 24593 Raiders of the Lost Ark (1981)
## 24999 Brazil (1985)
## 25205 Aliens (1986)
## 25474 Good, The Bad and The Ugly, The (1966)
## 25741 Clockwork Orange, A (1971)
## 25964 Apocalypse Now (1979)
## 26215 Return of the Jedi (1983)
## 26695 GoodFellas (1990)
## 26924 Alien (1979)
## 27199 Army of Darkness (1993)
## 27329 Psycho (1960)
## 27566 Blues Brothers, The (1980)
## 27811 Godfather: Part II, The (1974)
## 28020 Full Metal Jacket (1987)
## 28254 Henry V (1989)
## 28395 Amadeus (1984)
## 28651 Raging Bull (1980)
## 28771 Right Stuff, The (1983)
## 28943 Sting, The (1973)
## 29187 Terminator, The (1984)
## 29480 Dead Poets Society (1989)
## 30258 Shining, The (1980)
## 30457 Evil Dead II (1987)
## 30561 Groundhog Day (1993)
## 30831 Unforgiven (1992)
## 31026 Back to the Future (1985)
## 31483 Akira (1988)
## 31619 Young Frankenstein (1974)
## 31819 This Is Spinal Tap (1984)
## 32019 Indiana Jones and the Last Crusade (1989)
## 32344 M*A*S*H (1970)
## 32760 Pink Floyd - The Wall (1982)
## 32887 Field of Dreams (1989)
## 33109 When Harry Met Sally... (1989)
## 33378 Bram Stoker's Dracula (1992)
## 33499 Cape Fear (1991)
## 33669 Nightmare on Elm Street, A (1984)
## 33949 Star Trek: First Contact (1996)
## 34285 Sling Blade (1996)
## 34472 101 Dalmatians (1996)
## 34574 Die Hard 2 (1990)
## 34747 Star Trek VI: The Undiscovered Country (1991)
## 34918 Star Trek: The Wrath of Khan (1982)
## 35154 Star Trek III: The Search for Spock (1984)
## 35329 Star Trek IV: The Voyage Home (1986)
## 35654 Young Guns (1988)
## 35758 Under Siege (1992)
## 35894 Jaws (1975)
## 36173 Mars Attacks! (1996)
## 36824 Raising Arizona (1987)
## 37375 Last of the Mohicans, The (1992)
## 37805 Devil's Own, The (1997)
## 38038 Chasing Amy (1997)
## 38164 Grosse Pointe Blank (1997)
## 38459 Fifth Element, The (1997)
## 39148 Men in Black (1997)
## 39471 Contact (1997)
## 40107 Event Horizon (1997)
## 40471 Hunt for Red October, The (1990)
## 41602 Heat (1995)
## 41821 Sabrina (1995)
## 42819 River Wild, The (1994)
## 42968 Time to Kill, A (1996)
## 43755 English Patient, The (1996)
## 44316 Scream (1996)
## 45350 Donnie Brasco (1997)
## 47065 L.A. Confidential (1997)
## 48241 Titanic (1997)
## 48852 In the Name of the Father (1993)
## 48975 Schindler's List (1993)
## 50686 Conspiracy Theory (1997)
## 51553 U Turn (1997)
## 51702 Bean (1997)
## 52094 Alien: Resurrection (1997)
## 52333 Jackie Brown (1997)
## 52463 Wag the Dog (1997)
## 52796 Sphere (1998)
## 52845 Client, The (1994)
## 52960 One Flew Over the Cuckoo's Nest (1975)
## 53494 Powder (1995)
## 53539 Dangerous Minds (1995)
## 53605 Clueless (1995)
## 53757 Bio-Dome (1996)
## 53791 Black Sheep (1996)
## 53953 Jeffrey (1995)
## 54245 Star Trek: Generations (1994)
## 54358 Muriel's Wedding (1994)
## 54686 True Lies (1994)
## 54879 Addams Family Values (1993)
## 55077 Fear of a Black Hat (1993)
## 55091 Last Action Hero (1993)
## 55153 Man Without a Face, The (1993)
## 55230 Mrs. Doubtfire (1993)
## 55571 Three Musketeers, The (1993)
## 55681 Brady Bunch Movie, The (1995)
## 55767 Ghost (1990)
## 55939 Batman (1989)
## 56134 Pinocchio (1940)
## 56262 Mission: Impossible (1996)
## 56852 Kingpin (1996)
## 57022 Nutty Professor, The (1996)
## 57174 Very Brady Sequel, A (1996)
## 57468 Parent Trap, The (1961)
## 57553 Cinderella (1950)
## 57681 Mary Poppins (1964)
## 57851 Alice in Wonderland (1951)
## 57935 William Shakespeare's Romeo and Juliet (1996)
## 58087 E.T. the Extra-Terrestrial (1982)
## 58385 Bob Roberts (1992)
## 58722 Harold and Maude (1971)
## 59033 Highlander (1986)
## 59194 Fantasia (1940)
## 59370 Heathers (1989)
## 59609 Butch Cassidy and the Sundance Kid (1969)
## 59811 American Werewolf in London, An (1981)
## 60004 Birds, The (1963)
## 60241 Carrie (1976)
## 60357 Omen, The (1976)
## 60631 Grease (1978)
## 60896 Jackie Chan's First Strike (1996)
## 61108 Nixon (1995)
## 61540 Vanya on 42nd Street (1994)
## 61570 Jungle Book, The (1994)
## 61705 Bronx Tale, A (1993)
## 61815 Short Cuts (1993)
## 61884 Tombstone (1993)
## 62008 Courage Under Fire (1996)
## 62223 Dragonheart (1996)
## 62513 Dr. Strangelove or: How I Learned to Stop Worrying and Love the Bomb (1963)
## 62715 Trainspotting (1996)
## 63110 Matilda (1996)
## 63864 Casablanca (1942)
## 64098 Maltese Falcon, The (1941)
## 64972 It's a Wonderful Life (1946)
## 65480 Dumbo (1941)
## 65697 Bonnie and Clyde (1967)
## 65880 Rebel Without a Cause (1955)
## 66085 People vs. Larry Flynt, The (1996)
## 66287 My Left Foot (1989)
## 66409 Magnificent Seven, The (1954)
## 67369 Miller's Crossing (1990)
## 68019 Big Sleep, The (1946)
## 68232 Gandhi (1982)
## 68417 Killing Fields, The (1984)
## 68943 My Own Private Idaho (1991)
## 69128 Mortal Kombat (1995)
## 69249 Things to Do in Denver when You're Dead (1995)
## 69356 Broken Arrow (1996)
## 69641 Rob Roy (1995)
## 69738 Die Hard: With a Vengeance (1995)
## 69953 Walk in the Clouds, A (1995)
## 70123 Wild Bill (1995)
## 70233 Interview with the Vampire (1994)
## 70386 Mary Shelley's Frankenstein (1994)
## 70441 Quick and the Dead, The (1995)
## 70579 Clear and Present Danger (1994)
## 70803 Speed (1994)
## 71016 Wolf (1994)
## 71156 Blown Away (1994)
## 71281 Cliffhanger (1993)
## 71558 Kalifornia (1993)
## 71784 Romeo Is Bleeding (1993)
## 71821 Secret Garden, The (1993)
## 71899 Son in Law (1993)
## 71936 Terminal Velocity (1994)
## 71970 Hour of the Pig, The (1993)
## 72004 Beauty and the Beast (1991)
## 72188 Wild Bunch, The (1969)
## 72662 Eraser (1996)
## 72945 Rear Window (1954)
## 73723 Night of the Living Dead (1968)
## 73939 Swiss Family Robinson (1960)
## 74016 Three Caballeros, The (1945)
## 74045 Sword in the Stone, The (1963)
## 74128 Robin Hood: Prince of Thieves (1991)
## 74375 Victor/Victoria (1982)
## 74483 Crying Game, The (1992)
## 74775 Escape from New York (1981)
## 74863 Howling, The (1981)
## 75102 Grifters, The (1990)
## 75193 Thin Blue Line, The (1988)
## 75254 Once Upon a Time in the West (1969)
## 75296 Ran (1985)
## 75483 Seventh Seal, The (Sjunde inseglet, Det) (1957)
## 75561 Glory (1989)
## 75728 Rosencrantz and Guildenstern Are Dead (1990)
## 75856 Chinatown (1974)
## 76011 Stand by Me (1986)
## 76275 Manchurian Candidate, The (1962)
## 76396 Pump Up the Volume (1990)
## 77080 Alien 3 (1992)
## 77324 Cape Fear (1962)
## 77407 Cat People (1982)
## 77813 Conan the Barbarian (1981)
## 78102 In the Line of Fire (1993)
## 78269 Executive Decision (1996)
## 78415 Perfect World, A (1993)
## 78675 Seven Years in Tibet (1997)
## 78853 American President, The (1995)
## 79000 Casino (1995)
## 79148 City Hall (1996)
## 79376 Miami Rhapsody (1995)
## 79455 Widows' Peak (1994)
## 79921 Better Off Dead... (1985)
## 80138 To Die For (1995)
## 80223 Home for the Holidays (1995)
## 80409 First Knight (1995)
## 80491 Mallrats (1995)
## 80547 Nine Months (1995)
## 80602 Boys on the Side (1995)
## 80744 Immortal Beloved (1994)
## 80808 Junior (1994)
## 80959 Corrina, Corrina (1994)
## 81010 Dave (1993)
## 81228 Philadelphia (1993)
## 81360 Shadowlands (1993)
## 81436 Sirens (1994)
## 81491 Threesome (1994)
## 81530 Pretty Woman (1990)
## 81755 Last Supper, The (1995)
## 81828 Ransom (1996)
## 82117 Michael Collins (1996)
## 82226 Real Genius (1985)
## 82814 Amistad (1997)
## 83706 Happy Gilmore (1996)
## 83875 Boomerang (1992)
## 83929 Casper (1995)
## 84368 Dumb & Dumber (1994)
## 84528 Milk Money (1994)
## 84603 Perez Family, The (1995)
## 84637 Swimming with Sharks (1995)
## 84763 Bullets Over Broadway (1994)
## 84956 Timecop (1994)
## 85003 In the Mouth of Madness (1995)
## 85128 Menace II Society (1993)
## 85186 Program, The (1993)
## 85216 Rising Sun (1993)
## 85261 Shadow, The (1994)
## 85349 Celluloid Closet, The (1995)
## 85613 Space Jam (1996)
## 85725 Mulholland Falls (1996)
## 85802 Great White Hype, The (1996)
## 86082 Fled (1996)
## 87075 Believers, The (1987)
## 87141 My Fellow Americans (1996)
## 88964 Farewell My Concubine (1993)
## 89047 Raise the Red Lantern (1991)
## 89330 Craft, The (1996)
## 89477 Chain Reaction (1996)
## 89609 First Kid (1996)
## 89838 Murder in the First (1995)
## 89975 What's Love Got to Do with It (1993)
## 90019 Killing Zoe (1994)
## 90062 Renaissance Man (1994)
## 90149 Fox and the Hound, The (1981)
## 90271 How to Make an American Quilt (1995)
## 90371 Indian in the Cupboard, The (1995)
## 90601 Dazed and Confused (1993)
## 90688 Orlando (1993)
## 90877 Winnie the Pooh and the Blustery Day (1968)
## 91563 Hercules (1997)
## 91675 Stuart Saves His Family (1995)
## 91751 Geronimo: An American Legend (1993)
## 91808 Waiting for Guffman (1996)
## 91895 Stealing Beauty (1996)
## 91956 Basquiat (1996)
## 92001 2 Days in the Valley (1996)
## 92096 Private Parts (1997)
## 92230 Romy and Michele's High School Reunion (1997)
## 92806 Grumpier Old Men (1995)
## 92979 Little Big League (1994)
## 93401 Paper, The (1994)
## 93441 Fearless (1993)
## 93466 Malice (1993)
## 93652 She's the One (1996)
## 93941 War, The (1994)
## 94120 Koyaanisqatsi (1983)
## 94313 Shallow Grave (1994)
## 94382 Reality Bites (1994)
## 94649 Speed 2: Cruise Control (1997)
## 94722 Pete's Dragon (1977)
## 94929 Six Degrees of Separation (1993)
## 95102 Tank Girl (1995)
## 95259 Up in Smoke (1978)
## 95305 Some Kind of Wonderful (1987)
## 95619 Doors, The (1991)
## 95761 Road to Wellville, The (1994)
## 95861 My Family (1995)
## 95962 Backbeat (1993)
## 96409 Young Guns II (1990)
## 96590 Cemetery Man (Dellamorte Dellamore) (1994)
## 96674 Amos & Andrew (1993)
## 96730 Mixed Nuts (1994)
## 96745 Virtuosity (1995)
## 96783 Blue Sky (1994)
## 96851 Assassins (1995)
## 96890 Friday (1995)
## 96916 Goofy Movie, A (1995)
## 96936 Higher Learning (1995)
## 96966 When a Man Loves a Woman (1994)
## 97005 Judgment Night (1993)
## 97030 King of the Hill (1993)
## 97034 Scout, The (1994)
## 97046 Angus (1995)
## 97060 Night Falls on Manhattan (1997)
## 48 Toy Story (1995)
## 465 GoldenEye (1995)
## 592 Four Rooms (1995)
## 1048 Twelve Monkeys (1995)
## 1412 Babe (1995)
## 2700 Postino, Il (1994)
## 2899 Mr. Holland's Opus (1995)
## 3550 Braveheart (1995)
## 4022 Rumble in the Bronx (1995)
## 4217 Birdcage, The (1996)
## 4474 Brothers McMullen, The (1995)
## 4632 Apollo 13 (1995)
## 5041 Crimson Tide (1995)
## 5195 Crumb (1994)
## 5270 Desperado (1995)
## 5850 Disclosure (1994)
## 6219 Hoop Dreams (1994)
## 6330 I.Q. (1994)
## 6466 Star Wars (1977)
## 6998 Legends of the Fall (1994)
## 7080 Madness of King George, The (1994)
## 7989 Quiz Show (1994)
## 8368 Stargate (1994)
## 8492 Santa Clause, The (1994)
## 8599 Shawshank Redemption, The (1994)
## 8855 What's Eating Gilbert Grape (1993)
## 9131 Ace Ventura: Pet Detective (1994)
## 9239 Crow, The (1994)
## 9395 Forrest Gump (1994)
## 9713 Four Weddings and a Funeral (1994)
## 9958 Lion King, The (1994)
## 10163 Mask, The (1994)
## 10294 Maverick (1994)
## 10490 Firm, The (1993)
## 10634 Free Willy (1993)
## 10701 Fugitive, The (1993)
## 11204 Jurassic Park (1993)
## 11449 Much Ado About Nothing (1993)
## 11993 Sleepless in Seattle (1993)
## 12218 Blade Runner (1982)
## 12474 So I Married an Axe Murderer (1993)
## 12573 Nightmare Before Christmas, The (1993)
## 12932 Home Alone (1990)
## 13077 Aladdin (1992)
## 13302 Terminator 2: Judgment Day (1991)
## 13594 Dances with Wolves (1990)
## 13866 Silence of the Lambs, The (1991)
## 14231 Snow White and the Seven Dwarfs (1937)
## 14902 Heavy Metal (1981)
## 14976 Aristocats, The (1970)
## 15428 Operation Dumbo Drop (1995)
## 15487 Truth About Cats & Dogs, The (1996)
## 15990 Rock, The (1996)
## 16754 Independence Day (ID4) (1996)
## 17921 Godfather, The (1972)
## 18301 Supercop (1992)
## 18631 Wizard of Oz, The (1939)
## 18870 Gone with the Wind (1939)
## 19254 2001: A Space Odyssey (1968)
## 19602 Big Night (1996)
## 19781 Love Bug, The (1969)
## 19831 Homeward Bound: The Incredible Journey (1993)
## 19896 20,000 Leagues Under the Sea (1954)
## 19965 Bedknobs and Broomsticks (1971)
## 20041 Sound of Music, The (1965)
## 20262 Die Hard (1988)
## 21091 Willy Wonka and the Chocolate Factory (1971)
## 21486 Fish Called Wanda, A (1988)
## 22507 Top Gun (1986)
## 23270 Monty Python and the Holy Grail (1974)
## 23688 Cinema Paradiso (1988)
## 23894 Empire Strikes Back, The (1980)
## 24258 Princess Bride, The (1987)
## 24594 Raiders of the Lost Ark (1981)
## 25000 Brazil (1985)
## 25206 Aliens (1986)
## 25475 Good, The Bad and The Ugly, The (1966)
## 25611 12 Angry Men (1957)
## 25742 Clockwork Orange, A (1971)
## 25965 Apocalypse Now (1979)
## 26216 Return of the Jedi (1983)
## 26696 GoodFellas (1990)
## 26925 Alien (1979)
## 27330 Psycho (1960)
## 27567 Blues Brothers, The (1980)
## 28021 Full Metal Jacket (1987)
## 28255 Henry V (1989)
## 28396 Amadeus (1984)
## 28772 Right Stuff, The (1983)
## 28944 Sting, The (1973)
## 29188 Terminator, The (1984)
## 29481 Dead Poets Society (1989)
## 29729 Graduate, The (1967)
## 29956 Nikita (La Femme Nikita) (1990)
## 30093 Bridge on the River Kwai, The (1957)
## 30259 Shining, The (1980)
## 30562 Groundhog Day (1993)
## 30832 Unforgiven (1992)
## 31027 Back to the Future (1985)
## 31355 Patton (1970)
## 31534 Cyrano de Bergerac (1990)
## 31620 Young Frankenstein (1974)
## 31820 This Is Spinal Tap (1984)
## 32020 Indiana Jones and the Last Crusade (1989)
## 32345 M*A*S*H (1970)
## 32888 Field of Dreams (1989)
## 33110 When Harry Met Sally... (1989)
## 33670 Nightmare on Elm Street, A (1984)
## 34575 Die Hard 2 (1990)
## 34748 Star Trek VI: The Undiscovered Country (1991)
## 34919 Star Trek: The Wrath of Khan (1982)
## 35155 Star Trek III: The Search for Spock (1984)
## 35655 Young Guns (1988)
## 35759 Under Siege (1992)
## 35895 Jaws (1975)
## 36454 Jerry Maguire (1996)
## 36825 Raising Arizona (1987)
## 37064 Sneakers (1992)
## 37376 Last of the Mohicans, The (1992)
## 38460 Fifth Element, The (1997)
## 39149 Men in Black (1997)
## 40472 Hunt for Red October, The (1990)
## 41822 Sabrina (1995)
## 42018 Sense and Sensibility (1995)
## 42969 Time to Kill, A (1996)
## 43756 English Patient, The (1996)
## 44779 Evita (1996)
## 45021 Fierce Creatures (1997)
## 45541 Liar Liar (1997)
## 50687 Conspiracy Theory (1997)
## 52846 Client, The (1994)
## 52961 One Flew Over the Cuckoo's Nest (1975)
## 53540 Dangerous Minds (1995)
## 53887 Bridges of Madison County, The (1995)
## 54098 Miracle on 34th Street (1994)
## 54359 Muriel's Wedding (1994)
## 54687 True Lies (1994)
## 54880 Addams Family Values (1993)
## 55055 Black Beauty (1994)
## 55092 Last Action Hero (1993)
## 55154 Man Without a Face, The (1993)
## 55231 Mrs. Doubtfire (1993)
## 55421 Robin Hood: Men in Tights (1993)
## 55542 Super Mario Bros. (1993)
## 55572 Three Musketeers, The (1993)
## 55768 Ghost (1990)
## 55940 Batman (1989)
## 56135 Pinocchio (1940)
## 56263 Mission: Impossible (1996)
## 57375 Apple Dumpling Gang, The (1975)
## 57406 Old Yeller (1957)
## 57469 Parent Trap, The (1961)
## 57682 Mary Poppins (1964)
## 57852 Alice in Wonderland (1951)
## 58030 Aladdin and the King of Thieves (1996)
## 58088 E.T. the Extra-Terrestrial (1982)
## 59034 Highlander (1986)
## 59195 Fantasia (1940)
## 59371 Heathers (1989)
## 59812 American Werewolf in London, An (1981)
## 60005 Birds, The (1963)
## 60201 Body Snatcher, The (1945)
## 60242 Carrie (1976)
## 60358 Omen, The (1976)
## 60446 Star Trek: The Motion Picture (1979)
## 60559 Star Trek V: The Final Frontier (1989)
## 60632 Grease (1978)
## 61330 Like Water For Chocolate (Como agua para chocolate) (1992)
## 61477 Secret of Roan Inish, The (1994)
## 61571 Jungle Book, The (1994)
## 62009 Courage Under Fire (1996)
## 62224 Dragonheart (1996)
## 62383 James and the Giant Peach (1996)
## 62514 Dr. Strangelove or: How I Learned to Stop Worrying and Love the Bomb (1963)
## 63865 Casablanca (1942)
## 64234 My Fair Lady (1964)
## 64659 Adventures of Robin Hood, The (1938)
## 64899 Around the World in 80 Days (1956)
## 64973 It's a Wonderful Life (1946)
## 65268 African Queen, The (1951)
## 65811 Dial M for Murder (1954)
## 65881 Rebel Without a Cause (1955)
## 65975 Streetcar Named Desire, A (1951)
## 66288 My Left Foot (1989)
## 66410 Magnificent Seven, The (1954)
## 66537 Lawrence of Arabia (1962)
## 66840 Annie Hall (1977)
## 67016 Boot, Das (1981)
## 67370 Miller's Crossing (1990)
## 67534 Great Escape, The (1963)
## 67820 Cool Hand Luke (1967)
## 68233 Gandhi (1982)
## 68828 Kama Sutra: A Tale of Love (1996)
## 69045 Mouse Hunt (1997)
## 69178 Pocahontas (1995)
## 69357 Broken Arrow (1996)
## 69739 Die Hard: With a Vengeance (1995)
## 69904 Species (1995)
## 70018 Waterworld (1995)
## 70359 Kid in King Arthur's Court, A (1995)
## 70580 Clear and Present Danger (1994)
## 70804 Speed (1994)
## 71189 Body Snatchers (1993)
## 71937 Terminal Velocity (1994)
## 72005 Beauty and the Beast (1991)
## 72264 Primal Fear (1996)
## 72528 Hunchback of Notre Dame, The (1996)
## 72663 Eraser (1996)
## 73940 Swiss Family Robinson (1960)
## 73978 Angels in the Outfield (1994)
## 74046 Sword in the Stone, The (1963)
## 74129 Robin Hood: Prince of Thieves (1991)
## 74484 Crying Game, The (1992)
## 74776 Escape from New York (1981)
## 74987 Cook the Thief His Wife & Her Lover, The (1989)
## 75363 Quiet Man, The (1952)
## 75429 Once Upon a Time in America (1984)
## 75484 Seventh Seal, The (Sjunde inseglet, Det) (1957)
## 75562 Glory (1989)
## 76012 Stand by Me (1986)
## 76276 Manchurian Candidate, The (1962)
## 76601 Fried Green Tomatoes (1991)
## 77081 Alien 3 (1992)
## 77211 Bride of Frankenstein (1935)
## 77408 Cat People (1982)
## 77456 Nosferatu (Nosferatu, eine Symphonie des Grauens) (1922)
## 77814 Conan the Barbarian (1981)
## 78045 Rocket Man (1997)
## 78854 American President, The (1995)
## 79284 Little Women (1994)
## 79511 Singin' in the Rain (1952)
## 79647 Enchanted April (1991)
## 79719 Sex, Lies, and Videotape (1989)
## 80000 Tin Men (1987)
## 80139 To Die For (1995)
## 80224 Home for the Holidays (1995)
## 80410 First Knight (1995)
## 80809 Junior (1994)
## 81361 Shadowlands (1993)
## 81437 Sirens (1994)
## 81531 Pretty Woman (1990)
## 81829 Ransom (1996)
## 82346 Benny & Joon (1993)
## 83930 Casper (1995)
## 84331 Drop Zone (1994)
## 84439 French Kiss (1995)
## 84617 Roommates (1995)
## 84748 Baby-Sitters Club, The (1995)
## 85406 One Fine Day (1996)
## 86505 Shaggy Dog, The (1959)
## 86957 Diva (1981)
## 87096 Jingle All the Way (1996)
## 87777 That Darn Cat! (1997)
## 88265 Flubber (1997)
## 90150 Fox and the Hound, The (1981)
## 90663 Naked (1993)
## 90853 Inspector General, The (1949)
## 90955 Mediterraneo (1991)
## 91095 Solo (1996)
## 92529 Tie Me Up! Tie Me Down! (1990)
## 93524 Multiplicity (1996)
## 94685 Sliver (1993)
## 94723 Pete's Dragon (1977)
## 94930 Six Degrees of Separation (1993)
## 95225 Mark of Zorro, The (1940)
## 95423 Old Man and the Sea, The (1958)
## 95553 Escape to Witch Mountain (1975)
## 96410 Young Guns II (1990)
## 96675 Amos & Andrew (1993)
## 96852 Assassins (1995)
## 96917 Goofy Movie, A (1995)
## 96967 When a Man Loves a Woman (1994)
## 97006 Judgment Night (1993)
## 97092 Awfully Big Adventure, An (1995)
## 97100 Under Siege 2: Dark Territory (1995)
## 97148 Poison Ivy II (1995)
## 97161 Ready to Wear (Pret-A-Porter) (1994)
## 97179 Marked for Death (1990)
## 49 Toy Story (1995)
## 1049 Twelve Monkeys (1995)
## 1413 Babe (1995)
## 3836 Taxi Driver (1976)
## 5717 Clerks (1994)
## 6467 Star Wars (1977)
## 7583 Pulp Fiction (1994)
## 8600 Shawshank Redemption, The (1994)
## 10702 Fugitive, The (1993)
## 11450 Much Ado About Nothing (1993)
## 11854 Searching for Bobby Fischer (1993)
## 12219 Blade Runner (1982)
## 12574 Nightmare Before Christmas, The (1993)
## 13303 Terminator 2: Judgment Day (1991)
## 13867 Silence of the Lambs, The (1991)
## 14440 Fargo (1996)
## 17922 Godfather, The (1972)
## 20263 Die Hard (1988)
## 21487 Fish Called Wanda, A (1988)
## 21991 Reservoir Dogs (1992)
## 23689 Cinema Paradiso (1988)
## 24259 Princess Bride, The (1987)
## 24595 Raiders of the Lost Ark (1981)
## 25207 Aliens (1986)
## 26217 Return of the Jedi (1983)
## 26697 GoodFellas (1990)
## 26926 Alien (1979)
## 27331 Psycho (1960)
## 27812 Godfather: Part II, The (1974)
## 28256 Henry V (1989)
## 28945 Sting, The (1973)
## 29189 Terminator, The (1984)
## 29482 Dead Poets Society (1989)
## 29957 Nikita (La Femme Nikita) (1990)
## 30260 Shining, The (1980)
## 33111 When Harry Met Sally... (1989)
## 35896 Jaws (1975)
## 36826 Raising Arizona (1987)
## 40473 Hunt for Red October, The (1990)
## 48976 Schindler's List (1993)
## 58089 E.T. the Extra-Terrestrial (1982)
## 59610 Butch Cassidy and the Sundance Kid (1969)
## 60202 Body Snatcher, The (1945)
## 62515 Dr. Strangelove or: How I Learned to Stop Worrying and Love the Bomb (1963)
## 63199 Philadelphia Story, The (1940)
## 63317 Vertigo (1958)
## 63866 Casablanca (1942)
## 64099 Maltese Falcon, The (1941)
## 64358 Sabrina (1954)
## 66841 Annie Hall (1977)
## 67458 Treasure of the Sierra Madre, The (1948)
## 68020 Big Sleep, The (1946)
## 75225 Paris Is Burning (1990)
## 77325 Cape Fear (1962)
## 95980 Alphaville (1965)
## 97201 Madonna: Truth or Dare (1991)
## 50 Toy Story (1995)
## 1050 Twelve Monkeys (1995)
## 3837 Taxi Driver (1976)
## 4633 Apollo 13 (1995)
## 5196 Crumb (1994)
## 6468 Star Wars (1977)
## 9396 Forrest Gump (1994)
## 10703 Fugitive, The (1993)
## 11205 Jurassic Park (1993)
## 11451 Much Ado About Nothing (1993)
## 12220 Blade Runner (1982)
## 13304 Terminator 2: Judgment Day (1991)
## 13595 Dances with Wolves (1990)
## 13868 Silence of the Lambs, The (1991)
## 14441 Fargo (1996)
## 15823 Haunted World of Edward D. Wood Jr., The (1995)
## 18632 Wizard of Oz, The (1939)
## 18871 Gone with the Wind (1939)
## 19255 2001: A Space Odyssey (1968)
## 21488 Fish Called Wanda, A (1988)
## 23271 Monty Python and the Holy Grail (1974)
## 23567 Wrong Trousers, The (1993)
## 23895 Empire Strikes Back, The (1980)
## 24260 Princess Bride, The (1987)
## 24596 Raiders of the Lost Ark (1981)
## 25001 Brazil (1985)
## 26927 Alien (1979)
## 27568 Blues Brothers, The (1980)
## 28186 Grand Day Out, A (1992)
## 28397 Amadeus (1984)
## 28652 Raging Bull (1980)
## 28773 Right Stuff, The (1983)
## 28946 Sting, The (1973)
## 29190 Terminator, The (1984)
## 29730 Graduate, The (1967)
## 30563 Groundhog Day (1993)
## 31028 Back to the Future (1985)
## 31356 Patton (1970)
## 31621 Young Frankenstein (1974)
## 33950 Star Trek: First Contact (1996)
## 34920 Star Trek: The Wrath of Khan (1982)
## 52962 One Flew Over the Cuckoo's Nest (1975)
## 56672 Close Shave, A (1995)
## 58090 E.T. the Extra-Terrestrial (1982)
## 58723 Harold and Maude (1971)
## 58844 Day the Earth Stood Still, The (1951)
## 58942 Duck Soup (1933)
## 59035 Highlander (1986)
## 59196 Fantasia (1940)
## 59528 Forbidden Planet (1956)
## 59611 Butch Cassidy and the Sundance Kid (1969)
## 61655 Red Rock West (1992)
## 63729 Some Like It Hot (1959)
## 64100 Maltese Falcon, The (1941)
## 64974 It's a Wonderful Life (1946)
## 68099 Ben-Hur (1959)
## 72946 Rear Window (1954)
## 76013 Stand by Me (1986)
## 76748 High Noon (1952)
## 76920 Being There (1979)
## 88869 City of Lost Children, The (1995)
## 95424 Old Man and the Sea, The (1958)
## 4218 Birdcage, The (1996)
## 6086 Ed Wood (1994)
## 9714 Four Weddings and a Funeral (1994)
## 11994 Sleepless in Seattle (1993)
## 15853 Cold Comfort Farm (1995)
## 21385 Sleeper (1973)
## 22815 Return of the Pink Panther, The (1974)
## 23272 Monty Python and the Holy Grail (1974)
## 24261 Princess Bride, The (1987)
## 28947 Sting, The (1973)
## 31821 This Is Spinal Tap (1984)
## 32021 Indiana Jones and the Last Crusade (1989)
## 32346 M*A*S*H (1970)
## 49449 Mother (1996)
## 49613 Murder at 1600 (1997)
## 58724 Harold and Maude (1971)
## 59612 Butch Cassidy and the Sundance Kid (1969)
## 65595 Bananas (1971)
## 66842 Annie Hall (1977)
## 67274 Manhattan (1979)
## 67821 Cool Hand Luke (1967)
## 74376 Victor/Victoria (1982)
## 76014 Stand by Me (1986)
## 76478 Arsenic and Old Lace (1944)
## 82205 Ruling Class, The (1972)
## 89811 Smile Like Yours, A (1997)
## 91381 Beautician and the Beast, The (1997)
## 51 Toy Story (1995)
## 593 Four Rooms (1995)
## 694 Get Shorty (1995)
## 1051 Twelve Monkeys (1995)
## 2018 Seven (Se7en) (1995)
## 2258 Usual Suspects, The (1995)
## 3551 Braveheart (1995)
## 4219 Birdcage, The (1996)
## 4634 Apollo 13 (1995)
## 6469 Star Wars (1977)
## 7584 Pulp Fiction (1994)
## 8601 Shawshank Redemption, The (1994)
## 8975 While You Were Sleeping (1995)
## 9397 Forrest Gump (1994)
## 10704 Fugitive, The (1993)
## 12710 True Romance (1993)
## 13869 Silence of the Lambs, The (1991)
## 14442 Fargo (1996)
## 15047 Sgt. Bilko (1996)
## 15189 Moll Flanders (1996)
## 15488 Truth About Cats & Dogs, The (1996)
## 15854 Cold Comfort Farm (1995)
## 15991 Rock, The (1996)
## 16371 Twister (1996)
## 16643 Striptease (1996)
## 16755 Independence Day (ID4) (1996)
## 17252 Frighteners, The (1996)
## 17370 Lone Star (1996)
## 17567 Phenomenon (1996)
## 20570 Long Kiss Goodnight, The (1996)
## 23273 Monty Python and the Holy Grail (1974)
## 23896 Empire Strikes Back, The (1980)
## 24262 Princess Bride, The (1987)
## 24597 Raiders of the Lost Ark (1981)
## 26218 Return of the Jedi (1983)
## 26698 GoodFellas (1990)
## 29483 Dead Poets Society (1989)
## 30458 Evil Dead II (1987)
## 30833 Unforgiven (1992)
## 31029 Back to the Future (1985)
## 32022 Indiana Jones and the Last Crusade (1989)
## 35656 Young Guns (1988)
## 36455 Jerry Maguire (1996)
## 36827 Raising Arizona (1987)
## 37222 Beavis and Butt-head Do America (1996)
## 37806 Devil's Own, The (1997)
## 38039 Chasing Amy (1997)
## 38943 My Best Friend's Wedding (1997)
## 39472 Contact (1997)
## 40474 Hunt for Red October, The (1990)
## 41603 Heat (1995)
## 41823 Sabrina (1995)
## 42019 Sense and Sensibility (1995)
## 42295 Leaving Las Vegas (1995)
## 42970 Time to Kill, A (1996)
## 44317 Scream (1996)
## 45022 Fierce Creatures (1997)
## 45542 Liar Liar (1997)
## 46415 Air Force One (1997)
## 47928 Rainmaker, The (1997)
## 48142 Midnight in the Garden of Good and Evil (1997)
## 48242 Titanic (1997)
## 48578 Apt Pupil (1998)
## 49614 Murder at 1600 (1997)
## 50321 G.I. Jane (1997)
## 50688 Conspiracy Theory (1997)
## 50959 Desperate Measures (1998)
## 51046 Edge, The (1997)
## 51161 Kiss the Girls (1997)
## 51703 Bean (1997)
## 52034 Man Who Knew Too Little, The (1997)
## 52267 Deconstructing Harry (1997)
## 52334 Jackie Brown (1997)
## 52730 Wedding Singer, The (1998)
## 53209 Spawn (1997)
## 53409 Sudden Death (1995)
## 53606 Clueless (1995)
## 53792 Black Sheep (1996)
## 55769 Ghost (1990)
## 55941 Batman (1989)
## 56264 Mission: Impossible (1996)
## 56572 Thinner (1996)
## 56781 Jack (1996)
## 56853 Kingpin (1996)
## 57266 Tales from the Crypt Presents: Bordello of Blood (1996)
## 57936 William Shakespeare's Romeo and Juliet (1996)
## 59372 Heathers (1989)
## 61034 Beverly Hills Ninja (1997)
## 62010 Courage Under Fire (1996)
## 62225 Dragonheart (1996)
## 62384 James and the Giant Peach (1996)
## 62716 Trainspotting (1996)
## 66086 People vs. Larry Flynt, The (1996)
## 69250 Things to Do in Denver when You're Dead (1995)
## 69358 Broken Arrow (1996)
## 72265 Primal Fear (1996)
## 72456 Fan, The (1996)
## 72664 Eraser (1996)
## 73823 Extreme Measures (1996)
## 74212 Sleepers (1996)
## 75563 Glory (1989)
## 77513 Crucible, The (1996)
## 77605 Volcano (1997)
## 77943 I Know What You Did Last Summer (1997)
## 78270 Executive Decision (1996)
## 79091 Persuasion (1995)
## 81756 Last Supper, The (1995)
## 81830 Ransom (1996)
## 82463 Saint, The (1997)
## 82943 Tomorrow Never Dies (1997)
## 83590 Beautiful Girls (1996)
## 83707 Happy Gilmore (1996)
## 84369 Dumb & Dumber (1994)
## 84638 Swimming with Sharks (1995)
## 85407 One Fine Day (1996)
## 86015 Daylight (1996)
## 86083 Fled (1996)
## 86596 That Thing You Do! (1996)
## 87395 Vegas Vacation (1997)
## 87504 Picture Perfect (1997)
## 88351 Scream 2 (1997)
## 89231 Down Periscope (1996)
## 89556 Island of Dr. Moreau, The (1996)
## 90745 Some Folks Call It a Sling Blade (1993)
## 91053 Fear (1996)
## 91157 Heaven's Prisoners (1996)
## 92349 Con Air (1997)
## 93525 Multiplicity (1996)
## 93653 She's the One (1996)
## 93829 Dracula: Dead and Loving It (1995)
## 94186 Bottle Rocket (1996)
## 94503 Joe's Apartment (1996)
## 95306 Some Kind of Wonderful (1987)
## 95519 Feeling Minnesota (1996)
## 39473 Contact (1997)
## 40680 Kull the Conqueror (1997)
## 40753 Full Monty, The (1997)
## 41046 Gattaca (1997)
## 41190 Starship Troopers (1997)
## 41397 Good Will Hunting (1997)
## 43757 English Patient, The (1996)
## 44318 Scream (1996)
## 44780 Evita (1996)
## 45240 Rosewood (1997)
## 45543 Liar Liar (1997)
## 46416 Air Force One (1997)
## 47066 L.A. Confidential (1997)
## 47929 Rainmaker, The (1997)
## 48243 Titanic (1997)
## 48579 Apt Pupil (1998)
## 48736 As Good As It Gets (1997)
## 49450 Mother (1996)
## 49840 Dante's Peak (1997)
## 50322 G.I. Jane (1997)
## 50689 Conspiracy Theory (1997)
## 51318 Game, The (1997)
## 51846 Boogie Nights (1997)
## 52035 Man Who Knew Too Little, The (1997)
## 52209 Apostle, The (1997)
## 52335 Jackie Brown (1997)
## 52464 Wag the Dog (1997)
## 52592 Hard Rain (1998)
## 52731 Wedding Singer, The (1998)
## 52797 Sphere (1998)
## 77606 Volcano (1997)
## 78579 Jackal, The (1997)
## 78676 Seven Years in Tibet (1997)
## 78818 Dark City (1998)
## 82815 Amistad (1997)
## 82944 Tomorrow Never Dies (1997)
## 83112 Replacement Killers, The (1998)
## 87585 Career Girls (1997)
## 87817 Peacemaker, The (1997)
## 87947 Soul Food (1997)
## 88056 Phantoms (1998)
## 88072 Life Less Ordinary, A (1997)
## 88123 Eve's Bayou (1997)
## 88266 Flubber (1997)
## 88352 Scream 2 (1997)
## 88503 Postman, The (1997)
## 88571 Kundun (1997)
## 88702 Great Expectations (1998)
## 88751 Half Baked (1998)
## 91496 Anna Karenina (1997)
## 97218 Nenette et Boni (1996)
## 97224 Chairman of the Board (1998)
## 97232 Big Bang Theory, The (1994)
## 97233 Other Voices, Other Rooms (1997)
## 97234 Twisted (1996)
## 97240 Full Speed (1996)
## 52 Toy Story (1995)
## 1052 Twelve Monkeys (1995)
## 4023 Rumble in the Bronx (1995)
## 6470 Star Wars (1977)
## 15312 Mystery Science Theater 3000: The Movie (1996)
## 15489 Truth About Cats & Dogs, The (1996)
## 15992 Rock, The (1996)
## 16372 Twister (1996)
## 16756 Independence Day (ID4) (1996)
## 17142 Cable Guy, The (1996)
## 17253 Frighteners, The (1996)
## 17568 Phenomenon (1996)
## 20571 Long Kiss Goodnight, The (1996)
## 21092 Willy Wonka and the Chocolate Factory (1971)
## 26219 Return of the Jedi (1983)
## 33951 Star Trek: First Contact (1996)
## 34473 101 Dalmatians (1996)
## 36456 Jerry Maguire (1996)
## 38700 Lost World: Jurassic Park, The (1997)
## 38944 My Best Friend's Wedding (1997)
## 39150 Men in Black (1997)
## 42635 Bed of Roses (1996)
## 42727 Up Close and Personal (1996)
## 42820 River Wild, The (1994)
## 42971 Time to Kill, A (1996)
## 43379 Tin Cup (1996)
## 44319 Scream (1996)
## 47347 Fly Away Home (1996)
## 53793 Black Sheep (1996)
## 53847 Mary Reilly (1996)
## 56265 Mission: Impossible (1996)
## 57023 Nutty Professor, The (1996)
## 57175 Very Brady Sequel, A (1996)
## 62011 Courage Under Fire (1996)
## 62226 Dragonheart (1996)
## 69359 Broken Arrow (1996)
## 72457 Fan, The (1996)
## 72529 Hunchback of Notre Dame, The (1996)
## 72665 Eraser (1996)
## 80286 Juror, The (1996)
## 81831 Ransom (1996)
## 83340 Father of the Bride Part II (1995)
## 83708 Happy Gilmore (1996)
## 85408 One Fine Day (1996)
## 85558 Eddie (1996)
## 85614 Space Jam (1996)
## 85936 Phantom, The (1996)
## 86084 Fled (1996)
## 86121 Escape from L.A. (1996)
## 86379 Last Man Standing (1996)
## 86434 Glimmer Man, The (1996)
## 86597 That Thing You Do! (1996)
## 86756 To Gillian on Her 37th Birthday (1996)
## 87236 Michael (1996)
## 89104 White Squall (1996)
## 89232 Down Periscope (1996)
## 89331 Craft, The (1996)
## 91054 Fear (1996)
## 91185 Trigger Effect, The (1996)
## 91896 Stealing Beauty (1996)
## 92807 Grumpier Old Men (1995)
## 93027 Quest, The (1996)
## 93526 Multiplicity (1996)
## 93787 Associate, The (1996)
## 93920 Pallbearer, The (1996)
## 94778 Live Nude Girls (1995)
## 95520 Feeling Minnesota (1996)
## 53 Toy Story (1995)
## 466 GoldenEye (1995)
## 695 Get Shorty (1995)
## 891 Copycat (1995)
## 1053 Twelve Monkeys (1995)
## 2019 Seven (Se7en) (1995)
## 2525 Mighty Aphrodite (1995)
## 4885 Batman Forever (1995)
## 5409 Net, The (1995)
## 6087 Ed Wood (1994)
## 6331 I.Q. (1994)
## 6471 Star Wars (1977)
## 7170 Natural Born Killers (1994)
## 7403 Professional, The (1994)
## 7585 Pulp Fiction (1994)
## 8369 Stargate (1994)
## 8976 While You Were Sleeping (1995)
## 9132 Ace Ventura: Pet Detective (1994)
## 9240 Crow, The (1994)
## 9715 Four Weddings and a Funeral (1994)
## 10164 Mask, The (1994)
## 10295 Maverick (1994)
## 10705 Fugitive, The (1993)
## 11206 Jurassic Park (1993)
## 11452 Much Ado About Nothing (1993)
## 11995 Sleepless in Seattle (1993)
## 12221 Blade Runner (1982)
## 12575 Nightmare Before Christmas, The (1993)
## 12933 Home Alone (1990)
## 13078 Aladdin (1992)
## 13305 Terminator 2: Judgment Day (1991)
## 13870 Silence of the Lambs, The (1991)
## 14232 Snow White and the Seven Dwarfs (1937)
## 14903 Heavy Metal (1981)
## 14977 Aristocats, The (1970)
## 15993 Rock, The (1996)
## 16373 Twister (1996)
## 16757 Independence Day (ID4) (1996)
## 17923 Godfather, The (1972)
## 20264 Die Hard (1988)
## 21489 Fish Called Wanda, A (1988)
## 21723 Monty Python's Life of Brian (1979)
## 22508 Top Gun (1986)
## 22816 Return of the Pink Panther, The (1974)
## 22911 Abyss, The (1989)
## 23179 Private Benjamin (1980)
## 23274 Monty Python and the Holy Grail (1974)
## 23897 Empire Strikes Back, The (1980)
## 24263 Princess Bride, The (1987)
## 24598 Raiders of the Lost Ark (1981)
## 25002 Brazil (1985)
## 25208 Aliens (1986)
## 26220 Return of the Jedi (1983)
## 26699 GoodFellas (1990)
## 26928 Alien (1979)
## 27200 Army of Darkness (1993)
## 27332 Psycho (1960)
## 27569 Blues Brothers, The (1980)
## 27813 Godfather: Part II, The (1974)
## 28022 Full Metal Jacket (1987)
## 28948 Sting, The (1973)
## 29191 Terminator, The (1984)
## 30261 Shining, The (1980)
## 30459 Evil Dead II (1987)
## 30564 Groundhog Day (1993)
## 31030 Back to the Future (1985)
## 31622 Young Frankenstein (1974)
## 32023 Indiana Jones and the Last Crusade (1989)
## 32347 M*A*S*H (1970)
## 33379 Bram Stoker's Dracula (1992)
## 33500 Cape Fear (1991)
## 33671 Nightmare on Elm Street, A (1984)
## 33952 Star Trek: First Contact (1996)
## 34576 Die Hard 2 (1990)
## 34749 Star Trek VI: The Undiscovered Country (1991)
## 34921 Star Trek: The Wrath of Khan (1982)
## 35156 Star Trek III: The Search for Spock (1984)
## 35330 Star Trek IV: The Voyage Home (1986)
## 35520 Batman Returns (1992)
## 35760 Under Siege (1992)
## 35897 Jaws (1975)
## 36174 Mars Attacks! (1996)
## 37065 Sneakers (1992)
## 37377 Last of the Mohicans, The (1992)
## 37807 Devil's Own, The (1997)
## 38165 Grosse Pointe Blank (1997)
## 39474 Contact (1997)
## 40108 Event Horizon (1997)
## 40360 Mimic (1997)
## 40475 Hunt for Red October, The (1990)
## 40754 Full Monty, The (1997)
## 41191 Starship Troopers (1997)
## 41398 Good Will Hunting (1997)
## 41604 Heat (1995)
## 43758 English Patient, The (1996)
## 44320 Scream (1996)
## 45544 Liar Liar (1997)
## 46130 Face/Off (1997)
## 46417 Air Force One (1997)
## 46833 In & Out (1997)
## 47067 L.A. Confidential (1997)
## 47685 Devil's Advocate, The (1997)
## 48244 Titanic (1997)
## 48737 As Good As It Gets (1997)
## 49258 Everyone Says I Love You (1996)
## 49615 Murder at 1600 (1997)
## 50323 G.I. Jane (1997)
## 50500 Cop Land (1997)
## 50690 Conspiracy Theory (1997)
## 51162 Kiss the Girls (1997)
## 51554 U Turn (1997)
## 51704 Bean (1997)
## 52624 Fallen (1998)
## 53210 Spawn (1997)
## 53410 Sudden Death (1995)
## 53982 Judge Dredd (1995)
## 54599 Naked Gun 33 1/3: The Final Insult (1994)
## 54688 True Lies (1994)
## 54881 Addams Family Values (1993)
## 55093 Last Action Hero (1993)
## 55232 Mrs. Doubtfire (1993)
## 55480 Serial Mom (1994)
## 55573 Three Musketeers, The (1993)
## 55942 Batman (1989)
## 56266 Mission: Impossible (1996)
## 56782 Jack (1996)
## 57024 Nutty Professor, The (1996)
## 57554 Cinderella (1950)
## 59036 Highlander (1986)
## 59197 Fantasia (1940)
## 59613 Butch Cassidy and the Sundance Kid (1969)
## 59813 American Werewolf in London, An (1981)
## 60006 Birds, The (1963)
## 60156 Blob, The (1958)
## 60203 Body Snatcher, The (1945)
## 60243 Carrie (1976)
## 60359 Omen, The (1976)
## 60447 Star Trek: The Motion Picture (1979)
## 60560 Star Trek V: The Final Frontier (1989)
## 62958 First Wives Club, The (1996)
## 65481 Dumbo (1941)
## 65596 Bananas (1971)
## 66411 Magnificent Seven, The (1954)
## 66538 Lawrence of Arabia (1962)
## 67017 Boot, Das (1981)
## 67771 Down by Law (1986)
## 67974 Great Dictator, The (1940)
## 68629 Man Who Would Be King, The (1975)
## 69129 Mortal Kombat (1995)
## 69360 Broken Arrow (1996)
## 69625 NeverEnding Story III, The (1994)
## 69740 Die Hard: With a Vengeance (1995)
## 70019 Waterworld (1995)
## 70234 Interview with the Vampire (1994)
## 70546 Village of the Damned (1995)
## 70581 Clear and Present Danger (1994)
## 70805 Speed (1994)
## 71282 Cliffhanger (1993)
## 71373 Coneheads (1993)
## 71414 Demolition Man (1993)
## 72006 Beauty and the Beast (1991)
## 72530 Hunchback of Notre Dame, The (1996)
## 72666 Eraser (1996)
## 73553 Lost Horizon (1937)
## 74047 Sword in the Stone, The (1963)
## 74377 Victor/Victoria (1982)
## 74747 Fog, The (1980)
## 74777 Escape from New York (1981)
## 75485 Seventh Seal, The (Sjunde inseglet, Det) (1957)
## 75729 Rosencrantz and Guildenstern Are Dead (1990)
## 76015 Stand by Me (1986)
## 76921 Being There (1979)
## 77082 Alien 3 (1992)
## 77177 Audrey Rose (1977)
## 77212 Bride of Frankenstein (1935)
## 77259 Candyman (1992)
## 77457 Nosferatu (Nosferatu, eine Symphonie des Grauens) (1922)
## 78103 In the Line of Fire (1993)
## 78271 Executive Decision (1996)
## 78416 Perfect World, A (1993)
## 78580 Jackal, The (1997)
## 80411 First Knight (1995)
## 81011 Dave (1993)
## 81188 Made in America (1993)
## 82227 Real Genius (1985)
## 82464 Saint, The (1997)
## 82945 Tomorrow Never Dies (1997)
## 83496 Screamers (1995)
## 83931 Casper (1995)
## 84078 Johnny Mnemonic (1995)
## 84262 Don Juan DeMarco (1995)
## 84567 Only You (1994)
## 84764 Bullets Over Broadway (1994)
## 84957 Timecop (1994)
## 85217 Rising Sun (1993)
## 85262 Shadow, The (1994)
## 85726 Mulholland Falls (1996)
## 86016 Daylight (1996)
## 86122 Escape from L.A. (1996)
## 86380 Last Man Standing (1996)
## 86435 Glimmer Man, The (1996)
## 87022 Night on Earth (1991)
## 87237 Michael (1996)
## 87818 Peacemaker, The (1997)
## 88267 Flubber (1997)
## 89478 Chain Reaction (1996)
## 90204 Big Blue, The (Grand bleu, Le) (1988)
## 91350 Turbulence (1997)
## 91564 Hercules (1997)
## 92739 Fire Down Below (1997)
## 92953 Beverly Hillbillies, The (1993)
## 93830 Dracula: Dead and Loving It (1995)
## 94459 Pagemaster, The (1994)
## 97101 Under Siege 2: Dark Territory (1995)
## 97248 Cutthroat Island (1995)
## 97266 Ghost in the Shell (Kokaku kidotai) (1995)
## 4024 Rumble in the Bronx (1995)
## 6472 Star Wars (1977)
## 7586 Pulp Fiction (1994)
## 9398 Forrest Gump (1994)
## 13306 Terminator 2: Judgment Day (1991)
## 13871 Silence of the Lambs, The (1991)
## 15994 Rock, The (1996)
## 16374 Twister (1996)
## 16758 Independence Day (ID4) (1996)
## 17795 Spitfire Grill, The (1996)
## 17924 Godfather, The (1972)
## 20265 Die Hard (1988)
## 26221 Return of the Jedi (1983)
## 31031 Back to the Future (1985)
## 32348 M*A*S*H (1970)
## 33953 Star Trek: First Contact (1996)
## 35898 Jaws (1975)
## 38461 Fifth Element, The (1997)
## 38701 Lost World: Jurassic Park, The (1997)
## 38945 My Best Friend's Wedding (1997)
## 39151 Men in Black (1997)
## 45545 Liar Liar (1997)
## 46418 Air Force One (1997)
## 46834 In & Out (1997)
## 56267 Mission: Impossible (1996)
## 62012 Courage Under Fire (1996)
## 64418 Roman Holiday (1953)
## 68234 Gandhi (1982)
## 94650 Speed 2: Cruise Control (1997)
## 594 Four Rooms (1995)
## 1054 Twelve Monkeys (1995)
## 1642 Dead Man Walking (1995)
## 1915 Richard III (1995)
## 2526 Mighty Aphrodite (1995)
## 2900 Mr. Holland's Opus (1995)
## 4220 Birdcage, The (1996)
## 6473 Star Wars (1977)
## 14443 Fargo (1996)
## 15490 Truth About Cats & Dogs, The (1996)
## 15995 Rock, The (1996)
## 16759 Independence Day (ID4) (1996)
## 17143 Cable Guy, The (1996)
## 17371 Lone Star (1996)
## 17796 Spitfire Grill, The (1996)
## 17925 Godfather, The (1972)
## 18489 Kansas City (1996)
## 20572 Long Kiss Goodnight, The (1996)
## 20906 Swingers (1996)
## 26222 Return of the Jedi (1983)
## 33954 Star Trek: First Contact (1996)
## 36175 Mars Attacks! (1996)
## 36457 Jerry Maguire (1996)
## 37808 Devil's Own, The (1997)
## 38040 Chasing Amy (1997)
## 38166 Grosse Pointe Blank (1997)
## 38324 Austin Powers: International Man of Mystery (1997)
## 38462 Fifth Element, The (1997)
## 38946 My Best Friend's Wedding (1997)
## 39152 Men in Black (1997)
## 39475 Contact (1997)
## 40755 Full Monty, The (1997)
## 41047 Gattaca (1997)
## 41192 Starship Troopers (1997)
## 41399 Good Will Hunting (1997)
## 41605 Heat (1995)
## 42296 Leaving Las Vegas (1995)
## 42972 Time to Kill, A (1996)
## 43200 Emma (1996)
## 43569 Secrets & Lies (1996)
## 43759 English Patient, The (1996)
## 44202 Marvin's Room (1996)
## 44321 Scream (1996)
## 44781 Evita (1996)
## 45023 Fierce Creatures (1997)
## 45351 Donnie Brasco (1997)
## 45546 Liar Liar (1997)
## 46312 Hoodlum (1997)
## 46419 Air Force One (1997)
## 46835 In & Out (1997)
## 47068 L.A. Confidential (1997)
## 47686 Devil's Advocate, The (1997)
## 47930 Rainmaker, The (1997)
## 48066 Wings of the Dove, The (1997)
## 48143 Midnight in the Garden of Good and Evil (1997)
## 48245 Titanic (1997)
## 48738 As Good As It Gets (1997)
## 50068 Lost Highway (1997)
## 50192 Crash (1996)
## 50501 Cop Land (1997)
## 50691 Conspiracy Theory (1997)
## 51001 187 (1997)
## 51047 Edge, The (1997)
## 51163 Kiss the Girls (1997)
## 51319 Game, The (1997)
## 51847 Boogie Nights (1997)
## 52036 Man Who Knew Too Little, The (1997)
## 52268 Deconstructing Harry (1997)
## 52336 Jackie Brown (1997)
## 52465 Wag the Dog (1997)
## 52732 Wedding Singer, The (1998)
## 56268 Mission: Impossible (1996)
## 56616 Spy Hard (1996)
## 57025 Nutty Professor, The (1996)
## 57176 Very Brady Sequel, A (1996)
## 61035 Beverly Hills Ninja (1997)
## 62013 Courage Under Fire (1996)
## 62717 Trainspotting (1996)
## 66087 People vs. Larry Flynt, The (1996)
## 68865 Traveller (1997)
## 69251 Things to Do in Denver when You're Dead (1995)
## 69361 Broken Arrow (1996)
## 72266 Primal Fear (1996)
## 74213 Sleepers (1996)
## 77607 Volcano (1997)
## 80052 Othello (1995)
## 82118 Michael Collins (1996)
## 82465 Saint, The (1997)
## 82816 Amistad (1997)
## 82946 Tomorrow Never Dies (1997)
## 83341 Father of the Bride Part II (1995)
## 85727 Mulholland Falls (1996)
## 85854 Arrival, The (1996)
## 86017 Daylight (1996)
## 86381 Last Man Standing (1996)
## 86598 That Thing You Do! (1996)
## 86800 Looking for Richard (1996)
## 87396 Vegas Vacation (1997)
## 88353 Scream 2 (1997)
## 89233 Down Periscope (1996)
## 91285 Shadow Conspiracy (1997)
## 91957 Basquiat (1996)
## 92002 2 Days in the Valley (1996)
## 92097 Private Parts (1997)
## 92350 Con Air (1997)
## 92479 Trees Lounge (1996)
## 92808 Grumpier Old Men (1995)
## 95196 Twelfth Night (1996)
## 97061 Night Falls on Manhattan (1997)
## 97292 Van, The (1996)
## 39476 Contact (1997)
## 40361 Mimic (1997)
## 40756 Full Monty, The (1997)
## 41048 Gattaca (1997)
## 41193 Starship Troopers (1997)
## 41400 Good Will Hunting (1997)
## 43760 English Patient, The (1996)
## 44322 Scream (1996)
## 47069 L.A. Confidential (1997)
## 47687 Devil's Advocate, The (1997)
## 48246 Titanic (1997)
## 50069 Lost Highway (1997)
## 50502 Cop Land (1997)
## 51320 Game, The (1997)
## 51848 Boogie Nights (1997)
## 52095 Alien: Resurrection (1997)
## 52466 Wag the Dog (1997)
## 78677 Seven Years in Tibet (1997)
## 82466 Saint, The (1997)
## 82947 Tomorrow Never Dies (1997)
## 83113 Replacement Killers, The (1998)
## 87948 Soul Food (1997)
## 54 Toy Story (1995)
## 1414 Babe (1995)
## 1643 Dead Man Walking (1995)
## 2259 Usual Suspects, The (1995)
## 2701 Postino, Il (1994)
## 2901 Mr. Holland's Opus (1995)
## 3552 Braveheart (1995)
## 4221 Birdcage, The (1996)
## 4635 Apollo 13 (1995)
## 5975 Eat Drink Man Woman (1994)
## 6220 Hoop Dreams (1994)
## 8160 Three Colors: Red (1994)
## 8602 Shawshank Redemption, The (1994)
## 9399 Forrest Gump (1994)
## 9716 Four Weddings and a Funeral (1994)
## 10491 Firm, The (1993)
## 11207 Jurassic Park (1993)
## 11702 Remains of the Day, The (1993)
## 11996 Sleepless in Seattle (1993)
## 13596 Dances with Wolves (1990)
## 14444 Fargo (1996)
## 15190 Moll Flanders (1996)
## 22509 Top Gun (1986)
## 22712 On Golden Pond (1981)
## 23053 Jean de Florette (1986)
## 28398 Amadeus (1984)
## 28949 Sting, The (1973)
## 29484 Dead Poets Society (1989)
## 32024 Indiana Jones and the Last Crusade (1989)
## 32349 M*A*S*H (1970)
## 32631 Room with a View, A (1986)
## 33112 When Harry Met Sally... (1989)
## 34286 Sling Blade (1996)
## 37739 Smilla's Sense of Snow (1997)
## 41606 Heat (1995)
## 41824 Sabrina (1995)
## 42020 Sense and Sensibility (1995)
## 42728 Up Close and Personal (1996)
## 43570 Secrets & Lies (1996)
## 43761 English Patient, The (1996)
## 48247 Titanic (1997)
## 48977 Schindler's List (1993)
## 59614 Butch Cassidy and the Sundance Kid (1969)
## 61478 Secret of Roan Inish, The (1994)
## 64900 Around the World in 80 Days (1956)
## 68100 Ben-Hur (1959)
## 70582 Clear and Present Danger (1994)
## 71628 Piano, The (1993)
## 71822 Secret Garden, The (1993)
## 75297 Ran (1985)
## 76602 Fried Green Tomatoes (1991)
## 78104 In the Line of Fire (1993)
## 78855 American President, The (1995)
## 79285 Little Women (1994)
## 79456 Widows' Peak (1994)
## 80001 Tin Men (1987)
## 81532 Pretty Woman (1990)
## 84263 Don Juan DeMarco (1995)
## 86070 Alaska (1996)
## 89048 Raise the Red Lantern (1991)
## 90537 Nobody's Fool (1994)
## 92809 Grumpier Old Men (1995)
## 95197 Twelfth Night (1996)
## 97298 Old Lady Who Walked in the Sea, The (Vieille qui marchait dans la mer, La) (1991)
## 39477 Contact (1997)
## 39951 George of the Jungle (1997)
## 40362 Mimic (1997)
## 40757 Full Monty, The (1997)
## 41194 Starship Troopers (1997)
## 43762 English Patient, The (1996)
## 44323 Scream (1996)
## 46420 Air Force One (1997)
## 47070 L.A. Confidential (1997)
## 47490 Ice Storm, The (1997)
## 48144 Midnight in the Garden of Good and Evil (1997)
## 48248 Titanic (1997)
## 49451 Mother (1996)
## 49616 Murder at 1600 (1997)
## 49841 Dante's Peak (1997)
## 50193 Crash (1996)
## 50503 Cop Land (1997)
## 51321 Game, The (1997)
## 51849 Boogie Nights (1997)
## 88622 Big Lebowski, The (1998)
## 97303 Night Flier (1997)
## 55 Toy Story (1995)
## 1055 Twelve Monkeys (1995)
## 1916 Richard III (1995)
## 2527 Mighty Aphrodite (1995)
## 2702 Postino, Il (1994)
## 3451 Muppet Treasure Island (1996)
## 6474 Star Wars (1977)
## 14445 Fargo (1996)
## 16760 Independence Day (ID4) (1996)
## 17372 Lone Star (1996)
## 17569 Phenomenon (1996)
## 17926 Godfather, The (1972)
## 19603 Big Night (1996)
## 26223 Return of the Jedi (1983)
## 33955 Star Trek: First Contact (1996)
## 36458 Jerry Maguire (1996)
## 38702 Lost World: Jurassic Park, The (1997)
## 38947 My Best Friend's Wedding (1997)
## 42021 Sense and Sensibility (1995)
## 42821 River Wild, The (1994)
## 42973 Time to Kill, A (1996)
## 43380 Tin Cup (1996)
## 45024 Fierce Creatures (1997)
## 45547 Liar Liar (1997)
## 47348 Fly Away Home (1996)
## 49259 Everyone Says I Love You (1996)
## 56269 Mission: Impossible (1996)
## 62014 Courage Under Fire (1996)
## 67018 Boot, Das (1981)
## 80359 In the Bleak Midwinter (1995)
## 81687 Jane Eyre (1996)
## 82467 Saint, The (1997)
## 89557 Island of Dr. Moreau, The (1996)
## 56 Toy Story (1995)
## 696 Get Shorty (1995)
## 892 Copycat (1995)
## 1056 Twelve Monkeys (1995)
## 1415 Babe (1995)
## 1644 Dead Man Walking (1995)
## 2020 Seven (Se7en) (1995)
## 2260 Usual Suspects, The (1995)
## 2902 Mr. Holland's Opus (1995)
## 3206 From Dusk Till Dawn (1996)
## 3553 Braveheart (1995)
## 4222 Birdcage, The (1996)
## 4636 Apollo 13 (1995)
## 4886 Batman Forever (1995)
## 5042 Crimson Tide (1995)
## 5718 Clerks (1994)
## 6475 Star Wars (1977)
## 7171 Natural Born Killers (1994)
## 7296 Outbreak (1995)
## 7404 Professional, The (1994)
## 7587 Pulp Fiction (1994)
## 7990 Quiz Show (1994)
## 8370 Stargate (1994)
## 8493 Santa Clause, The (1994)
## 8603 Shawshank Redemption, The (1994)
## 9133 Ace Ventura: Pet Detective (1994)
## 9241 Crow, The (1994)
## 9400 Forrest Gump (1994)
## 9717 Four Weddings and a Funeral (1994)
## 9959 Lion King, The (1994)
## 10165 Mask, The (1994)
## 10492 Firm, The (1993)
## 10706 Fugitive, The (1993)
## 11077 Hudsucker Proxy, The (1994)
## 11208 Jurassic Park (1993)
## 11997 Sleepless in Seattle (1993)
## 12222 Blade Runner (1982)
## 12475 So I Married an Axe Murderer (1993)
## 12576 Nightmare Before Christmas, The (1993)
## 12934 Home Alone (1990)
## 13079 Aladdin (1992)
## 13307 Terminator 2: Judgment Day (1991)
## 13597 Dances with Wolves (1990)
## 13872 Silence of the Lambs, The (1991)
## 14446 Fargo (1996)
## 14904 Heavy Metal (1981)
## 15491 Truth About Cats & Dogs, The (1996)
## 15996 Rock, The (1996)
## 16375 Twister (1996)
## 16761 Independence Day (ID4) (1996)
## 17144 Cable Guy, The (1996)
## 17570 Phenomenon (1996)
## 17927 Godfather, The (1972)
## 18523 Breakfast at Tiffany's (1961)
## 20266 Die Hard (1988)
## 20573 Long Kiss Goodnight, The (1996)
## 21093 Willy Wonka and the Chocolate Factory (1971)
## 21724 Monty Python's Life of Brian (1979)
## 21992 Reservoir Dogs (1992)
## 22136 Platoon (1986)
## 22255 Weekend at Bernie's (1989)
## 22317 Basic Instinct (1992)
## 22510 Top Gun (1986)
## 22713 On Golden Pond (1981)
## 22912 Abyss, The (1989)
## 23275 Monty Python and the Holy Grail (1974)
## 23898 Empire Strikes Back, The (1980)
## 24264 Princess Bride, The (1987)
## 24599 Raiders of the Lost Ark (1981)
## 25003 Brazil (1985)
## 25209 Aliens (1986)
## 25476 Good, The Bad and The Ugly, The (1966)
## 25612 12 Angry Men (1957)
## 25743 Clockwork Orange, A (1971)
## 25966 Apocalypse Now (1979)
## 26224 Return of the Jedi (1983)
## 26929 Alien (1979)
## 27570 Blues Brothers, The (1980)
## 28399 Amadeus (1984)
## 29192 Terminator, The (1984)
## 29485 Dead Poets Society (1989)
## 30262 Shining, The (1980)
## 30565 Groundhog Day (1993)
## 31032 Back to the Future (1985)
## 31822 This Is Spinal Tap (1984)
## 32025 Indiana Jones and the Last Crusade (1989)
## 32350 M*A*S*H (1970)
## 32761 Pink Floyd - The Wall (1982)
## 32889 Field of Dreams (1989)
## 33113 When Harry Met Sally... (1989)
## 33501 Cape Fear (1991)
## 33956 Star Trek: First Contact (1996)
## 34287 Sling Blade (1996)
## 34577 Die Hard 2 (1990)
## 34750 Star Trek VI: The Undiscovered Country (1991)
## 34922 Star Trek: The Wrath of Khan (1982)
## 35157 Star Trek III: The Search for Spock (1984)
## 35331 Star Trek IV: The Voyage Home (1986)
## 35521 Batman Returns (1992)
## 35761 Under Siege (1992)
## 35899 Jaws (1975)
## 36459 Jerry Maguire (1996)
## 36828 Raising Arizona (1987)
## 37066 Sneakers (1992)
## 37809 Devil's Own, The (1997)
## 38167 Grosse Pointe Blank (1997)
## 38463 Fifth Element, The (1997)
## 38703 Lost World: Jurassic Park, The (1997)
## 39153 Men in Black (1997)
## 39478 Contact (1997)
## 40476 Hunt for Red October, The (1990)
## 42636 Bed of Roses (1996)
## 42822 River Wild, The (1994)
## 42974 Time to Kill, A (1996)
## 44324 Scream (1996)
## 45116 Absolute Power (1997)
## 45548 Liar Liar (1997)
## 45986 Breakdown (1997)
## 48853 In the Name of the Father (1993)
## 48978 Schindler's List (1993)
## 49617 Murder at 1600 (1997)
## 49842 Dante's Peak (1997)
## 51164 Kiss the Girls (1997)
## 52847 Client, The (1994)
## 52963 One Flew Over the Cuckoo's Nest (1975)
## 53211 Spawn (1997)
## 53495 Powder (1995)
## 53607 Clueless (1995)
## 53983 Judge Dredd (1995)
## 54246 Star Trek: Generations (1994)
## 54689 True Lies (1994)
## 54882 Addams Family Values (1993)
## 55022 Beverly Hills Cop III (1994)
## 55094 Last Action Hero (1993)
## 55155 Man Without a Face, The (1993)
## 55233 Mrs. Doubtfire (1993)
## 55422 Robin Hood: Men in Tights (1993)
## 55770 Ghost (1990)
## 55943 Batman (1989)
## 56270 Mission: Impossible (1996)
## 56783 Jack (1996)
## 56854 Kingpin (1996)
## 57026 Nutty Professor, The (1996)
## 57267 Tales from the Crypt Presents: Bordello of Blood (1996)
## 58091 E.T. the Extra-Terrestrial (1982)
## 58386 Bob Roberts (1992)
## 59037 Highlander (1986)
## 59937 Amityville Horror, The (1979)
## 60448 Star Trek: The Motion Picture (1979)
## 60633 Grease (1978)
## 60790 Jaws 2 (1978)
## 62227 Dragonheart (1996)
## 62718 Trainspotting (1996)
## 62959 First Wives Club, The (1996)
## 66088 People vs. Larry Flynt, The (1996)
## 67535 Great Escape, The (1963)
## 68235 Gandhi (1982)
## 68713 Shine (1996)
## 69179 Pocahontas (1995)
## 69317 Vampire in Brooklyn (1995)
## 69362 Broken Arrow (1996)
## 69741 Die Hard: With a Vengeance (1995)
## 69905 Species (1995)
## 70235 Interview with the Vampire (1994)
## 70521 Tales from the Hood (1995)
## 70583 Clear and Present Danger (1994)
## 70806 Speed (1994)
## 71157 Blown Away (1994)
## 71283 Cliffhanger (1993)
## 71823 Secret Garden, The (1993)
## 72007 Beauty and the Beast (1991)
## 72458 Fan, The (1996)
## 72667 Eraser (1996)
## 74130 Robin Hood: Prince of Thieves (1991)
## 74214 Sleepers (1996)
## 74485 Crying Game, The (1992)
## 74778 Escape from New York (1981)
## 76016 Stand by Me (1986)
## 77083 Alien 3 (1992)
## 77260 Candyman (1992)
## 77815 Conan the Barbarian (1981)
## 80140 To Die For (1995)
## 80548 Nine Months (1995)
## 81012 Dave (1993)
## 81229 Philadelphia (1993)
## 81533 Pretty Woman (1990)
## 81832 Ransom (1996)
## 82468 Saint, The (1997)
## 83240 Jumanji (1995)
## 83591 Beautiful Girls (1996)
## 83709 Happy Gilmore (1996)
## 84682 Tommy Boy (1995)
## 84920 Speechless (1994)
## 84958 Timecop (1994)
## 85218 Rising Sun (1993)
## 85263 Shadow, The (1994)
## 85615 Space Jam (1996)
## 85728 Mulholland Falls (1996)
## 85937 Phantom, The (1996)
## 86123 Escape from L.A. (1996)
## 86282 Halloween: The Curse of Michael Myers (1995)
## 86599 That Thing You Do! (1996)
## 86863 Days of Thunder (1990)
## 87238 Michael (1996)
## 87397 Vegas Vacation (1997)
## 89105 White Squall (1996)
## 89332 Craft, The (1996)
## 89479 Chain Reaction (1996)
## 89558 Island of Dr. Moreau, The (1996)
## 89897 Airheads (1994)
## 90063 Renaissance Man (1994)
## 90272 How to Make an American Quilt (1995)
## 91055 Fear (1996)
## 91351 Turbulence (1997)
## 92003 2 Days in the Valley (1996)
## 92098 Private Parts (1997)
## 92191 Anaconda (1997)
## 92231 Romy and Michele's High School Reunion (1997)
## 92351 Con Air (1997)
## 92695 Fathers' Day (1997)
## 92810 Grumpier Old Men (1995)
## 93058 Cool Runnings (1993)
## 93189 Hamlet (1996)
## 93994 Adventures of Pinocchio, The (1996)
## 94383 Reality Bites (1994)
## 95620 Doors, The (1991)
## 95728 Hackers (1995)
## 95997 Relic, The (1997)
## 96062 Palookaville (1996)
## 96746 Virtuosity (1995)
## 97007 Judgment Night (1993)
## 97102 Under Siege 2: Dark Territory (1995)
## 97310 Metro (1997)
## 97346 Gridlock'd (1997)
## 467 GoldenEye (1995)
## 2021 Seven (Se7en) (1995)
## 2261 Usual Suspects, The (1995)
## 3554 Braveheart (1995)
## 4637 Apollo 13 (1995)
## 4887 Batman Forever (1995)
## 5043 Crimson Tide (1995)
## 5271 Desperado (1995)
## 5410 Net, The (1995)
## 5664 Billy Madison (1995)
## 5851 Disclosure (1994)
## 7297 Outbreak (1995)
## 7405 Professional, The (1994)
## 7588 Pulp Fiction (1994)
## 8494 Santa Clause, The (1994)
## 8604 Shawshank Redemption, The (1994)
## 9134 Ace Ventura: Pet Detective (1994)
## 9242 Crow, The (1994)
## 9401 Forrest Gump (1994)
## 10493 Firm, The (1993)
## 10707 Fugitive, The (1993)
## 11209 Jurassic Park (1993)
## 11998 Sleepless in Seattle (1993)
## 12935 Home Alone (1990)
## 13308 Terminator 2: Judgment Day (1991)
## 22511 Top Gun (1986)
## 24265 Princess Bride, The (1987)
## 27201 Army of Darkness (1993)
## 28023 Full Metal Jacket (1987)
## 29193 Terminator, The (1984)
## 29486 Dead Poets Society (1989)
## 30566 Groundhog Day (1993)
## 31033 Back to the Future (1985)
## 32537 Unbearable Lightness of Being, The (1988)
## 32890 Field of Dreams (1989)
## 34578 Die Hard 2 (1990)
## 35332 Star Trek IV: The Voyage Home (1986)
## 35522 Batman Returns (1992)
## 35657 Young Guns (1988)
## 35762 Under Siege (1992)
## 36829 Raising Arizona (1987)
## 37810 Devil's Own, The (1997)
## 39479 Contact (1997)
## 41401 Good Will Hunting (1997)
## 44325 Scream (1996)
## 45549 Liar Liar (1997)
## 46421 Air Force One (1997)
## 46836 In & Out (1997)
## 47688 Devil's Advocate, The (1997)
## 48249 Titanic (1997)
## 48580 Apt Pupil (1998)
## 50194 Crash (1996)
## 50324 G.I. Jane (1997)
## 50504 Cop Land (1997)
## 51165 Kiss the Girls (1997)
## 51322 Game, The (1997)
## 51705 Bean (1997)
## 51850 Boogie Nights (1997)
## 53455 Ace Ventura: When Nature Calls (1995)
## 53541 Dangerous Minds (1995)
## 53608 Clueless (1995)
## 54057 Houseguest (1994)
## 54600 Naked Gun 33 1/3: The Final Insult (1994)
## 54690 True Lies (1994)
## 55234 Mrs. Doubtfire (1993)
## 55528 Striking Distance (1993)
## 55682 Brady Bunch Movie, The (1995)
## 55771 Ghost (1990)
## 55944 Batman (1989)
## 57937 William Shakespeare's Romeo and Juliet (1996)
## 58092 E.T. the Extra-Terrestrial (1982)
## 60634 Grease (1978)
## 61752 Rudy (1993)
## 69085 Money Train (1995)
## 69742 Die Hard: With a Vengeance (1995)
## 70584 Clear and Present Danger (1994)
## 70807 Speed (1994)
## 71017 Wolf (1994)
## 71236 City Slickers II: The Legend of Curly's Gold (1994)
## 71284 Cliffhanger (1993)
## 71415 Demolition Man (1993)
## 71900 Son in Law (1993)
## 71938 Terminal Velocity (1994)
## 75103 Grifters, The (1990)
## 75564 Glory (1989)
## 76397 Pump Up the Volume (1990)
## 77944 I Know What You Did Last Summer (1997)
## 78105 In the Line of Fire (1993)
## 78535 Leave It to Beaver (1997)
## 78581 Jackal, The (1997)
## 78856 American President, The (1995)
## 80141 To Die For (1995)
## 80549 Nine Months (1995)
## 81013 Dave (1993)
## 81189 Made in America (1993)
## 81534 Pretty Woman (1990)
## 82469 Saint, The (1997)
## 82948 Tomorrow Never Dies (1997)
## 83480 Fair Game (1995)
## 83876 Boomerang (1992)
## 84332 Drop Zone (1994)
## 84370 Dumb & Dumber (1994)
## 84529 Milk Money (1994)
## 84683 Tommy Boy (1995)
## 84749 Baby-Sitters Club, The (1995)
## 84856 It Could Happen to You (1994)
## 85044 Hard Target (1993)
## 85129 Menace II Society (1993)
## 85187 Program, The (1993)
## 86864 Days of Thunder (1990)
## 87505 Picture Perfect (1997)
## 88354 Scream 2 (1997)
## 88703 Great Expectations (1998)
## 89839 Murder in the First (1995)
## 90064 Renaissance Man (1994)
## 90205 Big Blue, The (Grand bleu, Le) (1988)
## 93899 Simple Twist of Fate, A (1994)
## 94686 Sliver (1993)
## 96304 Man of the House (1995)
## 96333 Cops and Robbersons (1994)
## 96411 Young Guns II (1990)
## 96676 Amos & Andrew (1993)
## 96747 Virtuosity (1995)
## 96891 Friday (1995)
## 97008 Judgment Night (1993)
## 97103 Under Siege 2: Dark Territory (1995)
## 97149 Poison Ivy II (1995)
## 97180 Marked for Death (1990)
## 97365 Bushwhacked (1995)
## 97372 Bad Girls (1994)
## 97378 Blink (1994)
## 97397 For Love or Money (1993)
## 97409 Best of the Best 3: No Turning Back (1995)
## 37502 Kolya (1996)
## 39480 Contact (1997)
## 40758 Full Monty, The (1997)
## 41402 Good Will Hunting (1997)
## 43763 English Patient, The (1996)
## 46837 In & Out (1997)
## 47071 L.A. Confidential (1997)
## 47349 Fly Away Home (1996)
## 47491 Ice Storm, The (1997)
## 47689 Devil's Advocate, The (1997)
## 48067 Wings of the Dove, The (1997)
## 48250 Titanic (1997)
## 48581 Apt Pupil (1998)
## 49452 Mother (1996)
## 50325 G.I. Jane (1997)
## 50692 Conspiracy Theory (1997)
## 51323 Game, The (1997)
## 51851 Boogie Nights (1997)
## 52210 Apostle, The (1997)
## 52733 Wedding Singer, The (1998)
## 88124 Eve's Bayou (1997)
## 88456 Sweet Hereafter, The (1997)
## 92725 Mrs. Dalloway (1997)
## 37811 Devil's Own, The (1997)
## 39481 Contact (1997)
## 40759 Full Monty, The (1997)
## 41403 Good Will Hunting (1997)
## 43764 English Patient, The (1996)
## 44782 Evita (1996)
## 45550 Liar Liar (1997)
## 46422 Air Force One (1997)
## 46838 In & Out (1997)
## 47072 L.A. Confidential (1997)
## 47585 Mrs. Brown (Her Majesty, Mrs. Brown) (1997)
## 47690 Devil's Advocate, The (1997)
## 47931 Rainmaker, The (1997)
## 48145 Midnight in the Garden of Good and Evil (1997)
## 48251 Titanic (1997)
## 48582 Apt Pupil (1998)
## 48739 As Good As It Gets (1997)
## 49453 Mother (1996)
## 49618 Murder at 1600 (1997)
## 49843 Dante's Peak (1997)
## 50195 Crash (1996)
## 50505 Cop Land (1997)
## 50693 Conspiracy Theory (1997)
## 51048 Edge, The (1997)
## 51166 Kiss the Girls (1997)
## 51324 Game, The (1997)
## 51789 Mad City (1997)
## 52337 Jackie Brown (1997)
## 52467 Wag the Dog (1997)
## 52734 Wedding Singer, The (1998)
## 77608 Volcano (1997)
## 78582 Jackal, The (1997)
## 78678 Seven Years in Tibet (1997)
## 82470 Saint, The (1997)
## 82817 Amistad (1997)
## 82949 Tomorrow Never Dies (1997)
## 83177 Red Corner (1997)
## 87819 Peacemaker, The (1997)
## 88125 Eve's Bayou (1997)
## 88186 One Night Stand (1997)
## 88256 Bent (1997)
## 88664 Afterglow (1997)
## 89777 Thousand Acres, A (1997)
## 91286 Shadow Conspiracy (1997)
## 95046 Newton Boys, The (1998)
## 1057 Twelve Monkeys (1995)
## 1645 Dead Man Walking (1995)
## 6476 Star Wars (1977)
## 14447 Fargo (1996)
## 15855 Cold Comfort Farm (1995)
## 17373 Lone Star (1996)
## 17797 Spitfire Grill, The (1996)
## 17928 Godfather, The (1972)
## 33957 Star Trek: First Contact (1996)
## 36460 Jerry Maguire (1996)
## 37503 Kolya (1996)
## 37812 Devil's Own, The (1997)
## 38041 Chasing Amy (1997)
## 38948 My Best Friend's Wedding (1997)
## 39154 Men in Black (1997)
## 39482 Contact (1997)
## 40272 In the Company of Men (1997)
## 41607 Heat (1995)
## 42567 Restoration (1995)
## 43765 English Patient, The (1996)
## 44326 Scream (1996)
## 44783 Evita (1996)
## 45241 Rosewood (1997)
## 45551 Liar Liar (1997)
## 46313 Hoodlum (1997)
## 46423 Air Force One (1997)
## 49260 Everyone Says I Love You (1996)
## 49454 Mother (1996)
## 49619 Murder at 1600 (1997)
## 49844 Dante's Peak (1997)
## 50070 Lost Highway (1997)
## 50196 Crash (1996)
## 50326 G.I. Jane (1997)
## 50506 Cop Land (1997)
## 50694 Conspiracy Theory (1997)
## 50960 Desperate Measures (1998)
## 51325 Game, The (1997)
## 58360 Children of the Corn: The Gathering (1996)
## 66089 People vs. Larry Flynt, The (1996)
## 72459 Fan, The (1996)
## 77609 Volcano (1997)
## 81833 Ransom (1996)
## 87586 Career Girls (1997)
## 90224 Booty Call (1997)
## 91056 Fear (1996)
## 91096 Solo (1996)
## 91186 Trigger Effect, The (1996)
## 97415 A Chef in Love (1996)
## 97423 Contempt (Mepris, Le) (1963)
## 7589 Pulp Fiction (1994)
## 12223 Blade Runner (1982)
## 13309 Terminator 2: Judgment Day (1991)
## 13873 Silence of the Lambs, The (1991)
## 14448 Fargo (1996)
## 19256 2001: A Space Odyssey (1968)
## 21490 Fish Called Wanda, A (1988)
## 21993 Reservoir Dogs (1992)
## 22137 Platoon (1986)
## 23276 Monty Python and the Holy Grail (1974)
## 23802 Delicatessen (1991)
## 23899 Empire Strikes Back, The (1980)
## 25004 Brazil (1985)
## 25210 Aliens (1986)
## 25744 Clockwork Orange, A (1971)
## 25967 Apocalypse Now (1979)
## 26700 GoodFellas (1990)
## 26930 Alien (1979)
## 27571 Blues Brothers, The (1980)
## 28400 Amadeus (1984)
## 29194 Terminator, The (1984)
## 29731 Graduate, The (1967)
## 30263 Shining, The (1980)
## 31034 Back to the Future (1985)
## 32026 Indiana Jones and the Last Crusade (1989)
## 34414 Ridicule (1996)
## 40760 Full Monty, The (1997)
## 48979 Schindler's List (1993)
## 52964 One Flew Over the Cuckoo's Nest (1975)
## 62516 Dr. Strangelove or: How I Learned to Stop Worrying and Love the Bomb (1963)
## 63730 Some Like It Hot (1959)
## 63867 Casablanca (1942)
## 64235 My Fair Lady (1964)
## 64975 It's a Wonderful Life (1946)
## 65812 Dial M for Murder (1954)
## 65976 Streetcar Named Desire, A (1951)
## 67536 Great Escape, The (1963)
## 67772 Down by Law (1986)
## 68236 Gandhi (1982)
## 73666 39 Steps, The (1935)
## 74988 Cook the Thief His Wife & Her Lover, The (1989)
## 75255 Once Upon a Time in the West (1969)
## 75857 Chinatown (1974)
## 76017 Stand by Me (1986)
## 76479 Arsenic and Old Lace (1944)
## 77816 Conan the Barbarian (1981)
## 86958 Diva (1981)
## 95024 C'est arrive pres de chez vous (1992)
## 697 Get Shorty (1995)
## 1058 Twelve Monkeys (1995)
## 1416 Babe (1995)
## 1646 Dead Man Walking (1995)
## 2022 Seven (Se7en) (1995)
## 2262 Usual Suspects, The (1995)
## 2528 Mighty Aphrodite (1995)
## 3373 Angels and Insects (1995)
## 3555 Braveheart (1995)
## 3838 Taxi Driver (1976)
## 5197 Crumb (1994)
## 5272 Desperado (1995)
## 6221 Hoop Dreams (1994)
## 6477 Star Wars (1977)
## 7590 Pulp Fiction (1994)
## 9402 Forrest Gump (1994)
## 10494 Firm, The (1993)
## 10708 Fugitive, The (1993)
## 11210 Jurassic Park (1993)
## 11453 Much Ado About Nothing (1993)
## 12224 Blade Runner (1982)
## 12711 True Romance (1993)
## 12819 Welcome to the Dollhouse (1995)
## 13310 Terminator 2: Judgment Day (1991)
## 13874 Silence of the Lambs, The (1991)
## 14449 Fargo (1996)
## 15997 Rock, The (1996)
## 16762 Independence Day (ID4) (1996)
## 17374 Lone Star (1996)
## 17929 Godfather, The (1972)
## 19604 Big Night (1996)
## 23900 Empire Strikes Back, The (1980)
## 24600 Raiders of the Lost Ark (1981)
## 25211 Aliens (1986)
## 25477 Good, The Bad and The Ugly, The (1966)
## 25613 12 Angry Men (1957)
## 26225 Return of the Jedi (1983)
## 26931 Alien (1979)
## 27333 Psycho (1960)
## 27814 Godfather: Part II, The (1974)
## 28653 Raging Bull (1980)
## 33502 Cape Fear (1991)
## 34923 Star Trek: The Wrath of Khan (1982)
## 35158 Star Trek III: The Search for Spock (1984)
## 35900 Jaws (1975)
## 36461 Jerry Maguire (1996)
## 37223 Beavis and Butt-head Do America (1996)
## 40477 Hunt for Red October, The (1990)
## 40761 Full Monty, The (1997)
## 41608 Heat (1995)
## 42692 Once Upon a Time... When We Were Colored (1995)
## 42975 Time to Kill, A (1996)
## 43381 Tin Cup (1996)
## 47073 L.A. Confidential (1997)
## 47932 Rainmaker, The (1997)
## 48854 In the Name of the Father (1993)
## 52965 One Flew Over the Cuckoo's Nest (1975)
## 59038 Highlander (1986)
## 60007 Birds, The (1963)
## 61331 Like Water For Chocolate (Como agua para chocolate) (1992)
## 61656 Red Rock West (1992)
## 61885 Tombstone (1993)
## 62015 Courage Under Fire (1996)
## 62719 Trainspotting (1996)
## 63318 Vertigo (1958)
## 64976 It's a Wonderful Life (1946)
## 66090 People vs. Larry Flynt, The (1996)
## 66539 Lawrence of Arabia (1962)
## 68630 Man Who Would Be King, The (1975)
## 69228 Miserables, Les (1995)
## 70159 Heavenly Creatures (1994)
## 72531 Hunchback of Notre Dame, The (1996)
## 74215 Sleepers (1996)
## 75104 Grifters, The (1990)
## 75194 Thin Blue Line, The (1988)
## 75858 Chinatown (1974)
## 76277 Manchurian Candidate, The (1962)
## 77326 Cape Fear (1962)
## 78106 In the Line of Fire (1993)
## 79149 City Hall (1996)
## 81757 Last Supper, The (1995)
## 83592 Beautiful Girls (1996)
## 83710 Happy Gilmore (1996)
## 84119 Kids (1995)
## 86801 Looking for Richard (1996)
## 89008 Dead Man (1995)
## 90413 Blue in the Face (1995)
## 90878 Winnie the Pooh and the Blustery Day (1968)
## 91219 Mother Night (1996)
## 91856 I Shot Andy Warhol (1996)
## 94187 Bottle Rocket (1996)
## 94314 Shallow Grave (1994)
## 1059 Twelve Monkeys (1995)
## 2023 Seven (Se7en) (1995)
## 3374 Angels and Insects (1995)
## 6088 Ed Wood (1994)
## 6478 Star Wars (1977)
## 7591 Pulp Fiction (1994)
## 8856 What's Eating Gilbert Grape (1993)
## 15856 Cold Comfort Farm (1995)
## 17375 Lone Star (1996)
## 17930 Godfather, The (1972)
## 19605 Big Night (1996)
## 20490 Lawnmower Man, The (1992)
## 25968 Apocalypse Now (1979)
## 26226 Return of the Jedi (1983)
## 27334 Psycho (1960)
## 27815 Godfather: Part II, The (1974)
## 28401 Amadeus (1984)
## 28774 Right Stuff, The (1983)
## 29195 Terminator, The (1984)
## 30094 Bridge on the River Kwai, The (1957)
## 30834 Unforgiven (1992)
## 33842 Breaking the Waves (1996)
## 38042 Chasing Amy (1997)
## 38168 Grosse Pointe Blank (1997)
## 38325 Austin Powers: International Man of Mystery (1997)
## 38464 Fifth Element, The (1997)
## 38704 Lost World: Jurassic Park, The (1997)
## 38845 Pillow Book, The (1995)
## 38949 My Best Friend's Wedding (1997)
## 39155 Men in Black (1997)
## 39483 Contact (1997)
## 39952 George of the Jungle (1997)
## 40109 Event Horizon (1997)
## 40273 In the Company of Men (1997)
## 40363 Mimic (1997)
## 40762 Full Monty, The (1997)
## 41049 Gattaca (1997)
## 41195 Starship Troopers (1997)
## 41404 Good Will Hunting (1997)
## 42022 Sense and Sensibility (1995)
## 43571 Secrets & Lies (1996)
## 43766 English Patient, The (1996)
## 44327 Scream (1996)
## 44784 Evita (1996)
## 45242 Rosewood (1997)
## 45552 Liar Liar (1997)
## 45987 Breakdown (1997)
## 46065 Ulee's Gold (1997)
## 46131 Face/Off (1997)
## 46314 Hoodlum (1997)
## 46424 Air Force One (1997)
## 46839 In & Out (1997)
## 47074 L.A. Confidential (1997)
## 47350 Fly Away Home (1996)
## 47586 Mrs. Brown (Her Majesty, Mrs. Brown) (1997)
## 47691 Devil's Advocate, The (1997)
## 47933 Rainmaker, The (1997)
## 48068 Wings of the Dove, The (1997)
## 48252 Titanic (1997)
## 48583 Apt Pupil (1998)
## 49620 Murder at 1600 (1997)
## 49845 Dante's Peak (1997)
## 50071 Lost Highway (1997)
## 50197 Crash (1996)
## 50327 G.I. Jane (1997)
## 50695 Conspiracy Theory (1997)
## 51049 Edge, The (1997)
## 51167 Kiss the Girls (1997)
## 51326 Game, The (1997)
## 51852 Boogie Nights (1997)
## 52096 Alien: Resurrection (1997)
## 52211 Apostle, The (1997)
## 52338 Jackie Brown (1997)
## 52468 Wag the Dog (1997)
## 52593 Hard Rain (1998)
## 52625 Fallen (1998)
## 52798 Sphere (1998)
## 53212 Spawn (1997)
## 55078 Fear of a Black Hat (1993)
## 57938 William Shakespeare's Romeo and Juliet (1996)
## 63319 Vertigo (1958)
## 64101 Maltese Falcon, The (1941)
## 66540 Lawrence of Arabia (1962)
## 67019 Boot, Das (1981)
## 67459 Treasure of the Sierra Madre, The (1948)
## 68714 Shine (1996)
## 68829 Kama Sutra: A Tale of Love (1996)
## 69046 Mouse Hunt (1997)
## 71629 Piano, The (1993)
## 72532 Hunchback of Notre Dame, The (1996)
## 72947 Rear Window (1954)
## 73141 It Happened One Night (1934)
## 73313 Rebecca (1940)
## 74989 Cook the Thief His Wife & Her Lover, The (1989)
## 75486 Seventh Seal, The (Sjunde inseglet, Det) (1957)
## 76018 Stand by Me (1986)
## 76749 High Noon (1952)
## 77610 Volcano (1997)
## 78679 Seven Years in Tibet (1997)
## 80932 Queen Margot (Reine Margot, La) (1994)
## 82471 Saint, The (1997)
## 82818 Amistad (1997)
## 82950 Tomorrow Never Dies (1997)
## 83463 Lawnmower Man 2: Beyond Cyberspace (1996)
## 83497 Screamers (1995)
## 85130 Menace II Society (1993)
## 86382 Last Man Standing (1996)
## 87462 Love Jones (1997)
## 87820 Peacemaker, The (1997)
## 87949 Soul Food (1997)
## 88126 Eve's Bayou (1997)
## 88187 One Night Stand (1997)
## 88355 Scream 2 (1997)
## 88457 Sweet Hereafter, The (1997)
## 88572 Kundun (1997)
## 88623 Big Lebowski, The (1998)
## 88665 Afterglow (1997)
## 88704 Great Expectations (1998)
## 88803 Wild Things (1998)
## 88828 Lost in Space (1998)
## 89976 What's Love Got to Do with It (1993)
## 91565 Hercules (1997)
## 92192 Anaconda (1997)
## 92352 Con Air (1997)
## 92590 Gaslight (1944)
## 93190 Hamlet (1996)
## 94556 Female Perversions (1996)
## 94651 Speed 2: Cruise Control (1997)
## 95584 Get on the Bus (1996)
## 95789 When We Were Kings (1996)
## 96807 In the Realm of the Senses (Ai no corrida) (1976)
## 96846 Kissed (1996)
## 96937 Higher Learning (1995)
## 97062 Night Falls on Manhattan (1997)
## 97311 Metro (1997)
## 97432 Tie That Binds, The (1995)
## 97439 Gone Fishin' (1997)
## 97450 Broken English (1996)
## 97458 Designated Mourner, The (1997)
## 97461 Trial and Error (1997)
## 57 Toy Story (1995)
## 1060 Twelve Monkeys (1995)
## 2024 Seven (Se7en) (1995)
## 2263 Usual Suspects, The (1995)
## 2903 Mr. Holland's Opus (1995)
## 4223 Birdcage, The (1996)
## 5273 Desperado (1995)
## 6479 Star Wars (1977)
## 7592 Pulp Fiction (1994)
## 13311 Terminator 2: Judgment Day (1991)
## 13875 Silence of the Lambs, The (1991)
## 15313 Mystery Science Theater 3000: The Movie (1996)
## 15998 Rock, The (1996)
## 16763 Independence Day (ID4) (1996)
## 17145 Cable Guy, The (1996)
## 18633 Wizard of Oz, The (1939)
## 20042 Sound of Music, The (1965)
## 20267 Die Hard (1988)
## 20907 Swingers (1996)
## 21094 Willy Wonka and the Chocolate Factory (1971)
## 21994 Reservoir Dogs (1992)
## 22913 Abyss, The (1989)
## 23277 Monty Python and the Holy Grail (1974)
## 23901 Empire Strikes Back, The (1980)
## 24266 Princess Bride, The (1987)
## 24601 Raiders of the Lost Ark (1981)
## 25212 Aliens (1986)
## 25745 Clockwork Orange, A (1971)
## 26227 Return of the Jedi (1983)
## 27202 Army of Darkness (1993)
## 29196 Terminator, The (1984)
## 32027 Indiana Jones and the Last Crusade (1989)
## 32762 Pink Floyd - The Wall (1982)
## 33958 Star Trek: First Contact (1996)
## 36462 Jerry Maguire (1996)
## 37224 Beavis and Butt-head Do America (1996)
## 38326 Austin Powers: International Man of Mystery (1997)
## 38705 Lost World: Jurassic Park, The (1997)
## 39156 Men in Black (1997)
## 39484 Contact (1997)
## 40478 Hunt for Red October, The (1990)
## 41196 Starship Troopers (1997)
## 42976 Time to Kill, A (1996)
## 44328 Scream (1996)
## 46132 Face/Off (1997)
## 47692 Devil's Advocate, The (1997)
## 48253 Titanic (1997)
## 51706 Bean (1997)
## 53213 Spawn (1997)
## 53758 Bio-Dome (1996)
## 56271 Mission: Impossible (1996)
## 56573 Thinner (1996)
## 56855 Kingpin (1996)
## 57027 Nutty Professor, The (1996)
## 57939 William Shakespeare's Romeo and Juliet (1996)
## 58093 E.T. the Extra-Terrestrial (1982)
## 62720 Trainspotting (1996)
## 69363 Broken Arrow (1996)
## 72008 Beauty and the Beast (1991)
## 72533 Hunchback of Notre Dame, The (1996)
## 72668 Eraser (1996)
## 74216 Sleepers (1996)
## 77611 Volcano (1997)
## 81834 Ransom (1996)
## 82074 Crow: City of Angels, The (1996)
## 82472 Saint, The (1997)
## 82951 Tomorrow Never Dies (1997)
## 83464 Lawnmower Man 2: Beyond Cyberspace (1996)
## 83711 Happy Gilmore (1996)
## 84120 Kids (1995)
## 84639 Swimming with Sharks (1995)
## 86085 Fled (1996)
## 88073 Life Less Ordinary, A (1997)
## 88356 Scream 2 (1997)
## 89333 Craft, The (1996)
## 89559 Island of Dr. Moreau, The (1996)
## 91110 Substitute, The (1996)
## 92099 Private Parts (1997)
## 92232 Romy and Michele's High School Reunion (1997)
## 92353 Con Air (1997)
## 93527 Multiplicity (1996)
## 93921 Pallbearer, The (1996)
## 93960 Don't Be a Menace to South Central While Drinking Your Juice in the Hood (1996)
## 94813 High School High (1996)
## 96111 Big Bully (1996)
## 893 Copycat (1995)
## 1061 Twelve Monkeys (1995)
## 3207 From Dusk Till Dawn (1996)
## 3556 Braveheart (1995)
## 3839 Taxi Driver (1976)
## 5198 Crumb (1994)
## 7172 Natural Born Killers (1994)
## 7406 Professional, The (1994)
## 7593 Pulp Fiction (1994)
## 10709 Fugitive, The (1993)
## 13876 Silence of the Lambs, The (1991)
## 14450 Fargo (1996)
## 18634 Wizard of Oz, The (1939)
## 19046 Citizen Kane (1941)
## 19257 2001: A Space Odyssey (1968)
## 21995 Reservoir Dogs (1992)
## 22914 Abyss, The (1989)
## 23803 Delicatessen (1991)
## 23902 Empire Strikes Back, The (1980)
## 24602 Raiders of the Lost Ark (1981)
## 25005 Brazil (1985)
## 25213 Aliens (1986)
## 25746 Clockwork Orange, A (1971)
## 25969 Apocalypse Now (1979)
## 27203 Army of Darkness (1993)
## 27335 Psycho (1960)
## 28024 Full Metal Jacket (1987)
## 28775 Right Stuff, The (1983)
## 30264 Shining, The (1980)
## 30460 Evil Dead II (1987)
## 32028 Indiana Jones and the Last Crusade (1989)
## 33380 Bram Stoker's Dracula (1992)
## 33503 Cape Fear (1991)
## 34288 Sling Blade (1996)
## 35901 Jaws (1975)
## 39485 Contact (1997)
## 44329 Scream (1996)
## 48855 In the Name of the Father (1993)
## 49413 Paradise Lost: The Child Murders at Robin Hood Hills (1996)
## 50072 Lost Highway (1997)
## 55481 Serial Mom (1994)
## 57268 Tales from the Crypt Presents: Bordello of Blood (1996)
## 57940 William Shakespeare's Romeo and Juliet (1996)
## 58516 To Kill a Mockingbird (1962)
## 59373 Heathers (1989)
## 59814 American Werewolf in London, An (1981)
## 62517 Dr. Strangelove or: How I Learned to Stop Worrying and Love the Bomb (1963)
## 62721 Trainspotting (1996)
## 66091 People vs. Larry Flynt, The (1996)
## 66541 Lawrence of Arabia (1962)
## 66756 Third Man, The (1949)
## 68418 Killing Fields, The (1984)
## 69590 Young Poisoner's Handbook, The (1995)
## 69882 Lord of Illusions (1995)
## 70160 Heavenly Creatures (1994)
## 70236 Interview with the Vampire (1994)
## 70522 Tales from the Hood (1995)
## 72948 Rear Window (1954)
## 75066 Paths of Glory (1957)
## 75859 Chinatown (1974)
## 76019 Stand by Me (1986)
## 77261 Candyman (1992)
## 77458 Nosferatu (Nosferatu, eine Symphonie des Grauens) (1922)
## 84188 Prophecy, The (1995)
## 85004 In the Mouth of Madness (1995)
## 85510 Candyman: Farewell to the Flesh (1995)
## 86538 Freeway (1996)
## 86924 Braindead (1992)
## 88870 City of Lost Children, The (1995)
## 90664 Naked (1993)
## 94504 Joe's Apartment (1996)
## 1062 Twelve Monkeys (1995)
## 1647 Dead Man Walking (1995)
## 2025 Seven (Se7en) (1995)
## 2264 Usual Suspects, The (1995)
## 3557 Braveheart (1995)
## 3840 Taxi Driver (1976)
## 4025 Rumble in the Bronx (1995)
## 4224 Birdcage, The (1996)
## 4638 Apollo 13 (1995)
## 5044 Crimson Tide (1995)
## 5613 To Wong Foo, Thanks for Everything! Julie Newmar (1995)
## 6480 Star Wars (1977)
## 7081 Madness of King George, The (1994)
## 7298 Outbreak (1995)
## 7594 Pulp Fiction (1994)
## 8605 Shawshank Redemption, The (1994)
## 9718 Four Weddings and a Funeral (1994)
## 11211 Jurassic Park (1993)
## 11454 Much Ado About Nothing (1993)
## 11703 Remains of the Day, The (1993)
## 11855 Searching for Bobby Fischer (1993)
## 12225 Blade Runner (1982)
## 12820 Welcome to the Dollhouse (1995)
## 13312 Terminator 2: Judgment Day (1991)
## 14451 Fargo (1996)
## 15048 Sgt. Bilko (1996)
## 15314 Mystery Science Theater 3000: The Movie (1996)
## 15492 Truth About Cats & Dogs, The (1996)
## 15999 Rock, The (1996)
## 16764 Independence Day (ID4) (1996)
## 17376 Lone Star (1996)
## 17571 Phenomenon (1996)
## 18635 Wizard of Oz, The (1939)
## 19606 Big Night (1996)
## 20268 Die Hard (1988)
## 20574 Long Kiss Goodnight, The (1996)
## 21725 Monty Python's Life of Brian (1979)
## 23278 Monty Python and the Holy Grail (1974)
## 23903 Empire Strikes Back, The (1980)
## 24603 Raiders of the Lost Ark (1981)
## 26228 Return of the Jedi (1983)
## 26701 GoodFellas (1990)
## 28025 Full Metal Jacket (1987)
## 28776 Right Stuff, The (1983)
## 28950 Sting, The (1973)
## 29487 Dead Poets Society (1989)
## 30095 Bridge on the River Kwai, The (1957)
## 31035 Back to the Future (1985)
## 31823 This Is Spinal Tap (1984)
## 32029 Indiana Jones and the Last Crusade (1989)
## 32632 Room with a View, A (1986)
## 33959 Star Trek: First Contact (1996)
## 34579 Die Hard 2 (1990)
## 36176 Mars Attacks! (1996)
## 36463 Jerry Maguire (1996)
## 37813 Devil's Own, The (1997)
## 38465 Fifth Element, The (1997)
## 38706 Lost World: Jurassic Park, The (1997)
## 38874 Batman & Robin (1997)
## 38950 My Best Friend's Wedding (1997)
## 39157 Men in Black (1997)
## 39486 Contact (1997)
## 39953 George of the Jungle (1997)
## 40763 Full Monty, The (1997)
## 41197 Starship Troopers (1997)
## 41405 Good Will Hunting (1997)
## 41825 Sabrina (1995)
## 42023 Sense and Sensibility (1995)
## 42297 Leaving Las Vegas (1995)
## 42568 Restoration (1995)
## 42977 Time to Kill, A (1996)
## 43767 English Patient, The (1996)
## 44203 Marvin's Room (1996)
## 44330 Scream (1996)
## 45553 Liar Liar (1997)
## 46133 Face/Off (1997)
## 46315 Hoodlum (1997)
## 46425 Air Force One (1997)
## 46840 In & Out (1997)
## 47934 Rainmaker, The (1997)
## 48254 Titanic (1997)
## 48584 Apt Pupil (1998)
## 48740 As Good As It Gets (1997)
## 49621 Murder at 1600 (1997)
## 49846 Dante's Peak (1997)
## 50696 Conspiracy Theory (1997)
## 50961 Desperate Measures (1998)
## 51168 Kiss the Girls (1997)
## 51707 Bean (1997)
## 51853 Boogie Nights (1997)
## 52594 Hard Rain (1998)
## 52735 Wedding Singer, The (1998)
## 54467 Adventures of Priscilla, Queen of the Desert, The (1994)
## 54691 True Lies (1994)
## 55156 Man Without a Face, The (1993)
## 56272 Mission: Impossible (1996)
## 56617 Spy Hard (1996)
## 56856 Kingpin (1996)
## 57177 Very Brady Sequel, A (1996)
## 60449 Star Trek: The Motion Picture (1979)
## 60635 Grease (1978)
## 60897 Jackie Chan's First Strike (1996)
## 61109 Nixon (1995)
## 61193 Cry, the Beloved Country (1995)
## 62016 Courage Under Fire (1996)
## 62228 Dragonheart (1996)
## 62385 James and the Giant Peach (1996)
## 62722 Trainspotting (1996)
## 64359 Sabrina (1954)
## 64724 East of Eden (1955)
## 65882 Rebel Without a Cause (1955)
## 66542 Lawrence of Arabia (1962)
## 68101 Ben-Hur (1959)
## 68944 My Own Private Idaho (1991)
## 69252 Things to Do in Denver when You're Dead (1995)
## 69364 Broken Arrow (1996)
## 69743 Die Hard: With a Vengeance (1995)
## 70442 Quick and the Dead, The (1995)
## 70808 Speed (1994)
## 72267 Primal Fear (1996)
## 72460 Fan, The (1996)
## 72669 Eraser (1996)
## 73724 Night of the Living Dead (1968)
## 74217 Sleepers (1996)
## 76020 Stand by Me (1986)
## 76398 Pump Up the Volume (1990)
## 78107 In the Line of Fire (1993)
## 78272 Executive Decision (1996)
## 78583 Jackal, The (1997)
## 79226 Basketball Diaries, The (1995)
## 79922 Better Off Dead... (1985)
## 80225 Home for the Holidays (1995)
## 80287 Juror, The (1996)
## 80360 In the Bleak Midwinter (1995)
## 80745 Immortal Beloved (1994)
## 81758 Last Supper, The (1995)
## 81835 Ransom (1996)
## 82952 Tomorrow Never Dies (1997)
## 83241 Jumanji (1995)
## 83593 Beautiful Girls (1996)
## 85350 Celluloid Closet, The (1995)
## 85729 Mulholland Falls (1996)
## 85855 Arrival, The (1996)
## 85938 Phantom, The (1996)
## 86018 Daylight (1996)
## 86086 Fled (1996)
## 86124 Escape from L.A. (1996)
## 86600 That Thing You Do! (1996)
## 87239 Michael (1996)
## 87821 Peacemaker, The (1997)
## 88829 Lost in Space (1998)
## 88845 Mercury Rising (1998)
## 89106 White Squall (1996)
## 89480 Chain Reaction (1996)
## 89560 Island of Dr. Moreau, The (1996)
## 91111 Substitute, The (1996)
## 91248 Maximum Risk (1996)
## 91352 Turbulence (1997)
## 91632 Kiss Me, Guido (1997)
## 92354 Con Air (1997)
## 93028 Quest, The (1996)
## 93831 Dracula: Dead and Loving It (1995)
## 94603 It's My Party (1995)
## 94931 Six Degrees of Separation (1993)
## 95696 Beautiful Thing (1996)
## 95963 Backbeat (1993)
## 96036 Love! Valour! Compassion! (1997)
## 96125 Love & Human Remains (1993)
## 96180 Spanking the Monkey (1994)
## 96538 Family Thing, A (1996)
## 96621 Maybe, Maybe Not (Bewegte Mann, Der) (1994)
## 97312 Metro (1997)
## 97484 Pie in the Sky (1995)
## 97488 Total Eclipse (1995)
## 97492 Run of the Country, The (1995)
## 97496 Walking and Talking (1996)
## 97504 Foxfire (1996)
## 97519 Nothing to Lose (1994)
## 97526 Star Maps (1997)
## 58 Toy Story (1995)
## 1648 Dead Man Walking (1995)
## 2904 Mr. Holland's Opus (1995)
## 4225 Birdcage, The (1996)
## 6481 Star Wars (1977)
## 16000 Rock, The (1996)
## 16376 Twister (1996)
## 16765 Independence Day (ID4) (1996)
## 17572 Phenomenon (1996)
## 17931 Godfather, The (1972)
## 20754 Ghost and the Darkness, The (1996)
## 36464 Jerry Maguire (1996)
## 37814 Devil's Own, The (1997)
## 38707 Lost World: Jurassic Park, The (1997)
## 39158 Men in Black (1997)
## 39487 Contact (1997)
## 42978 Time to Kill, A (1996)
## 43768 English Patient, The (1996)
## 56273 Mission: Impossible (1996)
## 66092 People vs. Larry Flynt, The (1996)
## 67020 Boot, Das (1981)
## 69365 Broken Arrow (1996)
## 81836 Ransom (1996)
## 82119 Michael Collins (1996)
## 86019 Daylight (1996)
## 89107 White Squall (1996)
## 59 Toy Story (1995)
## 1649 Dead Man Walking (1995)
## 2026 Seven (Se7en) (1995)
## 2265 Usual Suspects, The (1995)
## 2703 Postino, Il (1994)
## 4226 Birdcage, The (1996)
## 6482 Star Wars (1977)
## 7939 Priest (1994)
## 11455 Much Ado About Nothing (1993)
## 11704 Remains of the Day, The (1993)
## 13877 Silence of the Lambs, The (1991)
## 14452 Fargo (1996)
## 16001 Rock, The (1996)
## 16377 Twister (1996)
## 16766 Independence Day (ID4) (1996)
## 17146 Cable Guy, The (1996)
## 17377 Lone Star (1996)
## 17573 Phenomenon (1996)
## 17798 Spitfire Grill, The (1996)
## 17932 Godfather, The (1972)
## 19258 2001: A Space Odyssey (1968)
## 19607 Big Night (1996)
## 21996 Reservoir Dogs (1992)
## 23054 Jean de Florette (1986)
## 23904 Empire Strikes Back, The (1980)
## 24604 Raiders of the Lost Ark (1981)
## 25970 Apocalypse Now (1979)
## 26229 Return of the Jedi (1983)
## 28654 Raging Bull (1980)
## 29732 Graduate, The (1967)
## 36177 Mars Attacks! (1996)
## 36465 Jerry Maguire (1996)
## 38327 Austin Powers: International Man of Mystery (1997)
## 38466 Fifth Element, The (1997)
## 39159 Men in Black (1997)
## 42024 Sense and Sensibility (1995)
## 42298 Leaving Las Vegas (1995)
## 42979 Time to Kill, A (1996)
## 45117 Absolute Power (1997)
## 45243 Rosewood (1997)
## 45554 Liar Liar (1997)
## 46134 Face/Off (1997)
## 46426 Air Force One (1997)
## 48255 Titanic (1997)
## 48585 Apt Pupil (1998)
## 48980 Schindler's List (1993)
## 52469 Wag the Dog (1997)
## 52966 One Flew Over the Cuckoo's Nest (1975)
## 56274 Mission: Impossible (1996)
## 57028 Nutty Professor, The (1996)
## 58517 To Kill a Mockingbird (1962)
## 58725 Harold and Maude (1971)
## 61110 Nixon (1995)
## 62229 Dragonheart (1996)
## 63320 Vertigo (1958)
## 66093 People vs. Larry Flynt, The (1996)
## 66289 My Left Foot (1989)
## 66843 Annie Hall (1977)
## 67021 Boot, Das (1981)
## 69366 Broken Arrow (1996)
## 71630 Piano, The (1993)
## 72461 Fan, The (1996)
## 74218 Sleepers (1996)
## 74486 Crying Game, The (1992)
## 75195 Thin Blue Line, The (1988)
## 80288 Juror, The (1996)
## 81362 Shadowlands (1993)
## 81688 Jane Eyre (1996)
## 81837 Ransom (1996)
## 82120 Michael Collins (1996)
## 84765 Bullets Over Broadway (1994)
## 89778 Thousand Acres, A (1997)
## 96494 Once Were Warriors (1994)
## 97545 Bread and Chocolate (Pane e cioccolata) (1973)
## 2027 Seven (Se7en) (1995)
## 4639 Apollo 13 (1995)
## 6047 Exotica (1994)
## 7940 Priest (1994)
## 9403 Forrest Gump (1994)
## 9719 Four Weddings and a Funeral (1994)
## 11456 Much Ado About Nothing (1993)
## 11705 Remains of the Day, The (1993)
## 17933 Godfather, The (1972)
## 19259 2001: A Space Odyssey (1968)
## 25006 Brazil (1985)
## 25971 Apocalypse Now (1979)
## 27816 Godfather: Part II, The (1974)
## 28257 Henry V (1989)
## 28402 Amadeus (1984)
## 28777 Right Stuff, The (1983)
## 29733 Graduate, The (1967)
## 32538 Unbearable Lightness of Being, The (1988)
## 32763 Pink Floyd - The Wall (1982)
## 32891 Field of Dreams (1989)
## 37067 Sneakers (1992)
## 40764 Full Monty, The (1997)
## 52967 One Flew Over the Cuckoo's Nest (1975)
## 54099 Miracle on 34th Street (1994)
## 54468 Adventures of Priscilla, Queen of the Desert, The (1994)
## 54966 Age of Innocence, The (1993)
## 55945 Batman (1989)
## 58094 E.T. the Extra-Terrestrial (1982)
## 58518 To Kill a Mockingbird (1962)
## 58845 Day the Earth Stood Still, The (1951)
## 61541 Vanya on 42nd Street (1994)
## 61816 Short Cuts (1993)
## 61886 Tombstone (1993)
## 66290 My Left Foot (1989)
## 66412 Magnificent Seven, The (1954)
## 66543 Lawrence of Arabia (1962)
## 66757 Third Man, The (1949)
## 67460 Treasure of the Sierra Madre, The (1948)
## 69954 Walk in the Clouds, A (1995)
## 71080 Wyatt Earp (1994)
## 71631 Piano, The (1993)
## 76603 Fried Green Tomatoes (1991)
## 76750 High Noon (1952)
## 77327 Cape Fear (1962)
## 79286 Little Women (1994)
## 79720 Sex, Lies, and Videotape (1989)
## 80142 To Die For (1995)
## 80639 Circle of Friends (1995)
## 80746 Immortal Beloved (1994)
## 81363 Shadowlands (1993)
## 81438 Sirens (1994)
## 84766 Bullets Over Broadway (1994)
## 90538 Nobody's Fool (1994)
## 93402 Paper, The (1994)
## 93442 Fearless (1993)
## 94384 Reality Bites (1994)
## 95165 Mrs. Parker and the Vicious Circle (1994)
## 95307 Some Kind of Wonderful (1987)
## 96148 Little Buddha (1993)
## 97557 Clockers (1995)
## 97590 Bitter Moon (1992)
## 1650 Dead Man Walking (1995)
## 2529 Mighty Aphrodite (1995)
## 2704 Postino, Il (1994)
## 3558 Braveheart (1995)
## 3841 Taxi Driver (1976)
## 6483 Star Wars (1977)
## 8606 Shawshank Redemption, The (1994)
## 13878 Silence of the Lambs, The (1991)
## 14453 Fargo (1996)
## 17934 Godfather, The (1972)
## 18636 Wizard of Oz, The (1939)
## 19047 Citizen Kane (1941)
## 19260 2001: A Space Odyssey (1968)
## 20043 Sound of Music, The (1965)
## 23055 Jean de Florette (1986)
## 26702 GoodFellas (1990)
## 27336 Psycho (1960)
## 27817 Godfather: Part II, The (1974)
## 28655 Raging Bull (1980)
## 29734 Graduate, The (1967)
## 37504 Kolya (1996)
## 38951 My Best Friend's Wedding (1997)
## 42025 Sense and Sensibility (1995)
## 42299 Leaving Las Vegas (1995)
## 43572 Secrets & Lies (1996)
## 43769 English Patient, The (1996)
## 44331 Scream (1996)
## 44785 Evita (1996)
## 45555 Liar Liar (1997)
## 49261 Everyone Says I Love You (1996)
## 49455 Mother (1996)
## 58519 To Kill a Mockingbird (1962)
## 59198 Fantasia (1940)
## 59615 Butch Cassidy and the Sundance Kid (1969)
## 61332 Like Water For Chocolate (Como agua para chocolate) (1992)
## 63321 Vertigo (1958)
## 63497 North by Northwest (1959)
## 63731 Some Like It Hot (1959)
## 63868 Casablanca (1942)
## 64236 My Fair Lady (1964)
## 64419 Roman Holiday (1953)
## 65698 Bonnie and Clyde (1967)
## 66544 Lawrence of Arabia (1962)
## 66844 Annie Hall (1977)
## 67822 Cool Hand Luke (1967)
## 68715 Shine (1996)
## 73253 All About Eve (1950)
## 76278 Manchurian Candidate, The (1962)
## 79477 House of the Spirits, The (1993)
## 79648 Enchanted April (1991)
## 81230 Philadelphia (1993)
## 86802 Looking for Richard (1996)
## 90721 Ruby in Paradise (1993)
## 97600 Love in the Afternoon (1957)
## 60 Toy Story (1995)
## 1063 Twelve Monkeys (1995)
## 2028 Seven (Se7en) (1995)
## 4640 Apollo 13 (1995)
## 6484 Star Wars (1977)
## 10710 Fugitive, The (1993)
## 13313 Terminator 2: Judgment Day (1991)
## 13879 Silence of the Lambs, The (1991)
## 16002 Rock, The (1996)
## 20269 Die Hard (1988)
## 21726 Monty Python's Life of Brian (1979)
## 22138 Platoon (1986)
## 23120 Manon of the Spring (Manon des sources) (1986)
## 23279 Monty Python and the Holy Grail (1974)
## 23905 Empire Strikes Back, The (1980)
## 24267 Princess Bride, The (1987)
## 24605 Raiders of the Lost Ark (1981)
## 29197 Terminator, The (1984)
## 31824 This Is Spinal Tap (1984)
## 34580 Die Hard 2 (1990)
## 62518 Dr. Strangelove or: How I Learned to Stop Worrying and Love the Bomb (1963)
## 64977 It's a Wonderful Life (1946)
## 69744 Die Hard: With a Vengeance (1995)
## 73725 Night of the Living Dead (1968)
## 61 Toy Story (1995)
## 1417 Babe (1995)
## 3452 Muppet Treasure Island (1996)
## 3559 Braveheart (1995)
## 4227 Birdcage, The (1996)
## 4641 Apollo 13 (1995)
## 5665 Billy Madison (1995)
## 6332 I.Q. (1994)
## 6485 Star Wars (1977)
## 7595 Pulp Fiction (1994)
## 8495 Santa Clause, The (1994)
## 8607 Shawshank Redemption, The (1994)
## 8977 While You Were Sleeping (1995)
## 9135 Ace Ventura: Pet Detective (1994)
## 9404 Forrest Gump (1994)
## 9720 Four Weddings and a Funeral (1994)
## 10166 Mask, The (1994)
## 10296 Maverick (1994)
## 10711 Fugitive, The (1993)
## 11003 Hot Shots! Part Deux (1993)
## 11212 Jurassic Park (1993)
## 11457 Much Ado About Nothing (1993)
## 11633 Ref, The (1994)
## 11856 Searching for Bobby Fischer (1993)
## 11999 Sleepless in Seattle (1993)
## 12476 So I Married an Axe Murderer (1993)
## 12936 Home Alone (1990)
## 13080 Aladdin (1992)
## 13598 Dances with Wolves (1990)
## 13880 Silence of the Lambs, The (1991)
## 15049 Sgt. Bilko (1996)
## 15315 Mystery Science Theater 3000: The Movie (1996)
## 15493 Truth About Cats & Dogs, The (1996)
## 15857 Cold Comfort Farm (1995)
## 16003 Rock, The (1996)
## 16644 Striptease (1996)
## 17147 Cable Guy, The (1996)
## 19048 Citizen Kane (1941)
## 19493 Mr. Smith Goes to Washington (1939)
## 20044 Sound of Music, The (1965)
## 20270 Die Hard (1988)
## 20908 Swingers (1996)
## 21386 Sleeper (1973)
## 21491 Fish Called Wanda, A (1988)
## 22256 Weekend at Bernie's (1989)
## 22817 Return of the Pink Panther, The (1974)
## 23280 Monty Python and the Holy Grail (1974)
## 23906 Empire Strikes Back, The (1980)
## 24268 Princess Bride, The (1987)
## 24606 Raiders of the Lost Ark (1981)
## 25007 Brazil (1985)
## 25214 Aliens (1986)
## 26230 Return of the Jedi (1983)
## 27572 Blues Brothers, The (1980)
## 28258 Henry V (1989)
## 28403 Amadeus (1984)
## 28951 Sting, The (1973)
## 29198 Terminator, The (1984)
## 29958 Nikita (La Femme Nikita) (1990)
## 30461 Evil Dead II (1987)
## 30567 Groundhog Day (1993)
## 31036 Back to the Future (1985)
## 31357 Patton (1970)
## 31623 Young Frankenstein (1974)
## 31825 This Is Spinal Tap (1984)
## 32030 Indiana Jones and the Last Crusade (1989)
## 32351 M*A*S*H (1970)
## 33114 When Harry Met Sally... (1989)
## 33960 Star Trek: First Contact (1996)
## 36178 Mars Attacks! (1996)
## 36372 Citizen Ruth (1996)
## 36830 Raising Arizona (1987)
## 37068 Sneakers (1992)
## 37620 Jungle2Jungle (1997)
## 39488 Contact (1997)
## 40765 Full Monty, The (1997)
## 41050 Gattaca (1997)
## 42026 Sense and Sensibility (1995)
## 43201 Emma (1996)
## 44786 Evita (1996)
## 45025 Fierce Creatures (1997)
## 45556 Liar Liar (1997)
## 46427 Air Force One (1997)
## 48981 Schindler's List (1993)
## 49847 Dante's Peak (1997)
## 51854 Boogie Nights (1997)
## 52339 Jackie Brown (1997)
## 52968 One Flew Over the Cuckoo's Nest (1975)
## 53456 Ace Ventura: When Nature Calls (1995)
## 53609 Clueless (1995)
## 53794 Black Sheep (1996)
## 53954 Jeffrey (1995)
## 54058 Houseguest (1994)
## 54469 Adventures of Priscilla, Queen of the Desert, The (1994)
## 54567 Flintstones, The (1994)
## 54601 Naked Gun 33 1/3: The Final Insult (1994)
## 54883 Addams Family Values (1993)
## 55023 Beverly Hills Cop III (1994)
## 55235 Mrs. Doubtfire (1993)
## 55423 Robin Hood: Men in Tights (1993)
## 55574 Three Musketeers, The (1993)
## 55683 Brady Bunch Movie, The (1995)
## 56618 Spy Hard (1996)
## 57029 Nutty Professor, The (1996)
## 57178 Very Brady Sequel, A (1996)
## 58520 To Kill a Mockingbird (1962)
## 58943 Duck Soup (1933)
## 59529 Forbidden Planet (1956)
## 59616 Butch Cassidy and the Sundance Kid (1969)
## 60636 Grease (1978)
## 60898 Jackie Chan's First Strike (1996)
## 62519 Dr. Strangelove or: How I Learned to Stop Worrying and Love the Bomb (1963)
## 62723 Trainspotting (1996)
## 63200 Philadelphia Story, The (1940)
## 63322 Vertigo (1958)
## 63732 Some Like It Hot (1959)
## 63869 Casablanca (1942)
## 64237 My Fair Lady (1964)
## 64783 Thin Man, The (1934)
## 64978 It's a Wonderful Life (1946)
## 65269 African Queen, The (1951)
## 66094 People vs. Larry Flynt, The (1996)
## 66545 Lawrence of Arabia (1962)
## 66758 Third Man, The (1949)
## 67537 Great Escape, The (1963)
## 70809 Speed (1994)
## 71127 Another Stakeout (1993)
## 71374 Coneheads (1993)
## 71901 Son in Law (1993)
## 73667 39 Steps, The (1935)
## 75364 Quiet Man, The (1952)
## 76279 Manchurian Candidate, The (1962)
## 76480 Arsenic and Old Lace (1944)
## 76922 Being There (1979)
## 78466 McHale's Navy (1997)
## 78857 American President, The (1995)
## 79512 Singin' in the Rain (1952)
## 79821 Strictly Ballroom (1992)
## 79923 Better Off Dead... (1985)
## 80550 Nine Months (1995)
## 80810 Junior (1994)
## 81014 Dave (1993)
## 81190 Made in America (1993)
## 82228 Real Genius (1985)
## 82473 Saint, The (1997)
## 82953 Tomorrow Never Dies (1997)
## 83342 Father of the Bride Part II (1995)
## 83712 Happy Gilmore (1996)
## 84371 Dumb & Dumber (1994)
## 84440 French Kiss (1995)
## 84568 Only You (1994)
## 84684 Tommy Boy (1995)
## 84921 Speechless (1994)
## 85027 Air Up There, The (1994)
## 85351 Celluloid Closet, The (1995)
## 87142 My Fellow Americans (1996)
## 88804 Wild Things (1998)
## 89234 Down Periscope (1996)
## 89898 Airheads (1994)
## 90103 Charade (1963)
## 90273 How to Make an American Quilt (1995)
## 91661 Big Green, The (1995)
## 91676 Stuart Saves His Family (1995)
## 91707 Clean Slate (1994)
## 91717 Lightning Jack (1994)
## 93124 Drop Dead Fred (1991)
## 93147 Grease 2 (1982)
## 93832 Dracula: Dead and Loving It (1995)
## 93995 Adventures of Pinocchio, The (1996)
## 94385 Reality Bites (1994)
## 94779 Live Nude Girls (1995)
## 95198 Twelfth Night (1996)
## 96181 Spanking the Monkey (1994)
## 96313 I Love Trouble (1994)
## 96346 Cowboy Way, The (1994)
## 96375 In the Army Now (1994)
## 96650 To Be or Not to Be (1942)
## 97366 Bushwhacked (1995)
## 97398 For Love or Money (1993)
## 97610 Life with Mikey (1993)
## 97617 North (1994)
## 97624 Talking About Sex (1994)
## 37621 Jungle2Jungle (1997)
## 37815 Devil's Own, The (1997)
## 39489 Contact (1997)
## 40110 Event Horizon (1997)
## 40274 In the Company of Men (1997)
## 40681 Kull the Conqueror (1997)
## 41406 Good Will Hunting (1997)
## 43770 English Patient, The (1996)
## 44332 Scream (1996)
## 44787 Evita (1996)
## 45557 Liar Liar (1997)
## 46428 Air Force One (1997)
## 47075 L.A. Confidential (1997)
## 47935 Rainmaker, The (1997)
## 48069 Wings of the Dove, The (1997)
## 48256 Titanic (1997)
## 48586 Apt Pupil (1998)
## 48741 As Good As It Gets (1997)
## 49262 Everyone Says I Love You (1996)
## 49622 Murder at 1600 (1997)
## 49848 Dante's Peak (1997)
## 50328 G.I. Jane (1997)
## 50507 Cop Land (1997)
## 50697 Conspiracy Theory (1997)
## 51169 Kiss the Girls (1997)
## 51327 Game, The (1997)
## 51677 House of Yes, The (1997)
## 51855 Boogie Nights (1997)
## 52212 Apostle, The (1997)
## 52340 Jackie Brown (1997)
## 52626 Fallen (1998)
## 52710 Deep Rising (1998)
## 77612 Volcano (1997)
## 77911 Wishmaster (1997)
## 77945 I Know What You Did Last Summer (1997)
## 78680 Seven Years in Tibet (1997)
## 82954 Tomorrow Never Dies (1997)
## 83114 Replacement Killers, The (1998)
## 87778 That Darn Cat! (1997)
## 88048 Year of the Horse (1997)
## 88705 Great Expectations (1998)
## 91497 Anna Karenina (1997)
## 96251 Hugo Pool (1997)
## 6486 Star Wars (1977)
## 8371 Stargate (1994)
## 33961 Star Trek: First Contact (1996)
## 34751 Star Trek VI: The Undiscovered Country (1991)
## 34924 Star Trek: The Wrath of Khan (1982)
## 35159 Star Trek III: The Search for Spock (1984)
## 35333 Star Trek IV: The Voyage Home (1986)
## 37622 Jungle2Jungle (1997)
## 39490 Contact (1997)
## 41198 Starship Troopers (1997)
## 43771 English Patient, The (1996)
## 44333 Scream (1996)
## 45558 Liar Liar (1997)
## 46429 Air Force One (1997)
## 52097 Alien: Resurrection (1997)
## 54247 Star Trek: Generations (1994)
## 60450 Star Trek: The Motion Picture (1979)
## 60561 Star Trek V: The Final Frontier (1989)
## 78681 Seven Years in Tibet (1997)
## 82474 Saint, The (1997)
## 82819 Amistad (1997)
## 88609 Mr. Magoo (1997)
## 62 Toy Story (1995)
## 2705 Postino, Il (1994)
## 2905 Mr. Holland's Opus (1995)
## 4228 Birdcage, The (1996)
## 4475 Brothers McMullen, The (1995)
## 4642 Apollo 13 (1995)
## 6222 Hoop Dreams (1994)
## 6487 Star Wars (1977)
## 7299 Outbreak (1995)
## 7596 Pulp Fiction (1994)
## 7991 Quiz Show (1994)
## 8608 Shawshank Redemption, The (1994)
## 8857 What's Eating Gilbert Grape (1993)
## 8978 While You Were Sleeping (1995)
## 9405 Forrest Gump (1994)
## 9721 Four Weddings and a Funeral (1994)
## 9960 Lion King, The (1994)
## 10297 Maverick (1994)
## 10495 Firm, The (1993)
## 10712 Fugitive, The (1993)
## 11213 Jurassic Park (1993)
## 11458 Much Ado About Nothing (1993)
## 11706 Remains of the Day, The (1993)
## 12000 Sleepless in Seattle (1993)
## 13599 Dances with Wolves (1990)
## 13881 Silence of the Lambs, The (1991)
## 14233 Snow White and the Seven Dwarfs (1937)
## 15494 Truth About Cats & Dogs, The (1996)
## 16004 Rock, The (1996)
## 16378 Twister (1996)
## 16767 Independence Day (ID4) (1996)
## 18524 Breakfast at Tiffany's (1961)
## 18637 Wizard of Oz, The (1939)
## 18872 Gone with the Wind (1939)
## 19494 Mr. Smith Goes to Washington (1939)
## 19832 Homeward Bound: The Incredible Journey (1993)
## 20045 Sound of Music, The (1965)
## 21095 Willy Wonka and the Chocolate Factory (1971)
## 22318 Basic Instinct (1992)
## 22512 Top Gun (1986)
## 23281 Monty Python and the Holy Grail (1974)
## 23907 Empire Strikes Back, The (1980)
## 24269 Princess Bride, The (1987)
## 24607 Raiders of the Lost Ark (1981)
## 25747 Clockwork Orange, A (1971)
## 25972 Apocalypse Now (1979)
## 26231 Return of the Jedi (1983)
## 26703 GoodFellas (1990)
## 27573 Blues Brothers, The (1980)
## 28259 Henry V (1989)
## 28404 Amadeus (1984)
## 28778 Right Stuff, The (1983)
## 29488 Dead Poets Society (1989)
## 29735 Graduate, The (1967)
## 30568 Groundhog Day (1993)
## 31037 Back to the Future (1985)
## 31826 This Is Spinal Tap (1984)
## 32031 Indiana Jones and the Last Crusade (1989)
## 32633 Room with a View, A (1986)
## 32892 Field of Dreams (1989)
## 33115 When Harry Met Sally... (1989)
## 33504 Cape Fear (1991)
## 33776 Mirror Has Two Faces, The (1996)
## 33962 Star Trek: First Contact (1996)
## 34289 Sling Blade (1996)
## 34752 Star Trek VI: The Undiscovered Country (1991)
## 34925 Star Trek: The Wrath of Khan (1982)
## 35160 Star Trek III: The Search for Spock (1984)
## 36466 Jerry Maguire (1996)
## 36831 Raising Arizona (1987)
## 37816 Devil's Own, The (1997)
## 39491 Contact (1997)
## 40479 Hunt for Red October, The (1990)
## 41826 Sabrina (1995)
## 42027 Sense and Sensibility (1995)
## 42300 Leaving Las Vegas (1995)
## 42729 Up Close and Personal (1996)
## 42980 Time to Kill, A (1996)
## 43202 Emma (1996)
## 43382 Tin Cup (1996)
## 45559 Liar Liar (1997)
## 46430 Air Force One (1997)
## 48856 In the Name of the Father (1993)
## 49263 Everyone Says I Love You (1996)
## 49623 Murder at 1600 (1997)
## 50698 Conspiracy Theory (1997)
## 51856 Boogie Nights (1997)
## 53610 Clueless (1995)
## 53888 Bridges of Madison County, The (1995)
## 54100 Miracle on 34th Street (1994)
## 54248 Star Trek: Generations (1994)
## 54360 Muriel's Wedding (1994)
## 54967 Age of Innocence, The (1993)
## 55157 Man Without a Face, The (1993)
## 55236 Mrs. Doubtfire (1993)
## 55772 Ghost (1990)
## 56136 Pinocchio (1940)
## 56275 Mission: Impossible (1996)
## 57407 Old Yeller (1957)
## 57470 Parent Trap, The (1961)
## 57555 Cinderella (1950)
## 57683 Mary Poppins (1964)
## 58031 Aladdin and the King of Thieves (1996)
## 58095 E.T. the Extra-Terrestrial (1982)
## 58387 Bob Roberts (1992)
## 58521 To Kill a Mockingbird (1962)
## 59199 Fantasia (1940)
## 59374 Heathers (1989)
## 60637 Grease (1978)
## 61111 Nixon (1995)
## 61333 Like Water For Chocolate (Como agua para chocolate) (1992)
## 61572 Jungle Book, The (1994)
## 61753 Rudy (1993)
## 62017 Courage Under Fire (1996)
## 63201 Philadelphia Story, The (1940)
## 63733 Some Like It Hot (1959)
## 63870 Casablanca (1942)
## 64238 My Fair Lady (1964)
## 64420 Roman Holiday (1953)
## 64605 To Catch a Thief (1955)
## 64840 His Girl Friday (1940)
## 64979 It's a Wonderful Life (1946)
## 65188 Bringing Up Baby (1938)
## 65407 Cat on a Hot Tin Roof (1958)
## 65482 Dumbo (1941)
## 65813 Dial M for Murder (1954)
## 65883 Rebel Without a Cause (1955)
## 65977 Streetcar Named Desire, A (1951)
## 66095 People vs. Larry Flynt, The (1996)
## 68716 Shine (1996)
## 69955 Walk in the Clouds, A (1995)
## 70810 Speed (1994)
## 72009 Beauty and the Beast (1991)
## 72268 Primal Fear (1996)
## 72881 American in Paris, An (1951)
## 72949 Rear Window (1954)
## 73216 Meet Me in St. Louis (1944)
## 73414 Father of the Bride (1950)
## 73613 Giant (1956)
## 73941 Swiss Family Robinson (1960)
## 74659 Christmas Carol, A (1938)
## 75565 Glory (1989)
## 75730 Rosencrantz and Guildenstern Are Dead (1990)
## 76021 Stand by Me (1986)
## 76604 Fried Green Tomatoes (1991)
## 78108 In the Line of Fire (1993)
## 78273 Executive Decision (1996)
## 78417 Perfect World, A (1993)
## 78682 Seven Years in Tibet (1997)
## 78858 American President, The (1995)
## 79409 Barcelona (1994)
## 79513 Singin' in the Rain (1952)
## 80143 To Die For (1995)
## 80603 Boys on the Side (1995)
## 80858 Nell (1994)
## 81015 Dave (1993)
## 81364 Shadowlands (1993)
## 81535 Pretty Woman (1990)
## 81838 Ransom (1996)
## 82347 Benny & Joon (1993)
## 83713 Happy Gilmore (1996)
## 84024 Devil in a Blue Dress (1995)
## 84569 Only You (1994)
## 84685 Tommy Boy (1995)
## 85409 One Fine Day (1996)
## 86370 In the Line of Duty 2 (1987)
## 87352 Fools Rush In (1997)
## 87506 Picture Perfect (1997)
## 89108 White Squall (1996)
## 89977 What's Love Got to Do with It (1993)
## 90274 How to Make an American Quilt (1995)
## 90491 Before Sunrise (1995)
## 90794 Funny Face (1957)
## 90816 Affair to Remember, An (1957)
## 93059 Cool Runnings (1993)
## 93191 Hamlet (1996)
## 93654 She's the One (1996)
## 93852 Now and Then (1995)
## 94074 Little Princess, A (1995)
## 95667 Ghosts of Mississippi (1996)
## 95778 War Room, The (1993)
## 96471 Boys of St. Vincent, The (1993)
## 96968 When a Man Loves a Woman (1994)
## 37505 Kolya (1996)
## 37817 Devil's Own, The (1997)
## 39492 Contact (1997)
## 40766 Full Monty, The (1997)
## 41051 Gattaca (1997)
## 41407 Good Will Hunting (1997)
## 43772 English Patient, The (1996)
## 44334 Scream (1996)
## 46431 Air Force One (1997)
## 47076 L.A. Confidential (1997)
## 47351 Fly Away Home (1996)
## 47693 Devil's Advocate, The (1997)
## 47936 Rainmaker, The (1997)
## 48070 Wings of the Dove, The (1997)
## 48257 Titanic (1997)
## 49849 Dante's Peak (1997)
## 50508 Cop Land (1997)
## 51050 Edge, The (1997)
## 51790 Mad City (1997)
## 77613 Volcano (1997)
## 82475 Saint, The (1997)
## 87507 Picture Perfect (1997)
## 88002 Washington Square (1997)
## 88666 Afterglow (1997)
## 88730 Oscar & Lucinda (1997)
## 91498 Anna Karenina (1997)
## 91633 Kiss Me, Guido (1997)
## 96256 Welcome To Sarajevo (1997)
## 63 Toy Story (1995)
## 468 GoldenEye (1995)
## 595 Four Rooms (1995)
## 698 Get Shorty (1995)
## 894 Copycat (1995)
## 1064 Twelve Monkeys (1995)
## 2029 Seven (Se7en) (1995)
## 2266 Usual Suspects, The (1995)
## 3208 From Dusk Till Dawn (1996)
## 3560 Braveheart (1995)
## 4026 Rumble in the Bronx (1995)
## 4549 Bad Boys (1995)
## 4643 Apollo 13 (1995)
## 4888 Batman Forever (1995)
## 5045 Crimson Tide (1995)
## 5274 Desperado (1995)
## 5411 Net, The (1995)
## 5527 Strange Days (1995)
## 5666 Billy Madison (1995)
## 5719 Clerks (1994)
## 5893 Dolores Claiborne (1994)
## 6089 Ed Wood (1994)
## 6333 I.Q. (1994)
## 6488 Star Wars (1977)
## 7173 Natural Born Killers (1994)
## 7300 Outbreak (1995)
## 7407 Professional, The (1994)
## 7597 Pulp Fiction (1994)
## 7992 Quiz Show (1994)
## 8372 Stargate (1994)
## 8496 Santa Clause, The (1994)
## 8609 Shawshank Redemption, The (1994)
## 8858 What's Eating Gilbert Grape (1993)
## 8979 While You Were Sleeping (1995)
## 9136 Ace Ventura: Pet Detective (1994)
## 9243 Crow, The (1994)
## 9406 Forrest Gump (1994)
## 9961 Lion King, The (1994)
## 10496 Firm, The (1993)
## 10713 Fugitive, The (1993)
## 11214 Jurassic Park (1993)
## 11612 Robert A. Heinlein's The Puppet Masters (1994)
## 12001 Sleepless in Seattle (1993)
## 12226 Blade Runner (1982)
## 12477 So I Married an Axe Murderer (1993)
## 12821 Welcome to the Dollhouse (1995)
## 12937 Home Alone (1990)
## 13081 Aladdin (1992)
## 13314 Terminator 2: Judgment Day (1991)
## 13882 Silence of the Lambs, The (1991)
## 14234 Snow White and the Seven Dwarfs (1937)
## 14454 Fargo (1996)
## 15050 Sgt. Bilko (1996)
## 15316 Mystery Science Theater 3000: The Movie (1996)
## 15495 Truth About Cats & Dogs, The (1996)
## 16005 Rock, The (1996)
## 16379 Twister (1996)
## 16768 Independence Day (ID4) (1996)
## 17148 Cable Guy, The (1996)
## 17254 Frighteners, The (1996)
## 17574 Phenomenon (1996)
## 18302 Supercop (1992)
## 18638 Wizard of Oz, The (1939)
## 19049 Citizen Kane (1941)
## 20046 Sound of Music, The (1965)
## 20271 Die Hard (1988)
## 20575 Long Kiss Goodnight, The (1996)
## 20755 Ghost and the Darkness, The (1996)
## 20909 Swingers (1996)
## 21997 Reservoir Dogs (1992)
## 22257 Weekend at Bernie's (1989)
## 22319 Basic Instinct (1992)
## 22513 Top Gun (1986)
## 23282 Monty Python and the Holy Grail (1974)
## 23908 Empire Strikes Back, The (1980)
## 24270 Princess Bride, The (1987)
## 24608 Raiders of the Lost Ark (1981)
## 25215 Aliens (1986)
## 25748 Clockwork Orange, A (1971)
## 26232 Return of the Jedi (1983)
## 26932 Alien (1979)
## 27204 Army of Darkness (1993)
## 27337 Psycho (1960)
## 28026 Full Metal Jacket (1987)
## 29199 Terminator, The (1984)
## 29489 Dead Poets Society (1989)
## 30265 Shining, The (1980)
## 30569 Groundhog Day (1993)
## 30835 Unforgiven (1992)
## 31038 Back to the Future (1985)
## 31484 Akira (1988)
## 32032 Indiana Jones and the Last Crusade (1989)
## 32893 Field of Dreams (1989)
## 33116 When Harry Met Sally... (1989)
## 33381 Bram Stoker's Dracula (1992)
## 33505 Cape Fear (1991)
## 33672 Nightmare on Elm Street, A (1984)
## 33963 Star Trek: First Contact (1996)
## 34581 Die Hard 2 (1990)
## 34753 Star Trek VI: The Undiscovered Country (1991)
## 34926 Star Trek: The Wrath of Khan (1982)
## 35161 Star Trek III: The Search for Spock (1984)
## 35334 Star Trek IV: The Voyage Home (1986)
## 35523 Batman Returns (1992)
## 35763 Under Siege (1992)
## 35902 Jaws (1975)
## 36179 Mars Attacks! (1996)
## 36373 Citizen Ruth (1996)
## 36467 Jerry Maguire (1996)
## 37069 Sneakers (1992)
## 37225 Beavis and Butt-head Do America (1996)
## 37623 Jungle2Jungle (1997)
## 37818 Devil's Own, The (1997)
## 38043 Chasing Amy (1997)
## 38169 Grosse Pointe Blank (1997)
## 38328 Austin Powers: International Man of Mystery (1997)
## 38467 Fifth Element, The (1997)
## 38708 Lost World: Jurassic Park, The (1997)
## 38875 Batman & Robin (1997)
## 38952 My Best Friend's Wedding (1997)
## 39160 Men in Black (1997)
## 39493 Contact (1997)
## 40227 Air Bud (1997)
## 40275 In the Company of Men (1997)
## 40713 unknown
## 40767 Full Monty, The (1997)
## 41052 Gattaca (1997)
## 41199 Starship Troopers (1997)
## 41408 Good Will Hunting (1997)
## 42301 Leaving Las Vegas (1995)
## 42823 River Wild, The (1994)
## 42981 Time to Kill, A (1996)
## 43383 Tin Cup (1996)
## 43773 English Patient, The (1996)
## 44335 Scream (1996)
## 44788 Evita (1996)
## 45026 Fierce Creatures (1997)
## 45118 Absolute Power (1997)
## 45352 Donnie Brasco (1997)
## 45560 Liar Liar (1997)
## 45988 Breakdown (1997)
## 46135 Face/Off (1997)
## 46316 Hoodlum (1997)
## 46432 Air Force One (1997)
## 47492 Ice Storm, The (1997)
## 47694 Devil's Advocate, The (1997)
## 48258 Titanic (1997)
## 48587 Apt Pupil (1998)
## 48742 As Good As It Gets (1997)
## 49456 Mother (1996)
## 49624 Murder at 1600 (1997)
## 50329 G.I. Jane (1997)
## 50699 Conspiracy Theory (1997)
## 50962 Desperate Measures (1998)
## 51002 187 (1997)
## 51051 Edge, The (1997)
## 51170 Kiss the Girls (1997)
## 51328 Game, The (1997)
## 51612 How to Be a Player (1997)
## 52037 Man Who Knew Too Little, The (1997)
## 52098 Alien: Resurrection (1997)
## 52341 Jackie Brown (1997)
## 52470 Wag the Dog (1997)
## 52627 Fallen (1998)
## 52711 Deep Rising (1998)
## 52736 Wedding Singer, The (1998)
## 52799 Sphere (1998)
## 52848 Client, The (1994)
## 52969 One Flew Over the Cuckoo's Nest (1975)
## 53214 Spawn (1997)
## 53411 Sudden Death (1995)
## 53542 Dangerous Minds (1995)
## 53611 Clueless (1995)
## 53984 Judge Dredd (1995)
## 54020 Mighty Morphin Power Rangers: The Movie (1995)
## 54195 Tales From the Crypt Presents: Demon Knight (1995)
## 54692 True Lies (1994)
## 55056 Black Beauty (1994)
## 55158 Man Without a Face, The (1993)
## 55237 Mrs. Doubtfire (1993)
## 55543 Super Mario Bros. (1993)
## 55946 Batman (1989)
## 56137 Pinocchio (1940)
## 56276 Mission: Impossible (1996)
## 56619 Spy Hard (1996)
## 56857 Kingpin (1996)
## 57030 Nutty Professor, The (1996)
## 57179 Very Brady Sequel, A (1996)
## 57269 Tales from the Crypt Presents: Bordello of Blood (1996)
## 57556 Cinderella (1950)
## 57684 Mary Poppins (1964)
## 57853 Alice in Wonderland (1951)
## 58096 E.T. the Extra-Terrestrial (1982)
## 58461 Transformers: The Movie, The (1986)
## 58522 To Kill a Mockingbird (1962)
## 59375 Heathers (1989)
## 59815 American Werewolf in London, An (1981)
## 60008 Birds, The (1963)
## 60157 Blob, The (1958)
## 60451 Star Trek: The Motion Picture (1979)
## 60562 Star Trek V: The Final Frontier (1989)
## 60791 Jaws 2 (1978)
## 60853 Jaws 3-D (1983)
## 60899 Jackie Chan's First Strike (1996)
## 61573 Jungle Book, The (1994)
## 61817 Short Cuts (1993)
## 61887 Tombstone (1993)
## 62018 Courage Under Fire (1996)
## 62230 Dragonheart (1996)
## 62724 Trainspotting (1996)
## 63111 Matilda (1996)
## 64980 It's a Wonderful Life (1946)
## 65483 Dumbo (1941)
## 66096 People vs. Larry Flynt, The (1996)
## 68237 Gandhi (1982)
## 68717 Shine (1996)
## 68830 Kama Sutra: A Tale of Love (1996)
## 68866 Traveller (1997)
## 68976 Anastasia (1997)
## 69130 Mortal Kombat (1995)
## 69180 Pocahontas (1995)
## 69367 Broken Arrow (1996)
## 69745 Die Hard: With a Vengeance (1995)
## 69906 Species (1995)
## 70020 Waterworld (1995)
## 70113 White Man's Burden (1995)
## 70523 Tales from the Hood (1995)
## 70547 Village of the Damned (1995)
## 70585 Clear and Present Danger (1994)
## 70749 Wes Craven's New Nightmare (1994)
## 70811 Speed (1994)
## 71018 Wolf (1994)
## 71158 Blown Away (1994)
## 71416 Demolition Man (1993)
## 72010 Beauty and the Beast (1991)
## 72189 Wild Bunch, The (1969)
## 72534 Hunchback of Notre Dame, The (1996)
## 72670 Eraser (1996)
## 73824 Extreme Measures (1996)
## 73942 Swiss Family Robinson (1960)
## 74048 Sword in the Stone, The (1963)
## 74131 Robin Hood: Prince of Thieves (1991)
## 75105 Grifters, The (1990)
## 76399 Pump Up the Volume (1990)
## 77084 Alien 3 (1992)
## 77196 Body Parts (1991)
## 77262 Candyman (1992)
## 77614 Volcano (1997)
## 77912 Wishmaster (1997)
## 77946 I Know What You Did Last Summer (1997)
## 78109 In the Line of Fire (1993)
## 78274 Executive Decision (1996)
## 78584 Jackal, The (1997)
## 78859 American President, The (1995)
## 80289 Juror, The (1996)
## 80492 Mallrats (1995)
## 80859 Nell (1994)
## 80960 Corrina, Corrina (1994)
## 81536 Pretty Woman (1990)
## 81839 Ransom (1996)
## 82075 Crow: City of Angels, The (1996)
## 82229 Real Genius (1985)
## 82476 Saint, The (1997)
## 82955 Tomorrow Never Dies (1997)
## 83115 Replacement Killers, The (1998)
## 83343 Father of the Bride Part II (1995)
## 83540 Nick of Time (1995)
## 83714 Happy Gilmore (1996)
## 83877 Boomerang (1992)
## 83981 Congo (1995)
## 84079 Johnny Mnemonic (1995)
## 84121 Kids (1995)
## 84333 Drop Zone (1994)
## 84857 It Could Happen to You (1994)
## 84986 Bad Company (1995)
## 85005 In the Mouth of Madness (1995)
## 85045 Hard Target (1993)
## 85131 Menace II Society (1993)
## 85188 Program, The (1993)
## 85410 One Fine Day (1996)
## 85511 Candyman: Farewell to the Flesh (1995)
## 85559 Eddie (1996)
## 85616 Space Jam (1996)
## 85803 Great White Hype, The (1996)
## 86020 Daylight (1996)
## 86234 Bulletproof (1996)
## 87143 My Fellow Americans (1996)
## 87677 Money Talks (1997)
## 88188 One Night Stand (1997)
## 88213 Mortal Kombat: Annihilation (1997)
## 88268 Flubber (1997)
## 88330 Home Alone 3 (1997)
## 88357 Scream 2 (1997)
## 88610 Mr. Magoo (1997)
## 89334 Craft, The (1996)
## 89433 Harriet the Spy (1996)
## 89481 Chain Reaction (1996)
## 89561 Island of Dr. Moreau, The (1996)
## 89610 First Kid (1996)
## 89672 Preacher's Wife, The (1996)
## 89840 Murder in the First (1995)
## 89899 Airheads (1994)
## 90065 Renaissance Man (1994)
## 90151 Fox and the Hound, The (1981)
## 90275 How to Make an American Quilt (1995)
## 90602 Dazed and Confused (1993)
## 91021 Eye for an Eye (1996)
## 91057 Fear (1996)
## 91249 Maximum Risk (1996)
## 91566 Hercules (1997)
## 92193 Anaconda (1997)
## 92233 Romy and Michele's High School Reunion (1997)
## 92355 Con Air (1997)
## 92480 Trees Lounge (1996)
## 92560 Die xue shuang xiong (Killer, The) (1989)
## 92811 Grumpier Old Men (1995)
## 93029 Quest, The (1996)
## 93192 Hamlet (1996)
## 93467 Malice (1993)
## 93528 Multiplicity (1996)
## 93721 House Arrest (1996)
## 93942 War, The (1994)
## 94505 Joe's Apartment (1996)
## 94633 Double Team (1997)
## 94652 Speed 2: Cruise Control (1997)
## 94814 High School High (1996)
## 95668 Ghosts of Mississippi (1996)
## 95790 When We Were Kings (1996)
## 95926 Original Gangstas (1996)
## 95998 Relic, The (1997)
## 96693 Jade (1995)
## 96710 Kiss of Death (1995)
## 96748 Virtuosity (1995)
## 96816 Barb Wire (1996)
## 96853 Assassins (1995)
## 96938 Higher Learning (1995)
## 97104 Under Siege 2: Dark Territory (1995)
## 97181 Marked for Death (1990)
## 97313 Metro (1997)
## 97347 Gridlock'd (1997)
## 97367 Bushwhacked (1995)
## 97379 Blink (1994)
## 97558 Clockers (1995)
## 97629 Color of Night (1994)
## 97644 Robocop 3 (1993)
## 97655 Killer (Bulletproof Heart) (1994)
## 97659 Sunset Park (1996)
## 97667 Set It Off (1996)
## 97686 Selena (1997)
## 97702 Wild America (1997)
## 97711 Gang Related (1997)
## 64 Toy Story (1995)
## 1651 Dead Man Walking (1995)
## 2706 Postino, Il (1994)
## 3307 Antonia's Line (1995)
## 14455 Fargo (1996)
## 17378 Lone Star (1996)
## 17799 Spitfire Grill, The (1996)
## 17935 Godfather, The (1972)
## 19608 Big Night (1996)
## 33843 Breaking the Waves (1996)
## 37506 Kolya (1996)
## 38170 Grosse Pointe Blank (1997)
## 38644 Shall We Dance? (1996)
## 40768 Full Monty, The (1997)
## 41827 Sabrina (1995)
## 42028 Sense and Sensibility (1995)
## 42302 Leaving Las Vegas (1995)
## 43573 Secrets & Lies (1996)
## 43774 English Patient, The (1996)
## 44204 Marvin's Room (1996)
## 45353 Donnie Brasco (1997)
## 46066 Ulee's Gold (1997)
## 47077 L.A. Confidential (1997)
## 48259 Titanic (1997)
## 68932 Ponette (1996)
## 82121 Michael Collins (1996)
## 82820 Amistad (1997)
## 85352 Celluloid Closet, The (1995)
## 86601 That Thing You Do! (1996)
## 97727 Manny & Lo (1996)
## 2267 Usual Suspects, The (1995)
## 6489 Star Wars (1977)
## 7598 Pulp Fiction (1994)
## 14456 Fargo (1996)
## 17379 Lone Star (1996)
## 17936 Godfather, The (1972)
## 19609 Big Night (1996)
## 21096 Willy Wonka and the Chocolate Factory (1971)
## 21727 Monty Python's Life of Brian (1979)
## 25008 Brazil (1985)
## 38645 Shall We Dance? (1996)
## 42029 Sense and Sensibility (1995)
## 43574 Secrets & Lies (1996)
## 43775 English Patient, The (1996)
## 64102 Maltese Falcon, The (1941)
## 67660 Deer Hunter, The (1978)
## 67823 Cool Hand Luke (1967)
## 77030 Paris, Texas (1984)
## 85132 Menace II Society (1993)
## 89009 Dead Man (1995)
## 92561 Die xue shuang xiong (Killer, The) (1989)
## 95981 Alphaville (1965)
## 37624 Jungle2Jungle (1997)
## 37819 Devil's Own, The (1997)
## 39494 Contact (1997)
## 40111 Event Horizon (1997)
## 40769 Full Monty, The (1997)
## 41200 Starship Troopers (1997)
## 41409 Good Will Hunting (1997)
## 43776 English Patient, The (1996)
## 45561 Liar Liar (1997)
## 46433 Air Force One (1997)
## 47352 Fly Away Home (1996)
## 47587 Mrs. Brown (Her Majesty, Mrs. Brown) (1997)
## 47862 FairyTale: A True Story (1997)
## 48260 Titanic (1997)
## 48588 Apt Pupil (1998)
## 48743 As Good As It Gets (1997)
## 49625 Murder at 1600 (1997)
## 50700 Conspiracy Theory (1997)
## 52099 Alien: Resurrection (1997)
## 52342 Jackie Brown (1997)
## 52800 Sphere (1998)
## 69047 Mouse Hunt (1997)
## 82758 MatchMaker, The (1997)
## 82821 Amistad (1997)
## 82956 Tomorrow Never Dies (1997)
## 88624 Big Lebowski, The (1998)
## 65 Toy Story (1995)
## 2906 Mr. Holland's Opus (1995)
## 39495 Contact (1997)
## 39954 George of the Jungle (1997)
## 40770 Full Monty, The (1997)
## 43777 English Patient, The (1996)
## 45562 Liar Liar (1997)
## 46434 Air Force One (1997)
## 46841 In & Out (1997)
## 47078 L.A. Confidential (1997)
## 48261 Titanic (1997)
## 48589 Apt Pupil (1998)
## 48744 As Good As It Gets (1997)
## 49850 Dante's Peak (1997)
## 50330 G.I. Jane (1997)
## 50701 Conspiracy Theory (1997)
## 51708 Bean (1997)
## 51791 Mad City (1997)
## 66097 People vs. Larry Flynt, The (1996)
## 69048 Mouse Hunt (1997)
## 77615 Volcano (1997)
## 82477 Saint, The (1997)
## 82957 Tomorrow Never Dies (1997)
## 87822 Peacemaker, The (1997)
## 88269 Flubber (1997)
## 895 Copycat (1995)
## 2268 Usual Suspects, The (1995)
## 3842 Taxi Driver (1976)
## 5275 Desperado (1995)
## 5412 Net, The (1995)
## 5528 Strange Days (1995)
## 7301 Outbreak (1995)
## 7408 Professional, The (1994)
## 7599 Pulp Fiction (1994)
## 10497 Firm, The (1993)
## 10714 Fugitive, The (1993)
## 13883 Silence of the Lambs, The (1991)
## 24271 Princess Bride, The (1987)
## 25216 Aliens (1986)
## 26933 Alien (1979)
## 27338 Psycho (1960)
## 30836 Unforgiven (1992)
## 34582 Die Hard 2 (1990)
## 34754 Star Trek VI: The Undiscovered Country (1991)
## 34927 Star Trek: The Wrath of Khan (1982)
## 35162 Star Trek III: The Search for Spock (1984)
## 35335 Star Trek IV: The Voyage Home (1986)
## 35764 Under Siege (1992)
## 35903 Jaws (1975)
## 39496 Contact (1997)
## 40112 Event Horizon (1997)
## 40480 Hunt for Red October, The (1990)
## 44336 Scream (1996)
## 45563 Liar Liar (1997)
## 49457 Mother (1996)
## 50073 Lost Highway (1997)
## 50198 Crash (1996)
## 50509 Cop Land (1997)
## 54196 Tales From the Crypt Presents: Demon Knight (1995)
## 59039 Highlander (1986)
## 60009 Birds, The (1963)
## 60452 Star Trek: The Motion Picture (1979)
## 60792 Jaws 2 (1978)
## 61888 Tombstone (1993)
## 62725 Trainspotting (1996)
## 65699 Bonnie and Clyde (1967)
## 70021 Waterworld (1995)
## 70524 Tales from the Hood (1995)
## 70586 Clear and Present Danger (1994)
## 71559 Kalifornia (1993)
## 72950 Rear Window (1954)
## 75106 Grifters, The (1990)
## 75809 Touch of Evil (1958)
## 82122 Michael Collins (1996)
## 85046 Hard Target (1993)
## 89841 Murder in the First (1995)
## 90020 Killing Zoe (1994)
## 93468 Malice (1993)
## 96711 Kiss of Death (1995)
## 96854 Assassins (1995)
## 1652 Dead Man Walking (1995)
## 2707 Postino, Il (1994)
## 2907 Mr. Holland's Opus (1995)
## 3308 Antonia's Line (1995)
## 5720 Clerks (1994)
## 7600 Pulp Fiction (1994)
## 12227 Blade Runner (1982)
## 14457 Fargo (1996)
## 15858 Cold Comfort Farm (1995)
## 16006 Rock, The (1996)
## 17380 Lone Star (1996)
## 17937 Godfather, The (1972)
## 19610 Big Night (1996)
## 31039 Back to the Future (1985)
## 34290 Sling Blade (1996)
## 36468 Jerry Maguire (1996)
## 39161 Men in Black (1997)
## 39497 Contact (1997)
## 40771 Full Monty, The (1997)
## 42030 Sense and Sensibility (1995)
## 42303 Leaving Las Vegas (1995)
## 43203 Emma (1996)
## 43778 English Patient, The (1996)
## 46136 Face/Off (1997)
## 48262 Titanic (1997)
## 48982 Schindler's List (1993)
## 62726 Trainspotting (1996)
## 67022 Boot, Das (1981)
## 68021 Big Sleep, The (1946)
## 75298 Ran (1985)
## 82123 Michael Collins (1996)
## 82348 Benny & Joon (1993)
## 86803 Looking for Richard (1996)
## 95791 When We Were Kings (1996)
## 66 Toy Story (1995)
## 2908 Mr. Holland's Opus (1995)
## 6490 Star Wars (1977)
## 6999 Legends of the Fall (1994)
## 7409 Professional, The (1994)
## 10715 Fugitive, The (1993)
## 12228 Blade Runner (1982)
## 13315 Terminator 2: Judgment Day (1991)
## 16007 Rock, The (1996)
## 16380 Twister (1996)
## 16769 Independence Day (ID4) (1996)
## 20272 Die Hard (1988)
## 23909 Empire Strikes Back, The (1980)
## 24609 Raiders of the Lost Ark (1981)
## 26233 Return of the Jedi (1983)
## 26934 Alien (1979)
## 29200 Terminator, The (1984)
## 32033 Indiana Jones and the Last Crusade (1989)
## 33964 Star Trek: First Contact (1996)
## 36180 Mars Attacks! (1996)
## 36469 Jerry Maguire (1996)
## 37625 Jungle2Jungle (1997)
## 38329 Austin Powers: International Man of Mystery (1997)
## 38468 Fifth Element, The (1997)
## 39162 Men in Black (1997)
## 40113 Event Horizon (1997)
## 40228 Air Bud (1997)
## 40682 Kull the Conqueror (1997)
## 44789 Evita (1996)
## 46435 Air Force One (1997)
## 50510 Cop Land (1997)
## 54693 True Lies (1994)
## 56277 Mission: Impossible (1996)
## 57031 Nutty Professor, The (1996)
## 62231 Dragonheart (1996)
## 62960 First Wives Club, The (1996)
## 69368 Broken Arrow (1996)
## 72671 Eraser (1996)
## 78275 Executive Decision (1996)
## 78467 McHale's Navy (1997)
## 78683 Seven Years in Tibet (1997)
## 82478 Saint, The (1997)
## 87240 Michael (1996)
## 88270 Flubber (1997)
## 92812 Grumpier Old Men (1995)
## 95238 Surviving Picasso (1996)
## 67 Toy Story (1995)
## 2269 Usual Suspects, The (1995)
## 2530 Mighty Aphrodite (1995)
## 2708 Postino, Il (1994)
## 2909 Mr. Holland's Opus (1995)
## 4476 Brothers McMullen, The (1995)
## 5976 Eat Drink Man Woman (1994)
## 7601 Pulp Fiction (1994)
## 13884 Silence of the Lambs, The (1991)
## 14458 Fargo (1996)
## 15496 Truth About Cats & Dogs, The (1996)
## 15859 Cold Comfort Farm (1995)
## 16008 Rock, The (1996)
## 16770 Independence Day (ID4) (1996)
## 18873 Gone with the Wind (1939)
## 19611 Big Night (1996)
## 20576 Long Kiss Goodnight, The (1996)
## 20910 Swingers (1996)
## 21097 Willy Wonka and the Chocolate Factory (1971)
## 26704 GoodFellas (1990)
## 27339 Psycho (1960)
## 27818 Godfather: Part II, The (1974)
## 28952 Sting, The (1973)
## 31827 This Is Spinal Tap (1984)
## 32352 M*A*S*H (1970)
## 33965 Star Trek: First Contact (1996)
## 36832 Raising Arizona (1987)
## 43575 Secrets & Lies (1996)
## 48983 Schindler's List (1993)
## 52970 One Flew Over the Cuckoo's Nest (1975)
## 59617 Butch Cassidy and the Sundance Kid (1969)
## 62520 Dr. Strangelove or: How I Learned to Stop Worrying and Love the Bomb (1963)
## 63871 Casablanca (1942)
## 64103 Maltese Falcon, The (1941)
## 64421 Roman Holiday (1953)
## 64784 Thin Man, The (1934)
## 64981 It's a Wonderful Life (1946)
## 65189 Bringing Up Baby (1938)
## 66291 My Left Foot (1989)
## 66759 Third Man, The (1949)
## 66845 Annie Hall (1977)
## 67275 Manhattan (1979)
## 67371 Miller's Crossing (1990)
## 67461 Treasure of the Sierra Madre, The (1948)
## 67824 Cool Hand Luke (1967)
## 72882 American in Paris, An (1951)
## 72951 Rear Window (1954)
## 73614 Giant (1956)
## 73787 Blue Angel, The (Blaue Engel, Der) (1930)
## 76835 Somewhere in Time (1980)
## 81840 Ransom (1996)
## 14459 Fargo (1996)
## 17938 Godfather, The (1972)
## 20911 Swingers (1996)
## 33966 Star Trek: First Contact (1996)
## 36470 Jerry Maguire (1996)
## 37507 Kolya (1996)
## 38044 Chasing Amy (1997)
## 43779 English Patient, The (1996)
## 44337 Scream (1996)
## 46056 Promesse, La (1996)
## 46067 Ulee's Gold (1997)
## 47079 L.A. Confidential (1997)
## 47695 Devil's Advocate, The (1997)
## 61112 Nixon (1995)
## 61217 Crossing Guard, The (1995)
## 62727 Trainspotting (1996)
## 66098 People vs. Larry Flynt, The (1996)
## 77514 Crucible, The (1996)
## 81689 Jane Eyre (1996)
## 82124 Michael Collins (1996)
## 96257 Welcome To Sarajevo (1997)
## 97219 Nenette et Boni (1996)
## 37820 Devil's Own, The (1997)
## 39498 Contact (1997)
## 43780 English Patient, The (1996)
## 44338 Scream (1996)
## 44790 Evita (1996)
## 45564 Liar Liar (1997)
## 46842 In & Out (1997)
## 47080 L.A. Confidential (1997)
## 47353 Fly Away Home (1996)
## 49264 Everyone Says I Love You (1996)
## 49458 Mother (1996)
## 49626 Murder at 1600 (1997)
## 50199 Crash (1996)
## 51171 Kiss the Girls (1997)
## 51555 U Turn (1997)
## 87463 Love Jones (1997)
## 87508 Picture Perfect (1997)
## 87950 Soul Food (1997)
## 91382 Beautician and the Beast, The (1997)
## 68 Toy Story (1995)
## 1065 Twelve Monkeys (1995)
## 2910 Mr. Holland's Opus (1995)
## 4229 Birdcage, The (1996)
## 6491 Star Wars (1977)
## 14460 Fargo (1996)
## 15124 Diabolique (1996)
## 16009 Rock, The (1996)
## 16381 Twister (1996)
## 16645 Striptease (1996)
## 16771 Independence Day (ID4) (1996)
## 17575 Phenomenon (1996)
## 17800 Spitfire Grill, The (1996)
## 17939 Godfather, The (1972)
## 20577 Long Kiss Goodnight, The (1996)
## 21098 Willy Wonka and the Chocolate Factory (1971)
## 26234 Return of the Jedi (1983)
## 33967 Star Trek: First Contact (1996)
## 34474 101 Dalmatians (1996)
## 36181 Mars Attacks! (1996)
## 36471 Jerry Maguire (1996)
## 37740 Smilla's Sense of Snow (1997)
## 37821 Devil's Own, The (1997)
## 38171 Grosse Pointe Blank (1997)
## 38330 Austin Powers: International Man of Mystery (1997)
## 38469 Fifth Element, The (1997)
## 38709 Lost World: Jurassic Park, The (1997)
## 38953 My Best Friend's Wedding (1997)
## 39163 Men in Black (1997)
## 39499 Contact (1997)
## 39955 George of the Jungle (1997)
## 40229 Air Bud (1997)
## 41828 Sabrina (1995)
## 42304 Leaving Las Vegas (1995)
## 42693 Once Upon a Time... When We Were Colored (1995)
## 42824 River Wild, The (1994)
## 42982 Time to Kill, A (1996)
## 43384 Tin Cup (1996)
## 43781 English Patient, The (1996)
## 44339 Scream (1996)
## 45027 Fierce Creatures (1997)
## 45119 Absolute Power (1997)
## 45244 Rosewood (1997)
## 45354 Donnie Brasco (1997)
## 45565 Liar Liar (1997)
## 45989 Breakdown (1997)
## 46137 Face/Off (1997)
## 46436 Air Force One (1997)
## 48263 Titanic (1997)
## 49627 Murder at 1600 (1997)
## 49851 Dante's Peak (1997)
## 50702 Conspiracy Theory (1997)
## 51003 187 (1997)
## 51329 Game, The (1997)
## 51613 How to Be a Player (1997)
## 52343 Jackie Brown (1997)
## 56278 Mission: Impossible (1996)
## 56620 Spy Hard (1996)
## 56784 Jack (1996)
## 56858 Kingpin (1996)
## 62019 Courage Under Fire (1996)
## 62232 Dragonheart (1996)
## 62961 First Wives Club, The (1996)
## 68880 Addicted to Love (1997)
## 69369 Broken Arrow (1996)
## 72269 Primal Fear (1996)
## 72672 Eraser (1996)
## 73825 Extreme Measures (1996)
## 77515 Crucible, The (1996)
## 77616 Volcano (1997)
## 79150 City Hall (1996)
## 80290 Juror, The (1996)
## 81841 Ransom (1996)
## 82125 Michael Collins (1996)
## 82479 Saint, The (1997)
## 82822 Amistad (1997)
## 83344 Father of the Bride Part II (1995)
## 85411 One Fine Day (1996)
## 85730 Mulholland Falls (1996)
## 85856 Arrival, The (1996)
## 85939 Phantom, The (1996)
## 86125 Escape from L.A. (1996)
## 87144 My Fellow Americans (1996)
## 87241 Michael (1996)
## 87398 Vegas Vacation (1997)
## 87464 Love Jones (1997)
## 87951 Soul Food (1997)
## 89235 Down Periscope (1996)
## 89482 Chain Reaction (1996)
## 89611 First Kid (1996)
## 91022 Eye for an Eye (1996)
## 91287 Shadow Conspiracy (1997)
## 91327 Blood & Wine (1997)
## 91383 Beautician and the Beast, The (1997)
## 92194 Anaconda (1997)
## 92234 Romy and Michele's High School Reunion (1997)
## 92696 Fathers' Day (1997)
## 92813 Grumpier Old Men (1995)
## 93279 Two if by Sea (1996)
## 93529 Multiplicity (1996)
## 93961 Don't Be a Menace to South Central While Drinking Your Juice in the Hood (1996)
## 95792 When We Were Kings (1996)
## 97314 Metro (1997)
## 97462 Trial and Error (1997)
## 97712 Gang Related (1997)
## 97740 Grass Harp, The (1995)
## 97749 Out to Sea (1997)
## 1066 Twelve Monkeys (1995)
## 4644 Apollo 13 (1995)
## 5721 Clerks (1994)
## 7410 Professional, The (1994)
## 11215 Jurassic Park (1993)
## 12229 Blade Runner (1982)
## 12577 Nightmare Before Christmas, The (1993)
## 17381 Lone Star (1996)
## 19050 Citizen Kane (1941)
## 20578 Long Kiss Goodnight, The (1996)
## 23568 Wrong Trousers, The (1993)
## 25217 Aliens (1986)
## 26235 Return of the Jedi (1983)
## 27574 Blues Brothers, The (1980)
## 28187 Grand Day Out, A (1992)
## 37626 Jungle2Jungle (1997)
## 39956 George of the Jungle (1997)
## 44340 Scream (1996)
## 45566 Liar Liar (1997)
## 48590 Apt Pupil (1998)
## 49628 Murder at 1600 (1997)
## 51330 Game, The (1997)
## 51709 Bean (1997)
## 52344 Jackie Brown (1997)
## 52628 Fallen (1998)
## 53215 Spawn (1997)
## 53379 Blues Brothers 2000 (1998)
## 56673 Close Shave, A (1995)
## 58388 Bob Roberts (1992)
## 61479 Secret of Roan Inish, The (1994)
## 66846 Annie Hall (1977)
## 88358 Scream 2 (1997)
## 39500 Contact (1997)
## 41201 Starship Troopers (1997)
## 41410 Good Will Hunting (1997)
## 43782 English Patient, The (1996)
## 44341 Scream (1996)
## 45567 Liar Liar (1997)
## 47696 Devil's Advocate, The (1997)
## 48264 Titanic (1997)
## 48591 Apt Pupil (1998)
## 49629 Murder at 1600 (1997)
## 49852 Dante's Peak (1997)
## 50200 Crash (1996)
## 50331 G.I. Jane (1997)
## 50703 Conspiracy Theory (1997)
## 51052 Edge, The (1997)
## 51331 Game, The (1997)
## 52471 Wag the Dog (1997)
## 77947 I Know What You Did Last Summer (1997)
## 78684 Seven Years in Tibet (1997)
## 93170 Switchback (1997)
## 69 Toy Story (1995)
## 699 Get Shorty (1995)
## 1067 Twelve Monkeys (1995)
## 1418 Babe (1995)
## 1653 Dead Man Walking (1995)
## 2270 Usual Suspects, The (1995)
## 2709 Postino, Il (1994)
## 2911 Mr. Holland's Opus (1995)
## 3309 Antonia's Line (1995)
## 3375 Angels and Insects (1995)
## 3561 Braveheart (1995)
## 4027 Rumble in the Bronx (1995)
## 5046 Crimson Tide (1995)
## 5199 Crumb (1994)
## 5276 Desperado (1995)
## 6223 Hoop Dreams (1994)
## 6492 Star Wars (1977)
## 7302 Outbreak (1995)
## 7411 Professional, The (1994)
## 7602 Pulp Fiction (1994)
## 7993 Quiz Show (1994)
## 8161 Three Colors: Red (1994)
## 8303 Three Colors: White (1994)
## 8373 Stargate (1994)
## 8610 Shawshank Redemption, The (1994)
## 8859 What's Eating Gilbert Grape (1993)
## 8980 While You Were Sleeping (1995)
## 9244 Crow, The (1994)
## 9407 Forrest Gump (1994)
## 9722 Four Weddings and a Funeral (1994)
## 10167 Mask, The (1994)
## 10298 Maverick (1994)
## 11857 Searching for Bobby Fischer (1993)
## 12230 Blade Runner (1982)
## 12578 Nightmare Before Christmas, The (1993)
## 12822 Welcome to the Dollhouse (1995)
## 13316 Terminator 2: Judgment Day (1991)
## 13885 Silence of the Lambs, The (1991)
## 14461 Fargo (1996)
## 15051 Sgt. Bilko (1996)
## 15125 Diabolique (1996)
## 15860 Cold Comfort Farm (1995)
## 16010 Rock, The (1996)
## 17382 Lone Star (1996)
## 17576 Phenomenon (1996)
## 17801 Spitfire Grill, The (1996)
## 17940 Godfather, The (1972)
## 18374 Bound (1996)
## 19261 2001: A Space Odyssey (1968)
## 19612 Big Night (1996)
## 20273 Die Hard (1988)
## 20579 Long Kiss Goodnight, The (1996)
## 21492 Fish Called Wanda, A (1988)
## 22420 Glengarry Glen Ross (1992)
## 23056 Jean de Florette (1986)
## 23690 Cinema Paradiso (1988)
## 23910 Empire Strikes Back, The (1980)
## 24272 Princess Bride, The (1987)
## 24610 Raiders of the Lost Ark (1981)
## 25218 Aliens (1986)
## 25973 Apocalypse Now (1979)
## 26236 Return of the Jedi (1983)
## 26705 GoodFellas (1990)
## 26935 Alien (1979)
## 27819 Godfather: Part II, The (1974)
## 28260 Henry V (1989)
## 28405 Amadeus (1984)
## 28779 Right Stuff, The (1983)
## 28953 Sting, The (1973)
## 29201 Terminator, The (1984)
## 29490 Dead Poets Society (1989)
## 29736 Graduate, The (1967)
## 29959 Nikita (La Femme Nikita) (1990)
## 31040 Back to the Future (1985)
## 31828 This Is Spinal Tap (1984)
## 32539 Unbearable Lightness of Being, The (1988)
## 32634 Room with a View, A (1986)
## 32894 Field of Dreams (1989)
## 33117 When Harry Met Sally... (1989)
## 33844 Breaking the Waves (1996)
## 34291 Sling Blade (1996)
## 35904 Jaws (1975)
## 36182 Mars Attacks! (1996)
## 36472 Jerry Maguire (1996)
## 37508 Kolya (1996)
## 37741 Smilla's Sense of Snow (1997)
## 38172 Grosse Pointe Blank (1997)
## 38646 Shall We Dance? (1996)
## 39164 Men in Black (1997)
## 39501 Contact (1997)
## 40276 In the Company of Men (1997)
## 41202 Starship Troopers (1997)
## 41609 Heat (1995)
## 41829 Sabrina (1995)
## 42305 Leaving Las Vegas (1995)
## 42730 Up Close and Personal (1996)
## 42825 River Wild, The (1994)
## 42983 Time to Kill, A (1996)
## 43385 Tin Cup (1996)
## 43576 Secrets & Lies (1996)
## 43783 English Patient, The (1996)
## 44342 Scream (1996)
## 45355 Donnie Brasco (1997)
## 45568 Liar Liar (1997)
## 46068 Ulee's Gold (1997)
## 46138 Face/Off (1997)
## 46437 Air Force One (1997)
## 47081 L.A. Confidential (1997)
## 47354 Fly Away Home (1996)
## 47697 Devil's Advocate, The (1997)
## 48265 Titanic (1997)
## 48745 As Good As It Gets (1997)
## 48984 Schindler's List (1993)
## 49265 Everyone Says I Love You (1996)
## 50332 G.I. Jane (1997)
## 50511 Cop Land (1997)
## 50704 Conspiracy Theory (1997)
## 51332 Game, The (1997)
## 52100 Alien: Resurrection (1997)
## 52971 One Flew Over the Cuckoo's Nest (1975)
## 55238 Mrs. Doubtfire (1993)
## 55947 Batman (1989)
## 56279 Mission: Impossible (1996)
## 56859 Kingpin (1996)
## 57032 Nutty Professor, The (1996)
## 58097 E.T. the Extra-Terrestrial (1982)
## 59618 Butch Cassidy and the Sundance Kid (1969)
## 60867 Bastard Out of Carolina (1996)
## 60900 Jackie Chan's First Strike (1996)
## 61248 Smoke (1995)
## 61657 Red Rock West (1992)
## 61889 Tombstone (1993)
## 62020 Courage Under Fire (1996)
## 62521 Dr. Strangelove or: How I Learned to Stop Worrying and Love the Bomb (1963)
## 62728 Trainspotting (1996)
## 62962 First Wives Club, The (1996)
## 63202 Philadelphia Story, The (1940)
## 63498 North by Northwest (1959)
## 66099 People vs. Larry Flynt, The (1996)
## 66847 Annie Hall (1977)
## 67210 Local Hero (1983)
## 67372 Miller's Crossing (1990)
## 67661 Deer Hunter, The (1978)
## 67825 Cool Hand Luke (1967)
## 67975 Great Dictator, The (1940)
## 68238 Gandhi (1982)
## 68419 Killing Fields, The (1984)
## 68718 Shine (1996)
## 68850 Daytrippers, The (1996)
## 72011 Beauty and the Beast (1991)
## 72270 Primal Fear (1996)
## 72673 Eraser (1996)
## 74597 Sophie's Choice (1982)
## 75299 Ran (1985)
## 75566 Glory (1989)
## 75860 Chinatown (1974)
## 76022 Stand by Me (1986)
## 78276 Executive Decision (1996)
## 78685 Seven Years in Tibet (1997)
## 79287 Little Women (1994)
## 79649 Enchanted April (1991)
## 79822 Strictly Ballroom (1992)
## 80053 Othello (1995)
## 80747 Immortal Beloved (1994)
## 80860 Nell (1994)
## 81842 Ransom (1996)
## 82349 Benny & Joon (1993)
## 82823 Amistad (1997)
## 82958 Tomorrow Never Dies (1997)
## 83498 Screamers (1995)
## 83594 Beautiful Girls (1996)
## 84264 Don Juan DeMarco (1995)
## 84570 Only You (1994)
## 85412 One Fine Day (1996)
## 85731 Mulholland Falls (1996)
## 86126 Escape from L.A. (1996)
## 86602 That Thing You Do! (1996)
## 86804 Looking for Richard (1996)
## 86959 Diva (1981)
## 87952 Soul Food (1997)
## 88573 Kundun (1997)
## 89978 What's Love Got to Do with It (1993)
## 90539 Nobody's Fool (1994)
## 90665 Naked (1993)
## 90689 Orlando (1993)
## 90722 Ruby in Paradise (1993)
## 90746 Some Folks Call It a Sling Blade (1993)
## 91958 Basquiat (1996)
## 92100 Private Parts (1997)
## 92195 Anaconda (1997)
## 92356 Con Air (1997)
## 92814 Grumpier Old Men (1995)
## 93193 Hamlet (1996)
## 94121 Koyaanisqatsi (1983)
## 94932 Six Degrees of Separation (1993)
## 95723 Best Men (1997)
## 95793 When We Were Kings (1996)
## 95862 My Family (1995)
## 96170 Fresh (1994)
## 96539 Family Thing, A (1996)
## 97063 Night Falls on Manhattan (1997)
## 97768 Before and After (1996)
## 97794 Princess Caraboo (1994)
## 97809 Shall We Dance? (1937)
## 70 Toy Story (1995)
## 596 Four Rooms (1995)
## 896 Copycat (1995)
## 1068 Twelve Monkeys (1995)
## 1654 Dead Man Walking (1995)
## 2030 Seven (Se7en) (1995)
## 2271 Usual Suspects, The (1995)
## 2531 Mighty Aphrodite (1995)
## 2912 Mr. Holland's Opus (1995)
## 3209 From Dusk Till Dawn (1996)
## 3562 Braveheart (1995)
## 3843 Taxi Driver (1976)
## 4230 Birdcage, The (1996)
## 5047 Crimson Tide (1995)
## 5413 Net, The (1995)
## 5529 Strange Days (1995)
## 5722 Clerks (1994)
## 5894 Dolores Claiborne (1994)
## 6334 I.Q. (1994)
## 6493 Star Wars (1977)
## 7000 Legends of the Fall (1994)
## 7174 Natural Born Killers (1994)
## 7303 Outbreak (1995)
## 7412 Professional, The (1994)
## 7603 Pulp Fiction (1994)
## 8162 Three Colors: Red (1994)
## 8374 Stargate (1994)
## 8611 Shawshank Redemption, The (1994)
## 8981 While You Were Sleeping (1995)
## 9408 Forrest Gump (1994)
## 10498 Firm, The (1993)
## 10716 Fugitive, The (1993)
## 12002 Sleepless in Seattle (1993)
## 12231 Blade Runner (1982)
## 13317 Terminator 2: Judgment Day (1991)
## 13600 Dances with Wolves (1990)
## 13886 Silence of the Lambs, The (1991)
## 14462 Fargo (1996)
## 15052 Sgt. Bilko (1996)
## 15126 Diabolique (1996)
## 15317 Mystery Science Theater 3000: The Movie (1996)
## 15497 Truth About Cats & Dogs, The (1996)
## 16011 Rock, The (1996)
## 16382 Twister (1996)
## 16646 Striptease (1996)
## 16772 Independence Day (ID4) (1996)
## 17149 Cable Guy, The (1996)
## 17255 Frighteners, The (1996)
## 19051 Citizen Kane (1941)
## 19262 2001: A Space Odyssey (1968)
## 20912 Swingers (1996)
## 21889 Dirty Dancing (1987)
## 21998 Reservoir Dogs (1992)
## 22320 Basic Instinct (1992)
## 22915 Abyss, The (1989)
## 23911 Empire Strikes Back, The (1980)
## 24273 Princess Bride, The (1987)
## 24611 Raiders of the Lost Ark (1981)
## 25219 Aliens (1986)
## 26237 Return of the Jedi (1983)
## 26706 GoodFellas (1990)
## 26936 Alien (1979)
## 27340 Psycho (1960)
## 29202 Terminator, The (1984)
## 30266 Shining, The (1980)
## 30570 Groundhog Day (1993)
## 30837 Unforgiven (1992)
## 31829 This Is Spinal Tap (1984)
## 32540 Unbearable Lightness of Being, The (1988)
## 33118 When Harry Met Sally... (1989)
## 33382 Bram Stoker's Dracula (1992)
## 33506 Cape Fear (1991)
## 33673 Nightmare on Elm Street, A (1984)
## 33968 Star Trek: First Contact (1996)
## 34583 Die Hard 2 (1990)
## 34755 Star Trek VI: The Undiscovered Country (1991)
## 34928 Star Trek: The Wrath of Khan (1982)
## 35163 Star Trek III: The Search for Spock (1984)
## 35336 Star Trek IV: The Voyage Home (1986)
## 35905 Jaws (1975)
## 36183 Mars Attacks! (1996)
## 36374 Citizen Ruth (1996)
## 36473 Jerry Maguire (1996)
## 36833 Raising Arizona (1987)
## 37226 Beavis and Butt-head Do America (1996)
## 37509 Kolya (1996)
## 38045 Chasing Amy (1997)
## 38331 Austin Powers: International Man of Mystery (1997)
## 38470 Fifth Element, The (1997)
## 39165 Men in Black (1997)
## 39502 Contact (1997)
## 39957 George of the Jungle (1997)
## 40114 Event Horizon (1997)
## 40481 Hunt for Red October, The (1990)
## 40683 Kull the Conqueror (1997)
## 40772 Full Monty, The (1997)
## 41053 Gattaca (1997)
## 41203 Starship Troopers (1997)
## 41610 Heat (1995)
## 41830 Sabrina (1995)
## 42031 Sense and Sensibility (1995)
## 42306 Leaving Las Vegas (1995)
## 42637 Bed of Roses (1996)
## 42826 River Wild, The (1994)
## 42984 Time to Kill, A (1996)
## 43386 Tin Cup (1996)
## 43784 English Patient, The (1996)
## 45356 Donnie Brasco (1997)
## 45569 Liar Liar (1997)
## 46139 Face/Off (1997)
## 46317 Hoodlum (1997)
## 46438 Air Force One (1997)
## 46843 In & Out (1997)
## 47082 L.A. Confidential (1997)
## 47355 Fly Away Home (1996)
## 47863 FairyTale: A True Story (1997)
## 47937 Rainmaker, The (1997)
## 48146 Midnight in the Garden of Good and Evil (1997)
## 48266 Titanic (1997)
## 48592 Apt Pupil (1998)
## 48746 As Good As It Gets (1997)
## 50512 Cop Land (1997)
## 50705 Conspiracy Theory (1997)
## 50963 Desperate Measures (1998)
## 51053 Edge, The (1997)
## 51333 Game, The (1997)
## 51710 Bean (1997)
## 51792 Mad City (1997)
## 52038 Man Who Knew Too Little, The (1997)
## 52101 Alien: Resurrection (1997)
## 52345 Jackie Brown (1997)
## 52472 Wag the Dog (1997)
## 52684 Spice World (1997)
## 52737 Wedding Singer, The (1998)
## 52801 Sphere (1998)
## 52849 Client, The (1994)
## 53216 Spawn (1997)
## 53412 Sudden Death (1995)
## 53759 Bio-Dome (1996)
## 54197 Tales From the Crypt Presents: Demon Knight (1995)
## 54249 Star Trek: Generations (1994)
## 55239 Mrs. Doubtfire (1993)
## 55407 Radioland Murders (1994)
## 56280 Mission: Impossible (1996)
## 56574 Thinner (1996)
## 56621 Spy Hard (1996)
## 56860 Kingpin (1996)
## 57033 Nutty Professor, The (1996)
## 57180 Very Brady Sequel, A (1996)
## 57270 Tales from the Crypt Presents: Bordello of Blood (1996)
## 59040 Highlander (1986)
## 59816 American Werewolf in London, An (1981)
## 60010 Birds, The (1963)
## 60244 Carrie (1976)
## 60360 Omen, The (1976)
## 60453 Star Trek: The Motion Picture (1979)
## 60563 Star Trek V: The Final Frontier (1989)
## 60793 Jaws 2 (1978)
## 60868 Bastard Out of Carolina (1996)
## 61218 Crossing Guard, The (1995)
## 61890 Tombstone (1993)
## 62021 Courage Under Fire (1996)
## 62233 Dragonheart (1996)
## 63112 Matilda (1996)
## 64360 Sabrina (1954)
## 66413 Magnificent Seven, The (1954)
## 67023 Boot, Das (1981)
## 69253 Things to Do in Denver when You're Dead (1995)
## 69370 Broken Arrow (1996)
## 69642 Rob Roy (1995)
## 69907 Species (1995)
## 69956 Walk in the Clouds, A (1995)
## 70022 Waterworld (1995)
## 70161 Heavenly Creatures (1994)
## 70237 Interview with the Vampire (1994)
## 70490 Stephen King's The Langoliers (1995)
## 70587 Clear and Present Danger (1994)
## 71019 Wolf (1994)
## 71159 Blown Away (1994)
## 71217 Boxing Helena (1993)
## 72232 Hellraiser: Bloodline (1996)
## 72271 Primal Fear (1996)
## 72425 True Crime (1995)
## 72462 Fan, The (1996)
## 72674 Eraser (1996)
## 72952 Rear Window (1954)
## 73886 Chamber, The (1996)
## 74219 Sleepers (1996)
## 74487 Crying Game, The (1992)
## 74748 Fog, The (1980)
## 74779 Escape from New York (1981)
## 74864 Howling, The (1981)
## 75107 Grifters, The (1990)
## 75487 Seventh Seal, The (Sjunde inseglet, Det) (1957)
## 75731 Rosencrantz and Guildenstern Are Dead (1990)
## 77085 Alien 3 (1992)
## 77263 Candyman (1992)
## 77328 Cape Fear (1962)
## 77409 Cat People (1982)
## 77617 Volcano (1997)
## 77948 I Know What You Did Last Summer (1997)
## 78046 Rocket Man (1997)
## 78110 In the Line of Fire (1993)
## 78277 Executive Decision (1996)
## 78468 McHale's Navy (1997)
## 78536 Leave It to Beaver (1997)
## 78686 Seven Years in Tibet (1997)
## 78860 American President, The (1995)
## 79151 City Hall (1996)
## 80054 Othello (1995)
## 80291 Juror, The (1996)
## 80748 Immortal Beloved (1994)
## 80811 Junior (1994)
## 80961 Corrina, Corrina (1994)
## 81016 Dave (1993)
## 81439 Sirens (1994)
## 81492 Threesome (1994)
## 81537 Pretty Woman (1990)
## 81690 Jane Eyre (1996)
## 81843 Ransom (1996)
## 82076 Crow: City of Angels, The (1996)
## 82824 Amistad (1997)
## 82959 Tomorrow Never Dies (1997)
## 83116 Replacement Killers, The (1998)
## 83178 Red Corner (1997)
## 83345 Father of the Bride Part II (1995)
## 83499 Screamers (1995)
## 83541 Nick of Time (1995)
## 83595 Beautiful Girls (1996)
## 83715 Happy Gilmore (1996)
## 83847 If Lucy Fell (1996)
## 83916 Addiction, The (1995)
## 83982 Congo (1995)
## 84025 Devil in a Blue Dress (1995)
## 84080 Johnny Mnemonic (1995)
## 84640 Swimming with Sharks (1995)
## 84922 Speechless (1994)
## 85006 In the Mouth of Madness (1995)
## 85512 Candyman: Farewell to the Flesh (1995)
## 85617 Space Jam (1996)
## 85693 Mrs. Winterbourne (1996)
## 85732 Mulholland Falls (1996)
## 85857 Arrival, The (1996)
## 85940 Phantom, The (1996)
## 86021 Daylight (1996)
## 86127 Escape from L.A. (1996)
## 87061 April Fool's Day (1986)
## 87353 Fools Rush In (1997)
## 87724 Excess Baggage (1997)
## 87823 Peacemaker, The (1997)
## 88214 Mortal Kombat: Annihilation (1997)
## 88271 Flubber (1997)
## 88331 Home Alone 3 (1997)
## 88359 Scream 2 (1997)
## 88458 Sweet Hereafter, The (1997)
## 88504 Postman, The (1997)
## 88611 Mr. Magoo (1997)
## 89109 White Squall (1996)
## 89188 Unforgettable (1996)
## 89236 Down Periscope (1996)
## 89335 Craft, The (1996)
## 89434 Harriet the Spy (1996)
## 89483 Chain Reaction (1996)
## 89646 Funeral, The (1996)
## 89673 Preacher's Wife, The (1996)
## 89842 Murder in the First (1995)
## 90021 Killing Zoe (1994)
## 90276 How to Make an American Quilt (1995)
## 91023 Eye for an Eye (1996)
## 91112 Substitute, The (1996)
## 91187 Trigger Effect, The (1996)
## 91268 Rich Man's Wife, The (1996)
## 91384 Beautician and the Beast, The (1997)
## 91567 Hercules (1997)
## 91730 Stupids, The (1996)
## 91743 Pest, The (1997)
## 91897 Stealing Beauty (1996)
## 92004 2 Days in the Valley (1996)
## 92101 Private Parts (1997)
## 92697 Fathers' Day (1997)
## 92740 Fire Down Below (1997)
## 92815 Grumpier Old Men (1995)
## 92998 Homeward Bound II: Lost in San Francisco (1996)
## 93280 Two if by Sea (1996)
## 93306 Forget Paris (1995)
## 93469 Malice (1993)
## 93530 Multiplicity (1996)
## 93788 Associate, The (1996)
## 93876 Mr. Wrong (1996)
## 93922 Pallbearer, The (1996)
## 94315 Shallow Grave (1994)
## 94472 Love and a .45 (1994)
## 94623 Bloodsport 2 (1995)
## 94687 Sliver (1993)
## 94998 Two Much (1996)
## 95521 Feeling Minnesota (1996)
## 96712 Kiss of Death (1995)
## 96749 Virtuosity (1995)
## 96795 Flesh and Bone (1993)
## 96817 Barb Wire (1996)
## 96847 Kissed (1996)
## 96855 Assassins (1995)
## 97348 Gridlock'd (1997)
## 97380 Blink (1994)
## 97630 Color of Night (1994)
## 97703 Wild America (1997)
## 97750 Out to Sea (1997)
## 97826 Ed (1996)
## 97832 Denise Calls Up (1995)
## 97839 Jack and Sarah (1995)
## 97846 Country Life (1994)
## 97848 Celtic Pride (1996)
## 97863 Simple Wish, A (1997)
## 37822 Devil's Own, The (1997)
## 39503 Contact (1997)
## 40277 In the Company of Men (1997)
## 40773 Full Monty, The (1997)
## 41204 Starship Troopers (1997)
## 41411 Good Will Hunting (1997)
## 43785 English Patient, The (1996)
## 45570 Liar Liar (1997)
## 46439 Air Force One (1997)
## 46844 In & Out (1997)
## 47083 L.A. Confidential (1997)
## 47698 Devil's Advocate, The (1997)
## 48071 Wings of the Dove, The (1997)
## 48267 Titanic (1997)
## 48593 Apt Pupil (1998)
## 49266 Everyone Says I Love You (1996)
## 50513 Cop Land (1997)
## 50706 Conspiracy Theory (1997)
## 51054 Edge, The (1997)
## 51636 Playing God (1997)
## 51857 Boogie Nights (1997)
## 52039 Man Who Knew Too Little, The (1997)
## 52269 Deconstructing Harry (1997)
## 52346 Jackie Brown (1997)
## 52473 Wag the Dog (1997)
## 78537 Leave It to Beaver (1997)
## 92663 Fast, Cheap & Out of Control (1997)
## 97866 Star Kid (1997)
## 97869 Ayn Rand: A Sense of Life (1997)
## 39504 Contact (1997)
## 40774 Full Monty, The (1997)
## 41054 Gattaca (1997)
## 43786 English Patient, The (1996)
## 45245 Rosewood (1997)
## 46845 In & Out (1997)
## 47084 L.A. Confidential (1997)
## 47356 Fly Away Home (1996)
## 47493 Ice Storm, The (1997)
## 48268 Titanic (1997)
## 49267 Everyone Says I Love You (1996)
## 51793 Mad City (1997)
## 51858 Boogie Nights (1997)
## 52270 Deconstructing Harry (1997)
## 78687 Seven Years in Tibet (1997)
## 82825 Amistad (1997)
## 82960 Tomorrow Never Dies (1997)
## 88505 Postman, The (1997)
## 88684 Ma vie en rose (My Life in Pink) (1997)
## 89779 Thousand Acres, A (1997)
## 71 Toy Story (1995)
## 1069 Twelve Monkeys (1995)
## 1419 Babe (1995)
## 6494 Star Wars (1977)
## 7604 Pulp Fiction (1994)
## 9409 Forrest Gump (1994)
## 9723 Four Weddings and a Funeral (1994)
## 9962 Lion King, The (1994)
## 10635 Free Willy (1993)
## 12232 Blade Runner (1982)
## 13887 Silence of the Lambs, The (1991)
## 15760 Wallace & Gromit: The Best of Aardman Animation (1996)
## 15861 Cold Comfort Farm (1995)
## 17941 Godfather, The (1972)
## 18639 Wizard of Oz, The (1939)
## 18874 Gone with the Wind (1939)
## 19263 2001: A Space Odyssey (1968)
## 19833 Homeward Bound: The Incredible Journey (1993)
## 21099 Willy Wonka and the Chocolate Factory (1971)
## 22818 Return of the Pink Panther, The (1974)
## 22916 Abyss, The (1989)
## 23283 Monty Python and the Holy Grail (1974)
## 23569 Wrong Trousers, The (1993)
## 23912 Empire Strikes Back, The (1980)
## 24274 Princess Bride, The (1987)
## 24612 Raiders of the Lost Ark (1981)
## 25009 Brazil (1985)
## 25478 Good, The Bad and The Ugly, The (1966)
## 26238 Return of the Jedi (1983)
## 27341 Psycho (1960)
## 28188 Grand Day Out, A (1992)
## 28261 Henry V (1989)
## 28406 Amadeus (1984)
## 28954 Sting, The (1973)
## 31041 Back to the Future (1985)
## 31830 This Is Spinal Tap (1984)
## 32764 Pink Floyd - The Wall (1982)
## 33969 Star Trek: First Contact (1996)
## 34756 Star Trek VI: The Undiscovered Country (1991)
## 34929 Star Trek: The Wrath of Khan (1982)
## 35906 Jaws (1975)
## 36834 Raising Arizona (1987)
## 52972 One Flew Over the Cuckoo's Nest (1975)
## 56674 Close Shave, A (1995)
## 57557 Cinderella (1950)
## 59200 Fantasia (1940)
## 62386 James and the Giant Peach (1996)
## 62522 Dr. Strangelove or: How I Learned to Stop Worrying and Love the Bomb (1963)
## 64901 Around the World in 80 Days (1956)
## 64982 It's a Wonderful Life (1946)
## 65484 Dumbo (1941)
## 65978 Streetcar Named Desire, A (1951)
## 66292 My Left Foot (1989)
## 67662 Deer Hunter, The (1978)
## 68539 My Life as a Dog (Mitt liv som hund) (1985)
## 69643 Rob Roy (1995)
## 72012 Beauty and the Beast (1991)
## 72535 Hunchback of Notre Dame, The (1996)
## 76923 Being There (1979)
## 80055 Othello (1995)
## 90879 Winnie the Pooh and the Blustery Day (1968)
## 91568 Hercules (1997)
## 92102 Private Parts (1997)
## 93194 Hamlet (1996)
## 95892 Walkabout (1971)
## 37823 Devil's Own, The (1997)
## 39505 Contact (1997)
## 40278 In the Company of Men (1997)
## 40775 Full Monty, The (1997)
## 41412 Good Will Hunting (1997)
## 43787 English Patient, The (1996)
## 46440 Air Force One (1997)
## 46846 In & Out (1997)
## 47085 L.A. Confidential (1997)
## 47494 Ice Storm, The (1997)
## 47864 FairyTale: A True Story (1997)
## 47938 Rainmaker, The (1997)
## 48072 Wings of the Dove, The (1997)
## 48147 Midnight in the Garden of Good and Evil (1997)
## 48269 Titanic (1997)
## 49268 Everyone Says I Love You (1996)
## 49459 Mother (1996)
## 49853 Dante's Peak (1997)
## 50201 Crash (1996)
## 50333 G.I. Jane (1997)
## 50514 Cop Land (1997)
## 50707 Conspiracy Theory (1997)
## 51334 Game, The (1997)
## 51678 House of Yes, The (1997)
## 51711 Bean (1997)
## 51859 Boogie Nights (1997)
## 52271 Deconstructing Harry (1997)
## 52347 Jackie Brown (1997)
## 77618 Volcano (1997)
## 78585 Jackal, The (1997)
## 87587 Career Girls (1997)
## 88459 Sweet Hereafter, The (1997)
## 97876 Kicked in the Head (1997)
## 97883 Indian Summer (1996)
## 72 Toy Story (1995)
## 2532 Mighty Aphrodite (1995)
## 2710 Postino, Il (1994)
## 6495 Star Wars (1977)
## 12823 Welcome to the Dollhouse (1995)
## 14463 Fargo (1996)
## 16773 Independence Day (ID4) (1996)
## 17256 Frighteners, The (1996)
## 17383 Lone Star (1996)
## 17942 Godfather, The (1972)
## 18375 Bound (1996)
## 20580 Long Kiss Goodnight, The (1996)
## 20913 Swingers (1996)
## 21100 Willy Wonka and the Chocolate Factory (1971)
## 26239 Return of the Jedi (1983)
## 33845 Breaking the Waves (1996)
## 36184 Mars Attacks! (1996)
## 38046 Chasing Amy (1997)
## 41611 Heat (1995)
## 42307 Leaving Las Vegas (1995)
## 42638 Bed of Roses (1996)
## 44343 Scream (1996)
## 45120 Absolute Power (1997)
## 45357 Donnie Brasco (1997)
## 49269 Everyone Says I Love You (1996)
## 50074 Lost Highway (1997)
## 50202 Crash (1996)
## 56861 Kingpin (1996)
## 61113 Nixon (1995)
## 62729 Trainspotting (1996)
## 74220 Sleepers (1996)
## 73 Toy Story (1995)
## 700 Get Shorty (1995)
## 1070 Twelve Monkeys (1995)
## 1655 Dead Man Walking (1995)
## 1917 Richard III (1995)
## 2272 Usual Suspects, The (1995)
## 2533 Mighty Aphrodite (1995)
## 2711 Postino, Il (1994)
## 2913 Mr. Holland's Opus (1995)
## 4231 Birdcage, The (1996)
## 4477 Brothers McMullen, The (1995)
## 4645 Apollo 13 (1995)
## 5048 Crimson Tide (1995)
## 5277 Desperado (1995)
## 5895 Dolores Claiborne (1994)
## 6090 Ed Wood (1994)
## 6335 I.Q. (1994)
## 6496 Star Wars (1977)
## 7001 Legends of the Fall (1994)
## 7082 Madness of King George, The (1994)
## 7605 Pulp Fiction (1994)
## 7994 Quiz Show (1994)
## 8612 Shawshank Redemption, The (1994)
## 8860 What's Eating Gilbert Grape (1993)
## 8982 While You Were Sleeping (1995)
## 9410 Forrest Gump (1994)
## 9724 Four Weddings and a Funeral (1994)
## 10299 Maverick (1994)
## 10717 Fugitive, The (1993)
## 11078 Hudsucker Proxy, The (1994)
## 11216 Jurassic Park (1993)
## 11459 Much Ado About Nothing (1993)
## 11707 Remains of the Day, The (1993)
## 11858 Searching for Bobby Fischer (1993)
## 12003 Sleepless in Seattle (1993)
## 12233 Blade Runner (1982)
## 12579 Nightmare Before Christmas, The (1993)
## 12824 Welcome to the Dollhouse (1995)
## 13601 Dances with Wolves (1990)
## 13888 Silence of the Lambs, The (1991)
## 14464 Fargo (1996)
## 15498 Truth About Cats & Dogs, The (1996)
## 15761 Wallace & Gromit: The Best of Aardman Animation (1996)
## 16383 Twister (1996)
## 16774 Independence Day (ID4) (1996)
## 17384 Lone Star (1996)
## 17577 Phenomenon (1996)
## 18525 Breakfast at Tiffany's (1961)
## 18640 Wizard of Oz, The (1939)
## 18875 Gone with the Wind (1939)
## 19052 Citizen Kane (1941)
## 19264 2001: A Space Odyssey (1968)
## 19495 Mr. Smith Goes to Washington (1939)
## 19613 Big Night (1996)
## 20047 Sound of Music, The (1965)
## 20581 Long Kiss Goodnight, The (1996)
## 21101 Willy Wonka and the Chocolate Factory (1971)
## 21387 Sleeper (1973)
## 21493 Fish Called Wanda, A (1988)
## 21728 Monty Python's Life of Brian (1979)
## 22421 Glengarry Glen Ross (1992)
## 22714 On Golden Pond (1981)
## 22819 Return of the Pink Panther, The (1974)
## 22917 Abyss, The (1989)
## 23284 Monty Python and the Holy Grail (1974)
## 23570 Wrong Trousers, The (1993)
## 23691 Cinema Paradiso (1988)
## 23804 Delicatessen (1991)
## 23913 Empire Strikes Back, The (1980)
## 24275 Princess Bride, The (1987)
## 24613 Raiders of the Lost Ark (1981)
## 25010 Brazil (1985)
## 25220 Aliens (1986)
## 25614 12 Angry Men (1957)
## 26240 Return of the Jedi (1983)
## 26937 Alien (1979)
## 27342 Psycho (1960)
## 27575 Blues Brothers, The (1980)
## 28189 Grand Day Out, A (1992)
## 28262 Henry V (1989)
## 28407 Amadeus (1984)
## 28780 Right Stuff, The (1983)
## 28955 Sting, The (1973)
## 29203 Terminator, The (1984)
## 29491 Dead Poets Society (1989)
## 29737 Graduate, The (1967)
## 29960 Nikita (La Femme Nikita) (1990)
## 30096 Bridge on the River Kwai, The (1957)
## 30267 Shining, The (1980)
## 30571 Groundhog Day (1993)
## 30838 Unforgiven (1992)
## 31042 Back to the Future (1985)
## 31624 Young Frankenstein (1974)
## 31831 This Is Spinal Tap (1984)
## 32034 Indiana Jones and the Last Crusade (1989)
## 32353 M*A*S*H (1970)
## 32635 Room with a View, A (1986)
## 32895 Field of Dreams (1989)
## 33119 When Harry Met Sally... (1989)
## 33970 Star Trek: First Contact (1996)
## 34292 Sling Blade (1996)
## 34415 Ridicule (1996)
## 34757 Star Trek VI: The Undiscovered Country (1991)
## 34930 Star Trek: The Wrath of Khan (1982)
## 35337 Star Trek IV: The Voyage Home (1986)
## 35524 Batman Returns (1992)
## 35907 Jaws (1975)
## 36835 Raising Arizona (1987)
## 37378 Last of the Mohicans, The (1992)
## 39506 Contact (1997)
## 40115 Event Horizon (1997)
## 40482 Hunt for Red October, The (1990)
## 41831 Sabrina (1995)
## 42032 Sense and Sensibility (1995)
## 42569 Restoration (1995)
## 43788 English Patient, The (1996)
## 44205 Marvin's Room (1996)
## 45028 Fierce Creatures (1997)
## 46441 Air Force One (1997)
## 46847 In & Out (1997)
## 47086 L.A. Confidential (1997)
## 48857 In the Name of the Father (1993)
## 48985 Schindler's List (1993)
## 49460 Mother (1996)
## 49630 Murder at 1600 (1997)
## 50708 Conspiracy Theory (1997)
## 52850 Client, The (1994)
## 52973 One Flew Over the Cuckoo's Nest (1975)
## 53889 Bridges of Madison County, The (1995)
## 53955 Jeffrey (1995)
## 54101 Miracle on 34th Street (1994)
## 54250 Star Trek: Generations (1994)
## 54361 Muriel's Wedding (1994)
## 54470 Adventures of Priscilla, Queen of the Desert, The (1994)
## 54694 True Lies (1994)
## 54968 Age of Innocence, The (1993)
## 55240 Mrs. Doubtfire (1993)
## 55773 Ghost (1990)
## 56281 Mission: Impossible (1996)
## 56675 Close Shave, A (1995)
## 57034 Nutty Professor, The (1996)
## 57321 My Favorite Year (1982)
## 57471 Parent Trap, The (1961)
## 57558 Cinderella (1950)
## 57685 Mary Poppins (1964)
## 57854 Alice in Wonderland (1951)
## 58098 E.T. the Extra-Terrestrial (1982)
## 58389 Bob Roberts (1992)
## 58523 To Kill a Mockingbird (1962)
## 58726 Harold and Maude (1971)
## 58846 Day the Earth Stood Still, The (1951)
## 58944 Duck Soup (1933)
## 59201 Fantasia (1940)
## 59376 Heathers (1989)
## 59619 Butch Cassidy and the Sundance Kid (1969)
## 59817 American Werewolf in London, An (1981)
## 60011 Birds, The (1963)
## 60361 Omen, The (1976)
## 60638 Grease (1978)
## 61249 Smoke (1995)
## 61334 Like Water For Chocolate (Como agua para chocolate) (1992)
## 61480 Secret of Roan Inish, The (1994)
## 61542 Vanya on 42nd Street (1994)
## 61658 Red Rock West (1992)
## 61818 Short Cuts (1993)
## 61891 Tombstone (1993)
## 62387 James and the Giant Peach (1996)
## 62523 Dr. Strangelove or: How I Learned to Stop Worrying and Love the Bomb (1963)
## 62963 First Wives Club, The (1996)
## 63203 Philadelphia Story, The (1940)
## 63499 North by Northwest (1959)
## 63659 Apartment, The (1960)
## 63734 Some Like It Hot (1959)
## 63872 Casablanca (1942)
## 64104 Maltese Falcon, The (1941)
## 64239 My Fair Lady (1964)
## 64361 Sabrina (1954)
## 64422 Roman Holiday (1953)
## 64490 Sunset Blvd. (1950)
## 64554 Notorious (1946)
## 64606 To Catch a Thief (1955)
## 64660 Adventures of Robin Hood, The (1938)
## 64725 East of Eden (1955)
## 64841 His Girl Friday (1940)
## 64983 It's a Wonderful Life (1946)
## 65190 Bringing Up Baby (1938)
## 65270 African Queen, The (1951)
## 65408 Cat on a Hot Tin Roof (1958)
## 65647 Candidate, The (1972)
## 65700 Bonnie and Clyde (1967)
## 65814 Dial M for Murder (1954)
## 65884 Rebel Without a Cause (1955)
## 65979 Streetcar Named Desire, A (1951)
## 66293 My Left Foot (1989)
## 66697 Wings of Desire (1987)
## 66848 Annie Hall (1977)
## 67211 Local Hero (1983)
## 67276 Manhattan (1979)
## 67773 Down by Law (1986)
## 67826 Cool Hand Luke (1967)
## 68022 Big Sleep, The (1946)
## 68420 Killing Fields, The (1984)
## 68540 My Life as a Dog (Mitt liv som hund) (1985)
## 68719 Shine (1996)
## 69371 Broken Arrow (1996)
## 69644 Rob Roy (1995)
## 70238 Interview with the Vampire (1994)
## 70387 Mary Shelley's Frankenstein (1994)
## 70588 Clear and Present Danger (1994)
## 71632 Piano, The (1993)
## 71824 Secret Garden, The (1993)
## 72883 American in Paris, An (1951)
## 72953 Rear Window (1954)
## 73217 Meet Me in St. Louis (1944)
## 73254 All About Eve (1950)
## 73415 Father of the Bride (1950)
## 73473 Gigi (1958)
## 73512 Laura (1944)
## 73615 Giant (1956)
## 74132 Robin Hood: Prince of Thieves (1991)
## 74221 Sleepers (1996)
## 74378 Victor/Victoria (1982)
## 74488 Crying Game, The (1992)
## 74598 Sophie's Choice (1982)
## 74660 Christmas Carol, A (1938)
## 74899 Return of Martin Guerre, The (Retour de Martin Guerre, Le) (1982)
## 75108 Grifters, The (1990)
## 75732 Rosencrantz and Guildenstern Are Dead (1990)
## 75861 Chinatown (1974)
## 76023 Stand by Me (1986)
## 76280 Manchurian Candidate, The (1962)
## 76481 Arsenic and Old Lace (1944)
## 76605 Fried Green Tomatoes (1991)
## 76751 High Noon (1952)
## 76836 Somewhere in Time (1980)
## 76924 Being There (1979)
## 77031 Paris, Texas (1984)
## 77459 Nosferatu (Nosferatu, eine Symphonie des Grauens) (1922)
## 78111 In the Line of Fire (1993)
## 78418 Perfect World, A (1993)
## 78861 American President, The (1995)
## 79288 Little Women (1994)
## 79410 Barcelona (1994)
## 79457 Widows' Peak (1994)
## 79514 Singin' in the Rain (1952)
## 79650 Enchanted April (1991)
## 79823 Strictly Ballroom (1992)
## 80226 Home for the Holidays (1995)
## 80640 Circle of Friends (1995)
## 80861 Nell (1994)
## 81017 Dave (1993)
## 81231 Philadelphia (1993)
## 81365 Shadowlands (1993)
## 81759 Last Supper, The (1995)
## 82350 Benny & Joon (1993)
## 82480 Saint, The (1997)
## 83242 Jumanji (1995)
## 83542 Nick of Time (1995)
## 84026 Devil in a Blue Dress (1995)
## 84218 Something to Talk About (1995)
## 84441 French Kiss (1995)
## 84516 Little Odessa (1994)
## 84767 Bullets Over Broadway (1994)
## 85100 Manhattan Murder Mystery (1993)
## 85353 Celluloid Closet, The (1995)
## 85941 Phantom, The (1996)
## 86304 Gay Divorcee, The (1934)
## 86319 Ninotchka (1939)
## 86346 Meet John Doe (1941)
## 86603 That Thing You Do! (1996)
## 86805 Looking for Richard (1996)
## 88871 City of Lost Children, The (1995)
## 89010 Dead Man (1995)
## 89435 Harriet the Spy (1996)
## 89843 Murder in the First (1995)
## 90104 Charade (1963)
## 90414 Blue in the Face (1995)
## 90455 Unstrung Heroes (1995)
## 90540 Nobody's Fool (1994)
## 90723 Ruby in Paradise (1993)
## 90795 Funny Face (1957)
## 90817 Affair to Remember, An (1957)
## 90880 Winnie the Pooh and the Blustery Day (1968)
## 90956 Mediterraneo (1991)
## 90990 Passion Fish (1992)
## 91785 Until the End of the World (Bis ans Ende der Welt) (1991)
## 92481 Trees Lounge (1996)
## 93195 Hamlet (1996)
## 93307 Forget Paris (1995)
## 93403 Paper, The (1994)
## 93531 Multiplicity (1996)
## 93746 Ghost and Mrs. Muir, The (1947)
## 94122 Koyaanisqatsi (1983)
## 94261 Living in Oblivion (1995)
## 94386 Reality Bites (1994)
## 94862 Flirting With Disaster (1996)
## 94933 Six Degrees of Separation (1993)
## 95074 Death and the Maiden (1994)
## 95166 Mrs. Parker and the Vicious Circle (1994)
## 96540 Family Thing, A (1996)
## 96629 Top Hat (1935)
## 97520 Nothing to Lose (1994)
## 97601 Love in the Afternoon (1957)
## 97810 Shall We Dance? (1937)
## 97903 Love Affair (1994)
## 97915 Band Wagon, The (1953)
## 97924 Penny Serenade (1941)
## 1420 Babe (1995)
## 2914 Mr. Holland's Opus (1995)
## 3453 Muppet Treasure Island (1996)
## 3563 Braveheart (1995)
## 4232 Birdcage, The (1996)
## 5278 Desperado (1995)
## 6336 I.Q. (1994)
## 7002 Legends of the Fall (1994)
## 8983 While You Were Sleeping (1995)
## 9137 Ace Ventura: Pet Detective (1994)
## 9411 Forrest Gump (1994)
## 9963 Lion King, The (1994)
## 11004 Hot Shots! Part Deux (1993)
## 12004 Sleepless in Seattle (1993)
## 13602 Dances with Wolves (1990)
## 13889 Silence of the Lambs, The (1991)
## 15499 Truth About Cats & Dogs, The (1996)
## 16012 Rock, The (1996)
## 16647 Striptease (1996)
## 16775 Independence Day (ID4) (1996)
## 17578 Phenomenon (1996)
## 18641 Wizard of Oz, The (1939)
## 18876 Gone with the Wind (1939)
## 20048 Sound of Music, The (1965)
## 20582 Long Kiss Goodnight, The (1996)
## 21102 Willy Wonka and the Chocolate Factory (1971)
## 21494 Fish Called Wanda, A (1988)
## 21890 Dirty Dancing (1987)
## 22139 Platoon (1986)
## 22514 Top Gun (1986)
## 22715 On Golden Pond (1981)
## 23180 Private Benjamin (1980)
## 24276 Princess Bride, The (1987)
## 28408 Amadeus (1984)
## 31043 Back to the Future (1985)
## 32896 Field of Dreams (1989)
## 33777 Mirror Has Two Faces, The (1996)
## 35908 Jaws (1975)
## 36474 Jerry Maguire (1996)
## 37379 Last of the Mohicans, The (1992)
## 38954 My Best Friend's Wedding (1997)
## 41413 Good Will Hunting (1997)
## 41832 Sabrina (1995)
## 42033 Sense and Sensibility (1995)
## 42639 Bed of Roses (1996)
## 42731 Up Close and Personal (1996)
## 43204 Emma (1996)
## 43387 Tin Cup (1996)
## 43789 English Patient, The (1996)
## 45571 Liar Liar (1997)
## 46848 In & Out (1997)
## 48270 Titanic (1997)
## 49270 Everyone Says I Love You (1996)
## 52738 Wedding Singer, The (1998)
## 53457 Ace Ventura: When Nature Calls (1995)
## 53612 Clueless (1995)
## 53890 Bridges of Madison County, The (1995)
## 55241 Mrs. Doubtfire (1993)
## 55684 Brady Bunch Movie, The (1995)
## 55774 Ghost (1990)
## 56862 Kingpin (1996)
## 57035 Nutty Professor, The (1996)
## 57181 Very Brady Sequel, A (1996)
## 58099 E.T. the Extra-Terrestrial (1982)
## 60639 Grease (1978)
## 63873 Casablanca (1942)
## 64423 Roman Holiday (1953)
## 65701 Bonnie and Clyde (1967)
## 68239 Gandhi (1982)
## 69645 Rob Roy (1995)
## 70239 Interview with the Vampire (1994)
## 70812 Speed (1994)
## 72536 Hunchback of Notre Dame, The (1996)
## 74599 Sophie's Choice (1982)
## 76606 Fried Green Tomatoes (1991)
## 78278 Executive Decision (1996)
## 78862 American President, The (1995)
## 79289 Little Women (1994)
## 80227 Home for the Holidays (1995)
## 80412 First Knight (1995)
## 80641 Circle of Friends (1995)
## 81538 Pretty Woman (1990)
## 81691 Jane Eyre (1996)
## 83716 Happy Gilmore (1996)
## 84219 Something to Talk About (1995)
## 84265 Don Juan DeMarco (1995)
## 84372 Dumb & Dumber (1994)
## 84442 French Kiss (1995)
## 84530 Milk Money (1994)
## 84571 Only You (1994)
## 84686 Tommy Boy (1995)
## 84858 It Could Happen to You (1994)
## 86604 That Thing You Do! (1996)
## 87242 Michael (1996)
## 87399 Vegas Vacation (1997)
## 90066 Renaissance Man (1994)
## 90818 Affair to Remember, An (1957)
## 92235 Romy and Michele's High School Reunion (1997)
## 92816 Grumpier Old Men (1995)
## 93060 Cool Runnings (1993)
## 93308 Forget Paris (1995)
## 93853 Now and Then (1995)
## 93877 Mr. Wrong (1996)
## 95669 Ghosts of Mississippi (1996)
## 97932 'Til There Was You (1997)
## 97941 Stripes (1981)
## 3564 Braveheart (1995)
## 6497 Star Wars (1977)
## 7606 Pulp Fiction (1994)
## 8613 Shawshank Redemption, The (1994)
## 10718 Fugitive, The (1993)
## 17943 Godfather, The (1972)
## 23914 Empire Strikes Back, The (1980)
## 24614 Raiders of the Lost Ark (1981)
## 26241 Return of the Jedi (1983)
## 26707 GoodFellas (1990)
## 27820 Godfather: Part II, The (1974)
## 33120 When Harry Met Sally... (1989)
## 39507 Contact (1997)
## 40483 Hunt for Red October, The (1990)
## 45572 Liar Liar (1997)
## 49461 Mother (1996)
## 49631 Murder at 1600 (1997)
## 49854 Dante's Peak (1997)
## 50203 Crash (1996)
## 52974 One Flew Over the Cuckoo's Nest (1975)
## 66414 Magnificent Seven, The (1954)
## 70813 Speed (1994)
## 77619 Volcano (1997)
## 6498 Star Wars (1977)
## 8304 Three Colors: White (1994)
## 12234 Blade Runner (1982)
## 19265 2001: A Space Odyssey (1968)
## 19614 Big Night (1996)
## 20049 Sound of Music, The (1965)
## 21388 Sleeper (1973)
## 23915 Empire Strikes Back, The (1980)
## 24615 Raiders of the Lost Ark (1981)
## 25011 Brazil (1985)
## 26708 GoodFellas (1990)
## 27343 Psycho (1960)
## 27821 Godfather: Part II, The (1974)
## 28409 Amadeus (1984)
## 29738 Graduate, The (1967)
## 30268 Shining, The (1980)
## 30572 Groundhog Day (1993)
## 32354 M*A*S*H (1970)
## 33971 Star Trek: First Contact (1996)
## 36836 Raising Arizona (1987)
## 37510 Kolya (1996)
## 39508 Contact (1997)
## 43790 English Patient, The (1996)
## 44344 Scream (1996)
## 44791 Evita (1996)
## 47087 L.A. Confidential (1997)
## 50075 Lost Highway (1997)
## 51335 Game, The (1997)
## 52975 One Flew Over the Cuckoo's Nest (1975)
## 57322 My Favorite Year (1982)
## 61335 Like Water For Chocolate (Como agua para chocolate) (1992)
## 62524 Dr. Strangelove or: How I Learned to Stop Worrying and Love the Bomb (1963)
## 62730 Trainspotting (1996)
## 63323 Vertigo (1958)
## 63500 North by Northwest (1959)
## 63735 Some Like It Hot (1959)
## 64105 Maltese Falcon, The (1941)
## 64491 Sunset Blvd. (1950)
## 64984 It's a Wonderful Life (1946)
## 67024 Boot, Das (1981)
## 67827 Cool Hand Luke (1967)
## 68240 Gandhi (1982)
## 74990 Cook the Thief His Wife & Her Lover, The (1989)
## 75067 Paths of Glory (1957)
## 75109 Grifters, The (1990)
## 75567 Glory (1989)
## 79721 Sex, Lies, and Videotape (1989)
## 85133 Menace II Society (1993)
## 87588 Career Girls (1997)
## 88872 City of Lost Children, The (1995)
## 90105 Charade (1963)
## 37824 Devil's Own, The (1997)
## 43791 English Patient, The (1996)
## 44345 Scream (1996)
## 45246 Rosewood (1997)
## 45573 Liar Liar (1997)
## 46442 Air Force One (1997)
## 47588 Mrs. Brown (Her Majesty, Mrs. Brown) (1997)
## 49271 Everyone Says I Love You (1996)
## 49462 Mother (1996)
## 49632 Murder at 1600 (1997)
## 49855 Dante's Peak (1997)
## 50076 Lost Highway (1997)
## 50204 Crash (1996)
## 50334 G.I. Jane (1997)
## 50515 Cop Land (1997)
## 50709 Conspiracy Theory (1997)
## 51055 Edge, The (1997)
## 51172 Kiss the Girls (1997)
## 82481 Saint, The (1997)
## 87465 Love Jones (1997)
## 91385 Beautician and the Beast, The (1997)
## 91499 Anna Karenina (1997)
## 1656 Dead Man Walking (1995)
## 2031 Seven (Se7en) (1995)
## 2273 Usual Suspects, The (1995)
## 3565 Braveheart (1995)
## 6224 Hoop Dreams (1994)
## 7995 Quiz Show (1994)
## 8614 Shawshank Redemption, The (1994)
## 10499 Firm, The (1993)
## 11460 Much Ado About Nothing (1993)
## 11708 Remains of the Day, The (1993)
## 14465 Fargo (1996)
## 17385 Lone Star (1996)
## 19615 Big Night (1996)
## 22140 Platoon (1986)
## 25615 12 Angry Men (1957)
## 25974 Apocalypse Now (1979)
## 27822 Godfather: Part II, The (1974)
## 28656 Raging Bull (1980)
## 29739 Graduate, The (1967)
## 31358 Patton (1970)
## 32355 M*A*S*H (1970)
## 42308 Leaving Las Vegas (1995)
## 48858 In the Name of the Father (1993)
## 48986 Schindler's List (1993)
## 52348 Jackie Brown (1997)
## 52976 One Flew Over the Cuckoo's Nest (1975)
## 63501 North by Northwest (1959)
## 66415 Magnificent Seven, The (1954)
## 67025 Boot, Das (1981)
## 68421 Killing Fields, The (1984)
## 75068 Paths of Glory (1957)
## 75256 Once Upon a Time in the West (1969)
## 75568 Glory (1989)
## 76024 Stand by Me (1986)
## 76752 High Noon (1952)
## 84122 Kids (1995)
## 85134 Menace II Society (1993)
## 74 Toy Story (1995)
## 597 Four Rooms (1995)
## 4233 Birdcage, The (1996)
## 6499 Star Wars (1977)
## 12825 Welcome to the Dollhouse (1995)
## 14466 Fargo (1996)
## 15500 Truth About Cats & Dogs, The (1996)
## 16013 Rock, The (1996)
## 16384 Twister (1996)
## 16648 Striptease (1996)
## 17944 Godfather, The (1972)
## 19616 Big Night (1996)
## 20583 Long Kiss Goodnight, The (1996)
## 20914 Swingers (1996)
## 36185 Mars Attacks! (1996)
## 37742 Smilla's Sense of Snow (1997)
## 38471 Fifth Element, The (1997)
## 38955 My Best Friend's Wedding (1997)
## 39509 Contact (1997)
## 40776 Full Monty, The (1997)
## 41612 Heat (1995)
## 41833 Sabrina (1995)
## 42309 Leaving Las Vegas (1995)
## 43205 Emma (1996)
## 43792 English Patient, The (1996)
## 44792 Evita (1996)
## 45029 Fierce Creatures (1997)
## 45358 Donnie Brasco (1997)
## 46140 Face/Off (1997)
## 48271 Titanic (1997)
## 51860 Boogie Nights (1997)
## 56282 Mission: Impossible (1996)
## 56622 Spy Hard (1996)
## 56863 Kingpin (1996)
## 62731 Trainspotting (1996)
## 62964 First Wives Club, The (1996)
## 66100 People vs. Larry Flynt, The (1996)
## 67026 Boot, Das (1981)
## 72675 Eraser (1996)
## 78279 Executive Decision (1996)
## 81692 Jane Eyre (1996)
## 82482 Saint, The (1997)
## 89674 Preacher's Wife, The (1996)
## 92357 Con Air (1997)
## 93789 Associate, The (1996)
## 95522 Feeling Minnesota (1996)
## 97315 Metro (1997)
## 97463 Trial and Error (1997)
## 97751 Out to Sea (1997)
## 97946 Late Bloomers (1996)
## 75 Toy Story (1995)
## 701 Get Shorty (1995)
## 1071 Twelve Monkeys (1995)
## 1421 Babe (1995)
## 1918 Richard III (1995)
## 2032 Seven (Se7en) (1995)
## 3376 Angels and Insects (1995)
## 3566 Braveheart (1995)
## 4028 Rumble in the Bronx (1995)
## 4889 Batman Forever (1995)
## 5414 Net, The (1995)
## 5530 Strange Days (1995)
## 5723 Clerks (1994)
## 6500 Star Wars (1977)
## 7175 Natural Born Killers (1994)
## 7413 Professional, The (1994)
## 7607 Pulp Fiction (1994)
## 8375 Stargate (1994)
## 9245 Crow, The (1994)
## 9725 Four Weddings and a Funeral (1994)
## 10168 Mask, The (1994)
## 10719 Fugitive, The (1993)
## 11217 Jurassic Park (1993)
## 11461 Much Ado About Nothing (1993)
## 11634 Ref, The (1994)
## 12235 Blade Runner (1982)
## 12712 True Romance (1993)
## 13318 Terminator 2: Judgment Day (1991)
## 14467 Fargo (1996)
## 15191 Moll Flanders (1996)
## 15501 Truth About Cats & Dogs, The (1996)
## 15862 Cold Comfort Farm (1995)
## 16014 Rock, The (1996)
## 16385 Twister (1996)
## 16649 Striptease (1996)
## 16776 Independence Day (ID4) (1996)
## 17257 Frighteners, The (1996)
## 17386 Lone Star (1996)
## 17579 Phenomenon (1996)
## 17945 Godfather, The (1972)
## 18303 Supercop (1992)
## 18376 Bound (1996)
## 19617 Big Night (1996)
## 20274 Die Hard (1988)
## 20756 Ghost and the Darkness, The (1996)
## 20872 Jude (1996)
## 21729 Monty Python's Life of Brian (1979)
## 22515 Top Gun (1986)
## 22820 Return of the Pink Panther, The (1974)
## 23285 Monty Python and the Holy Grail (1974)
## 23916 Empire Strikes Back, The (1980)
## 24277 Princess Bride, The (1987)
## 24616 Raiders of the Lost Ark (1981)
## 25012 Brazil (1985)
## 25221 Aliens (1986)
## 25479 Good, The Bad and The Ugly, The (1966)
## 26242 Return of the Jedi (1983)
## 26709 GoodFellas (1990)
## 26938 Alien (1979)
## 27205 Army of Darkness (1993)
## 27576 Blues Brothers, The (1980)
## 27823 Godfather: Part II, The (1974)
## 28027 Full Metal Jacket (1987)
## 28263 Henry V (1989)
## 28956 Sting, The (1973)
## 29204 Terminator, The (1984)
## 30573 Groundhog Day (1993)
## 31044 Back to the Future (1985)
## 31625 Young Frankenstein (1974)
## 31832 This Is Spinal Tap (1984)
## 32035 Indiana Jones and the Last Crusade (1989)
## 33121 When Harry Met Sally... (1989)
## 33383 Bram Stoker's Dracula (1992)
## 33846 Breaking the Waves (1996)
## 33972 Star Trek: First Contact (1996)
## 34584 Die Hard 2 (1990)
## 34758 Star Trek VI: The Undiscovered Country (1991)
## 34931 Star Trek: The Wrath of Khan (1982)
## 35164 Star Trek III: The Search for Spock (1984)
## 35338 Star Trek IV: The Voyage Home (1986)
## 35525 Batman Returns (1992)
## 35658 Young Guns (1988)
## 35765 Under Siege (1992)
## 36186 Mars Attacks! (1996)
## 36837 Raising Arizona (1987)
## 37070 Sneakers (1992)
## 37380 Last of the Mohicans, The (1992)
## 37743 Smilla's Sense of Snow (1997)
## 38472 Fifth Element, The (1997)
## 38710 Lost World: Jurassic Park, The (1997)
## 41205 Starship Troopers (1997)
## 41613 Heat (1995)
## 42034 Sense and Sensibility (1995)
## 42570 Restoration (1995)
## 43206 Emma (1996)
## 43388 Tin Cup (1996)
## 43577 Secrets & Lies (1996)
## 43793 English Patient, The (1996)
## 45030 Fierce Creatures (1997)
## 45359 Donnie Brasco (1997)
## 45574 Liar Liar (1997)
## 46141 Face/Off (1997)
## 47088 L.A. Confidential (1997)
## 50205 Crash (1996)
## 53613 Clueless (1995)
## 53985 Judge Dredd (1995)
## 54695 True Lies (1994)
## 55575 Three Musketeers, The (1993)
## 55948 Batman (1989)
## 56676 Close Shave, A (1995)
## 56864 Kingpin (1996)
## 57323 My Favorite Year (1982)
## 58945 Duck Soup (1933)
## 59041 Highlander (1986)
## 59377 Heathers (1989)
## 59620 Butch Cassidy and the Sundance Kid (1969)
## 60454 Star Trek: The Motion Picture (1979)
## 60564 Star Trek V: The Final Frontier (1989)
## 60901 Jackie Chan's First Strike (1996)
## 62022 Courage Under Fire (1996)
## 62234 Dragonheart (1996)
## 63874 Casablanca (1942)
## 65597 Bananas (1971)
## 66416 Magnificent Seven, The (1954)
## 66546 Lawrence of Arabia (1962)
## 66849 Annie Hall (1977)
## 67212 Local Hero (1983)
## 67373 Miller's Crossing (1990)
## 68023 Big Sleep, The (1946)
## 68631 Man Who Would Be King, The (1975)
## 69254 Things to Do in Denver when You're Dead (1995)
## 69372 Broken Arrow (1996)
## 69746 Die Hard: With a Vengeance (1995)
## 70443 Quick and the Dead, The (1995)
## 70589 Clear and Present Danger (1994)
## 70814 Speed (1994)
## 71081 Wyatt Earp (1994)
## 71285 Cliffhanger (1993)
## 71524 Englishman Who Went Up a Hill, But Came Down a Mountain, The (1995)
## 71785 Romeo Is Bleeding (1993)
## 72434 Stalingrad (1993)
## 74780 Escape from New York (1981)
## 75365 Quiet Man, The (1952)
## 75569 Glory (1989)
## 75733 Rosencrantz and Guildenstern Are Dead (1990)
## 76482 Arsenic and Old Lace (1944)
## 77086 Alien 3 (1992)
## 78112 In the Line of Fire (1993)
## 78419 Perfect World, A (1993)
## 79092 Persuasion (1995)
## 79824 Strictly Ballroom (1992)
## 80862 Nell (1994)
## 80962 Corrina, Corrina (1994)
## 81844 Ransom (1996)
## 82126 Michael Collins (1996)
## 82206 Ruling Class, The (1972)
## 84027 Devil in a Blue Dress (1995)
## 84959 Timecop (1994)
## 84987 Bad Company (1995)
## 85082 Heaven & Earth (1993)
## 85219 Rising Sun (1993)
## 85264 Shadow, The (1994)
## 85733 Mulholland Falls (1996)
## 85858 Arrival, The (1996)
## 87243 Michael (1996)
## 91158 Heaven's Prisoners (1996)
## 91328 Blood & Wine (1997)
## 92005 2 Days in the Valley (1996)
## 92358 Con Air (1997)
## 93532 Multiplicity (1996)
## 94188 Bottle Rocket (1996)
## 94863 Flirting With Disaster (1996)
## 97951 Getaway, The (1994)
## 1072 Twelve Monkeys (1995)
## 1657 Dead Man Walking (1995)
## 2915 Mr. Holland's Opus (1995)
## 4029 Rumble in the Bronx (1995)
## 4234 Birdcage, The (1996)
## 9138 Ace Ventura: Pet Detective (1994)
## 10169 Mask, The (1994)
## 13319 Terminator 2: Judgment Day (1991)
## 15024 All Dogs Go to Heaven 2 (1996)
## 15502 Truth About Cats & Dogs, The (1996)
## 16015 Rock, The (1996)
## 16386 Twister (1996)
## 16777 Independence Day (ID4) (1996)
## 17580 Phenomenon (1996)
## 17802 Spitfire Grill, The (1996)
## 17946 Godfather, The (1972)
## 18490 Kansas City (1996)
## 29205 Terminator, The (1984)
## 33778 Mirror Has Two Faces, The (1996)
## 34475 101 Dalmatians (1996)
## 36475 Jerry Maguire (1996)
## 37627 Jungle2Jungle (1997)
## 37825 Devil's Own, The (1997)
## 38332 Austin Powers: International Man of Mystery (1997)
## 38473 Fifth Element, The (1997)
## 38876 Batman & Robin (1997)
## 38956 My Best Friend's Wedding (1997)
## 39510 Contact (1997)
## 39958 George of the Jungle (1997)
## 40116 Event Horizon (1997)
## 41414 Good Will Hunting (1997)
## 41614 Heat (1995)
## 41834 Sabrina (1995)
## 42310 Leaving Las Vegas (1995)
## 43794 English Patient, The (1996)
## 44346 Scream (1996)
## 44793 Evita (1996)
## 45121 Absolute Power (1997)
## 45360 Donnie Brasco (1997)
## 45575 Liar Liar (1997)
## 46142 Face/Off (1997)
## 46318 Hoodlum (1997)
## 46849 In & Out (1997)
## 47939 Rainmaker, The (1997)
## 49272 Everyone Says I Love You (1996)
## 49633 Murder at 1600 (1997)
## 49856 Dante's Peak (1997)
## 50335 G.I. Jane (1997)
## 50710 Conspiracy Theory (1997)
## 51336 Game, The (1997)
## 53217 Spawn (1997)
## 53458 Ace Ventura: When Nature Calls (1995)
## 56283 Mission: Impossible (1996)
## 57036 Nutty Professor, The (1996)
## 57182 Very Brady Sequel, A (1996)
## 60640 Grease (1978)
## 61036 Beverly Hills Ninja (1997)
## 62023 Courage Under Fire (1996)
## 62965 First Wives Club, The (1996)
## 69373 Broken Arrow (1996)
## 72013 Beauty and the Beast (1991)
## 72272 Primal Fear (1996)
## 72463 Fan, The (1996)
## 72676 Eraser (1996)
## 74222 Sleepers (1996)
## 77620 Volcano (1997)
## 78280 Executive Decision (1996)
## 81845 Ransom (1996)
## 82483 Saint, The (1997)
## 83346 Father of the Bride Part II (1995)
## 85413 One Fine Day (1996)
## 86087 Fled (1996)
## 86128 Escape from L.A. (1996)
## 86208 Bogus (1996)
## 86605 That Thing You Do! (1996)
## 87244 Michael (1996)
## 87400 Vegas Vacation (1997)
## 87466 Love Jones (1997)
## 87509 Picture Perfect (1997)
## 87678 Money Talks (1997)
## 87725 Excess Baggage (1997)
## 87953 Soul Food (1997)
## 88852 City of Angels (1998)
## 89484 Chain Reaction (1996)
## 89612 First Kid (1996)
## 90225 Booty Call (1997)
## 91386 Beautician and the Beast, The (1997)
## 91744 Pest, The (1997)
## 92103 Private Parts (1997)
## 92196 Anaconda (1997)
## 92236 Romy and Michele's High School Reunion (1997)
## 92698 Fathers' Day (1997)
## 92741 Fire Down Below (1997)
## 92817 Grumpier Old Men (1995)
## 93148 Grease 2 (1982)
## 93655 She's the One (1996)
## 93722 House Arrest (1996)
## 94764 Dear God (1996)
## 94815 High School High (1996)
## 95523 Feeling Minnesota (1996)
## 95933 In Love and War (1996)
## 96456 That Old Feeling (1997)
## 96969 When a Man Loves a Woman (1994)
## 97440 Gone Fishin' (1997)
## 97464 Trial and Error (1997)
## 97687 Selena (1997)
## 76 Toy Story (1995)
## 598 Four Rooms (1995)
## 702 Get Shorty (1995)
## 1073 Twelve Monkeys (1995)
## 1658 Dead Man Walking (1995)
## 2033 Seven (Se7en) (1995)
## 2534 Mighty Aphrodite (1995)
## 2916 Mr. Holland's Opus (1995)
## 3454 Muppet Treasure Island (1996)
## 3844 Taxi Driver (1976)
## 4030 Rumble in the Bronx (1995)
## 5200 Crumb (1994)
## 6501 Star Wars (1977)
## 7414 Professional, The (1994)
## 7608 Pulp Fiction (1994)
## 8163 Three Colors: Red (1994)
## 8305 Three Colors: White (1994)
## 10720 Fugitive, The (1993)
## 12826 Welcome to the Dollhouse (1995)
## 14468 Fargo (1996)
## 15318 Mystery Science Theater 3000: The Movie (1996)
## 16016 Rock, The (1996)
## 16387 Twister (1996)
## 17258 Frighteners, The (1996)
## 17387 Lone Star (1996)
## 17803 Spitfire Grill, The (1996)
## 17947 Godfather, The (1972)
## 18377 Bound (1996)
## 19266 2001: A Space Odyssey (1968)
## 19618 Big Night (1996)
## 20915 Swingers (1996)
## 21103 Willy Wonka and the Chocolate Factory (1971)
## 21495 Fish Called Wanda, A (1988)
## 22141 Platoon (1986)
## 22422 Glengarry Glen Ross (1992)
## 22516 Top Gun (1986)
## 23286 Monty Python and the Holy Grail (1974)
## 23571 Wrong Trousers, The (1993)
## 24617 Raiders of the Lost Ark (1981)
## 25013 Brazil (1985)
## 26710 GoodFellas (1990)
## 27344 Psycho (1960)
## 27824 Godfather: Part II, The (1974)
## 28657 Raging Bull (1980)
## 29206 Terminator, The (1984)
## 30462 Evil Dead II (1987)
## 30574 Groundhog Day (1993)
## 31833 This Is Spinal Tap (1984)
## 32356 M*A*S*H (1970)
## 32636 Room with a View, A (1986)
## 33507 Cape Fear (1991)
## 34932 Star Trek: The Wrath of Khan (1982)
## 35339 Star Trek IV: The Voyage Home (1986)
## 35909 Jaws (1975)
## 36476 Jerry Maguire (1996)
## 37227 Beavis and Butt-head Do America (1996)
## 38173 Grosse Pointe Blank (1997)
## 38474 Fifth Element, The (1997)
## 41615 Heat (1995)
## 42311 Leaving Las Vegas (1995)
## 42985 Time to Kill, A (1996)
## 43578 Secrets & Lies (1996)
## 44347 Scream (1996)
## 45361 Donnie Brasco (1997)
## 47089 L.A. Confidential (1997)
## 50206 Crash (1996)
## 50711 Conspiracy Theory (1997)
## 56284 Mission: Impossible (1996)
## 56677 Close Shave, A (1995)
## 56865 Kingpin (1996)
## 57183 Very Brady Sequel, A (1996)
## 58946 Duck Soup (1933)
## 59202 Fantasia (1940)
## 60245 Carrie (1976)
## 60902 Jackie Chan's First Strike (1996)
## 61114 Nixon (1995)
## 61219 Crossing Guard, The (1995)
## 61250 Smoke (1995)
## 61336 Like Water For Chocolate (Como agua para chocolate) (1992)
## 61481 Secret of Roan Inish, The (1994)
## 62525 Dr. Strangelove or: How I Learned to Stop Worrying and Love the Bomb (1963)
## 62732 Trainspotting (1996)
## 63875 Casablanca (1942)
## 64106 Maltese Falcon, The (1941)
## 64492 Sunset Blvd. (1950)
## 65191 Bringing Up Baby (1938)
## 66101 People vs. Larry Flynt, The (1996)
## 66850 Annie Hall (1977)
## 68720 Shine (1996)
## 69255 Things to Do in Denver when You're Dead (1995)
## 70525 Tales from the Hood (1995)
## 72190 Wild Bunch, The (1969)
## 72954 Rear Window (1954)
## 73142 It Happened One Night (1934)
## 74223 Sleepers (1996)
## 74991 Cook the Thief His Wife & Her Lover, The (1989)
## 77213 Bride of Frankenstein (1935)
## 79001 Casino (1995)
## 80374 Canadian Bacon (1994)
## 83596 Beautiful Girls (1996)
## 83717 Happy Gilmore (1996)
## 84028 Devil in a Blue Dress (1995)
## 85859 Arrival, The (1996)
## 86209 Bogus (1996)
## 86539 Freeway (1996)
## 87145 My Fellow Americans (1996)
## 89011 Dead Man (1995)
## 89237 Down Periscope (1996)
## 89647 Funeral, The (1996)
## 90415 Blue in the Face (1995)
## 90492 Before Sunrise (1995)
## 90881 Winnie the Pooh and the Blustery Day (1968)
## 92104 Private Parts (1997)
## 92359 Con Air (1997)
## 92562 Die xue shuang xiong (Killer, The) (1989)
## 94316 Shallow Grave (1994)
## 95585 Get on the Bus (1996)
## 95794 When We Were Kings (1996)
## 96541 Family Thing, A (1996)
## 97031 King of the Hill (1993)
## 2712 Postino, Il (1994)
## 2917 Mr. Holland's Opus (1995)
## 3567 Braveheart (1995)
## 6225 Hoop Dreams (1994)
## 6502 Star Wars (1977)
## 7609 Pulp Fiction (1994)
## 9412 Forrest Gump (1994)
## 9726 Four Weddings and a Funeral (1994)
## 13890 Silence of the Lambs, The (1991)
## 14469 Fargo (1996)
## 16388 Twister (1996)
## 17948 Godfather, The (1972)
## 18642 Wizard of Oz, The (1939)
## 18877 Gone with the Wind (1939)
## 19267 2001: A Space Odyssey (1968)
## 22716 On Golden Pond (1981)
## 23287 Monty Python and the Holy Grail (1974)
## 24618 Raiders of the Lost Ark (1981)
## 25480 Good, The Bad and The Ugly, The (1966)
## 26243 Return of the Jedi (1983)
## 27577 Blues Brothers, The (1980)
## 27825 Godfather: Part II, The (1974)
## 28410 Amadeus (1984)
## 28957 Sting, The (1973)
## 29740 Graduate, The (1967)
## 30575 Groundhog Day (1993)
## 31045 Back to the Future (1985)
## 32036 Indiana Jones and the Last Crusade (1989)
## 32637 Room with a View, A (1986)
## 32897 Field of Dreams (1989)
## 34476 101 Dalmatians (1996)
## 39166 Men in Black (1997)
## 40484 Hunt for Red October, The (1990)
## 41415 Good Will Hunting (1997)
## 41835 Sabrina (1995)
## 42312 Leaving Las Vegas (1995)
## 43389 Tin Cup (1996)
## 43795 English Patient, The (1996)
## 47890 Deceiver (1997)
## 48594 Apt Pupil (1998)
## 48747 As Good As It Gets (1997)
## 48987 Schindler's List (1993)
## 58727 Harold and Maude (1971)
## 59621 Butch Cassidy and the Sundance Kid (1969)
## 62388 James and the Giant Peach (1996)
## 63876 Casablanca (1942)
## 64362 Sabrina (1954)
## 64424 Roman Holiday (1953)
## 64985 It's a Wonderful Life (1946)
## 66102 People vs. Larry Flynt, The (1996)
## 67828 Cool Hand Luke (1967)
## 71633 Piano, The (1993)
## 74992 Cook the Thief His Wife & Her Lover, The (1989)
## 75862 Chinatown (1974)
## 88506 Postman, The (1997)
## 89436 Harriet the Spy (1996)
## 95239 Surviving Picasso (1996)
## 97546 Bread and Chocolate (Pane e cioccolata) (1973)
## 77 Toy Story (1995)
## 1074 Twelve Monkeys (1995)
## 2034 Seven (Se7en) (1995)
## 4235 Birdcage, The (1996)
## 4646 Apollo 13 (1995)
## 5724 Clerks (1994)
## 6503 Star Wars (1977)
## 7415 Professional, The (1994)
## 10721 Fugitive, The (1993)
## 15053 Sgt. Bilko (1996)
## 16017 Rock, The (1996)
## 16778 Independence Day (ID4) (1996)
## 17150 Cable Guy, The (1996)
## 20275 Die Hard (1988)
## 20584 Long Kiss Goodnight, The (1996)
## 21104 Willy Wonka and the Chocolate Factory (1971)
## 24619 Raiders of the Lost Ark (1981)
## 25749 Clockwork Orange, A (1971)
## 26244 Return of the Jedi (1983)
## 31626 Young Frankenstein (1974)
## 33973 Star Trek: First Contact (1996)
## 35340 Star Trek IV: The Voyage Home (1986)
## 36477 Jerry Maguire (1996)
## 38877 Batman & Robin (1997)
## 45576 Liar Liar (1997)
## 46143 Face/Off (1997)
## 53218 Spawn (1997)
## 55949 Batman (1989)
## 62526 Dr. Strangelove or: How I Learned to Stop Worrying and Love the Bomb (1963)
## 66103 People vs. Larry Flynt, The (1996)
## 69256 Things to Do in Denver when You're Dead (1995)
## 72677 Eraser (1996)
## 74224 Sleepers (1996)
## 78281 Executive Decision (1996)
## 79924 Better Off Dead... (1985)
## 81846 Ransom (1996)
## 85942 Phantom, The (1996)
## 90022 Killing Zoe (1994)
## 92006 2 Days in the Valley (1996)
## 92105 Private Parts (1997)
## 92563 Die xue shuang xiong (Killer, The) (1989)
## 93533 Multiplicity (1996)
## 4647 Apollo 13 (1995)
## 7610 Pulp Fiction (1994)
## 8615 Shawshank Redemption, The (1994)
## 13603 Dances with Wolves (1990)
## 13891 Silence of the Lambs, The (1991)
## 30576 Groundhog Day (1993)
## 33122 When Harry Met Sally... (1989)
## 35910 Jaws (1975)
## 39511 Contact (1997)
## 40777 Full Monty, The (1997)
## 41416 Good Will Hunting (1997)
## 43796 English Patient, The (1996)
## 44348 Scream (1996)
## 46443 Air Force One (1997)
## 46850 In & Out (1997)
## 47495 Ice Storm, The (1997)
## 48748 As Good As It Gets (1997)
## 48988 Schindler's List (1993)
## 50336 G.I. Jane (1997)
## 52474 Wag the Dog (1997)
## 52977 One Flew Over the Cuckoo's Nest (1975)
## 59378 Heathers (1989)
## 87824 Peacemaker, The (1997)
## 1659 Dead Man Walking (1995)
## 14470 Fargo (1996)
## 16018 Rock, The (1996)
## 16389 Twister (1996)
## 16779 Independence Day (ID4) (1996)
## 17581 Phenomenon (1996)
## 20757 Ghost and the Darkness, The (1996)
## 26245 Return of the Jedi (1983)
## 33974 Star Trek: First Contact (1996)
## 36478 Jerry Maguire (1996)
## 37826 Devil's Own, The (1997)
## 38174 Grosse Pointe Blank (1997)
## 38711 Lost World: Jurassic Park, The (1997)
## 39512 Contact (1997)
## 42313 Leaving Las Vegas (1995)
## 42827 River Wild, The (1994)
## 42986 Time to Kill, A (1996)
## 45122 Absolute Power (1997)
## 45362 Donnie Brasco (1997)
## 46144 Face/Off (1997)
## 46319 Hoodlum (1997)
## 46444 Air Force One (1997)
## 47699 Devil's Advocate, The (1997)
## 48272 Titanic (1997)
## 49634 Murder at 1600 (1997)
## 49857 Dante's Peak (1997)
## 50337 G.I. Jane (1997)
## 50712 Conspiracy Theory (1997)
## 50964 Desperate Measures (1998)
## 51056 Edge, The (1997)
## 51337 Game, The (1997)
## 52040 Man Who Knew Too Little, The (1997)
## 53848 Mary Reilly (1996)
## 56285 Mission: Impossible (1996)
## 56575 Thinner (1996)
## 56623 Spy Hard (1996)
## 57037 Nutty Professor, The (1996)
## 61115 Nixon (1995)
## 62024 Courage Under Fire (1996)
## 62235 Dragonheart (1996)
## 67027 Boot, Das (1981)
## 72678 Eraser (1996)
## 73826 Extreme Measures (1996)
## 73887 Chamber, The (1996)
## 77621 Volcano (1997)
## 78282 Executive Decision (1996)
## 78586 Jackal, The (1997)
## 78688 Seven Years in Tibet (1997)
## 80292 Juror, The (1996)
## 81847 Ransom (1996)
## 82484 Saint, The (1997)
## 82961 Tomorrow Never Dies (1997)
## 85734 Mulholland Falls (1996)
## 85860 Arrival, The (1996)
## 85943 Phantom, The (1996)
## 86606 That Thing You Do! (1996)
## 87245 Michael (1996)
## 89238 Down Periscope (1996)
## 89485 Chain Reaction (1996)
## 89675 Preacher's Wife, The (1996)
## 91288 Shadow Conspiracy (1997)
## 92360 Con Air (1997)
## 92742 Fire Down Below (1997)
## 2918 Mr. Holland's Opus (1995)
## 9413 Forrest Gump (1994)
## 12580 Nightmare Before Christmas, The (1993)
## 17949 Godfather, The (1972)
## 21999 Reservoir Dogs (1992)
## 23572 Wrong Trousers, The (1993)
## 24620 Raiders of the Lost Ark (1981)
## 25222 Aliens (1986)
## 26246 Return of the Jedi (1983)
## 27826 Godfather: Part II, The (1974)
## 30577 Groundhog Day (1993)
## 33123 When Harry Met Sally... (1989)
## 33975 Star Trek: First Contact (1996)
## 34293 Sling Blade (1996)
## 39513 Contact (1997)
## 40117 Event Horizon (1997)
## 41055 Gattaca (1997)
## 44349 Scream (1996)
## 47357 Fly Away Home (1996)
## 48989 Schindler's List (1993)
## 50207 Crash (1996)
## 50338 G.I. Jane (1997)
## 50713 Conspiracy Theory (1997)
## 51173 Kiss the Girls (1997)
## 53956 Jeffrey (1995)
## 57686 Mary Poppins (1964)
## 59203 Fantasia (1940)
## 75570 Glory (1989)
## 95308 Some Kind of Wonderful (1987)
## 37628 Jungle2Jungle (1997)
## 39514 Contact (1997)
## 43797 English Patient, The (1996)
## 44350 Scream (1996)
## 45577 Liar Liar (1997)
## 46445 Air Force One (1997)
## 48273 Titanic (1997)
## 48595 Apt Pupil (1998)
## 49635 Murder at 1600 (1997)
## 49858 Dante's Peak (1997)
## 50714 Conspiracy Theory (1997)
## 52102 Alien: Resurrection (1997)
## 52349 Jackie Brown (1997)
## 52475 Wag the Dog (1997)
## 78469 McHale's Navy (1997)
## 78538 Leave It to Beaver (1997)
## 82485 Saint, The (1997)
## 82962 Tomorrow Never Dies (1997)
## 88332 Home Alone 3 (1997)
## 91289 Shadow Conspiracy (1997)
## 1422 Babe (1995)
## 6226 Hoop Dreams (1994)
## 10300 Maverick (1994)
## 11462 Much Ado About Nothing (1993)
## 11709 Remains of the Day, The (1993)
## 13320 Terminator 2: Judgment Day (1991)
## 14235 Snow White and the Seven Dwarfs (1937)
## 17804 Spitfire Grill, The (1996)
## 18878 Gone with the Wind (1939)
## 19496 Mr. Smith Goes to Washington (1939)
## 19619 Big Night (1996)
## 23573 Wrong Trousers, The (1993)
## 27206 Army of Darkness (1993)
## 31046 Back to the Future (1985)
## 33124 When Harry Met Sally... (1989)
## 33976 Star Trek: First Contact (1996)
## 34477 101 Dalmatians (1996)
## 35659 Young Guns (1988)
## 36187 Mars Attacks! (1996)
## 36479 Jerry Maguire (1996)
## 36838 Raising Arizona (1987)
## 37228 Beavis and Butt-head Do America (1996)
## 37381 Last of the Mohicans, The (1992)
## 44351 Scream (1996)
## 45031 Fierce Creatures (1997)
## 48990 Schindler's List (1993)
## 53459 Ace Ventura: When Nature Calls (1995)
## 54362 Muriel's Wedding (1994)
## 55159 Man Without a Face, The (1993)
## 56138 Pinocchio (1940)
## 59622 Butch Cassidy and the Sundance Kid (1969)
## 61574 Jungle Book, The (1994)
## 63204 Philadelphia Story, The (1940)
## 64363 Sabrina (1954)
## 64785 Thin Man, The (1934)
## 66698 Wings of Desire (1987)
## 66760 Third Man, The (1949)
## 67663 Deer Hunter, The (1978)
## 68632 Man Who Would Be King, The (1975)
## 70023 Waterworld (1995)
## 70815 Speed (1994)
## 72955 Rear Window (1954)
## 73255 All About Eve (1950)
## 73668 39 Steps, The (1935)
## 75069 Paths of Glory (1957)
## 76025 Stand by Me (1986)
## 76483 Arsenic and Old Lace (1944)
## 77329 Cape Fear (1962)
## 77410 Cat People (1982)
## 77460 Nosferatu (Nosferatu, eine Symphonie des Grauens) (1922)
## 79265 Browning Version, The (1994)
## 80375 Canadian Bacon (1994)
## 80728 Fluke (1995)
## 81174 Go Fish (1994)
## 81232 Philadelphia (1993)
## 86129 Escape from L.A. (1996)
## 90277 How to Make an American Quilt (1995)
## 95418 Innocents, The (1961)
## 95425 Old Man and the Sea, The (1958)
## 95863 My Family (1995)
## 96613 Kim (1950)
## 97047 Angus (1995)
## 97969 New York Cop (1996)
## 97971 National Lampoon's Senior Trip (1995)
## 97978 Delta of Venus (1994)
## 97980 Carmen Miranda: Bananas Is My Business (1994)
## 97982 Babyfever (1994)
## 97984 Very Natural Thing, A (1974)
## 97985 Walk in the Sun, A (1945)
## 78 Toy Story (1995)
## 1075 Twelve Monkeys (1995)
## 1660 Dead Man Walking (1995)
## 2919 Mr. Holland's Opus (1995)
## 4236 Birdcage, The (1996)
## 14471 Fargo (1996)
## 16019 Rock, The (1996)
## 16390 Twister (1996)
## 16780 Independence Day (ID4) (1996)
## 17259 Frighteners, The (1996)
## 17582 Phenomenon (1996)
## 17805 Spitfire Grill, The (1996)
## 21105 Willy Wonka and the Chocolate Factory (1971)
## 26247 Return of the Jedi (1983)
## 33977 Star Trek: First Contact (1996)
## 34478 101 Dalmatians (1996)
## 36188 Mars Attacks! (1996)
## 38712 Lost World: Jurassic Park, The (1997)
## 38957 My Best Friend's Wedding (1997)
## 39167 Men in Black (1997)
## 39515 Contact (1997)
## 39959 George of the Jungle (1997)
## 41616 Heat (1995)
## 41836 Sabrina (1995)
## 42035 Sense and Sensibility (1995)
## 42314 Leaving Las Vegas (1995)
## 42732 Up Close and Personal (1996)
## 42828 River Wild, The (1994)
## 42987 Time to Kill, A (1996)
## 43390 Tin Cup (1996)
## 44352 Scream (1996)
## 45123 Absolute Power (1997)
## 45578 Liar Liar (1997)
## 45990 Breakdown (1997)
## 46446 Air Force One (1997)
## 48274 Titanic (1997)
## 49859 Dante's Peak (1997)
## 50208 Crash (1996)
## 56286 Mission: Impossible (1996)
## 56785 Jack (1996)
## 57038 Nutty Professor, The (1996)
## 61116 Nixon (1995)
## 62236 Dragonheart (1996)
## 62389 James and the Giant Peach (1996)
## 69374 Broken Arrow (1996)
## 72537 Hunchback of Notre Dame, The (1996)
## 72679 Eraser (1996)
## 73827 Extreme Measures (1996)
## 77622 Volcano (1997)
## 78283 Executive Decision (1996)
## 81848 Ransom (1996)
## 82127 Michael Collins (1996)
## 82486 Saint, The (1997)
## 83718 Happy Gilmore (1996)
## 85560 Eddie (1996)
## 86607 That Thing You Do! (1996)
## 87246 Michael (1996)
## 87401 Vegas Vacation (1997)
## 89110 White Squall (1996)
## 89486 Chain Reaction (1996)
## 89562 Island of Dr. Moreau, The (1996)
## 91387 Beautician and the Beast, The (1997)
## 92106 Private Parts (1997)
## 92361 Con Air (1997)
## 92818 Grumpier Old Men (1995)
## 93534 Multiplicity (1996)
## 93790 Associate, The (1996)
## 96542 Family Thing, A (1996)
## 97688 Selena (1997)
## 6504 Star Wars (1977)
## 17950 Godfather, The (1972)
## 18879 Gone with the Wind (1939)
## 19053 Citizen Kane (1941)
## 23917 Empire Strikes Back, The (1980)
## 24621 Raiders of the Lost Ark (1981)
## 26248 Return of the Jedi (1983)
## 30097 Bridge on the River Kwai, The (1957)
## 31047 Back to the Future (1985)
## 32357 M*A*S*H (1970)
## 32638 Room with a View, A (1986)
## 35911 Jaws (1975)
## 37629 Jungle2Jungle (1997)
## 39516 Contact (1997)
## 40118 Event Horizon (1997)
## 46447 Air Force One (1997)
## 46851 In & Out (1997)
## 47865 FairyTale: A True Story (1997)
## 49463 Mother (1996)
## 51057 Edge, The (1997)
## 58847 Day the Earth Stood Still, The (1951)
## 60012 Birds, The (1963)
## 63502 North by Northwest (1959)
## 63736 Some Like It Hot (1959)
## 63877 Casablanca (1942)
## 64902 Around the World in 80 Days (1956)
## 65271 African Queen, The (1951)
## 65409 Cat on a Hot Tin Roof (1958)
## 68024 Big Sleep, The (1946)
## 68977 Anastasia (1997)
## 72956 Rear Window (1954)
## 73143 It Happened One Night (1934)
## 73256 All About Eve (1950)
## 78047 Rocket Man (1997)
## 78113 In the Line of Fire (1993)
## 79515 Singin' in the Rain (1952)
## 87825 Peacemaker, The (1997)
## 37827 Devil's Own, The (1997)
## 39517 Contact (1997)
## 39960 George of the Jungle (1997)
## 44353 Scream (1996)
## 45247 Rosewood (1997)
## 45579 Liar Liar (1997)
## 46320 Hoodlum (1997)
## 46448 Air Force One (1997)
## 47358 Fly Away Home (1996)
## 49636 Murder at 1600 (1997)
## 49860 Dante's Peak (1997)
## 50339 G.I. Jane (1997)
## 50715 Conspiracy Theory (1997)
## 51338 Game, The (1997)
## 77623 Volcano (1997)
## 78470 McHale's Navy (1997)
## 82759 MatchMaker, The (1997)
## 87679 Money Talks (1997)
## 91290 Shadow Conspiracy (1997)
## 91388 Beautician and the Beast, The (1997)
## 37828 Devil's Own, The (1997)
## 39518 Contact (1997)
## 40279 In the Company of Men (1997)
## 40778 Full Monty, The (1997)
## 41056 Gattaca (1997)
## 41417 Good Will Hunting (1997)
## 43798 English Patient, The (1996)
## 44354 Scream (1996)
## 45248 Rosewood (1997)
## 47090 L.A. Confidential (1997)
## 47359 Fly Away Home (1996)
## 47496 Ice Storm, The (1997)
## 47589 Mrs. Brown (Her Majesty, Mrs. Brown) (1997)
## 47940 Rainmaker, The (1997)
## 48275 Titanic (1997)
## 48596 Apt Pupil (1998)
## 50340 G.I. Jane (1997)
## 50516 Cop Land (1997)
## 51861 Boogie Nights (1997)
## 52213 Apostle, The (1997)
## 52350 Jackie Brown (1997)
## 52739 Wedding Singer, The (1998)
## 78689 Seven Years in Tibet (1997)
## 88127 Eve's Bayou (1997)
## 88731 Oscar & Lucinda (1997)
## 92664 Fast, Cheap & Out of Control (1997)
## 3845 Taxi Driver (1976)
## 17388 Lone Star (1996)
## 25481 Good, The Bad and The Ugly, The (1966)
## 25616 12 Angry Men (1957)
## 26939 Alien (1979)
## 33779 Mirror Has Two Faces, The (1996)
## 58390 Bob Roberts (1992)
## 58728 Harold and Maude (1971)
## 58947 Duck Soup (1933)
## 61337 Like Water For Chocolate (Como agua para chocolate) (1992)
## 61482 Secret of Roan Inish, The (1994)
## 63205 Philadelphia Story, The (1940)
## 63878 Casablanca (1942)
## 64240 My Fair Lady (1964)
## 64493 Sunset Blvd. (1950)
## 66851 Annie Hall (1977)
## 71525 Englishman Who Went Up a Hill, But Came Down a Mountain, The (1995)
## 71634 Piano, The (1993)
## 72957 Rear Window (1954)
## 73257 All About Eve (1950)
## 73554 Lost Horizon (1937)
## 75110 Grifters, The (1990)
## 76281 Manchurian Candidate, The (1962)
## 79227 Basketball Diaries, The (1995)
## 84123 Kids (1995)
## 95586 Get on the Bus (1996)
## 96221 Women, The (1939)
## 37511 Kolya (1996)
## 37829 Devil's Own, The (1997)
## 39519 Contact (1997)
## 39961 George of the Jungle (1997)
## 40119 Event Horizon (1997)
## 40280 In the Company of Men (1997)
## 40779 Full Monty, The (1997)
## 43799 English Patient, The (1996)
## 44794 Evita (1996)
## 45249 Rosewood (1997)
## 45580 Liar Liar (1997)
## 46321 Hoodlum (1997)
## 46449 Air Force One (1997)
## 46852 In & Out (1997)
## 47091 L.A. Confidential (1997)
## 47497 Ice Storm, The (1997)
## 47590 Mrs. Brown (Her Majesty, Mrs. Brown) (1997)
## 49273 Everyone Says I Love You (1996)
## 49464 Mother (1996)
## 49637 Murder at 1600 (1997)
## 49861 Dante's Peak (1997)
## 50077 Lost Highway (1997)
## 50341 G.I. Jane (1997)
## 50517 Cop Land (1997)
## 50716 Conspiracy Theory (1997)
## 50965 Desperate Measures (1998)
## 51058 Edge, The (1997)
## 51174 Kiss the Girls (1997)
## 51556 U Turn (1997)
## 77624 Volcano (1997)
## 78471 McHale's Navy (1997)
## 78690 Seven Years in Tibet (1997)
## 87589 Career Girls (1997)
## 87826 Peacemaker, The (1997)
## 87954 Soul Food (1997)
## 89780 Thousand Acres, A (1997)
## 89812 Smile Like Yours, A (1997)
## 91291 Shadow Conspiracy (1997)
## 91634 Kiss Me, Guido (1997)
## 97527 Star Maps (1997)
## 79 Toy Story (1995)
## 1661 Dead Man Walking (1995)
## 2035 Seven (Se7en) (1995)
## 2274 Usual Suspects, The (1995)
## 2535 Mighty Aphrodite (1995)
## 2713 Postino, Il (1994)
## 2920 Mr. Holland's Opus (1995)
## 3455 Muppet Treasure Island (1996)
## 4648 Apollo 13 (1995)
## 4890 Batman Forever (1995)
## 5049 Crimson Tide (1995)
## 5614 To Wong Foo, Thanks for Everything! Julie Newmar (1995)
## 5667 Billy Madison (1995)
## 6337 I.Q. (1994)
## 6505 Star Wars (1977)
## 7611 Pulp Fiction (1994)
## 8497 Santa Clause, The (1994)
## 8861 What's Eating Gilbert Grape (1993)
## 8984 While You Were Sleeping (1995)
## 9139 Ace Ventura: Pet Detective (1994)
## 9414 Forrest Gump (1994)
## 9727 Four Weddings and a Funeral (1994)
## 11005 Hot Shots! Part Deux (1993)
## 11218 Jurassic Park (1993)
## 11859 Searching for Bobby Fischer (1993)
## 12005 Sleepless in Seattle (1993)
## 12938 Home Alone (1990)
## 13892 Silence of the Lambs, The (1991)
## 14236 Snow White and the Seven Dwarfs (1937)
## 14472 Fargo (1996)
## 15192 Moll Flanders (1996)
## 15503 Truth About Cats & Dogs, The (1996)
## 16020 Rock, The (1996)
## 16391 Twister (1996)
## 17151 Cable Guy, The (1996)
## 17389 Lone Star (1996)
## 17583 Phenomenon (1996)
## 17806 Spitfire Grill, The (1996)
## 18643 Wizard of Oz, The (1939)
## 19760 D3: The Mighty Ducks (1996)
## 19782 Love Bug, The (1969)
## 19834 Homeward Bound: The Incredible Journey (1993)
## 20050 Sound of Music, The (1965)
## 20585 Long Kiss Goodnight, The (1996)
## 21106 Willy Wonka and the Chocolate Factory (1971)
## 21891 Dirty Dancing (1987)
## 22258 Weekend at Bernie's (1989)
## 22423 Glengarry Glen Ross (1992)
## 22717 On Golden Pond (1981)
## 23181 Private Benjamin (1980)
## 23288 Monty Python and the Holy Grail (1974)
## 25617 12 Angry Men (1957)
## 29492 Dead Poets Society (1989)
## 29741 Graduate, The (1967)
## 30578 Groundhog Day (1993)
## 31048 Back to the Future (1985)
## 32037 Indiana Jones and the Last Crusade (1989)
## 32898 Field of Dreams (1989)
## 33125 When Harry Met Sally... (1989)
## 33847 Breaking the Waves (1996)
## 36480 Jerry Maguire (1996)
## 36839 Raising Arizona (1987)
## 37071 Sneakers (1992)
## 37229 Beavis and Butt-head Do America (1996)
## 37744 Smilla's Sense of Snow (1997)
## 38047 Chasing Amy (1997)
## 38175 Grosse Pointe Blank (1997)
## 38958 My Best Friend's Wedding (1997)
## 40780 Full Monty, The (1997)
## 41418 Good Will Hunting (1997)
## 42315 Leaving Las Vegas (1995)
## 42640 Bed of Roses (1996)
## 42733 Up Close and Personal (1996)
## 43391 Tin Cup (1996)
## 43800 English Patient, The (1996)
## 44355 Scream (1996)
## 45363 Donnie Brasco (1997)
## 48148 Midnight in the Garden of Good and Evil (1997)
## 48597 Apt Pupil (1998)
## 49862 Dante's Peak (1997)
## 51175 Kiss the Girls (1997)
## 51339 Game, The (1997)
## 51862 Boogie Nights (1997)
## 52476 Wag the Dog (1997)
## 53460 Ace Ventura: When Nature Calls (1995)
## 53760 Bio-Dome (1996)
## 53795 Black Sheep (1996)
## 53891 Bridges of Madison County, The (1995)
## 54363 Muriel's Wedding (1994)
## 54568 Flintstones, The (1994)
## 54602 Naked Gun 33 1/3: The Final Insult (1994)
## 54884 Addams Family Values (1993)
## 55024 Beverly Hills Cop III (1994)
## 55242 Mrs. Doubtfire (1993)
## 55424 Robin Hood: Men in Tights (1993)
## 55482 Serial Mom (1994)
## 55685 Brady Bunch Movie, The (1995)
## 55775 Ghost (1990)
## 56624 Spy Hard (1996)
## 57184 Very Brady Sequel, A (1996)
## 57376 Apple Dumpling Gang, The (1975)
## 57472 Parent Trap, The (1961)
## 58100 E.T. the Extra-Terrestrial (1982)
## 59379 Heathers (1989)
## 60641 Grease (1978)
## 61037 Beverly Hills Ninja (1997)
## 61117 Nixon (1995)
## 62025 Courage Under Fire (1996)
## 62966 First Wives Club, The (1996)
## 69375 Broken Arrow (1996)
## 69957 Walk in the Clouds, A (1995)
## 71128 Another Stakeout (1993)
## 71237 City Slickers II: The Legend of Curly's Gold (1994)
## 71375 Coneheads (1993)
## 71635 Piano, The (1993)
## 72680 Eraser (1996)
## 73979 Angels in the Outfield (1994)
## 75366 Quiet Man, The (1952)
## 76026 Stand by Me (1986)
## 76607 Fried Green Tomatoes (1991)
## 76837 Somewhere in Time (1980)
## 79152 City Hall (1996)
## 79290 Little Women (1994)
## 79722 Sex, Lies, and Videotape (1989)
## 79825 Strictly Ballroom (1992)
## 80144 To Die For (1995)
## 80228 Home for the Holidays (1995)
## 80493 Mallrats (1995)
## 80551 Nine Months (1995)
## 80604 Boys on the Side (1995)
## 80642 Circle of Friends (1995)
## 81539 Pretty Woman (1990)
## 81849 Ransom (1996)
## 82351 Benny & Joon (1993)
## 83597 Beautiful Girls (1996)
## 83719 Happy Gilmore (1996)
## 83848 If Lucy Fell (1996)
## 83932 Casper (1995)
## 84373 Dumb & Dumber (1994)
## 84443 French Kiss (1995)
## 85735 Mulholland Falls (1996)
## 86506 Shaggy Dog, The (1959)
## 86608 That Thing You Do! (1996)
## 86757 To Gillian on Her 37th Birthday (1996)
## 87097 Jingle All the Way (1996)
## 87402 Vegas Vacation (1997)
## 88625 Big Lebowski, The (1998)
## 88706 Great Expectations (1998)
## 89676 Preacher's Wife, The (1996)
## 89781 Thousand Acres, A (1997)
## 90278 How to Make an American Quilt (1995)
## 90341 Georgia (1995)
## 90372 Indian in the Cupboard, The (1995)
## 90456 Unstrung Heroes (1995)
## 91389 Beautician and the Beast, The (1997)
## 91731 Stupids, The (1996)
## 92237 Romy and Michele's High School Reunion (1997)
## 92482 Trees Lounge (1996)
## 92819 Grumpier Old Men (1995)
## 92980 Little Big League (1994)
## 92999 Homeward Bound II: Lost in San Francisco (1996)
## 93061 Cool Runnings (1993)
## 93309 Forget Paris (1995)
## 93854 Now and Then (1995)
## 94387 Reality Bites (1994)
## 94604 It's My Party (1995)
## 94724 Pete's Dragon (1977)
## 95729 Hackers (1995)
## 96970 When a Man Loves a Woman (1994)
## 97162 Ready to Wear (Pret-A-Porter) (1994)
## 97441 Gone Fishin' (1997)
## 97497 Walking and Talking (1996)
## 97741 Grass Harp, The (1995)
## 97986 Waiting to Exhale (1995)
## 98002 Pompatus of Love, The (1996)
## 98009 Palmetto (1998)
## 1662 Dead Man Walking (1995)
## 2036 Seven (Se7en) (1995)
## 2275 Usual Suspects, The (1995)
## 5050 Crimson Tide (1995)
## 6506 Star Wars (1977)
## 7612 Pulp Fiction (1994)
## 8616 Shawshank Redemption, The (1994)
## 9964 Lion King, The (1994)
## 12006 Sleepless in Seattle (1993)
## 13321 Terminator 2: Judgment Day (1991)
## 13893 Silence of the Lambs, The (1991)
## 14473 Fargo (1996)
## 15504 Truth About Cats & Dogs, The (1996)
## 17951 Godfather, The (1972)
## 18644 Wizard of Oz, The (1939)
## 18880 Gone with the Wind (1939)
## 19497 Mr. Smith Goes to Washington (1939)
## 20586 Long Kiss Goodnight, The (1996)
## 23918 Empire Strikes Back, The (1980)
## 25223 Aliens (1986)
## 26940 Alien (1979)
## 27578 Blues Brothers, The (1980)
## 27827 Godfather: Part II, The (1974)
## 28781 Right Stuff, The (1983)
## 29207 Terminator, The (1984)
## 32899 Field of Dreams (1989)
## 35912 Jaws (1975)
## 41617 Heat (1995)
## 57687 Mary Poppins (1964)
## 63879 Casablanca (1942)
## 64986 It's a Wonderful Life (1946)
## 66104 People vs. Larry Flynt, The (1996)
## 70590 Clear and Present Danger (1994)
## 74379 Victor/Victoria (1982)
## 76608 Fried Green Tomatoes (1991)
## 76753 High Noon (1952)
## 77197 Body Parts (1991)
## 87354 Fools Rush In (1997)
## 1076 Twelve Monkeys (1995)
## 2536 Mighty Aphrodite (1995)
## 4237 Birdcage, The (1996)
## 6507 Star Wars (1977)
## 12827 Welcome to the Dollhouse (1995)
## 14474 Fargo (1996)
## 15505 Truth About Cats & Dogs, The (1996)
## 16021 Rock, The (1996)
## 18378 Bound (1996)
## 20916 Swingers (1996)
## 21107 Willy Wonka and the Chocolate Factory (1971)
## 26249 Return of the Jedi (1983)
## 33978 Star Trek: First Contact (1996)
## 36375 Citizen Ruth (1996)
## 36481 Jerry Maguire (1996)
## 37230 Beavis and Butt-head Do America (1996)
## 38048 Chasing Amy (1997)
## 38475 Fifth Element, The (1997)
## 39168 Men in Black (1997)
## 39520 Contact (1997)
## 40281 In the Company of Men (1997)
## 41057 Gattaca (1997)
## 41419 Good Will Hunting (1997)
## 41618 Heat (1995)
## 43579 Secrets & Lies (1996)
## 43801 English Patient, The (1996)
## 44356 Scream (1996)
## 44795 Evita (1996)
## 45364 Donnie Brasco (1997)
## 45581 Liar Liar (1997)
## 46069 Ulee's Gold (1997)
## 46145 Face/Off (1997)
## 47498 Ice Storm, The (1997)
## 49274 Everyone Says I Love You (1996)
## 49465 Mother (1996)
## 50078 Lost Highway (1997)
## 50209 Crash (1996)
## 50518 Cop Land (1997)
## 50717 Conspiracy Theory (1997)
## 51863 Boogie Nights (1997)
## 52103 Alien: Resurrection (1997)
## 52272 Deconstructing Harry (1997)
## 52477 Wag the Dog (1997)
## 56287 Mission: Impossible (1996)
## 61118 Nixon (1995)
## 62733 Trainspotting (1996)
## 66105 People vs. Larry Flynt, The (1996)
## 81760 Last Supper, The (1995)
## 82826 Amistad (1997)
## 82963 Tomorrow Never Dies (1997)
## 87590 Career Girls (1997)
## 87627 She's So Lovely (1997)
## 87680 Money Talks (1997)
## 88873 City of Lost Children, The (1995)
## 89319 Flower of My Secret, The (Flor de mi secreto, La) (1995)
## 90226 Booty Call (1997)
## 90416 Blue in the Face (1995)
## 91857 I Shot Andy Warhol (1996)
## 92107 Private Parts (1997)
## 94844 Hate (Haine, La) (1995)
## 80 Toy Story (1995)
## 1077 Twelve Monkeys (1995)
## 2037 Seven (Se7en) (1995)
## 2276 Usual Suspects, The (1995)
## 3568 Braveheart (1995)
## 3846 Taxi Driver (1976)
## 5725 Clerks (1994)
## 6091 Ed Wood (1994)
## 6508 Star Wars (1977)
## 7416 Professional, The (1994)
## 7613 Pulp Fiction (1994)
## 8164 Three Colors: Red (1994)
## 8239 Three Colors: Blue (1993)
## 8617 Shawshank Redemption, The (1994)
## 9415 Forrest Gump (1994)
## 10722 Fugitive, The (1993)
## 11860 Searching for Bobby Fischer (1993)
## 12236 Blade Runner (1982)
## 12713 True Romance (1993)
## 13322 Terminator 2: Judgment Day (1991)
## 13894 Silence of the Lambs, The (1991)
## 14475 Fargo (1996)
## 16781 Independence Day (ID4) (1996)
## 17390 Lone Star (1996)
## 17952 Godfather, The (1972)
## 18379 Bound (1996)
## 19268 2001: A Space Odyssey (1968)
## 20276 Die Hard (1988)
## 20917 Swingers (1996)
## 21496 Fish Called Wanda, A (1988)
## 21730 Monty Python's Life of Brian (1979)
## 22000 Reservoir Dogs (1992)
## 22424 Glengarry Glen Ross (1992)
## 22517 Top Gun (1986)
## 23289 Monty Python and the Holy Grail (1974)
## 23919 Empire Strikes Back, The (1980)
## 24278 Princess Bride, The (1987)
## 24622 Raiders of the Lost Ark (1981)
## 25014 Brazil (1985)
## 25224 Aliens (1986)
## 25750 Clockwork Orange, A (1971)
## 26250 Return of the Jedi (1983)
## 26711 GoodFellas (1990)
## 26941 Alien (1979)
## 27579 Blues Brothers, The (1980)
## 27828 Godfather: Part II, The (1974)
## 29208 Terminator, The (1984)
## 29493 Dead Poets Society (1989)
## 29742 Graduate, The (1967)
## 29961 Nikita (La Femme Nikita) (1990)
## 30269 Shining, The (1980)
## 30839 Unforgiven (1992)
## 31049 Back to the Future (1985)
## 31834 This Is Spinal Tap (1984)
## 32038 Indiana Jones and the Last Crusade (1989)
## 33126 When Harry Met Sally... (1989)
## 33384 Bram Stoker's Dracula (1992)
## 33848 Breaking the Waves (1996)
## 34294 Sling Blade (1996)
## 36840 Raising Arizona (1987)
## 37630 Jungle2Jungle (1997)
## 37830 Devil's Own, The (1997)
## 39521 Contact (1997)
## 40120 Event Horizon (1997)
## 41058 Gattaca (1997)
## 41206 Starship Troopers (1997)
## 42316 Leaving Las Vegas (1995)
## 44357 Scream (1996)
## 44796 Evita (1996)
## 45250 Rosewood (1997)
## 45582 Liar Liar (1997)
## 46322 Hoodlum (1997)
## 46450 Air Force One (1997)
## 47092 L.A. Confidential (1997)
## 47700 Devil's Advocate, The (1997)
## 48991 Schindler's List (1993)
## 49466 Mother (1996)
## 49638 Murder at 1600 (1997)
## 50079 Lost Highway (1997)
## 50519 Cop Land (1997)
## 51340 Game, The (1997)
## 51557 U Turn (1997)
## 51637 Playing God (1997)
## 51712 Bean (1997)
## 51864 Boogie Nights (1997)
## 52104 Alien: Resurrection (1997)
## 53219 Spawn (1997)
## 55950 Batman (1989)
## 57941 William Shakespeare's Romeo and Juliet (1996)
## 59380 Heathers (1989)
## 61819 Short Cuts (1993)
## 61892 Tombstone (1993)
## 62734 Trainspotting (1996)
## 66106 People vs. Larry Flynt, The (1996)
## 68241 Gandhi (1982)
## 70816 Speed (1994)
## 74225 Sleepers (1996)
## 75111 Grifters, The (1990)
## 75571 Glory (1989)
## 75863 Chinatown (1974)
## 77625 Volcano (1997)
## 78587 Jackal, The (1997)
## 79002 Casino (1995)
## 82487 Saint, The (1997)
## 85135 Menace II Society (1993)
## 87779 That Darn Cat! (1997)
## 88874 City of Lost Children, The (1995)
## 90227 Booty Call (1997)
## 90666 Naked (1993)
## 90747 Some Folks Call It a Sling Blade (1993)
## 93196 Hamlet (1996)
## 94189 Bottle Rocket (1996)
## 95103 Tank Girl (1995)
## 96892 Friday (1995)
## 81 Toy Story (1995)
## 469 GoldenEye (1995)
## 1078 Twelve Monkeys (1995)
## 1423 Babe (1995)
## 1663 Dead Man Walking (1995)
## 2038 Seven (Se7en) (1995)
## 2277 Usual Suspects, The (1995)
## 2921 Mr. Holland's Opus (1995)
## 3159 French Twist (Gazon maudit) (1995)
## 3569 Braveheart (1995)
## 4031 Rumble in the Bronx (1995)
## 4238 Birdcage, The (1996)
## 4649 Apollo 13 (1995)
## 5051 Crimson Tide (1995)
## 5415 Net, The (1995)
## 5531 Strange Days (1995)
## 6509 Star Wars (1977)
## 7003 Legends of the Fall (1994)
## 7417 Professional, The (1994)
## 7614 Pulp Fiction (1994)
## 7996 Quiz Show (1994)
## 8376 Stargate (1994)
## 8618 Shawshank Redemption, The (1994)
## 8985 While You Were Sleeping (1995)
## 9416 Forrest Gump (1994)
## 9728 Four Weddings and a Funeral (1994)
## 9965 Lion King, The (1994)
## 10301 Maverick (1994)
## 10425 Carlito's Way (1993)
## 10500 Firm, The (1993)
## 10723 Fugitive, The (1993)
## 11219 Jurassic Park (1993)
## 11463 Much Ado About Nothing (1993)
## 11861 Searching for Bobby Fischer (1993)
## 12237 Blade Runner (1982)
## 12478 So I Married an Axe Murderer (1993)
## 12714 True Romance (1993)
## 13082 Aladdin (1992)
## 13323 Terminator 2: Judgment Day (1991)
## 13604 Dances with Wolves (1990)
## 13895 Silence of the Lambs, The (1991)
## 14237 Snow White and the Seven Dwarfs (1937)
## 14476 Fargo (1996)
## 15127 Diabolique (1996)
## 15506 Truth About Cats & Dogs, The (1996)
## 16022 Rock, The (1996)
## 16392 Twister (1996)
## 16782 Independence Day (ID4) (1996)
## 17260 Frighteners, The (1996)
## 17391 Lone Star (1996)
## 17584 Phenomenon (1996)
## 17953 Godfather, The (1972)
## 18526 Breakfast at Tiffany's (1961)
## 18881 Gone with the Wind (1939)
## 19054 Citizen Kane (1941)
## 19269 2001: A Space Odyssey (1968)
## 20051 Sound of Music, The (1965)
## 20277 Die Hard (1988)
## 20587 Long Kiss Goodnight, The (1996)
## 20758 Ghost and the Darkness, The (1996)
## 21497 Fish Called Wanda, A (1988)
## 21892 Dirty Dancing (1987)
## 22001 Reservoir Dogs (1992)
## 22142 Platoon (1986)
## 22518 Top Gun (1986)
## 22918 Abyss, The (1989)
## 23290 Monty Python and the Holy Grail (1974)
## 23920 Empire Strikes Back, The (1980)
## 24279 Princess Bride, The (1987)
## 24623 Raiders of the Lost Ark (1981)
## 25225 Aliens (1986)
## 25618 12 Angry Men (1957)
## 25751 Clockwork Orange, A (1971)
## 25975 Apocalypse Now (1979)
## 26251 Return of the Jedi (1983)
## 26942 Alien (1979)
## 27207 Army of Darkness (1993)
## 27829 Godfather: Part II, The (1974)
## 28782 Right Stuff, The (1983)
## 28958 Sting, The (1973)
## 29209 Terminator, The (1984)
## 29494 Dead Poets Society (1989)
## 29743 Graduate, The (1967)
## 30098 Bridge on the River Kwai, The (1957)
## 30270 Shining, The (1980)
## 30579 Groundhog Day (1993)
## 30840 Unforgiven (1992)
## 31050 Back to the Future (1985)
## 31835 This Is Spinal Tap (1984)
## 32039 Indiana Jones and the Last Crusade (1989)
## 32765 Pink Floyd - The Wall (1982)
## 32900 Field of Dreams (1989)
## 33127 When Harry Met Sally... (1989)
## 33508 Cape Fear (1991)
## 33674 Nightmare on Elm Street, A (1984)
## 33780 Mirror Has Two Faces, The (1996)
## 33979 Star Trek: First Contact (1996)
## 34295 Sling Blade (1996)
## 34585 Die Hard 2 (1990)
## 34933 Star Trek: The Wrath of Khan (1982)
## 35165 Star Trek III: The Search for Spock (1984)
## 35341 Star Trek IV: The Voyage Home (1986)
## 35660 Young Guns (1988)
## 35766 Under Siege (1992)
## 35913 Jaws (1975)
## 36189 Mars Attacks! (1996)
## 36482 Jerry Maguire (1996)
## 36841 Raising Arizona (1987)
## 37382 Last of the Mohicans, The (1992)
## 37745 Smilla's Sense of Snow (1997)
## 37831 Devil's Own, The (1997)
## 38049 Chasing Amy (1997)
## 38176 Grosse Pointe Blank (1997)
## 38333 Austin Powers: International Man of Mystery (1997)
## 38476 Fifth Element, The (1997)
## 38959 My Best Friend's Wedding (1997)
## 39169 Men in Black (1997)
## 39522 Contact (1997)
## 39962 George of the Jungle (1997)
## 40121 Event Horizon (1997)
## 40485 Hunt for Red October, The (1990)
## 40781 Full Monty, The (1997)
## 41207 Starship Troopers (1997)
## 41619 Heat (1995)
## 41837 Sabrina (1995)
## 42036 Sense and Sensibility (1995)
## 42317 Leaving Las Vegas (1995)
## 42734 Up Close and Personal (1996)
## 42829 River Wild, The (1994)
## 42988 Time to Kill, A (1996)
## 43207 Emma (1996)
## 43392 Tin Cup (1996)
## 43802 English Patient, The (1996)
## 44358 Scream (1996)
## 45365 Donnie Brasco (1997)
## 45583 Liar Liar (1997)
## 45991 Breakdown (1997)
## 46146 Face/Off (1997)
## 46451 Air Force One (1997)
## 47093 L.A. Confidential (1997)
## 47360 Fly Away Home (1996)
## 48276 Titanic (1997)
## 48749 As Good As It Gets (1997)
## 48859 In the Name of the Father (1993)
## 48992 Schindler's List (1993)
## 49275 Everyone Says I Love You (1996)
## 49639 Murder at 1600 (1997)
## 49863 Dante's Peak (1997)
## 50342 G.I. Jane (1997)
## 50718 Conspiracy Theory (1997)
## 51059 Edge, The (1997)
## 51176 Kiss the Girls (1997)
## 51341 Game, The (1997)
## 51794 Mad City (1997)
## 51865 Boogie Nights (1997)
## 52041 Man Who Knew Too Little, The (1997)
## 52740 Wedding Singer, The (1998)
## 53220 Spawn (1997)
## 53413 Sudden Death (1995)
## 53614 Clueless (1995)
## 54696 True Lies (1994)
## 56288 Mission: Impossible (1996)
## 56866 Kingpin (1996)
## 58101 E.T. the Extra-Terrestrial (1982)
## 58524 To Kill a Mockingbird (1962)
## 59042 Highlander (1986)
## 59381 Heathers (1989)
## 59623 Butch Cassidy and the Sundance Kid (1969)
## 60869 Bastard Out of Carolina (1996)
## 60903 Jackie Chan's First Strike (1996)
## 61119 Nixon (1995)
## 61220 Crossing Guard, The (1995)
## 61575 Jungle Book, The (1994)
## 61820 Short Cuts (1993)
## 62026 Courage Under Fire (1996)
## 62237 Dragonheart (1996)
## 62967 First Wives Club, The (1996)
## 63206 Philadelphia Story, The (1940)
## 63503 North by Northwest (1959)
## 63880 Casablanca (1942)
## 64107 Maltese Falcon, The (1941)
## 64661 Adventures of Robin Hood, The (1938)
## 64903 Around the World in 80 Days (1956)
## 65885 Rebel Without a Cause (1955)
## 66107 People vs. Larry Flynt, The (1996)
## 66417 Magnificent Seven, The (1954)
## 66547 Lawrence of Arabia (1962)
## 67538 Great Escape, The (1963)
## 68721 Shine (1996)
## 68881 Addicted to Love (1997)
## 69086 Money Train (1995)
## 69376 Broken Arrow (1996)
## 69646 Rob Roy (1995)
## 70591 Clear and Present Danger (1994)
## 70817 Speed (1994)
## 71417 Demolition Man (1993)
## 72014 Beauty and the Beast (1991)
## 72273 Primal Fear (1996)
## 72538 Hunchback of Notre Dame, The (1996)
## 72681 Eraser (1996)
## 73314 Rebecca (1940)
## 73828 Extreme Measures (1996)
## 74049 Sword in the Stone, The (1963)
## 74226 Sleepers (1996)
## 75572 Glory (1989)
## 75864 Chinatown (1974)
## 76027 Stand by Me (1986)
## 76400 Pump Up the Volume (1990)
## 77626 Volcano (1997)
## 77817 Conan the Barbarian (1981)
## 77949 I Know What You Did Last Summer (1997)
## 78114 In the Line of Fire (1993)
## 78284 Executive Decision (1996)
## 79153 City Hall (1996)
## 80413 First Knight (1995)
## 80643 Circle of Friends (1995)
## 80863 Nell (1994)
## 80963 Corrina, Corrina (1994)
## 81233 Philadelphia (1993)
## 81540 Pretty Woman (1990)
## 81850 Ransom (1996)
## 82128 Michael Collins (1996)
## 82230 Real Genius (1985)
## 82488 Saint, The (1997)
## 82964 Tomorrow Never Dies (1997)
## 83347 Father of the Bride Part II (1995)
## 83598 Beautiful Girls (1996)
## 83720 Happy Gilmore (1996)
## 83849 If Lucy Fell (1996)
## 84444 French Kiss (1995)
## 84531 Milk Money (1994)
## 84687 Tommy Boy (1995)
## 84768 Bullets Over Broadway (1994)
## 85220 Rising Sun (1993)
## 85561 Eddie (1996)
## 85736 Mulholland Falls (1996)
## 86609 That Thing You Do! (1996)
## 86758 To Gillian on Her 37th Birthday (1996)
## 86865 Days of Thunder (1990)
## 87146 My Fellow Americans (1996)
## 87247 Michael (1996)
## 87510 Picture Perfect (1997)
## 87681 Money Talks (1997)
## 87726 Excess Baggage (1997)
## 88360 Scream 2 (1997)
## 89239 Down Periscope (1996)
## 91159 Heaven's Prisoners (1996)
## 91292 Shadow Conspiracy (1997)
## 91569 Hercules (1997)
## 91752 Geronimo: An American Legend (1993)
## 92007 2 Days in the Valley (1996)
## 92108 Private Parts (1997)
## 92362 Con Air (1997)
## 92820 Grumpier Old Men (1995)
## 93000 Homeward Bound II: Lost in San Francisco (1996)
## 93062 Cool Runnings (1993)
## 93171 Switchback (1997)
## 93535 Multiplicity (1996)
## 93656 She's the One (1996)
## 93791 Associate, The (1996)
## 94934 Six Degrees of Separation (1993)
## 95309 Some Kind of Wonderful (1987)
## 95999 Relic, The (1997)
## 96171 Fresh (1994)
## 96543 Family Thing, A (1996)
## 97465 Trial and Error (1997)
## 97752 Out to Sea (1997)
## 97933 'Til There Was You (1997)
## 98023 Surviving the Game (1994)
## 98034 Inventing the Abbotts (1997)
## 39523 Contact (1997)
## 40782 Full Monty, The (1997)
## 41208 Starship Troopers (1997)
## 41420 Good Will Hunting (1997)
## 44359 Scream (1996)
## 46452 Air Force One (1997)
## 46853 In & Out (1997)
## 47094 L.A. Confidential (1997)
## 47499 Ice Storm, The (1997)
## 47701 Devil's Advocate, The (1997)
## 47941 Rainmaker, The (1997)
## 48277 Titanic (1997)
## 48598 Apt Pupil (1998)
## 48750 As Good As It Gets (1997)
## 49467 Mother (1996)
## 51060 Edge, The (1997)
## 51342 Game, The (1997)
## 51795 Mad City (1997)
## 51866 Boogie Nights (1997)
## 52273 Deconstructing Harry (1997)
## 52351 Jackie Brown (1997)
## 52478 Wag the Dog (1997)
## 52712 Deep Rising (1998)
## 52741 Wedding Singer, The (1998)
## 53380 Blues Brothers 2000 (1998)
## 68978 Anastasia (1997)
## 77950 I Know What You Did Last Summer (1997)
## 78691 Seven Years in Tibet (1997)
## 78819 Dark City (1998)
## 82827 Amistad (1997)
## 82965 Tomorrow Never Dies (1997)
## 88315 For Richer or Poorer (1997)
## 88361 Scream 2 (1997)
## 88626 Big Lebowski, The (1998)
## 88707 Great Expectations (1998)
## 88805 Wild Things (1998)
## 88830 Lost in Space (1998)
## 88846 Mercury Rising (1998)
## 95453 Truman Show, The (1998)
## 97225 Chairman of the Board (1998)
## 98057 Horse Whisperer, The (1998)
## 2278 Usual Suspects, The (1995)
## 4650 Apollo 13 (1995)
## 5615 To Wong Foo, Thanks for Everything! Julie Newmar (1995)
## 7176 Natural Born Killers (1994)
## 7615 Pulp Fiction (1994)
## 9140 Ace Ventura: Pet Detective (1994)
## 9246 Crow, The (1994)
## 9417 Forrest Gump (1994)
## 10724 Fugitive, The (1993)
## 11464 Much Ado About Nothing (1993)
## 13896 Silence of the Lambs, The (1991)
## 15507 Truth About Cats & Dogs, The (1996)
## 16783 Independence Day (ID4) (1996)
## 21498 Fish Called Wanda, A (1988)
## 22002 Reservoir Dogs (1992)
## 24280 Princess Bride, The (1987)
## 26252 Return of the Jedi (1983)
## 27580 Blues Brothers, The (1980)
## 28411 Amadeus (1984)
## 29495 Dead Poets Society (1989)
## 30463 Evil Dead II (1987)
## 30580 Groundhog Day (1993)
## 31051 Back to the Future (1985)
## 32639 Room with a View, A (1986)
## 33128 When Harry Met Sally... (1989)
## 33980 Star Trek: First Contact (1996)
## 36190 Mars Attacks! (1996)
## 39524 Contact (1997)
## 48993 Schindler's List (1993)
## 52851 Client, The (1994)
## 53615 Clueless (1995)
## 53957 Jeffrey (1995)
## 54251 Star Trek: Generations (1994)
## 55951 Batman (1989)
## 57942 William Shakespeare's Romeo and Juliet (1996)
## 58102 E.T. the Extra-Terrestrial (1982)
## 59043 Highlander (1986)
## 59382 Heathers (1989)
## 61338 Like Water For Chocolate (Como agua para chocolate) (1992)
## 61821 Short Cuts (1993)
## 74489 Crying Game, The (1992)
## 76028 Stand by Me (1986)
## 76401 Pump Up the Volume (1990)
## 76609 Fried Green Tomatoes (1991)
## 78115 In the Line of Fire (1993)
## 79093 Persuasion (1995)
## 80229 Home for the Holidays (1995)
## 80864 Nell (1994)
## 81018 Dave (1993)
## 81175 Go Fish (1994)
## 81234 Philadelphia (1993)
## 81440 Sirens (1994)
## 81541 Pretty Woman (1990)
## 82352 Benny & Joon (1993)
## 83599 Beautiful Girls (1996)
## 84266 Don Juan DeMarco (1995)
## 84572 Only You (1994)
## 84688 Tommy Boy (1995)
## 89844 Murder in the First (1995)
## 90690 Orlando (1993)
## 93470 Malice (1993)
## 95310 Some Kind of Wonderful (1987)
## 95507 Safe (1995)
## 82 Toy Story (1995)
## 599 Four Rooms (1995)
## 977 Shanghai Triad (Yao a yao yao dao waipo qiao) (1995)
## 1079 Twelve Monkeys (1995)
## 1664 Dead Man Walking (1995)
## 1919 Richard III (1995)
## 2537 Mighty Aphrodite (1995)
## 2714 Postino, Il (1994)
## 2922 Mr. Holland's Opus (1995)
## 3160 French Twist (Gazon maudit) (1995)
## 3293 White Balloon, The (1995)
## 3310 Antonia's Line (1995)
## 3377 Angels and Insects (1995)
## 3456 Muppet Treasure Island (1996)
## 4032 Rumble in the Bronx (1995)
## 4239 Birdcage, The (1996)
## 12828 Welcome to the Dollhouse (1995)
## 14477 Fargo (1996)
## 15025 All Dogs Go to Heaven 2 (1996)
## 15036 Theodore Rex (1995)
## 15054 Sgt. Bilko (1996)
## 15128 Diabolique (1996)
## 15193 Moll Flanders (1996)
## 15234 Kids in the Hall: Brain Candy (1996)
## 15319 Mystery Science Theater 3000: The Movie (1996)
## 15508 Truth About Cats & Dogs, The (1996)
## 15728 Flipper (1996)
## 15863 Cold Comfort Farm (1995)
## 16023 Rock, The (1996)
## 16393 Twister (1996)
## 16650 Striptease (1996)
## 16784 Independence Day (ID4) (1996)
## 17152 Cable Guy, The (1996)
## 17261 Frighteners, The (1996)
## 17392 Lone Star (1996)
## 17585 Phenomenon (1996)
## 17807 Spitfire Grill, The (1996)
## 18380 Bound (1996)
## 18491 Kansas City (1996)
## 19620 Big Night (1996)
## 20546 Unhook the Stars (1996)
## 20588 Long Kiss Goodnight, The (1996)
## 20759 Ghost and the Darkness, The (1996)
## 20873 Jude (1996)
## 20918 Swingers (1996)
## 21108 Willy Wonka and the Chocolate Factory (1971)
## 33781 Mirror Has Two Faces, The (1996)
## 33849 Breaking the Waves (1996)
## 33981 Star Trek: First Contact (1996)
## 34416 Ridicule (1996)
## 34479 101 Dalmatians (1996)
## 36191 Mars Attacks! (1996)
## 36376 Citizen Ruth (1996)
## 36483 Jerry Maguire (1996)
## 37231 Beavis and Butt-head Do America (1996)
## 37512 Kolya (1996)
## 37631 Jungle2Jungle (1997)
## 37832 Devil's Own, The (1997)
## 38647 Shall We Dance? (1996)
## 39106 When the Cats Away (Chacun cherche son chat) (1996)
## 39525 Contact (1997)
## 39963 George of the Jungle (1997)
## 40122 Event Horizon (1997)
## 40230 Air Bud (1997)
## 40282 In the Company of Men (1997)
## 40332 Steel (1997)
## 40364 Mimic (1997)
## 40684 Kull the Conqueror (1997)
## 40783 Full Monty, The (1997)
## 41059 Gattaca (1997)
## 41620 Heat (1995)
## 41838 Sabrina (1995)
## 42037 Sense and Sensibility (1995)
## 42318 Leaving Las Vegas (1995)
## 42571 Restoration (1995)
## 42641 Bed of Roses (1996)
## 42694 Once Upon a Time... When We Were Colored (1995)
## 42735 Up Close and Personal (1996)
## 42830 River Wild, The (1994)
## 42989 Time to Kill, A (1996)
## 43208 Emma (1996)
## 43393 Tin Cup (1996)
## 43580 Secrets & Lies (1996)
## 43803 English Patient, The (1996)
## 44206 Marvin's Room (1996)
## 44360 Scream (1996)
## 44797 Evita (1996)
## 45032 Fierce Creatures (1997)
## 45124 Absolute Power (1997)
## 45251 Rosewood (1997)
## 45584 Liar Liar (1997)
## 46323 Hoodlum (1997)
## 46453 Air Force One (1997)
## 46854 In & Out (1997)
## 47095 L.A. Confidential (1997)
## 47361 Fly Away Home (1996)
## 47500 Ice Storm, The (1997)
## 47591 Mrs. Brown (Her Majesty, Mrs. Brown) (1997)
## 47702 Devil's Advocate, The (1997)
## 47866 FairyTale: A True Story (1997)
## 49276 Everyone Says I Love You (1996)
## 49468 Mother (1996)
## 49640 Murder at 1600 (1997)
## 49864 Dante's Peak (1997)
## 50080 Lost Highway (1997)
## 50210 Crash (1996)
## 50343 G.I. Jane (1997)
## 50520 Cop Land (1997)
## 50719 Conspiracy Theory (1997)
## 50966 Desperate Measures (1998)
## 51004 187 (1997)
## 51061 Edge, The (1997)
## 51177 Kiss the Girls (1997)
## 51343 Game, The (1997)
## 51558 U Turn (1997)
## 51614 How to Be a Player (1997)
## 51638 Playing God (1997)
## 51679 House of Yes, The (1997)
## 53221 Spawn (1997)
## 53340 Assignment, The (1997)
## 53359 Wonderland (1997)
## 53414 Sudden Death (1995)
## 53761 Bio-Dome (1996)
## 53796 Black Sheep (1996)
## 53849 Mary Reilly (1996)
## 56289 Mission: Impossible (1996)
## 56576 Thinner (1996)
## 56625 Spy Hard (1996)
## 56678 Close Shave, A (1995)
## 56786 Jack (1996)
## 56867 Kingpin (1996)
## 57039 Nutty Professor, The (1996)
## 57185 Very Brady Sequel, A (1996)
## 57271 Tales from the Crypt Presents: Bordello of Blood (1996)
## 58361 Children of the Corn: The Gathering (1996)
## 60904 Jackie Chan's First Strike (1996)
## 61038 Beverly Hills Ninja (1997)
## 61078 Free Willy 3: The Rescue (1997)
## 61120 Nixon (1995)
## 61194 Cry, the Beloved Country (1995)
## 61221 Crossing Guard, The (1995)
## 62027 Courage Under Fire (1996)
## 62238 Dragonheart (1996)
## 62390 James and the Giant Peach (1996)
## 62735 Trainspotting (1996)
## 62968 First Wives Club, The (1996)
## 63113 Matilda (1996)
## 66108 People vs. Larry Flynt, The (1996)
## 69257 Things to Do in Denver when You're Dead (1995)
## 69377 Broken Arrow (1996)
## 69591 Young Poisoner's Handbook, The (1995)
## 72274 Primal Fear (1996)
## 72435 Stalingrad (1993)
## 72464 Fan, The (1996)
## 72539 Hunchback of Notre Dame, The (1996)
## 72682 Eraser (1996)
## 72848 Big Squeeze, The (1996)
## 73829 Extreme Measures (1996)
## 73888 Chamber, The (1996)
## 74227 Sleepers (1996)
## 77516 Crucible, The (1996)
## 77627 Volcano (1997)
## 77913 Wishmaster (1997)
## 77951 I Know What You Did Last Summer (1997)
## 78048 Rocket Man (1997)
## 78285 Executive Decision (1996)
## 78472 McHale's Navy (1997)
## 78539 Leave It to Beaver (1997)
## 78692 Seven Years in Tibet (1997)
## 79154 City Hall (1996)
## 80056 Othello (1995)
## 80293 Juror, The (1996)
## 80361 In the Bleak Midwinter (1995)
## 81693 Jane Eyre (1996)
## 81761 Last Supper, The (1995)
## 81851 Ransom (1996)
## 82077 Crow: City of Angels, The (1996)
## 82129 Michael Collins (1996)
## 82489 Saint, The (1997)
## 82760 MatchMaker, The (1997)
## 83348 Father of the Bride Part II (1995)
## 83465 Lawnmower Man 2: Beyond Cyberspace (1996)
## 83500 Screamers (1995)
## 83600 Beautiful Girls (1996)
## 83721 Happy Gilmore (1996)
## 83850 If Lucy Fell (1996)
## 83906 Man of the Year (1995)
## 83917 Addiction, The (1995)
## 85354 Celluloid Closet, The (1995)
## 85414 One Fine Day (1996)
## 85533 Girl 6 (1996)
## 85562 Eddie (1996)
## 85618 Space Jam (1996)
## 85737 Mulholland Falls (1996)
## 85804 Great White Hype, The (1996)
## 85861 Arrival, The (1996)
## 85944 Phantom, The (1996)
## 86022 Daylight (1996)
## 86071 Alaska (1996)
## 86088 Fled (1996)
## 86130 Escape from L.A. (1996)
## 86210 Bogus (1996)
## 86235 Bulletproof (1996)
## 86283 Halloween: The Curse of Michael Myers (1995)
## 86383 Last Man Standing (1996)
## 86436 Glimmer Man, The (1996)
## 86540 Freeway (1996)
## 86610 That Thing You Do! (1996)
## 86759 To Gillian on Her 37th Birthday (1996)
## 86806 Looking for Richard (1996)
## 87147 My Fellow Americans (1996)
## 87248 Michael (1996)
## 87375 Touch (1997)
## 87403 Vegas Vacation (1997)
## 87467 Love Jones (1997)
## 87511 Picture Perfect (1997)
## 87591 Career Girls (1997)
## 87628 She's So Lovely (1997)
## 87682 Money Talks (1997)
## 87727 Excess Baggage (1997)
## 87780 That Darn Cat! (1997)
## 87827 Peacemaker, The (1997)
## 87955 Soul Food (1997)
## 88003 Washington Square (1997)
## 88036 Telling Lies in America (1997)
## 88049 Year of the Horse (1997)
## 88057 Phantoms (1998)
## 88074 Life Less Ordinary, A (1997)
## 88128 Eve's Bayou (1997)
## 88875 City of Lost Children, The (1995)
## 88956 Two Bits (1995)
## 89012 Dead Man (1995)
## 89111 White Squall (1996)
## 89189 Unforgettable (1996)
## 89240 Down Periscope (1996)
## 89320 Flower of My Secret, The (Flor de mi secreto, La) (1995)
## 89336 Craft, The (1996)
## 89437 Harriet the Spy (1996)
## 89487 Chain Reaction (1996)
## 89563 Island of Dr. Moreau, The (1996)
## 89613 First Kid (1996)
## 89648 Funeral, The (1996)
## 89677 Preacher's Wife, The (1996)
## 89782 Thousand Acres, A (1997)
## 89813 Smile Like Yours, A (1997)
## 90228 Booty Call (1997)
## 90342 Georgia (1995)
## 90417 Blue in the Face (1995)
## 91024 Eye for an Eye (1996)
## 91058 Fear (1996)
## 91097 Solo (1996)
## 91113 Substitute, The (1996)
## 91160 Heaven's Prisoners (1996)
## 91188 Trigger Effect, The (1996)
## 91220 Mother Night (1996)
## 91240 Dangerous Ground (1997)
## 91250 Maximum Risk (1996)
## 91269 Rich Man's Wife, The (1996)
## 91293 Shadow Conspiracy (1997)
## 91329 Blood & Wine (1997)
## 91353 Turbulence (1997)
## 91390 Beautician and the Beast, The (1997)
## 91462 Cats Don't Dance (1997)
## 91500 Anna Karenina (1997)
## 91528 Keys to Tulsa (1997)
## 91635 Kiss Me, Guido (1997)
## 91732 Stupids, The (1996)
## 91745 Pest, The (1997)
## 91858 I Shot Andy Warhol (1996)
## 91898 Stealing Beauty (1996)
## 91959 Basquiat (1996)
## 92008 2 Days in the Valley (1996)
## 92326 Shiloh (1997)
## 92483 Trees Lounge (1996)
## 92665 Fast, Cheap & Out of Control (1997)
## 92743 Fire Down Below (1997)
## 92783 Lay of the Land, The (1997)
## 92821 Grumpier Old Men (1995)
## 93001 Homeward Bound II: Lost in San Francisco (1996)
## 93030 Quest, The (1996)
## 93172 Switchback (1997)
## 93281 Two if by Sea (1996)
## 93536 Multiplicity (1996)
## 93657 She's the One (1996)
## 93723 House Arrest (1996)
## 93792 Associate, The (1996)
## 93833 Dracula: Dead and Loving It (1995)
## 93878 Mr. Wrong (1996)
## 93923 Pallbearer, The (1996)
## 93962 Don't Be a Menace to South Central While Drinking Your Juice in the Hood (1996)
## 93996 Adventures of Pinocchio, The (1996)
## 94030 Evening Star, The (1996)
## 94190 Bottle Rocket (1996)
## 94229 Star Maker, The (Uomo delle stelle, L') (1995)
## 94506 Joe's Apartment (1996)
## 94548 Curdled (1996)
## 94572 Anne Frank Remembered (1995)
## 94591 Carried Away (1996)
## 94605 It's My Party (1995)
## 94624 Bloodsport 2 (1995)
## 94780 Live Nude Girls (1995)
## 94799 Thin Line Between Love and Hate, A (1996)
## 94816 High School High (1996)
## 94845 Hate (Haine, La) (1995)
## 94999 Two Much (1996)
## 95186 Faithful (1996)
## 95199 Twelfth Night (1996)
## 95240 Surviving Picasso (1996)
## 95363 I'm Not Rappaport (1996)
## 95465 Heidi Fleiss: Hollywood Madam (1995)
## 95479 Chungking Express (1994)
## 95524 Feeling Minnesota (1996)
## 95587 Get on the Bus (1996)
## 95697 Beautiful Thing (1996)
## 95917 Last Dance (1996)
## 95927 Original Gangstas (1996)
## 95934 In Love and War (1996)
## 96063 Palookaville (1996)
## 96075 Phat Beach (1996)
## 96080 Portrait of a Lady, The (1996)
## 96105 Zeus and Roxanne (1997)
## 96112 Big Bully (1996)
## 96207 Wild Reeds (1994)
## 96236 Bliss (1997)
## 96243 Caught (1996)
## 96396 Switchblade Sisters (1975)
## 96544 Family Thing, A (1996)
## 96583 Purple Noon (1960)
## 96591 Cemetery Man (Dellamorte Dellamore) (1994)
## 96622 Maybe, Maybe Not (Bewegte Mann, Der) (1994)
## 96818 Barb Wire (1996)
## 97299 Old Lady Who Walked in the Sea, The (Vieille qui marchait dans la mer, La) (1991)
## 97349 Gridlock'd (1997)
## 97424 Contempt (Mepris, Le) (1963)
## 97451 Broken English (1996)
## 97485 Pie in the Sky (1995)
## 97528 Star Maps (1997)
## 97625 Talking About Sex (1994)
## 97660 Sunset Park (1996)
## 97668 Set It Off (1996)
## 97713 Gang Related (1997)
## 97728 Manny & Lo (1996)
## 97742 Grass Harp, The (1995)
## 97769 Before and After (1996)
## 97827 Ed (1996)
## 97833 Denise Calls Up (1995)
## 97840 Jack and Sarah (1995)
## 97849 Celtic Pride (1996)
## 97877 Kicked in the Head (1997)
## 97884 Indian Summer (1996)
## 97947 Late Bloomers (1996)
## 98003 Pompatus of Love, The (1996)
## 98064 Journey of August King, The (1995)
## 98068 Catwalk (1995)
## 98071 Neon Bible, The (1995)
## 98075 Homage (1995)
## 98076 Open Season (1996)
## 98078 Metisse (Cafe au Lait) (1993)
## 98084 Wooden Man's Bride, The (Wu Kui) (1994)
## 98087 Loaded (1994)
## 98092 August (1996)
## 98093 Boys (1996)
## 98099 Captives (1994)
## 98102 Of Love and Shadows (1994)
## 98108 Low Life, The (1994)
## 98109 An Unforgettable Summer (1994)
## 98113 Last Klezmer: Leopold Kozlowski, His Life and Music, The (1995)
## 98117 My Life and Times With Antonin Artaud (En compagnie d'Antonin Artaud) (1993)
## 98119 Midnight Dancers (Sibak) (1994)
## 98124 Somebody to Love (1994)
## 98126 American Buffalo (1996)
## 98137 Kazaam (1996)
## 98147 Larger Than Life (1996)
## 98156 Two Deaths (1995)
## 98160 Stefano Quantestorie (1993)
## 98161 Crude Oasis, The (1995)
## 98162 Hedd Wyn (1992)
## 98163 Convent, The (Convento, O) (1995)
## 98165 Lotto Land (1995)
## 98166 Story of Xinghua, The (1993)
## 98171 Day the Sun Turned Cold, The (Tianguo niezi) (1994)
## 98173 Dingo (1992)
## 98178 Ballad of Narayama, The (Narayama Bushiko) (1958)
## 98182 Every Other Weekend (1990)
## 98183 Mille bolle blu (1993)
## 98184 Crows and Sparrows (1949)
## 98186 Lover's Knot (1996)
## 98189 Shadow of Angels (Schatten der Engel) (1976)
## 98190 1-900 (1994)
## 98195 Venice/Venice (1992)
## 98197 Infinity (1996)
## 98203 Ed's Next Move (1996)
## 98206 For the Moment (1994)
## 98209 The Deadly Cure (1996)
## 98211 Boys in Venice (1996)
## 98213 Sexual Life of the Belgians, The (1994)
## 98215 Search for One-eye Jimmy, The (1996)
## 98218 American Strays (1996)
## 98220 Leopard Son, The (1996)
## 98221 Bird of Prey (1996)
## 98222 Johnny 100 Pesos (1993)
## 98224 JLG/JLG - autoportrait de decembre (1994)
## 98225 Faust (1994)
## 98230 Mina Tannenbaum (1994)
## 98236 Forbidden Christ, The (Cristo proibito, Il) (1950)
## 98240 I Can't Sleep (J'ai pas sommeil) (1994)
## 98243 Machine, The (1994)
## 98245 Stranger, The (1994)
## 98248 Good Morning (1971)
## 98249 Falling in Love Again (1980)
## 98251 Cement Garden, The (1993)
## 98261 Meet Wally Sparks (1997)
## 98268 Hotel de Love (1996)
## 98272 Rhyme & Reason (1997)
## 98277 Love and Other Catastrophes (1996)
## 98284 Hollow Reed (1996)
## 98290 Losing Chase (1996)
## 98298 Bonheur, Le (1965)
## 98302 Second Jungle Book: Mowgli & Baloo, The (1997)
## 98308 Squeeze (1996)
## 98311 Roseanna's Grave (For Roseanna) (1997)
## 98316 Tetsuo II: Body Hammer (1992)
## 98322 Fall (1997)
## 98325 Gabbeh (1996)
## 98331 Mondo (1996)
## 98334 Innocent Sleep, The (1995)
## 98336 For Ever Mozart (1996)
## 98339 Locusts, The (1997)
## 98344 Stag (1997)
## 98353 Swept from the Sea (1997)
## 98360 Hurricane Streets (1998)
## 83 Toy Story (1995)
## 2923 Mr. Holland's Opus (1995)
## 6227 Hoop Dreams (1994)
## 6510 Star Wars (1977)
## 9418 Forrest Gump (1994)
## 14478 Fargo (1996)
## 15509 Truth About Cats & Dogs, The (1996)
## 16785 Independence Day (ID4) (1996)
## 17262 Frighteners, The (1996)
## 17808 Spitfire Grill, The (1996)
## 20919 Swingers (1996)
## 23921 Empire Strikes Back, The (1980)
## 25619 12 Angry Men (1957)
## 26253 Return of the Jedi (1983)
## 28412 Amadeus (1984)
## 30841 Unforgiven (1992)
## 33982 Star Trek: First Contact (1996)
## 36484 Jerry Maguire (1996)
## 39170 Men in Black (1997)
## 43209 Emma (1996)
## 45366 Donnie Brasco (1997)
## 58103 E.T. the Extra-Terrestrial (1982)
## 62028 Courage Under Fire (1996)
## 63324 Vertigo (1958)
## 72540 Hunchback of Notre Dame, The (1996)
## 83722 Happy Gilmore (1996)
## 86611 That Thing You Do! (1996)
## 87148 My Fellow Americans (1996)
## 6511 Star Wars (1977)
## 7304 Outbreak (1995)
## 7418 Professional, The (1994)
## 8377 Stargate (1994)
## 10501 Firm, The (1993)
## 12007 Sleepless in Seattle (1993)
## 12939 Home Alone (1990)
## 13324 Terminator 2: Judgment Day (1991)
## 16786 Independence Day (ID4) (1996)
## 20278 Die Hard (1988)
## 22321 Basic Instinct (1992)
## 25226 Aliens (1986)
## 25482 Good, The Bad and The Ugly, The (1966)
## 26254 Return of the Jedi (1983)
## 30581 Groundhog Day (1993)
## 30842 Unforgiven (1992)
## 32040 Indiana Jones and the Last Crusade (1989)
## 32541 Unbearable Lightness of Being, The (1988)
## 33129 When Harry Met Sally... (1989)
## 33983 Star Trek: First Contact (1996)
## 34480 101 Dalmatians (1996)
## 34586 Die Hard 2 (1990)
## 34759 Star Trek VI: The Undiscovered Country (1991)
## 34934 Star Trek: The Wrath of Khan (1982)
## 35166 Star Trek III: The Search for Spock (1984)
## 35342 Star Trek IV: The Voyage Home (1986)
## 37383 Last of the Mohicans, The (1992)
## 38477 Fifth Element, The (1997)
## 39171 Men in Black (1997)
## 39526 Contact (1997)
## 40486 Hunt for Red October, The (1990)
## 41060 Gattaca (1997)
## 41621 Heat (1995)
## 41839 Sabrina (1995)
## 45585 Liar Liar (1997)
## 51062 Edge, The (1997)
## 52852 Client, The (1994)
## 54031 Showgirls (1995)
## 54252 Star Trek: Generations (1994)
## 56290 Mission: Impossible (1996)
## 59044 Highlander (1986)
## 60455 Star Trek: The Motion Picture (1979)
## 60565 Star Trek V: The Final Frontier (1989)
## 63881 Casablanca (1942)
## 64241 My Fair Lady (1964)
## 70444 Quick and the Dead, The (1995)
## 75430 Once Upon a Time in America (1984)
## 80414 First Knight (1995)
## 81542 Pretty Woman (1990)
## 94688 Sliver (1993)
## 96025 Stalker (1979)
## 96819 Barb Wire (1996)
## 96856 Assassins (1995)
## 84 Toy Story (1995)
## 1080 Twelve Monkeys (1995)
## 1665 Dead Man Walking (1995)
## 2039 Seven (Se7en) (1995)
## 2538 Mighty Aphrodite (1995)
## 2715 Postino, Il (1994)
## 2924 Mr. Holland's Opus (1995)
## 3378 Angels and Insects (1995)
## 3570 Braveheart (1995)
## 4240 Birdcage, The (1996)
## 4891 Batman Forever (1995)
## 5360 Doom Generation, The (1995)
## 5377 Mad Love (1995)
## 5616 To Wong Foo, Thanks for Everything! Julie Newmar (1995)
## 5896 Dolores Claiborne (1994)
## 6092 Ed Wood (1994)
## 6512 Star Wars (1977)
## 7004 Legends of the Fall (1994)
## 7083 Madness of King George, The (1994)
## 7616 Pulp Fiction (1994)
## 7941 Priest (1994)
## 7997 Quiz Show (1994)
## 8619 Shawshank Redemption, The (1994)
## 8862 What's Eating Gilbert Grape (1993)
## 8986 While You Were Sleeping (1995)
## 9141 Ace Ventura: Pet Detective (1994)
## 9419 Forrest Gump (1994)
## 9729 Four Weddings and a Funeral (1994)
## 9966 Lion King, The (1994)
## 10170 Mask, The (1994)
## 10502 Firm, The (1993)
## 10725 Fugitive, The (1993)
## 11220 Jurassic Park (1993)
## 11710 Remains of the Day, The (1993)
## 12008 Sleepless in Seattle (1993)
## 12238 Blade Runner (1982)
## 12581 Nightmare Before Christmas, The (1993)
## 12715 True Romance (1993)
## 12829 Welcome to the Dollhouse (1995)
## 13083 Aladdin (1992)
## 13605 Dances with Wolves (1990)
## 13897 Silence of the Lambs, The (1991)
## 14479 Fargo (1996)
## 15864 Cold Comfort Farm (1995)
## 16024 Rock, The (1996)
## 16394 Twister (1996)
## 16787 Independence Day (ID4) (1996)
## 17393 Lone Star (1996)
## 17809 Spitfire Grill, The (1996)
## 17954 Godfather, The (1972)
## 18645 Wizard of Oz, The (1939)
## 19055 Citizen Kane (1941)
## 19621 Big Night (1996)
## 20052 Sound of Music, The (1965)
## 21499 Fish Called Wanda, A (1988)
## 21893 Dirty Dancing (1987)
## 22425 Glengarry Glen Ross (1992)
## 22519 Top Gun (1986)
## 22919 Abyss, The (1989)
## 23057 Jean de Florette (1986)
## 23121 Manon of the Spring (Manon des sources) (1986)
## 23692 Cinema Paradiso (1988)
## 23922 Empire Strikes Back, The (1980)
## 24624 Raiders of the Lost Ark (1981)
## 25015 Brazil (1985)
## 25227 Aliens (1986)
## 26255 Return of the Jedi (1983)
## 26712 GoodFellas (1990)
## 26943 Alien (1979)
## 27345 Psycho (1960)
## 27830 Godfather: Part II, The (1974)
## 28413 Amadeus (1984)
## 28658 Raging Bull (1980)
## 29496 Dead Poets Society (1989)
## 29744 Graduate, The (1967)
## 30582 Groundhog Day (1993)
## 30843 Unforgiven (1992)
## 31535 Cyrano de Bergerac (1990)
## 31627 Young Frankenstein (1974)
## 32041 Indiana Jones and the Last Crusade (1989)
## 32542 Unbearable Lightness of Being, The (1988)
## 32640 Room with a View, A (1986)
## 32901 Field of Dreams (1989)
## 33130 When Harry Met Sally... (1989)
## 33385 Bram Stoker's Dracula (1992)
## 33509 Cape Fear (1991)
## 33782 Mirror Has Two Faces, The (1996)
## 33850 Breaking the Waves (1996)
## 34296 Sling Blade (1996)
## 35526 Batman Returns (1992)
## 36192 Mars Attacks! (1996)
## 36485 Jerry Maguire (1996)
## 36842 Raising Arizona (1987)
## 37384 Last of the Mohicans, The (1992)
## 38478 Fifth Element, The (1997)
## 38713 Lost World: Jurassic Park, The (1997)
## 38878 Batman & Robin (1997)
## 38960 My Best Friend's Wedding (1997)
## 39527 Contact (1997)
## 39964 George of the Jungle (1997)
## 40283 In the Company of Men (1997)
## 41421 Good Will Hunting (1997)
## 41840 Sabrina (1995)
## 42038 Sense and Sensibility (1995)
## 42319 Leaving Las Vegas (1995)
## 42572 Restoration (1995)
## 43210 Emma (1996)
## 43581 Secrets & Lies (1996)
## 43804 English Patient, The (1996)
## 44207 Marvin's Room (1996)
## 46855 In & Out (1997)
## 48278 Titanic (1997)
## 48860 In the Name of the Father (1993)
## 48994 Schindler's List (1993)
## 49469 Mother (1996)
## 51867 Boogie Nights (1997)
## 52978 One Flew Over the Cuckoo's Nest (1975)
## 53762 Bio-Dome (1996)
## 53892 Bridges of Madison County, The (1995)
## 53958 Jeffrey (1995)
## 54102 Miracle on 34th Street (1994)
## 54364 Muriel's Wedding (1994)
## 54471 Adventures of Priscilla, Queen of the Desert, The (1994)
## 54969 Age of Innocence, The (1993)
## 55243 Mrs. Doubtfire (1993)
## 55483 Serial Mom (1994)
## 55576 Three Musketeers, The (1993)
## 55686 Brady Bunch Movie, The (1995)
## 55776 Ghost (1990)
## 55952 Batman (1989)
## 56291 Mission: Impossible (1996)
## 56868 Kingpin (1996)
## 57040 Nutty Professor, The (1996)
## 57186 Very Brady Sequel, A (1996)
## 58104 E.T. the Extra-Terrestrial (1982)
## 58729 Harold and Maude (1971)
## 60013 Birds, The (1963)
## 60246 Carrie (1976)
## 60642 Grease (1978)
## 61121 Nixon (1995)
## 61339 Like Water For Chocolate (Como agua para chocolate) (1992)
## 62391 James and the Giant Peach (1996)
## 62969 First Wives Club, The (1996)
## 63207 Philadelphia Story, The (1940)
## 63504 North by Northwest (1959)
## 63882 Casablanca (1942)
## 64242 My Fair Lady (1964)
## 64425 Roman Holiday (1953)
## 64494 Sunset Blvd. (1950)
## 64726 East of Eden (1955)
## 64987 It's a Wonderful Life (1946)
## 65192 Bringing Up Baby (1938)
## 65272 African Queen, The (1951)
## 65702 Bonnie and Clyde (1967)
## 65886 Rebel Without a Cause (1955)
## 66109 People vs. Larry Flynt, The (1996)
## 66294 My Left Foot (1989)
## 66548 Lawrence of Arabia (1962)
## 66699 Wings of Desire (1987)
## 66852 Annie Hall (1977)
## 67028 Boot, Das (1981)
## 67277 Manhattan (1979)
## 67664 Deer Hunter, The (1978)
## 67774 Down by Law (1986)
## 67829 Cool Hand Luke (1967)
## 68242 Gandhi (1982)
## 68422 Killing Fields, The (1984)
## 68541 My Life as a Dog (Mitt liv som hund) (1985)
## 68722 Shine (1996)
## 69958 Walk in the Clouds, A (1995)
## 70240 Interview with the Vampire (1994)
## 70818 Speed (1994)
## 71636 Piano, The (1993)
## 71825 Secret Garden, The (1993)
## 72015 Beauty and the Beast (1991)
## 72275 Primal Fear (1996)
## 72541 Hunchback of Notre Dame, The (1996)
## 72884 American in Paris, An (1951)
## 73144 It Happened One Night (1934)
## 73258 All About Eve (1950)
## 74380 Victor/Victoria (1982)
## 74490 Crying Game, The (1992)
## 74600 Sophie's Choice (1982)
## 74945 Tin Drum, The (Blechtrommel, Die) (1979)
## 74993 Cook the Thief His Wife & Her Lover, The (1989)
## 75112 Grifters, The (1990)
## 75196 Thin Blue Line, The (1988)
## 75226 Paris Is Burning (1990)
## 75300 Ran (1985)
## 75573 Glory (1989)
## 75865 Chinatown (1974)
## 76029 Stand by Me (1986)
## 76282 Manchurian Candidate, The (1962)
## 76610 Fried Green Tomatoes (1991)
## 77032 Paris, Texas (1984)
## 77087 Alien 3 (1992)
## 77517 Crucible, The (1996)
## 78863 American President, The (1995)
## 79003 Casino (1995)
## 79094 Persuasion (1995)
## 79291 Little Women (1994)
## 79651 Enchanted April (1991)
## 79723 Sex, Lies, and Videotape (1989)
## 80145 To Die For (1995)
## 80230 Home for the Holidays (1995)
## 80644 Circle of Friends (1995)
## 80865 Nell (1994)
## 81235 Philadelphia (1993)
## 81366 Shadowlands (1993)
## 81493 Threesome (1994)
## 81543 Pretty Woman (1990)
## 81852 Ransom (1996)
## 82353 Benny & Joon (1993)
## 83907 Man of the Year (1995)
## 84374 Dumb & Dumber (1994)
## 84769 Bullets Over Broadway (1994)
## 85101 Manhattan Murder Mystery (1993)
## 85355 Celluloid Closet, The (1995)
## 86320 Ninotchka (1939)
## 86347 Meet John Doe (1941)
## 86612 That Thing You Do! (1996)
## 86960 Diva (1981)
## 89979 What's Love Got to Do with It (1993)
## 90106 Charade (1963)
## 90279 How to Make an American Quilt (1995)
## 90343 Georgia (1995)
## 90541 Nobody's Fool (1994)
## 90991 Passion Fish (1992)
## 91636 Kiss Me, Guido (1997)
## 91786 Until the End of the World (Bis ans Ende der Welt) (1991)
## 91859 I Shot Andy Warhol (1996)
## 91960 Basquiat (1996)
## 92109 Private Parts (1997)
## 92238 Romy and Michele's High School Reunion (1997)
## 92591 Gaslight (1944)
## 94031 Evening Star, The (1996)
## 94606 It's My Party (1995)
## 94935 Six Degrees of Separation (1993)
## 95241 Surviving Picasso (1996)
## 95381 Umbrellas of Cherbourg, The (Parapluies de Cherbourg, Les) (1964)
## 95670 Ghosts of Mississippi (1996)
## 95698 Beautiful Thing (1996)
## 95882 Tom & Viv (1994)
## 96037 Love! Valour! Compassion! (1997)
## 96137 Sum of Us, The (1994)
## 96524 Strawberry and Chocolate (Fresa y chocolate) (1993)
## 97202 Madonna: Truth or Dare (1991)
## 97904 Love Affair (1994)
## 98366 Stonewall (1995)
## 98371 Of Human Bondage (1934)
## 98376 Anna (1996)
## 1666 Dead Man Walking (1995)
## 2925 Mr. Holland's Opus (1995)
## 3847 Taxi Driver (1976)
## 4241 Birdcage, The (1996)
## 4651 Apollo 13 (1995)
## 6093 Ed Wood (1994)
## 6513 Star Wars (1977)
## 11711 Remains of the Day, The (1993)
## 15510 Truth About Cats & Dogs, The (1996)
## 15762 Wallace & Gromit: The Best of Aardman Animation (1996)
## 15865 Cold Comfort Farm (1995)
## 17955 Godfather, The (1972)
## 22426 Glengarry Glen Ross (1992)
## 25620 12 Angry Men (1957)
## 26256 Return of the Jedi (1983)
## 29497 Dead Poets Society (1989)
## 29745 Graduate, The (1967)
## 30099 Bridge on the River Kwai, The (1957)
## 31359 Patton (1970)
## 33131 When Harry Met Sally... (1989)
## 34297 Sling Blade (1996)
## 36486 Jerry Maguire (1996)
## 37072 Sneakers (1992)
## 39528 Contact (1997)
## 40784 Full Monty, The (1997)
## 42039 Sense and Sensibility (1995)
## 42320 Leaving Las Vegas (1995)
## 42695 Once Upon a Time... When We Were Colored (1995)
## 43582 Secrets & Lies (1996)
## 43805 English Patient, The (1996)
## 44208 Marvin's Room (1996)
## 47096 L.A. Confidential (1997)
## 48995 Schindler's List (1993)
## 49470 Mother (1996)
## 58105 E.T. the Extra-Terrestrial (1982)
## 60247 Carrie (1976)
## 63505 North by Northwest (1959)
## 66853 Annie Hall (1977)
## 67029 Boot, Das (1981)
## 68423 Killing Fields, The (1984)
## 74900 Return of Martin Guerre, The (Retour de Martin Guerre, Le) (1982)
## 78693 Seven Years in Tibet (1997)
## 79391 Wonderful, Horrible Life of Leni Riefenstahl, The (1993)
## 79458 Widows' Peak (1994)
## 81694 Jane Eyre (1996)
## 86613 That Thing You Do! (1996)
## 89845 Murder in the First (1995)
## 92592 Gaslight (1944)
## 2279 Usual Suspects, The (1995)
## 5052 Crimson Tide (1995)
## 5416 Net, The (1995)
## 5897 Dolores Claiborne (1994)
## 7177 Natural Born Killers (1994)
## 7419 Professional, The (1994)
## 7617 Pulp Fiction (1994)
## 9967 Lion King, The (1994)
## 10503 Firm, The (1993)
## 10726 Fugitive, The (1993)
## 13084 Aladdin (1992)
## 13898 Silence of the Lambs, The (1991)
## 14480 Fargo (1996)
## 15129 Diabolique (1996)
## 16025 Rock, The (1996)
## 16395 Twister (1996)
## 16788 Independence Day (ID4) (1996)
## 20589 Long Kiss Goodnight, The (1996)
## 20760 Ghost and the Darkness, The (1996)
## 22322 Basic Instinct (1992)
## 25483 Good, The Bad and The Ugly, The (1966)
## 30844 Unforgiven (1992)
## 34481 101 Dalmatians (1996)
## 34587 Die Hard 2 (1990)
## 36487 Jerry Maguire (1996)
## 37632 Jungle2Jungle (1997)
## 38479 Fifth Element, The (1997)
## 39172 Men in Black (1997)
## 39529 Contact (1997)
## 40333 Steel (1997)
## 40785 Full Monty, The (1997)
## 42831 River Wild, The (1994)
## 44361 Scream (1996)
## 45125 Absolute Power (1997)
## 45586 Liar Liar (1997)
## 45992 Breakdown (1997)
## 46147 Face/Off (1997)
## 46324 Hoodlum (1997)
## 46454 Air Force One (1997)
## 47097 L.A. Confidential (1997)
## 47592 Mrs. Brown (Her Majesty, Mrs. Brown) (1997)
## 49641 Murder at 1600 (1997)
## 50521 Cop Land (1997)
## 51005 187 (1997)
## 51063 Edge, The (1997)
## 51178 Kiss the Girls (1997)
## 51344 Game, The (1997)
## 51713 Bean (1997)
## 52853 Client, The (1994)
## 54697 True Lies (1994)
## 56292 Mission: Impossible (1996)
## 56577 Thinner (1996)
## 61893 Tombstone (1993)
## 63114 Matilda (1996)
## 69087 Money Train (1995)
## 69378 Broken Arrow (1996)
## 69747 Die Hard: With a Vengeance (1995)
## 70024 Waterworld (1995)
## 70592 Clear and Present Danger (1994)
## 70819 Speed (1994)
## 72016 Beauty and the Beast (1991)
## 72276 Primal Fear (1996)
## 72465 Fan, The (1996)
## 72542 Hunchback of Notre Dame, The (1996)
## 78116 In the Line of Fire (1993)
## 78588 Jackal, The (1997)
## 80294 Juror, The (1996)
## 81853 Ransom (1996)
## 83179 Red Corner (1997)
## 84029 Devil in a Blue Dress (1995)
## 85619 Space Jam (1996)
## 86089 Fled (1996)
## 87956 Soul Food (1997)
## 88129 Eve's Bayou (1997)
## 89190 Unforgettable (1996)
## 89678 Preacher's Wife, The (1996)
## 89846 Murder in the First (1995)
## 91114 Substitute, The (1996)
## 91270 Rich Man's Wife, The (1996)
## 91391 Beautician and the Beast, The (1997)
## 92363 Con Air (1997)
## 93002 Homeward Bound II: Lost in San Francisco (1996)
## 93365 Just Cause (1995)
## 93471 Malice (1993)
## 94564 Albino Alligator (1996)
## 96801 Guilty as Sin (1993)
## 97433 Tie That Binds, The (1995)
## 97669 Set It Off (1996)
## 98138 Kazaam (1996)
## 98312 Roseanna's Grave (For Roseanna) (1997)
## 98378 Stranger in the House (1997)
## 1424 Babe (1995)
## 3848 Taxi Driver (1976)
## 4652 Apollo 13 (1995)
## 7084 Madness of King George, The (1994)
## 8620 Shawshank Redemption, The (1994)
## 8863 What's Eating Gilbert Grape (1993)
## 9420 Forrest Gump (1994)
## 9730 Four Weddings and a Funeral (1994)
## 11465 Much Ado About Nothing (1993)
## 11712 Remains of the Day, The (1993)
## 13606 Dances with Wolves (1990)
## 15866 Cold Comfort Farm (1995)
## 19056 Citizen Kane (1941)
## 19270 2001: A Space Odyssey (1968)
## 19622 Big Night (1996)
## 23291 Monty Python and the Holy Grail (1974)
## 24281 Princess Bride, The (1987)
## 25016 Brazil (1985)
## 25752 Clockwork Orange, A (1971)
## 27581 Blues Brothers, The (1980)
## 28414 Amadeus (1984)
## 29498 Dead Poets Society (1989)
## 29746 Graduate, The (1967)
## 31052 Back to the Future (1985)
## 31836 This Is Spinal Tap (1984)
## 32042 Indiana Jones and the Last Crusade (1989)
## 32641 Room with a View, A (1986)
## 32766 Pink Floyd - The Wall (1982)
## 32902 Field of Dreams (1989)
## 33132 When Harry Met Sally... (1989)
## 37385 Last of the Mohicans, The (1992)
## 42040 Sense and Sensibility (1995)
## 46455 Air Force One (1997)
## 58106 E.T. the Extra-Terrestrial (1982)
## 58525 To Kill a Mockingbird (1962)
## 58730 Harold and Maude (1971)
## 59383 Heathers (1989)
## 59624 Butch Cassidy and the Sundance Kid (1969)
## 61340 Like Water For Chocolate (Como agua para chocolate) (1992)
## 67775 Down by Law (1986)
## 67830 Cool Hand Luke (1967)
## 71637 Piano, The (1993)
## 75574 Glory (1989)
## 76484 Arsenic and Old Lace (1944)
## 76611 Fried Green Tomatoes (1991)
## 76925 Being There (1979)
## 79095 Persuasion (1995)
## 79652 Enchanted April (1991)
## 79925 Better Off Dead... (1985)
## 81019 Dave (1993)
## 81236 Philadelphia (1993)
## 81367 Shadowlands (1993)
## 82354 Benny & Joon (1993)
## 84770 Bullets Over Broadway (1994)
## 94123 Koyaanisqatsi (1983)
## 95311 Some Kind of Wonderful (1987)
## 897 Copycat (1995)
## 1081 Twelve Monkeys (1995)
## 2040 Seven (Se7en) (1995)
## 2539 Mighty Aphrodite (1995)
## 3571 Braveheart (1995)
## 4653 Apollo 13 (1995)
## 5417 Net, The (1995)
## 6514 Star Wars (1977)
## 7305 Outbreak (1995)
## 7618 Pulp Fiction (1994)
## 8621 Shawshank Redemption, The (1994)
## 8987 While You Were Sleeping (1995)
## 9421 Forrest Gump (1994)
## 10426 Carlito's Way (1993)
## 10504 Firm, The (1993)
## 10727 Fugitive, The (1993)
## 12009 Sleepless in Seattle (1993)
## 13325 Terminator 2: Judgment Day (1991)
## 13607 Dances with Wolves (1990)
## 13899 Silence of the Lambs, The (1991)
## 14481 Fargo (1996)
## 16396 Twister (1996)
## 16789 Independence Day (ID4) (1996)
## 17956 Godfather, The (1972)
## 20053 Sound of Music, The (1965)
## 20279 Die Hard (1988)
## 20761 Ghost and the Darkness, The (1996)
## 21109 Willy Wonka and the Chocolate Factory (1971)
## 21500 Fish Called Wanda, A (1988)
## 22143 Platoon (1986)
## 22323 Basic Instinct (1992)
## 22520 Top Gun (1986)
## 22718 On Golden Pond (1981)
## 22920 Abyss, The (1989)
## 24282 Princess Bride, The (1987)
## 24625 Raiders of the Lost Ark (1981)
## 25228 Aliens (1986)
## 25484 Good, The Bad and The Ugly, The (1966)
## 25976 Apocalypse Now (1979)
## 26257 Return of the Jedi (1983)
## 27346 Psycho (1960)
## 27831 Godfather: Part II, The (1974)
## 28415 Amadeus (1984)
## 28959 Sting, The (1973)
## 29210 Terminator, The (1984)
## 30100 Bridge on the River Kwai, The (1957)
## 30583 Groundhog Day (1993)
## 31053 Back to the Future (1985)
## 31360 Patton (1970)
## 31837 This Is Spinal Tap (1984)
## 32043 Indiana Jones and the Last Crusade (1989)
## 32358 M*A*S*H (1970)
## 33133 When Harry Met Sally... (1989)
## 33510 Cape Fear (1991)
## 34588 Die Hard 2 (1990)
## 35767 Under Siege (1992)
## 35914 Jaws (1975)
## 36488 Jerry Maguire (1996)
## 37232 Beavis and Butt-head Do America (1996)
## 39965 George of the Jungle (1997)
## 40487 Hunt for Red October, The (1990)
## 42832 River Wild, The (1994)
## 44362 Scream (1996)
## 45587 Liar Liar (1997)
## 46456 Air Force One (1997)
## 48996 Schindler's List (1993)
## 50344 G.I. Jane (1997)
## 52854 Client, The (1994)
## 52979 One Flew Over the Cuckoo's Nest (1975)
## 55160 Man Without a Face, The (1993)
## 57688 Mary Poppins (1964)
## 60014 Birds, The (1963)
## 60905 Jackie Chan's First Strike (1996)
## 61341 Like Water For Chocolate (Como agua para chocolate) (1992)
## 61754 Rudy (1993)
## 61894 Tombstone (1993)
## 62527 Dr. Strangelove or: How I Learned to Stop Worrying and Love the Bomb (1963)
## 63883 Casablanca (1942)
## 64108 Maltese Falcon, The (1941)
## 64243 My Fair Lady (1964)
## 65273 African Queen, The (1951)
## 65703 Bonnie and Clyde (1967)
## 66418 Magnificent Seven, The (1954)
## 66549 Lawrence of Arabia (1962)
## 67462 Treasure of the Sierra Madre, The (1948)
## 69959 Walk in the Clouds, A (1995)
## 70025 Waterworld (1995)
## 70593 Clear and Present Danger (1994)
## 70820 Speed (1994)
## 72277 Primal Fear (1996)
## 74228 Sleepers (1996)
## 74381 Victor/Victoria (1982)
## 74601 Sophie's Choice (1982)
## 74749 Fog, The (1980)
## 75575 Glory (1989)
## 77330 Cape Fear (1962)
## 77628 Volcano (1997)
## 78117 In the Line of Fire (1993)
## 78864 American President, The (1995)
## 80295 Juror, The (1996)
## 81020 Dave (1993)
## 81854 Ransom (1996)
## 83851 If Lucy Fell (1996)
## 83983 Congo (1995)
## 84771 Bullets Over Broadway (1994)
## 87149 My Fellow Americans (1996)
## 87728 Excess Baggage (1997)
## 89337 Craft, The (1996)
## 89488 Chain Reaction (1996)
## 93310 Forget Paris (1995)
## 96802 Guilty as Sin (1993)
## 97505 Foxfire (1996)
## 85 Toy Story (1995)
## 703 Get Shorty (1995)
## 1082 Twelve Monkeys (1995)
## 1425 Babe (1995)
## 1667 Dead Man Walking (1995)
## 1920 Richard III (1995)
## 2540 Mighty Aphrodite (1995)
## 2716 Postino, Il (1994)
## 2926 Mr. Holland's Opus (1995)
## 3161 French Twist (Gazon maudit) (1995)
## 3379 Angels and Insects (1995)
## 3457 Muppet Treasure Island (1996)
## 4033 Rumble in the Bronx (1995)
## 4654 Apollo 13 (1995)
## 4994 Belle de jour (1967)
## 5053 Crimson Tide (1995)
## 5898 Dolores Claiborne (1994)
## 5977 Eat Drink Man Woman (1994)
## 6515 Star Wars (1977)
## 7619 Pulp Fiction (1994)
## 8165 Three Colors: Red (1994)
## 8240 Three Colors: Blue (1993)
## 8306 Three Colors: White (1994)
## 10728 Fugitive, The (1993)
## 11466 Much Ado About Nothing (1993)
## 12239 Blade Runner (1982)
## 12582 Nightmare Before Christmas, The (1993)
## 13326 Terminator 2: Judgment Day (1991)
## 13608 Dances with Wolves (1990)
## 14238 Snow White and the Seven Dwarfs (1937)
## 14482 Fargo (1996)
## 15055 Sgt. Bilko (1996)
## 16397 Twister (1996)
## 16651 Striptease (1996)
## 16790 Independence Day (ID4) (1996)
## 17394 Lone Star (1996)
## 17957 Godfather, The (1972)
## 18381 Bound (1996)
## 18527 Breakfast at Tiffany's (1961)
## 18646 Wizard of Oz, The (1939)
## 18882 Gone with the Wind (1939)
## 19057 Citizen Kane (1941)
## 19271 2001: A Space Odyssey (1968)
## 19498 Mr. Smith Goes to Washington (1939)
## 19623 Big Night (1996)
## 20054 Sound of Music, The (1965)
## 20920 Swingers (1996)
## 21110 Willy Wonka and the Chocolate Factory (1971)
## 22144 Platoon (1986)
## 22719 On Golden Pond (1981)
## 23058 Jean de Florette (1986)
## 23122 Manon of the Spring (Manon des sources) (1986)
## 23693 Cinema Paradiso (1988)
## 23923 Empire Strikes Back, The (1980)
## 24283 Princess Bride, The (1987)
## 24626 Raiders of the Lost Ark (1981)
## 25017 Brazil (1985)
## 25229 Aliens (1986)
## 25621 12 Angry Men (1957)
## 25753 Clockwork Orange, A (1971)
## 25977 Apocalypse Now (1979)
## 26258 Return of the Jedi (1983)
## 27347 Psycho (1960)
## 27582 Blues Brothers, The (1980)
## 28416 Amadeus (1984)
## 28960 Sting, The (1973)
## 29499 Dead Poets Society (1989)
## 29747 Graduate, The (1967)
## 29962 Nikita (La Femme Nikita) (1990)
## 30101 Bridge on the River Kwai, The (1957)
## 30845 Unforgiven (1992)
## 31054 Back to the Future (1985)
## 31536 Cyrano de Bergerac (1990)
## 31838 This Is Spinal Tap (1984)
## 32767 Pink Floyd - The Wall (1982)
## 33134 When Harry Met Sally... (1989)
## 34482 101 Dalmatians (1996)
## 35915 Jaws (1975)
## 36843 Raising Arizona (1987)
## 37386 Last of the Mohicans, The (1992)
## 38050 Chasing Amy (1997)
## 38177 Grosse Pointe Blank (1997)
## 38846 Pillow Book, The (1995)
## 38961 My Best Friend's Wedding (1997)
## 41841 Sabrina (1995)
## 42041 Sense and Sensibility (1995)
## 42321 Leaving Las Vegas (1995)
## 42833 River Wild, The (1994)
## 43211 Emma (1996)
## 45588 Liar Liar (1997)
## 46070 Ulee's Gold (1997)
## 48279 Titanic (1997)
## 48861 In the Name of the Father (1993)
## 48997 Schindler's List (1993)
## 54103 Miracle on 34th Street (1994)
## 54365 Muriel's Wedding (1994)
## 56293 Mission: Impossible (1996)
## 57559 Cinderella (1950)
## 58107 E.T. the Extra-Terrestrial (1982)
## 59384 Heathers (1989)
## 61195 Cry, the Beloved Country (1995)
## 61342 Like Water For Chocolate (Como agua para chocolate) (1992)
## 62392 James and the Giant Peach (1996)
## 62528 Dr. Strangelove or: How I Learned to Stop Worrying and Love the Bomb (1963)
## 63325 Vertigo (1958)
## 63506 North by Northwest (1959)
## 63884 Casablanca (1942)
## 64109 Maltese Falcon, The (1941)
## 64244 My Fair Lady (1964)
## 64364 Sabrina (1954)
## 64426 Roman Holiday (1953)
## 64555 Notorious (1946)
## 64727 East of Eden (1955)
## 64988 It's a Wonderful Life (1946)
## 65274 African Queen, The (1951)
## 65410 Cat on a Hot Tin Roof (1958)
## 65485 Dumbo (1941)
## 65648 Candidate, The (1972)
## 65815 Dial M for Murder (1954)
## 66419 Magnificent Seven, The (1954)
## 66550 Lawrence of Arabia (1962)
## 66700 Wings of Desire (1987)
## 66761 Third Man, The (1949)
## 67213 Local Hero (1983)
## 67278 Manhattan (1979)
## 67539 Great Escape, The (1963)
## 67831 Cool Hand Luke (1967)
## 68025 Big Sleep, The (1946)
## 68102 Ben-Hur (1959)
## 68243 Gandhi (1982)
## 68723 Shine (1996)
## 68831 Kama Sutra: A Tale of Love (1996)
## 70821 Speed (1994)
## 71638 Piano, The (1993)
## 72017 Beauty and the Beast (1991)
## 72543 Hunchback of Notre Dame, The (1996)
## 72958 Rear Window (1954)
## 73315 Rebecca (1940)
## 73805 Picnic (1955)
## 74447 Great Race, The (1965)
## 74602 Sophie's Choice (1982)
## 74722 Microcosmos: Le peuple de l'herbe (1996)
## 74901 Return of Martin Guerre, The (Retour de Martin Guerre, Le) (1982)
## 74946 Tin Drum, The (Blechtrommel, Die) (1979)
## 75301 Ran (1985)
## 75734 Rosencrantz and Guildenstern Are Dead (1990)
## 75866 Chinatown (1974)
## 76223 M (1931)
## 76283 Manchurian Candidate, The (1962)
## 76485 Arsenic and Old Lace (1944)
## 76754 High Noon (1952)
## 76926 Being There (1979)
## 79096 Persuasion (1995)
## 79516 Singin' in the Rain (1952)
## 81021 Dave (1993)
## 81855 Ransom (1996)
## 82966 Tomorrow Never Dies (1997)
## 84772 Bullets Over Broadway (1994)
## 85415 One Fine Day (1996)
## 85620 Space Jam (1996)
## 86807 Looking for Richard (1996)
## 86961 Diva (1981)
## 87113 Garden of Finzi-Contini, The (Giardino dei Finzi-Contini, Il) (1970)
## 88806 Wild Things (1998)
## 89679 Preacher's Wife, The (1996)
## 90418 Blue in the Face (1995)
## 91501 Anna Karenina (1997)
## 91762 Double vie de Veronique, La (Double Life of Veronique, The) (1991)
## 92593 Gaslight (1944)
## 92627 8 1/2 (1963)
## 93909 Cronos (1992)
## 93997 Adventures of Pinocchio, The (1996)
## 94124 Koyaanisqatsi (1983)
## 94864 Flirting With Disaster (1996)
## 94903 Red Firecracker, Green Firecracker (1994)
## 95200 Twelfth Night (1996)
## 95242 Surviving Picasso (1996)
## 95982 Alphaville (1965)
## 98035 Inventing the Abbotts (1997)
## 98246 Stranger, The (1994)
## 98385 Picture Bride (1995)
## 98395 M. Butterfly (1993)
## 98413 Ciao, Professore! (1993)
## 98417 Caro Diario (Dear Diary) (1994)
## 98421 Withnail and I (1987)
## 1083 Twelve Monkeys (1995)
## 1668 Dead Man Walking (1995)
## 2927 Mr. Holland's Opus (1995)
## 4034 Rumble in the Bronx (1995)
## 14483 Fargo (1996)
## 16026 Rock, The (1996)
## 16398 Twister (1996)
## 16791 Independence Day (ID4) (1996)
## 17586 Phenomenon (1996)
## 20590 Long Kiss Goodnight, The (1996)
## 20762 Ghost and the Darkness, The (1996)
## 33984 Star Trek: First Contact (1996)
## 36489 Jerry Maguire (1996)
## 37833 Devil's Own, The (1997)
## 39530 Contact (1997)
## 40786 Full Monty, The (1997)
## 41422 Good Will Hunting (1997)
## 41622 Heat (1995)
## 42322 Leaving Las Vegas (1995)
## 42834 River Wild, The (1994)
## 42990 Time to Kill, A (1996)
## 44363 Scream (1996)
## 45126 Absolute Power (1997)
## 45589 Liar Liar (1997)
## 46457 Air Force One (1997)
## 47098 L.A. Confidential (1997)
## 47942 Rainmaker, The (1997)
## 48280 Titanic (1997)
## 50345 G.I. Jane (1997)
## 50522 Cop Land (1997)
## 50720 Conspiracy Theory (1997)
## 51345 Game, The (1997)
## 51868 Boogie Nights (1997)
## 52742 Wedding Singer, The (1998)
## 53415 Sudden Death (1995)
## 56294 Mission: Impossible (1996)
## 62029 Courage Under Fire (1996)
## 66110 People vs. Larry Flynt, The (1996)
## 69049 Mouse Hunt (1997)
## 69258 Things to Do in Denver when You're Dead (1995)
## 69379 Broken Arrow (1996)
## 72278 Primal Fear (1996)
## 72683 Eraser (1996)
## 74229 Sleepers (1996)
## 78286 Executive Decision (1996)
## 79155 City Hall (1996)
## 80296 Juror, The (1996)
## 81856 Ransom (1996)
## 82490 Saint, The (1997)
## 82967 Tomorrow Never Dies (1997)
## 85738 Mulholland Falls (1996)
## 85945 Phantom, The (1996)
## 88362 Scream 2 (1997)
## 88507 Postman, The (1997)
## 89489 Chain Reaction (1996)
## 91025 Eye for an Eye (1996)
## 91115 Substitute, The (1996)
## 91463 Cats Don't Dance (1997)
## 98010 Palmetto (1998)
## 11713 Remains of the Day, The (1993)
## 40787 Full Monty, The (1997)
## 41061 Gattaca (1997)
## 41423 Good Will Hunting (1997)
## 43806 English Patient, The (1996)
## 44364 Scream (1996)
## 46458 Air Force One (1997)
## 46856 In & Out (1997)
## 47099 L.A. Confidential (1997)
## 47703 Devil's Advocate, The (1997)
## 48281 Titanic (1997)
## 48599 Apt Pupil (1998)
## 48751 As Good As It Gets (1997)
## 50721 Conspiracy Theory (1997)
## 51064 Edge, The (1997)
## 51179 Kiss the Girls (1997)
## 51796 Mad City (1997)
## 51869 Boogie Nights (1997)
## 52105 Alien: Resurrection (1997)
## 52274 Deconstructing Harry (1997)
## 82828 Amistad (1997)
## 82968 Tomorrow Never Dies (1997)
## 83117 Replacement Killers, The (1998)
## 83180 Red Corner (1997)
## 88257 Bent (1997)
## 88460 Sweet Hereafter, The (1997)
## 88574 Kundun (1997)
## 1084 Twelve Monkeys (1995)
## 1669 Dead Man Walking (1995)
## 4242 Birdcage, The (1996)
## 6516 Star Wars (1977)
## 14484 Fargo (1996)
## 15235 Kids in the Hall: Brain Candy (1996)
## 15511 Truth About Cats & Dogs, The (1996)
## 16399 Twister (1996)
## 16792 Independence Day (ID4) (1996)
## 17587 Phenomenon (1996)
## 17958 Godfather, The (1972)
## 36193 Mars Attacks! (1996)
## 38714 Lost World: Jurassic Park, The (1997)
## 38962 My Best Friend's Wedding (1997)
## 39173 Men in Black (1997)
## 39531 Contact (1997)
## 40788 Full Monty, The (1997)
## 42323 Leaving Las Vegas (1995)
## 42573 Restoration (1995)
## 43394 Tin Cup (1996)
## 44209 Marvin's Room (1996)
## 44798 Evita (1996)
## 46857 In & Out (1997)
## 47100 L.A. Confidential (1997)
## 51870 Boogie Nights (1997)
## 62970 First Wives Club, The (1996)
## 67030 Boot, Das (1981)
## 85356 Celluloid Closet, The (1995)
## 90229 Booty Call (1997)
## 94032 Evening Star, The (1996)
## 95699 Beautiful Thing (1996)
## 96038 Love! Valour! Compassion! (1997)
## 96208 Wild Reeds (1994)
## 97529 Star Maps (1997)
## 98434 Boy's Life 2 (1997)
## 86 Toy Story (1995)
## 470 GoldenEye (1995)
## 3849 Taxi Driver (1976)
## 4035 Rumble in the Bronx (1995)
## 4243 Birdcage, The (1996)
## 4892 Batman Forever (1995)
## 5279 Desperado (1995)
## 5418 Net, The (1995)
## 7620 Pulp Fiction (1994)
## 9422 Forrest Gump (1994)
## 10171 Mask, The (1994)
## 10302 Maverick (1994)
## 10729 Fugitive, The (1993)
## 11221 Jurassic Park (1993)
## 12940 Home Alone (1990)
## 13327 Terminator 2: Judgment Day (1991)
## 14485 Fargo (1996)
## 15512 Truth About Cats & Dogs, The (1996)
## 16027 Rock, The (1996)
## 16793 Independence Day (ID4) (1996)
## 17153 Cable Guy, The (1996)
## 17959 Godfather, The (1972)
## 20591 Long Kiss Goodnight, The (1996)
## 21501 Fish Called Wanda, A (1988)
## 21894 Dirty Dancing (1987)
## 22324 Basic Instinct (1992)
## 22521 Top Gun (1986)
## 24627 Raiders of the Lost Ark (1981)
## 25485 Good, The Bad and The Ugly, The (1966)
## 26713 GoodFellas (1990)
## 27832 Godfather: Part II, The (1974)
## 28961 Sting, The (1973)
## 29211 Terminator, The (1984)
## 30102 Bridge on the River Kwai, The (1957)
## 32044 Indiana Jones and the Last Crusade (1989)
## 33511 Cape Fear (1991)
## 35916 Jaws (1975)
## 36490 Jerry Maguire (1996)
## 38051 Chasing Amy (1997)
## 39532 Contact (1997)
## 39966 George of the Jungle (1997)
## 40123 Event Horizon (1997)
## 40789 Full Monty, The (1997)
## 41842 Sabrina (1995)
## 42324 Leaving Las Vegas (1995)
## 42736 Up Close and Personal (1996)
## 42991 Time to Kill, A (1996)
## 43807 English Patient, The (1996)
## 44365 Scream (1996)
## 45590 Liar Liar (1997)
## 46459 Air Force One (1997)
## 46858 In & Out (1997)
## 47704 Devil's Advocate, The (1997)
## 47943 Rainmaker, The (1997)
## 48282 Titanic (1997)
## 50523 Cop Land (1997)
## 50722 Conspiracy Theory (1997)
## 51180 Kiss the Girls (1997)
## 51346 Game, The (1997)
## 52106 Alien: Resurrection (1997)
## 52479 Wag the Dog (1997)
## 52685 Spice World (1997)
## 52743 Wedding Singer, The (1998)
## 53381 Blues Brothers 2000 (1998)
## 53543 Dangerous Minds (1995)
## 53763 Bio-Dome (1996)
## 55244 Mrs. Doubtfire (1993)
## 55777 Ghost (1990)
## 55953 Batman (1989)
## 56295 Mission: Impossible (1996)
## 56626 Spy Hard (1996)
## 56869 Kingpin (1996)
## 57187 Very Brady Sequel, A (1996)
## 59625 Butch Cassidy and the Sundance Kid (1969)
## 60015 Birds, The (1963)
## 61576 Jungle Book, The (1994)
## 62971 First Wives Club, The (1996)
## 64245 My Fair Lady (1964)
## 64427 Roman Holiday (1953)
## 66111 People vs. Larry Flynt, The (1996)
## 69131 Mortal Kombat (1995)
## 69960 Walk in the Clouds, A (1995)
## 70026 Waterworld (1995)
## 70445 Quick and the Dead, The (1995)
## 71526 Englishman Who Went Up a Hill, But Came Down a Mountain, The (1995)
## 74133 Robin Hood: Prince of Thieves (1991)
## 77331 Cape Fear (1962)
## 77952 I Know What You Did Last Summer (1997)
## 78118 In the Line of Fire (1993)
## 78589 Jackal, The (1997)
## 78694 Seven Years in Tibet (1997)
## 79004 Casino (1995)
## 80146 To Die For (1995)
## 80552 Nine Months (1995)
## 81544 Pretty Woman (1990)
## 81857 Ransom (1996)
## 82829 Amistad (1997)
## 83243 Jumanji (1995)
## 83723 Happy Gilmore (1996)
## 84445 French Kiss (1995)
## 84689 Tommy Boy (1995)
## 85416 One Fine Day (1996)
## 85946 Phantom, The (1996)
## 86023 Daylight (1996)
## 86614 That Thing You Do! (1996)
## 87355 Fools Rush In (1997)
## 87404 Vegas Vacation (1997)
## 87828 Peacemaker, The (1997)
## 88363 Scream 2 (1997)
## 88708 Great Expectations (1998)
## 89338 Craft, The (1996)
## 89929 With Honors (1994)
## 94388 Reality Bites (1994)
## 94480 Oliver & Company (1988)
## 94689 Sliver (1993)
## 95525 Feeling Minnesota (1996)
## 96149 Little Buddha (1993)
## 97466 Trial and Error (1997)
## 98440 When Night Is Falling (1995)
## 98445 Specialist, The (1994)
## 87 Toy Story (1995)
## 704 Get Shorty (1995)
## 1085 Twelve Monkeys (1995)
## 1426 Babe (1995)
## 1670 Dead Man Walking (1995)
## 2280 Usual Suspects, The (1995)
## 2541 Mighty Aphrodite (1995)
## 2928 Mr. Holland's Opus (1995)
## 3572 Braveheart (1995)
## 3850 Taxi Driver (1976)
## 4244 Birdcage, The (1996)
## 4478 Brothers McMullen, The (1995)
## 4655 Apollo 13 (1995)
## 4893 Batman Forever (1995)
## 4995 Belle de jour (1967)
## 5054 Crimson Tide (1995)
## 5899 Dolores Claiborne (1994)
## 6517 Star Wars (1977)
## 7005 Legends of the Fall (1994)
## 7085 Madness of King George, The (1994)
## 7306 Outbreak (1995)
## 7621 Pulp Fiction (1994)
## 7998 Quiz Show (1994)
## 8378 Stargate (1994)
## 8622 Shawshank Redemption, The (1994)
## 8988 While You Were Sleeping (1995)
## 9142 Ace Ventura: Pet Detective (1994)
## 9423 Forrest Gump (1994)
## 9731 Four Weddings and a Funeral (1994)
## 9968 Lion King, The (1994)
## 10172 Mask, The (1994)
## 10303 Maverick (1994)
## 10427 Carlito's Way (1993)
## 10505 Firm, The (1993)
## 10636 Free Willy (1993)
## 10730 Fugitive, The (1993)
## 11079 Hudsucker Proxy, The (1994)
## 11222 Jurassic Park (1993)
## 11467 Much Ado About Nothing (1993)
## 11714 Remains of the Day, The (1993)
## 11862 Searching for Bobby Fischer (1993)
## 12010 Sleepless in Seattle (1993)
## 12240 Blade Runner (1982)
## 12479 So I Married an Axe Murderer (1993)
## 12583 Nightmare Before Christmas, The (1993)
## 12941 Home Alone (1990)
## 13085 Aladdin (1992)
## 13609 Dances with Wolves (1990)
## 13900 Silence of the Lambs, The (1991)
## 14239 Snow White and the Seven Dwarfs (1937)
## 14486 Fargo (1996)
## 16028 Rock, The (1996)
## 16400 Twister (1996)
## 16794 Independence Day (ID4) (1996)
## 17395 Lone Star (1996)
## 17588 Phenomenon (1996)
## 17960 Godfather, The (1972)
## 18647 Wizard of Oz, The (1939)
## 18883 Gone with the Wind (1939)
## 19058 Citizen Kane (1941)
## 19272 2001: A Space Odyssey (1968)
## 19499 Mr. Smith Goes to Washington (1939)
## 20055 Sound of Music, The (1965)
## 20280 Die Hard (1988)
## 21389 Sleeper (1973)
## 21502 Fish Called Wanda, A (1988)
## 21731 Monty Python's Life of Brian (1979)
## 21895 Dirty Dancing (1987)
## 22145 Platoon (1986)
## 22325 Basic Instinct (1992)
## 22427 Glengarry Glen Ross (1992)
## 22522 Top Gun (1986)
## 22720 On Golden Pond (1981)
## 23059 Jean de Florette (1986)
## 23182 Private Benjamin (1980)
## 23292 Monty Python and the Holy Grail (1974)
## 23924 Empire Strikes Back, The (1980)
## 24284 Princess Bride, The (1987)
## 24628 Raiders of the Lost Ark (1981)
## 25018 Brazil (1985)
## 25486 Good, The Bad and The Ugly, The (1966)
## 25622 12 Angry Men (1957)
## 25754 Clockwork Orange, A (1971)
## 25978 Apocalypse Now (1979)
## 26259 Return of the Jedi (1983)
## 26714 GoodFellas (1990)
## 26944 Alien (1979)
## 27348 Psycho (1960)
## 27583 Blues Brothers, The (1980)
## 27833 Godfather: Part II, The (1974)
## 28028 Full Metal Jacket (1987)
## 28417 Amadeus (1984)
## 28659 Raging Bull (1980)
## 28783 Right Stuff, The (1983)
## 28962 Sting, The (1973)
## 29212 Terminator, The (1984)
## 29500 Dead Poets Society (1989)
## 29748 Graduate, The (1967)
## 29963 Nikita (La Femme Nikita) (1990)
## 30103 Bridge on the River Kwai, The (1957)
## 30584 Groundhog Day (1993)
## 30846 Unforgiven (1992)
## 31055 Back to the Future (1985)
## 31361 Patton (1970)
## 31628 Young Frankenstein (1974)
## 31839 This Is Spinal Tap (1984)
## 32045 Indiana Jones and the Last Crusade (1989)
## 32359 M*A*S*H (1970)
## 32543 Unbearable Lightness of Being, The (1988)
## 32642 Room with a View, A (1986)
## 32903 Field of Dreams (1989)
## 33135 When Harry Met Sally... (1989)
## 33512 Cape Fear (1991)
## 33675 Nightmare on Elm Street, A (1984)
## 33985 Star Trek: First Contact (1996)
## 34298 Sling Blade (1996)
## 34483 101 Dalmatians (1996)
## 34589 Die Hard 2 (1990)
## 34760 Star Trek VI: The Undiscovered Country (1991)
## 34935 Star Trek: The Wrath of Khan (1982)
## 35167 Star Trek III: The Search for Spock (1984)
## 35343 Star Trek IV: The Voyage Home (1986)
## 35661 Young Guns (1988)
## 35917 Jaws (1975)
## 36194 Mars Attacks! (1996)
## 36491 Jerry Maguire (1996)
## 36844 Raising Arizona (1987)
## 37073 Sneakers (1992)
## 37387 Last of the Mohicans, The (1992)
## 39967 George of the Jungle (1997)
## 40488 Hunt for Red October, The (1990)
## 41843 Sabrina (1995)
## 42325 Leaving Las Vegas (1995)
## 42835 River Wild, The (1994)
## 42992 Time to Kill, A (1996)
## 43395 Tin Cup (1996)
## 43808 English Patient, The (1996)
## 44799 Evita (1996)
## 45591 Liar Liar (1997)
## 48862 In the Name of the Father (1993)
## 48998 Schindler's List (1993)
## 49471 Mother (1996)
## 52855 Client, The (1994)
## 52980 One Flew Over the Cuckoo's Nest (1975)
## 53544 Dangerous Minds (1995)
## 53616 Clueless (1995)
## 53893 Bridges of Madison County, The (1995)
## 54059 Houseguest (1994)
## 54253 Star Trek: Generations (1994)
## 54569 Flintstones, The (1994)
## 54698 True Lies (1994)
## 54970 Age of Innocence, The (1993)
## 55245 Mrs. Doubtfire (1993)
## 55577 Three Musketeers, The (1993)
## 55778 Ghost (1990)
## 55954 Batman (1989)
## 56139 Pinocchio (1940)
## 56296 Mission: Impossible (1996)
## 56870 Kingpin (1996)
## 57324 My Favorite Year (1982)
## 57473 Parent Trap, The (1961)
## 57689 Mary Poppins (1964)
## 58108 E.T. the Extra-Terrestrial (1982)
## 58391 Bob Roberts (1992)
## 58526 To Kill a Mockingbird (1962)
## 59045 Highlander (1986)
## 59204 Fantasia (1940)
## 59385 Heathers (1989)
## 59626 Butch Cassidy and the Sundance Kid (1969)
## 60016 Birds, The (1963)
## 60456 Star Trek: The Motion Picture (1979)
## 60566 Star Trek V: The Final Frontier (1989)
## 60643 Grease (1978)
## 61039 Beverly Hills Ninja (1997)
## 61577 Jungle Book, The (1994)
## 61659 Red Rock West (1992)
## 61706 Bronx Tale, A (1993)
## 61895 Tombstone (1993)
## 62030 Courage Under Fire (1996)
## 62529 Dr. Strangelove or: How I Learned to Stop Worrying and Love the Bomb (1963)
## 63208 Philadelphia Story, The (1940)
## 63326 Vertigo (1958)
## 63660 Apartment, The (1960)
## 63737 Some Like It Hot (1959)
## 63885 Casablanca (1942)
## 64246 My Fair Lady (1964)
## 64495 Sunset Blvd. (1950)
## 64662 Adventures of Robin Hood, The (1938)
## 64989 It's a Wonderful Life (1946)
## 65275 African Queen, The (1951)
## 65486 Dumbo (1941)
## 65598 Bananas (1971)
## 65649 Candidate, The (1972)
## 65704 Bonnie and Clyde (1967)
## 65980 Streetcar Named Desire, A (1951)
## 66295 My Left Foot (1989)
## 66420 Magnificent Seven, The (1954)
## 66551 Lawrence of Arabia (1962)
## 66854 Annie Hall (1977)
## 67031 Boot, Das (1981)
## 67214 Local Hero (1983)
## 67279 Manhattan (1979)
## 67374 Miller's Crossing (1990)
## 67463 Treasure of the Sierra Madre, The (1948)
## 67540 Great Escape, The (1963)
## 67665 Deer Hunter, The (1978)
## 67832 Cool Hand Luke (1967)
## 68103 Ben-Hur (1959)
## 68244 Gandhi (1982)
## 68542 My Life as a Dog (Mitt liv som hund) (1985)
## 68633 Man Who Would Be King, The (1975)
## 69088 Money Train (1995)
## 69181 Pocahontas (1995)
## 69380 Broken Arrow (1996)
## 69647 Rob Roy (1995)
## 69748 Die Hard: With a Vengeance (1995)
## 70241 Interview with the Vampire (1994)
## 70446 Quick and the Dead, The (1995)
## 70594 Clear and Present Danger (1994)
## 70822 Speed (1994)
## 71082 Wyatt Earp (1994)
## 71238 City Slickers II: The Legend of Curly's Gold (1994)
## 71286 Cliffhanger (1993)
## 71527 Englishman Who Went Up a Hill, But Came Down a Mountain, The (1995)
## 71639 Piano, The (1993)
## 72018 Beauty and the Beast (1991)
## 73145 It Happened One Night (1934)
## 73726 Night of the Living Dead (1968)
## 73980 Angels in the Outfield (1994)
## 74017 Three Caballeros, The (1945)
## 74050 Sword in the Stone, The (1963)
## 74230 Sleepers (1996)
## 74382 Victor/Victoria (1982)
## 74491 Crying Game, The (1992)
## 74661 Christmas Carol, A (1938)
## 74781 Escape from New York (1981)
## 74994 Cook the Thief His Wife & Her Lover, The (1989)
## 75113 Grifters, The (1990)
## 75302 Ran (1985)
## 75367 Quiet Man, The (1952)
## 75576 Glory (1989)
## 75867 Chinatown (1974)
## 76030 Stand by Me (1986)
## 76284 Manchurian Candidate, The (1962)
## 76486 Arsenic and Old Lace (1944)
## 76612 Fried Green Tomatoes (1991)
## 76755 High Noon (1952)
## 76927 Being There (1979)
## 77411 Cat People (1982)
## 77818 Conan the Barbarian (1981)
## 78865 American President, The (1995)
## 79005 Casino (1995)
## 79517 Singin' in the Rain (1952)
## 79724 Sex, Lies, and Videotape (1989)
## 79926 Better Off Dead... (1985)
## 80002 Tin Men (1987)
## 80147 To Die For (1995)
## 80415 First Knight (1995)
## 81022 Dave (1993)
## 81237 Philadelphia (1993)
## 81368 Shadowlands (1993)
## 81441 Sirens (1994)
## 81545 Pretty Woman (1990)
## 82130 Michael Collins (1996)
## 83349 Father of the Bride Part II (1995)
## 83601 Beautiful Girls (1996)
## 84030 Devil in a Blue Dress (1995)
## 84375 Dumb & Dumber (1994)
## 84532 Milk Money (1994)
## 84690 Tommy Boy (1995)
## 84773 Bullets Over Broadway (1994)
## 85189 Program, The (1993)
## 85621 Space Jam (1996)
## 86348 Meet John Doe (1941)
## 87150 My Fellow Americans (1996)
## 87405 Vegas Vacation (1997)
## 89847 Murder in the First (1995)
## 89930 With Honors (1994)
## 90067 Renaissance Man (1994)
## 90152 Fox and the Hound, The (1981)
## 90373 Indian in the Cupboard, The (1995)
## 90957 Mediterraneo (1991)
## 91529 Keys to Tulsa (1997)
## 91677 Stuart Saves His Family (1995)
## 92009 2 Days in the Valley (1996)
## 92822 Grumpier Old Men (1995)
## 93311 Forget Paris (1995)
## 93404 Paper, The (1994)
## 93443 Fearless (1993)
## 93943 War, The (1994)
## 94169 Balto (1995)
## 94725 Pete's Dragon (1977)
## 94781 Live Nude Girls (1995)
## 95051 Beyond Rangoon (1995)
## 95149 Cobb (1994)
## 96347 Cowboy Way, The (1994)
## 96677 Amos & Andrew (1993)
## 96694 Jade (1995)
## 96784 Blue Sky (1994)
## 96939 Higher Learning (1995)
## 98465 Gordy (1995)
## 98468 Swan Princess, The (1994)
## 98475 Harlem (1993)
## 98479 Barbarella (1968)
## 98507 Land Before Time III: The Time of the Great Giving (1995) (V)
## 2717 Postino, Il (1994)
## 6048 Exotica (1994)
## 6094 Ed Wood (1994)
## 7420 Professional, The (1994)
## 8166 Three Colors: Red (1994)
## 8241 Three Colors: Blue (1993)
## 8307 Three Colors: White (1994)
## 9143 Ace Ventura: Pet Detective (1994)
## 12830 Welcome to the Dollhouse (1995)
## 14240 Snow White and the Seven Dwarfs (1937)
## 14487 Fargo (1996)
## 15320 Mystery Science Theater 3000: The Movie (1996)
## 17961 Godfather, The (1972)
## 18648 Wizard of Oz, The (1939)
## 19059 Citizen Kane (1941)
## 19273 2001: A Space Odyssey (1968)
## 20056 Sound of Music, The (1965)
## 21390 Sleeper (1973)
## 21732 Monty Python's Life of Brian (1979)
## 26260 Return of the Jedi (1983)
## 27584 Blues Brothers, The (1980)
## 29964 Nikita (La Femme Nikita) (1990)
## 32643 Room with a View, A (1986)
## 34761 Star Trek VI: The Undiscovered Country (1991)
## 35918 Jaws (1975)
## 36195 Mars Attacks! (1996)
## 37513 Kolya (1996)
## 39533 Contact (1997)
## 40365 Mimic (1997)
## 40489 Hunt for Red October, The (1990)
## 41209 Starship Troopers (1997)
## 41623 Heat (1995)
## 42326 Leaving Las Vegas (1995)
## 46148 Face/Off (1997)
## 46460 Air Force One (1997)
## 47362 Fly Away Home (1996)
## 48283 Titanic (1997)
## 50211 Crash (1996)
## 50346 G.I. Jane (1997)
## 50723 Conspiracy Theory (1997)
## 53222 Spawn (1997)
## 53545 Dangerous Minds (1995)
## 53986 Judge Dredd (1995)
## 54603 Naked Gun 33 1/3: The Final Insult (1994)
## 54885 Addams Family Values (1993)
## 54971 Age of Innocence, The (1993)
## 56627 Spy Hard (1996)
## 57272 Tales from the Crypt Presents: Bordello of Blood (1996)
## 57943 William Shakespeare's Romeo and Juliet (1996)
## 59046 Highlander (1986)
## 59386 Heathers (1989)
## 60644 Grease (1978)
## 61822 Short Cuts (1993)
## 63115 Matilda (1996)
## 64990 It's a Wonderful Life (1946)
## 65981 Streetcar Named Desire, A (1951)
## 66112 People vs. Larry Flynt, The (1996)
## 70162 Heavenly Creatures (1994)
## 71640 Piano, The (1993)
## 72279 Primal Fear (1996)
## 73669 39 Steps, The (1935)
## 74782 Escape from New York (1981)
## 75577 Glory (1989)
## 77629 Volcano (1997)
## 81695 Jane Eyre (1996)
## 82491 Saint, The (1997)
## 82969 Tomorrow Never Dies (1997)
## 83152 Burnt By the Sun (1994)
## 84081 Johnny Mnemonic (1995)
## 84334 Drop Zone (1994)
## 84960 Timecop (1994)
## 85221 Rising Sun (1993)
## 85739 Mulholland Falls (1996)
## 86131 Escape from L.A. (1996)
## 86437 Glimmer Man, The (1996)
## 87729 Excess Baggage (1997)
## 88130 Eve's Bayou (1997)
## 88965 Farewell My Concubine (1993)
## 91251 Maximum Risk (1996)
## 92197 Anaconda (1997)
## 92239 Romy and Michele's High School Reunion (1997)
## 92954 Beverly Hillbillies, The (1993)
## 93834 Dracula: Dead and Loving It (1995)
## 94573 Anne Frank Remembered (1995)
## 94653 Speed 2: Cruise Control (1997)
## 96483 Before the Rain (Pred dozhdot) (1994)
## 97105 Under Siege 2: Dark Territory (1995)
## 98036 Inventing the Abbotts (1997)
## 98446 Specialist, The (1994)
## 98513 Street Fighter (1994)
## 98521 Coldblooded (1995)
## 98522 Next Karate Kid, The (1994)
## 98531 No Escape (1994)
## 98536 Turning, The (1992)
## 98538 Joy Luck Club, The (1993)
## 1427 Babe (1995)
## 2542 Mighty Aphrodite (1995)
## 4245 Birdcage, The (1996)
## 8989 While You Were Sleeping (1995)
## 9144 Ace Ventura: Pet Detective (1994)
## 9732 Four Weddings and a Funeral (1994)
## 12942 Home Alone (1990)
## 15236 Kids in the Hall: Brain Candy (1996)
## 15429 Operation Dumbo Drop (1995)
## 15513 Truth About Cats & Dogs, The (1996)
## 15867 Cold Comfort Farm (1995)
## 21503 Fish Called Wanda, A (1988)
## 24285 Princess Bride, The (1987)
## 30585 Groundhog Day (1993)
## 36845 Raising Arizona (1987)
## 37514 Kolya (1996)
## 38648 Shall We Dance? (1996)
## 39174 Men in Black (1997)
## 40790 Full Monty, The (1997)
## 43583 Secrets & Lies (1996)
## 43809 English Patient, The (1996)
## 44210 Marvin's Room (1996)
## 47593 Mrs. Brown (Her Majesty, Mrs. Brown) (1997)
## 51871 Boogie Nights (1997)
## 54366 Muriel's Wedding (1994)
## 54472 Adventures of Priscilla, Queen of the Desert, The (1994)
## 55246 Mrs. Doubtfire (1993)
## 57041 Nutty Professor, The (1996)
## 58731 Harold and Maude (1971)
## 71528 Englishman Who Went Up a Hill, But Came Down a Mountain, The (1995)
## 76031 Stand by Me (1986)
## 76928 Being There (1979)
## 78866 American President, The (1995)
## 83602 Beautiful Girls (1996)
## 86615 That Thing You Do! (1996)
## 91809 Waiting for Guffman (1996)
## 92666 Fast, Cheap & Out of Control (1997)
## 95260 Up in Smoke (1978)
## 97293 Van, The (1996)
## 471 GoldenEye (1995)
## 705 Get Shorty (1995)
## 2041 Seven (Se7en) (1995)
## 3573 Braveheart (1995)
## 4894 Batman Forever (1995)
## 5280 Desperado (1995)
## 5419 Net, The (1995)
## 5532 Strange Days (1995)
## 6518 Star Wars (1977)
## 7421 Professional, The (1994)
## 7622 Pulp Fiction (1994)
## 8379 Stargate (1994)
## 9247 Crow, The (1994)
## 10731 Fugitive, The (1993)
## 11223 Jurassic Park (1993)
## 12241 Blade Runner (1982)
## 12716 True Romance (1993)
## 13328 Terminator 2: Judgment Day (1991)
## 17962 Godfather, The (1972)
## 22523 Top Gun (1986)
## 23925 Empire Strikes Back, The (1980)
## 24629 Raiders of the Lost Ark (1981)
## 25230 Aliens (1986)
## 25487 Good, The Bad and The Ugly, The (1966)
## 26261 Return of the Jedi (1983)
## 26715 GoodFellas (1990)
## 26945 Alien (1979)
## 27208 Army of Darkness (1993)
## 27834 Godfather: Part II, The (1974)
## 28029 Full Metal Jacket (1987)
## 28264 Henry V (1989)
## 29213 Terminator, The (1984)
## 32046 Indiana Jones and the Last Crusade (1989)
## 34590 Die Hard 2 (1990)
## 34762 Star Trek VI: The Undiscovered Country (1991)
## 34936 Star Trek: The Wrath of Khan (1982)
## 35168 Star Trek III: The Search for Spock (1984)
## 35344 Star Trek IV: The Voyage Home (1986)
## 35527 Batman Returns (1992)
## 35662 Young Guns (1988)
## 35768 Under Siege (1992)
## 37388 Last of the Mohicans, The (1992)
## 37834 Devil's Own, The (1997)
## 39534 Contact (1997)
## 39968 George of the Jungle (1997)
## 40490 Hunt for Red October, The (1990)
## 41210 Starship Troopers (1997)
## 41424 Good Will Hunting (1997)
## 43810 English Patient, The (1996)
## 44366 Scream (1996)
## 44800 Evita (1996)
## 45592 Liar Liar (1997)
## 46461 Air Force One (1997)
## 47101 L.A. Confidential (1997)
## 47594 Mrs. Brown (Her Majesty, Mrs. Brown) (1997)
## 47705 Devil's Advocate, The (1997)
## 48073 Wings of the Dove, The (1997)
## 48284 Titanic (1997)
## 48752 As Good As It Gets (1997)
## 49472 Mother (1996)
## 49642 Murder at 1600 (1997)
## 49865 Dante's Peak (1997)
## 50347 G.I. Jane (1997)
## 50724 Conspiracy Theory (1997)
## 51181 Kiss the Girls (1997)
## 51347 Game, The (1997)
## 51872 Boogie Nights (1997)
## 52214 Apostle, The (1997)
## 52352 Jackie Brown (1997)
## 52480 Wag the Dog (1997)
## 52744 Wedding Singer, The (1998)
## 53382 Blues Brothers 2000 (1998)
## 53987 Judge Dredd (1995)
## 54699 True Lies (1994)
## 55578 Three Musketeers, The (1993)
## 55955 Batman (1989)
## 59047 Highlander (1986)
## 59627 Butch Cassidy and the Sundance Kid (1969)
## 60457 Star Trek: The Motion Picture (1979)
## 66421 Magnificent Seven, The (1954)
## 66552 Lawrence of Arabia (1962)
## 67032 Boot, Das (1981)
## 67375 Miller's Crossing (1990)
## 68104 Ben-Hur (1959)
## 68634 Man Who Would Be King, The (1975)
## 68979 Anastasia (1997)
## 69749 Die Hard: With a Vengeance (1995)
## 70027 Waterworld (1995)
## 70595 Clear and Present Danger (1994)
## 70823 Speed (1994)
## 71083 Wyatt Earp (1994)
## 71287 Cliffhanger (1993)
## 71418 Demolition Man (1993)
## 71939 Terminal Velocity (1994)
## 75578 Glory (1989)
## 77088 Alien 3 (1992)
## 77630 Volcano (1997)
## 77819 Conan the Barbarian (1981)
## 78119 In the Line of Fire (1993)
## 78540 Leave It to Beaver (1997)
## 78695 Seven Years in Tibet (1997)
## 80416 First Knight (1995)
## 82492 Saint, The (1997)
## 82830 Amistad (1997)
## 82970 Tomorrow Never Dies (1997)
## 84031 Devil in a Blue Dress (1995)
## 84335 Drop Zone (1994)
## 85047 Hard Target (1993)
## 85190 Program, The (1993)
## 86866 Days of Thunder (1990)
## 87829 Peacemaker, The (1997)
## 87957 Soul Food (1997)
## 88364 Scream 2 (1997)
## 90206 Big Blue, The (Grand bleu, Le) (1988)
## 97009 Judgment Night (1993)
## 97106 Under Siege 2: Dark Territory (1995)
## 98541 Highlander III: The Sorcerer (1994)
## 98557 Gilligan's Island: The Movie (1998)
## 88 Toy Story (1995)
## 706 Get Shorty (1995)
## 978 Shanghai Triad (Yao a yao yao dao waipo qiao) (1995)
## 1086 Twelve Monkeys (1995)
## 2042 Seven (Se7en) (1995)
## 2929 Mr. Holland's Opus (1995)
## 3851 Taxi Driver (1976)
## 4036 Rumble in the Bronx (1995)
## 4246 Birdcage, The (1996)
## 4550 Bad Boys (1995)
## 5055 Crimson Tide (1995)
## 5281 Desperado (1995)
## 6519 Star Wars (1977)
## 7006 Legends of the Fall (1994)
## 7422 Professional, The (1994)
## 7623 Pulp Fiction (1994)
## 7999 Quiz Show (1994)
## 8623 Shawshank Redemption, The (1994)
## 8864 What's Eating Gilbert Grape (1993)
## 9424 Forrest Gump (1994)
## 9733 Four Weddings and a Funeral (1994)
## 9969 Lion King, The (1994)
## 10304 Maverick (1994)
## 10732 Fugitive, The (1993)
## 11080 Hudsucker Proxy, The (1994)
## 11224 Jurassic Park (1993)
## 12242 Blade Runner (1982)
## 12831 Welcome to the Dollhouse (1995)
## 13086 Aladdin (1992)
## 13329 Terminator 2: Judgment Day (1991)
## 13610 Dances with Wolves (1990)
## 13901 Silence of the Lambs, The (1991)
## 14488 Fargo (1996)
## 14905 Heavy Metal (1981)
## 15237 Kids in the Hall: Brain Candy (1996)
## 16029 Rock, The (1996)
## 16401 Twister (1996)
## 16795 Independence Day (ID4) (1996)
## 17154 Cable Guy, The (1996)
## 17963 Godfather, The (1972)
## 18304 Supercop (1992)
## 18528 Breakfast at Tiffany's (1961)
## 18649 Wizard of Oz, The (1939)
## 19274 2001: A Space Odyssey (1968)
## 19624 Big Night (1996)
## 20057 Sound of Music, The (1965)
## 20763 Ghost and the Darkness, The (1996)
## 21111 Willy Wonka and the Chocolate Factory (1971)
## 21504 Fish Called Wanda, A (1988)
## 21733 Monty Python's Life of Brian (1979)
## 22003 Reservoir Dogs (1992)
## 22524 Top Gun (1986)
## 22921 Abyss, The (1989)
## 23293 Monty Python and the Holy Grail (1974)
## 23926 Empire Strikes Back, The (1980)
## 24286 Princess Bride, The (1987)
## 24630 Raiders of the Lost Ark (1981)
## 25019 Brazil (1985)
## 25231 Aliens (1986)
## 25755 Clockwork Orange, A (1971)
## 25979 Apocalypse Now (1979)
## 26262 Return of the Jedi (1983)
## 26716 GoodFellas (1990)
## 26946 Alien (1979)
## 27209 Army of Darkness (1993)
## 27349 Psycho (1960)
## 27585 Blues Brothers, The (1980)
## 27835 Godfather: Part II, The (1974)
## 28030 Full Metal Jacket (1987)
## 28418 Amadeus (1984)
## 28784 Right Stuff, The (1983)
## 29214 Terminator, The (1984)
## 29501 Dead Poets Society (1989)
## 29749 Graduate, The (1967)
## 29965 Nikita (La Femme Nikita) (1990)
## 30271 Shining, The (1980)
## 30464 Evil Dead II (1987)
## 30847 Unforgiven (1992)
## 31056 Back to the Future (1985)
## 31629 Young Frankenstein (1974)
## 32047 Indiana Jones and the Last Crusade (1989)
## 32768 Pink Floyd - The Wall (1982)
## 32904 Field of Dreams (1989)
## 33136 When Harry Met Sally... (1989)
## 33386 Bram Stoker's Dracula (1992)
## 33513 Cape Fear (1991)
## 33986 Star Trek: First Contact (1996)
## 34937 Star Trek: The Wrath of Khan (1982)
## 35169 Star Trek III: The Search for Spock (1984)
## 35345 Star Trek IV: The Voyage Home (1986)
## 35919 Jaws (1975)
## 36492 Jerry Maguire (1996)
## 36846 Raising Arizona (1987)
## 37389 Last of the Mohicans, The (1992)
## 38178 Grosse Pointe Blank (1997)
## 38334 Austin Powers: International Man of Mystery (1997)
## 39535 Contact (1997)
## 40491 Hunt for Red October, The (1990)
## 42327 Leaving Las Vegas (1995)
## 42737 Up Close and Personal (1996)
## 45127 Absolute Power (1997)
## 46149 Face/Off (1997)
## 46462 Air Force One (1997)
## 48999 Schindler's List (1993)
## 49866 Dante's Peak (1997)
## 52107 Alien: Resurrection (1997)
## 52856 Client, The (1994)
## 52981 One Flew Over the Cuckoo's Nest (1975)
## 53617 Clueless (1995)
## 53797 Black Sheep (1996)
## 54367 Muriel's Wedding (1994)
## 54473 Adventures of Priscilla, Queen of the Desert, The (1994)
## 54700 True Lies (1994)
## 55779 Ghost (1990)
## 55956 Batman (1989)
## 56297 Mission: Impossible (1996)
## 56871 Kingpin (1996)
## 57042 Nutty Professor, The (1996)
## 58109 E.T. the Extra-Terrestrial (1982)
## 58527 To Kill a Mockingbird (1962)
## 58732 Harold and Maude (1971)
## 58848 Day the Earth Stood Still, The (1951)
## 59048 Highlander (1986)
## 59387 Heathers (1989)
## 59530 Forbidden Planet (1956)
## 60248 Carrie (1976)
## 60906 Jackie Chan's First Strike (1996)
## 61343 Like Water For Chocolate (Como agua para chocolate) (1992)
## 61896 Tombstone (1993)
## 62530 Dr. Strangelove or: How I Learned to Stop Worrying and Love the Bomb (1963)
## 62736 Trainspotting (1996)
## 63507 North by Northwest (1959)
## 65276 African Queen, The (1951)
## 65487 Dumbo (1941)
## 66296 My Left Foot (1989)
## 66553 Lawrence of Arabia (1962)
## 67376 Miller's Crossing (1990)
## 68105 Ben-Hur (1959)
## 68245 Gandhi (1982)
## 68724 Shine (1996)
## 69648 Rob Roy (1995)
## 70242 Interview with the Vampire (1994)
## 70824 Speed (1994)
## 71560 Kalifornia (1993)
## 74383 Victor/Victoria (1982)
## 74492 Crying Game, The (1992)
## 74783 Escape from New York (1981)
## 74995 Cook the Thief His Wife & Her Lover, The (1989)
## 75579 Glory (1989)
## 75735 Rosencrantz and Guildenstern Are Dead (1990)
## 75868 Chinatown (1974)
## 76032 Stand by Me (1986)
## 76402 Pump Up the Volume (1990)
## 76613 Fried Green Tomatoes (1991)
## 77332 Cape Fear (1962)
## 77953 I Know What You Did Last Summer (1997)
## 78120 In the Line of Fire (1993)
## 78696 Seven Years in Tibet (1997)
## 78867 American President, The (1995)
## 79006 Casino (1995)
## 79653 Enchanted April (1991)
## 80749 Immortal Beloved (1994)
## 82231 Real Genius (1985)
## 82493 Saint, The (1997)
## 83724 Happy Gilmore (1996)
## 85622 Space Jam (1996)
## 85740 Mulholland Falls (1996)
## 85805 Great White Hype, The (1996)
## 87406 Vegas Vacation (1997)
## 89049 Raise the Red Lantern (1991)
## 89848 Murder in the First (1995)
## 89980 What's Love Got to Do with It (1993)
## 90603 Dazed and Confused (1993)
## 91189 Trigger Effect, The (1996)
## 92240 Romy and Michele's High School Reunion (1997)
## 94800 Thin Line Between Love and Hate, A (1996)
## 95243 Surviving Picasso (1996)
## 95795 When We Were Kings (1996)
## 96172 Fresh (1994)
## 97316 Metro (1997)
## 97350 Gridlock'd (1997)
## 89 Toy Story (1995)
## 1087 Twelve Monkeys (1995)
## 1671 Dead Man Walking (1995)
## 2718 Postino, Il (1994)
## 12832 Welcome to the Dollhouse (1995)
## 14489 Fargo (1996)
## 15514 Truth About Cats & Dogs, The (1996)
## 15868 Cold Comfort Farm (1995)
## 16030 Rock, The (1996)
## 33851 Breaking the Waves (1996)
## 37515 Kolya (1996)
## 37633 Jungle2Jungle (1997)
## 39536 Contact (1997)
## 39969 George of the Jungle (1997)
## 40791 Full Monty, The (1997)
## 42328 Leaving Las Vegas (1995)
## 43584 Secrets & Lies (1996)
## 43811 English Patient, The (1996)
## 45593 Liar Liar (1997)
## 48285 Titanic (1997)
## 49643 Murder at 1600 (1997)
## 49867 Dante's Peak (1997)
## 50081 Lost Highway (1997)
## 56298 Mission: Impossible (1996)
## 56679 Close Shave, A (1995)
## 62393 James and the Giant Peach (1996)
## 62737 Trainspotting (1996)
## 66113 People vs. Larry Flynt, The (1996)
## 69050 Mouse Hunt (1997)
## 77631 Volcano (1997)
## 78473 McHale's Navy (1997)
## 82971 Tomorrow Never Dies (1997)
## 85357 Celluloid Closet, The (1995)
## 88272 Flubber (1997)
## 90230 Booty Call (1997)
## 91392 Beautician and the Beast, The (1997)
## 91464 Cats Don't Dance (1997)
## 98094 Boys (1996)
## 98196 Venice/Venice (1992)
## 90 Toy Story (1995)
## 472 GoldenEye (1995)
## 1088 Twelve Monkeys (1995)
## 1428 Babe (1995)
## 1672 Dead Man Walking (1995)
## 2043 Seven (Se7en) (1995)
## 2930 Mr. Holland's Opus (1995)
## 3574 Braveheart (1995)
## 4037 Rumble in the Bronx (1995)
## 4247 Birdcage, The (1996)
## 4656 Apollo 13 (1995)
## 4895 Batman Forever (1995)
## 5282 Desperado (1995)
## 5420 Net, The (1995)
## 5852 Disclosure (1994)
## 5978 Eat Drink Man Woman (1994)
## 6228 Hoop Dreams (1994)
## 6520 Star Wars (1977)
## 7307 Outbreak (1995)
## 7624 Pulp Fiction (1994)
## 8000 Quiz Show (1994)
## 8380 Stargate (1994)
## 8498 Santa Clause, The (1994)
## 9248 Crow, The (1994)
## 9425 Forrest Gump (1994)
## 9970 Lion King, The (1994)
## 10173 Mask, The (1994)
## 10733 Fugitive, The (1993)
## 11225 Jurassic Park (1993)
## 12011 Sleepless in Seattle (1993)
## 12243 Blade Runner (1982)
## 12584 Nightmare Before Christmas, The (1993)
## 12943 Home Alone (1990)
## 13087 Aladdin (1992)
## 13330 Terminator 2: Judgment Day (1991)
## 13902 Silence of the Lambs, The (1991)
## 14241 Snow White and the Seven Dwarfs (1937)
## 15026 All Dogs Go to Heaven 2 (1996)
## 15194 Moll Flanders (1996)
## 15729 Flipper (1996)
## 16031 Rock, The (1996)
## 16402 Twister (1996)
## 16796 Independence Day (ID4) (1996)
## 17263 Frighteners, The (1996)
## 17589 Phenomenon (1996)
## 18650 Wizard of Oz, The (1939)
## 19275 2001: A Space Odyssey (1968)
## 19783 Love Bug, The (1969)
## 19835 Homeward Bound: The Incredible Journey (1993)
## 19897 20,000 Leagues Under the Sea (1954)
## 20058 Sound of Music, The (1965)
## 20592 Long Kiss Goodnight, The (1996)
## 20764 Ghost and the Darkness, The (1996)
## 21112 Willy Wonka and the Chocolate Factory (1971)
## 22525 Top Gun (1986)
## 23574 Wrong Trousers, The (1993)
## 23927 Empire Strikes Back, The (1980)
## 24287 Princess Bride, The (1987)
## 24631 Raiders of the Lost Ark (1981)
## 25232 Aliens (1986)
## 25488 Good, The Bad and The Ugly, The (1966)
## 25756 Clockwork Orange, A (1971)
## 26947 Alien (1979)
## 28031 Full Metal Jacket (1987)
## 28419 Amadeus (1984)
## 28785 Right Stuff, The (1983)
## 29215 Terminator, The (1984)
## 29502 Dead Poets Society (1989)
## 30586 Groundhog Day (1993)
## 31057 Back to the Future (1985)
## 31362 Patton (1970)
## 31630 Young Frankenstein (1974)
## 32048 Indiana Jones and the Last Crusade (1989)
## 32905 Field of Dreams (1989)
## 33514 Cape Fear (1991)
## 33987 Star Trek: First Contact (1996)
## 34484 101 Dalmatians (1996)
## 34591 Die Hard 2 (1990)
## 34763 Star Trek VI: The Undiscovered Country (1991)
## 34938 Star Trek: The Wrath of Khan (1982)
## 35170 Star Trek III: The Search for Spock (1984)
## 35346 Star Trek IV: The Voyage Home (1986)
## 35528 Batman Returns (1992)
## 35920 Jaws (1975)
## 36196 Mars Attacks! (1996)
## 37074 Sneakers (1992)
## 37390 Last of the Mohicans, The (1992)
## 37634 Jungle2Jungle (1997)
## 37835 Devil's Own, The (1997)
## 39537 Contact (1997)
## 40492 Hunt for Red October, The (1990)
## 42329 Leaving Las Vegas (1995)
## 42738 Up Close and Personal (1996)
## 42993 Time to Kill, A (1996)
## 43812 English Patient, The (1996)
## 44367 Scream (1996)
## 45128 Absolute Power (1997)
## 45594 Liar Liar (1997)
## 47363 Fly Away Home (1996)
## 48286 Titanic (1997)
## 49000 Schindler's List (1993)
## 49868 Dante's Peak (1997)
## 50212 Crash (1996)
## 52982 One Flew Over the Cuckoo's Nest (1975)
## 53223 Spawn (1997)
## 53416 Sudden Death (1995)
## 53496 Powder (1995)
## 53988 Judge Dredd (1995)
## 54104 Miracle on 34th Street (1994)
## 54254 Star Trek: Generations (1994)
## 54701 True Lies (1994)
## 55095 Last Action Hero (1993)
## 55161 Man Without a Face, The (1993)
## 55247 Mrs. Doubtfire (1993)
## 55687 Brady Bunch Movie, The (1995)
## 55780 Ghost (1990)
## 56299 Mission: Impossible (1996)
## 56787 Jack (1996)
## 56872 Kingpin (1996)
## 57043 Nutty Professor, The (1996)
## 57690 Mary Poppins (1964)
## 57855 Alice in Wonderland (1951)
## 58110 E.T. the Extra-Terrestrial (1982)
## 58849 Day the Earth Stood Still, The (1951)
## 59049 Highlander (1986)
## 59205 Fantasia (1940)
## 60017 Birds, The (1963)
## 60249 Carrie (1976)
## 60458 Star Trek: The Motion Picture (1979)
## 60645 Grease (1978)
## 60907 Jackie Chan's First Strike (1996)
## 61344 Like Water For Chocolate (Como agua para chocolate) (1992)
## 61578 Jungle Book, The (1994)
## 61897 Tombstone (1993)
## 62239 Dragonheart (1996)
## 62394 James and the Giant Peach (1996)
## 63209 Philadelphia Story, The (1940)
## 63886 Casablanca (1942)
## 64904 Around the World in 80 Days (1956)
## 64991 It's a Wonderful Life (1946)
## 65488 Dumbo (1941)
## 66297 My Left Foot (1989)
## 67033 Boot, Das (1981)
## 67833 Cool Hand Luke (1967)
## 68246 Gandhi (1982)
## 68424 Killing Fields, The (1984)
## 69182 Pocahontas (1995)
## 69381 Broken Arrow (1996)
## 69649 Rob Roy (1995)
## 69908 Species (1995)
## 70243 Interview with the Vampire (1994)
## 70360 Kid in King Arthur's Court, A (1995)
## 70825 Speed (1994)
## 71084 Wyatt Earp (1994)
## 71288 Cliffhanger (1993)
## 71419 Demolition Man (1993)
## 71529 Englishman Who Went Up a Hill, But Came Down a Mountain, The (1995)
## 71641 Piano, The (1993)
## 71826 Secret Garden, The (1993)
## 71940 Terminal Velocity (1994)
## 72019 Beauty and the Beast (1991)
## 72544 Hunchback of Notre Dame, The (1996)
## 72684 Eraser (1996)
## 73416 Father of the Bride (1950)
## 73943 Swiss Family Robinson (1960)
## 75736 Rosencrantz and Guildenstern Are Dead (1990)
## 76614 Fried Green Tomatoes (1991)
## 77089 Alien 3 (1992)
## 77333 Cape Fear (1962)
## 77412 Cat People (1982)
## 77820 Conan the Barbarian (1981)
## 78287 Executive Decision (1996)
## 78868 American President, The (1995)
## 80297 Juror, The (1996)
## 80417 First Knight (1995)
## 81546 Pretty Woman (1990)
## 81858 Ransom (1996)
## 82078 Crow: City of Angels, The (1996)
## 82494 Saint, The (1997)
## 83244 Jumanji (1995)
## 83350 Father of the Bride Part II (1995)
## 83466 Lawnmower Man 2: Beyond Cyberspace (1996)
## 83501 Screamers (1995)
## 83933 Casper (1995)
## 84082 Johnny Mnemonic (1995)
## 85048 Hard Target (1993)
## 85323 Andre (1994)
## 85623 Space Jam (1996)
## 85947 Phantom, The (1996)
## 86132 Escape from L.A. (1996)
## 86384 Last Man Standing (1996)
## 86438 Glimmer Man, The (1996)
## 87249 Michael (1996)
## 88215 Mortal Kombat: Annihilation (1997)
## 88273 Flubber (1997)
## 89112 White Squall (1996)
## 89438 Harriet the Spy (1996)
## 89490 Chain Reaction (1996)
## 89564 Island of Dr. Moreau, The (1996)
## 89680 Preacher's Wife, The (1996)
## 90374 Indian in the Cupboard, The (1995)
## 91252 Maximum Risk (1996)
## 91294 Shadow Conspiracy (1997)
## 92823 Grumpier Old Men (1995)
## 93003 Homeward Bound II: Lost in San Francisco (1996)
## 93031 Quest, The (1996)
## 93724 House Arrest (1996)
## 93998 Adventures of Pinocchio, The (1996)
## 94317 Shallow Grave (1994)
## 94726 Pete's Dragon (1977)
## 95730 Hackers (1995)
## 96857 Assassins (1995)
## 96918 Goofy Movie, A (1995)
## 97107 Under Siege 2: Dark Territory (1995)
## 98480 Barbarella (1968)
## 98542 Highlander III: The Sorcerer (1994)
## 91 Toy Story (1995)
## 473 GoldenEye (1995)
## 707 Get Shorty (1995)
## 1089 Twelve Monkeys (1995)
## 1429 Babe (1995)
## 1673 Dead Man Walking (1995)
## 1921 Richard III (1995)
## 2044 Seven (Se7en) (1995)
## 2281 Usual Suspects, The (1995)
## 2931 Mr. Holland's Opus (1995)
## 3210 From Dusk Till Dawn (1996)
## 3380 Angels and Insects (1995)
## 3575 Braveheart (1995)
## 3852 Taxi Driver (1976)
## 4248 Birdcage, The (1996)
## 4479 Brothers McMullen, The (1995)
## 4551 Bad Boys (1995)
## 4657 Apollo 13 (1995)
## 4896 Batman Forever (1995)
## 5056 Crimson Tide (1995)
## 5201 Crumb (1994)
## 5283 Desperado (1995)
## 5378 Mad Love (1995)
## 5391 Nadja (1994)
## 5533 Strange Days (1995)
## 5726 Clerks (1994)
## 5979 Eat Drink Man Woman (1994)
## 6049 Exotica (1994)
## 6095 Ed Wood (1994)
## 6229 Hoop Dreams (1994)
## 6521 Star Wars (1977)
## 7007 Legends of the Fall (1994)
## 7178 Natural Born Killers (1994)
## 7423 Professional, The (1994)
## 7625 Pulp Fiction (1994)
## 7942 Priest (1994)
## 8001 Quiz Show (1994)
## 8167 Three Colors: Red (1994)
## 8308 Three Colors: White (1994)
## 8381 Stargate (1994)
## 8624 Shawshank Redemption, The (1994)
## 8865 What's Eating Gilbert Grape (1993)
## 9249 Crow, The (1994)
## 9426 Forrest Gump (1994)
## 9734 Four Weddings and a Funeral (1994)
## 9971 Lion King, The (1994)
## 10428 Carlito's Way (1993)
## 10506 Firm, The (1993)
## 10734 Fugitive, The (1993)
## 11081 Hudsucker Proxy, The (1994)
## 11226 Jurassic Park (1993)
## 11715 Remains of the Day, The (1993)
## 11863 Searching for Bobby Fischer (1993)
## 12244 Blade Runner (1982)
## 12717 True Romance (1993)
## 12833 Welcome to the Dollhouse (1995)
## 13088 Aladdin (1992)
## 13331 Terminator 2: Judgment Day (1991)
## 13611 Dances with Wolves (1990)
## 13903 Silence of the Lambs, The (1991)
## 14242 Snow White and the Seven Dwarfs (1937)
## 14490 Fargo (1996)
## 15869 Cold Comfort Farm (1995)
## 16032 Rock, The (1996)
## 16403 Twister (1996)
## 16797 Independence Day (ID4) (1996)
## 17264 Frighteners, The (1996)
## 17396 Lone Star (1996)
## 17590 Phenomenon (1996)
## 17964 Godfather, The (1972)
## 18305 Supercop (1992)
## 18382 Bound (1996)
## 19060 Citizen Kane (1941)
## 19625 Big Night (1996)
## 20281 Die Hard (1988)
## 20491 Lawnmower Man, The (1992)
## 20547 Unhook the Stars (1996)
## 20765 Ghost and the Darkness, The (1996)
## 20921 Swingers (1996)
## 22004 Reservoir Dogs (1992)
## 22146 Platoon (1986)
## 22428 Glengarry Glen Ross (1992)
## 22922 Abyss, The (1989)
## 23805 Delicatessen (1991)
## 23928 Empire Strikes Back, The (1980)
## 24288 Princess Bride, The (1987)
## 24632 Raiders of the Lost Ark (1981)
## 25020 Brazil (1985)
## 25233 Aliens (1986)
## 25757 Clockwork Orange, A (1971)
## 25980 Apocalypse Now (1979)
## 26263 Return of the Jedi (1983)
## 26717 GoodFellas (1990)
## 26948 Alien (1979)
## 27210 Army of Darkness (1993)
## 27350 Psycho (1960)
## 27586 Blues Brothers, The (1980)
## 27836 Godfather: Part II, The (1974)
## 28032 Full Metal Jacket (1987)
## 28265 Henry V (1989)
## 28420 Amadeus (1984)
## 28660 Raging Bull (1980)
## 28786 Right Stuff, The (1983)
## 29216 Terminator, The (1984)
## 29503 Dead Poets Society (1989)
## 29750 Graduate, The (1967)
## 29966 Nikita (La Femme Nikita) (1990)
## 30272 Shining, The (1980)
## 30465 Evil Dead II (1987)
## 30587 Groundhog Day (1993)
## 30848 Unforgiven (1992)
## 31058 Back to the Future (1985)
## 31485 Akira (1988)
## 31537 Cyrano de Bergerac (1990)
## 31840 This Is Spinal Tap (1984)
## 32049 Indiana Jones and the Last Crusade (1989)
## 32360 M*A*S*H (1970)
## 32544 Unbearable Lightness of Being, The (1988)
## 32644 Room with a View, A (1986)
## 32906 Field of Dreams (1989)
## 33137 When Harry Met Sally... (1989)
## 33387 Bram Stoker's Dracula (1992)
## 33515 Cape Fear (1991)
## 33676 Nightmare on Elm Street, A (1984)
## 33852 Breaking the Waves (1996)
## 33988 Star Trek: First Contact (1996)
## 34299 Sling Blade (1996)
## 34592 Die Hard 2 (1990)
## 34764 Star Trek VI: The Undiscovered Country (1991)
## 34939 Star Trek: The Wrath of Khan (1982)
## 35347 Star Trek IV: The Voyage Home (1986)
## 35529 Batman Returns (1992)
## 35663 Young Guns (1988)
## 35769 Under Siege (1992)
## 35921 Jaws (1975)
## 36493 Jerry Maguire (1996)
## 36847 Raising Arizona (1987)
## 37075 Sneakers (1992)
## 37233 Beavis and Butt-head Do America (1996)
## 37391 Last of the Mohicans, The (1992)
## 37516 Kolya (1996)
## 39538 Contact (1997)
## 40124 Event Horizon (1997)
## 40493 Hunt for Red October, The (1990)
## 40792 Full Monty, The (1997)
## 41211 Starship Troopers (1997)
## 41425 Good Will Hunting (1997)
## 41624 Heat (1995)
## 42042 Sense and Sensibility (1995)
## 42330 Leaving Las Vegas (1995)
## 42836 River Wild, The (1994)
## 42994 Time to Kill, A (1996)
## 43396 Tin Cup (1996)
## 43585 Secrets & Lies (1996)
## 43813 English Patient, The (1996)
## 44368 Scream (1996)
## 44801 Evita (1996)
## 45252 Rosewood (1997)
## 47102 L.A. Confidential (1997)
## 47364 Fly Away Home (1996)
## 48287 Titanic (1997)
## 48600 Apt Pupil (1998)
## 48863 In the Name of the Father (1993)
## 49001 Schindler's List (1993)
## 49277 Everyone Says I Love You (1996)
## 49473 Mother (1996)
## 50082 Lost Highway (1997)
## 50213 Crash (1996)
## 50348 G.I. Jane (1997)
## 51065 Edge, The (1997)
## 51182 Kiss the Girls (1997)
## 51348 Game, The (1997)
## 51559 U Turn (1997)
## 51873 Boogie Nights (1997)
## 52353 Jackie Brown (1997)
## 52983 One Flew Over the Cuckoo's Nest (1975)
## 53224 Spawn (1997)
## 53546 Dangerous Minds (1995)
## 53850 Mary Reilly (1996)
## 54032 Showgirls (1995)
## 54198 Tales From the Crypt Presents: Demon Knight (1995)
## 54255 Star Trek: Generations (1994)
## 54368 Muriel's Wedding (1994)
## 54702 True Lies (1994)
## 54972 Age of Innocence, The (1993)
## 55484 Serial Mom (1994)
## 55781 Ghost (1990)
## 55957 Batman (1989)
## 56300 Mission: Impossible (1996)
## 56578 Thinner (1996)
## 56680 Close Shave, A (1995)
## 57273 Tales from the Crypt Presents: Bordello of Blood (1996)
## 57944 William Shakespeare's Romeo and Juliet (1996)
## 58111 E.T. the Extra-Terrestrial (1982)
## 58392 Bob Roberts (1992)
## 59050 Highlander (1986)
## 59206 Fantasia (1940)
## 59628 Butch Cassidy and the Sundance Kid (1969)
## 59818 American Werewolf in London, An (1981)
## 59909 Amityville 3-D (1983)
## 59921 Amityville II: The Possession (1982)
## 59938 Amityville Horror, The (1979)
## 60018 Birds, The (1963)
## 60250 Carrie (1976)
## 60362 Omen, The (1976)
## 60794 Jaws 2 (1978)
## 60870 Bastard Out of Carolina (1996)
## 60908 Jackie Chan's First Strike (1996)
## 61122 Nixon (1995)
## 61251 Smoke (1995)
## 61345 Like Water For Chocolate (Como agua para chocolate) (1992)
## 61543 Vanya on 42nd Street (1994)
## 61660 Red Rock West (1992)
## 61707 Bronx Tale, A (1993)
## 61755 Rudy (1993)
## 61823 Short Cuts (1993)
## 62031 Courage Under Fire (1996)
## 62395 James and the Giant Peach (1996)
## 62738 Trainspotting (1996)
## 63327 Vertigo (1958)
## 63508 North by Northwest (1959)
## 63738 Some Like It Hot (1959)
## 63887 Casablanca (1942)
## 65816 Dial M for Murder (1954)
## 65887 Rebel Without a Cause (1955)
## 66114 People vs. Larry Flynt, The (1996)
## 66298 My Left Foot (1989)
## 66554 Lawrence of Arabia (1962)
## 66762 Third Man, The (1949)
## 66855 Annie Hall (1977)
## 67034 Boot, Das (1981)
## 67377 Miller's Crossing (1990)
## 67666 Deer Hunter, The (1978)
## 68247 Gandhi (1982)
## 68725 Shine (1996)
## 68945 My Own Private Idaho (1991)
## 69259 Things to Do in Denver when You're Dead (1995)
## 69382 Broken Arrow (1996)
## 69650 Rob Roy (1995)
## 69883 Lord of Illusions (1995)
## 70124 Wild Bill (1995)
## 70163 Heavenly Creatures (1994)
## 70244 Interview with the Vampire (1994)
## 70491 Stephen King's The Langoliers (1995)
## 70596 Clear and Present Danger (1994)
## 70750 Wes Craven's New Nightmare (1994)
## 70826 Speed (1994)
## 71420 Demolition Man (1993)
## 71561 Kalifornia (1993)
## 71642 Piano, The (1993)
## 71786 Romeo Is Bleeding (1993)
## 71971 Hour of the Pig, The (1993)
## 72020 Beauty and the Beast (1991)
## 72191 Wild Bunch, The (1969)
## 72233 Hellraiser: Bloodline (1996)
## 72280 Primal Fear (1996)
## 72545 Hunchback of Notre Dame, The (1996)
## 72685 Eraser (1996)
## 72959 Rear Window (1954)
## 73316 Rebecca (1940)
## 74493 Crying Game, The (1992)
## 74784 Escape from New York (1981)
## 74865 Howling, The (1981)
## 74996 Cook the Thief His Wife & Her Lover, The (1989)
## 75114 Grifters, The (1990)
## 75197 Thin Blue Line, The (1988)
## 75431 Once Upon a Time in America (1984)
## 75580 Glory (1989)
## 75869 Chinatown (1974)
## 76033 Stand by Me (1986)
## 76224 M (1931)
## 76403 Pump Up the Volume (1990)
## 76615 Fried Green Tomatoes (1991)
## 77090 Alien 3 (1992)
## 77178 Audrey Rose (1977)
## 77264 Candyman (1992)
## 77334 Cape Fear (1962)
## 77518 Crucible, The (1996)
## 77821 Conan the Barbarian (1981)
## 77954 I Know What You Did Last Summer (1997)
## 78121 In the Line of Fire (1993)
## 78288 Executive Decision (1996)
## 78420 Perfect World, A (1993)
## 78869 American President, The (1995)
## 79007 Casino (1995)
## 79133 Kicking and Screaming (1995)
## 79228 Basketball Diaries, The (1995)
## 79292 Little Women (1994)
## 79411 Barcelona (1994)
## 79518 Singin' in the Rain (1952)
## 79725 Sex, Lies, and Videotape (1989)
## 80148 To Die For (1995)
## 80866 Nell (1994)
## 81176 Go Fish (1994)
## 81238 Philadelphia (1993)
## 81442 Sirens (1994)
## 82355 Benny & Joon (1993)
## 82831 Amistad (1997)
## 82972 Tomorrow Never Dies (1997)
## 83918 Addiction, The (1995)
## 84032 Devil in a Blue Dress (1995)
## 84124 Kids (1995)
## 84169 Mute Witness (1994)
## 84189 Prophecy, The (1995)
## 84251 Castle Freak (1995)
## 84641 Swimming with Sharks (1995)
## 84774 Bullets Over Broadway (1994)
## 85007 In the Mouth of Madness (1995)
## 85083 Heaven & Earth (1993)
## 85136 Menace II Society (1993)
## 85741 Mulholland Falls (1996)
## 85862 Arrival, The (1996)
## 86541 Freeway (1996)
## 86808 Looking for Richard (1996)
## 86925 Braindead (1992)
## 86962 Diva (1981)
## 87023 Night on Earth (1991)
## 88075 Life Less Ordinary, A (1997)
## 88365 Scream 2 (1997)
## 88461 Sweet Hereafter, The (1997)
## 88876 City of Lost Children, The (1995)
## 89050 Raise the Red Lantern (1991)
## 89113 White Squall (1996)
## 90023 Killing Zoe (1994)
## 90344 Georgia (1995)
## 90493 Before Sunrise (1995)
## 90542 Nobody's Fool (1994)
## 90667 Naked (1993)
## 90724 Ruby in Paradise (1993)
## 90992 Passion Fish (1992)
## 91190 Trigger Effect, The (1996)
## 91221 Mother Night (1996)
## 91530 Keys to Tulsa (1997)
## 91787 Until the End of the World (Bis ans Ende der Welt) (1991)
## 91860 I Shot Andy Warhol (1996)
## 91961 Basquiat (1996)
## 92010 2 Days in the Valley (1996)
## 93197 Hamlet (1996)
## 93444 Fearless (1993)
## 93910 Cronos (1992)
## 94075 Little Princess, A (1995)
## 94125 Koyaanisqatsi (1983)
## 94242 Amateur (1994)
## 94262 Living in Oblivion (1995)
## 94318 Shallow Grave (1994)
## 94865 Flirting With Disaster (1996)
## 94916 What Happened Was... (1994)
## 95006 Trust (1990)
## 95466 Heidi Fleiss: Hollywood Madam (1995)
## 95508 Safe (1995)
## 95621 Doors, The (1991)
## 95671 Ghosts of Mississippi (1996)
## 95700 Beautiful Thing (1996)
## 95964 Backbeat (1993)
## 96081 Portrait of a Lady, The (1996)
## 96126 Love & Human Remains (1993)
## 96173 Fresh (1994)
## 96182 Spanking the Monkey (1994)
## 96244 Caught (1996)
## 96397 Switchblade Sisters (1975)
## 96472 Boys of St. Vincent, The (1993)
## 96484 Before the Rain (Pred dozhdot) (1994)
## 96495 Once Were Warriors (1994)
## 96713 Kiss of Death (1995)
## 96785 Blue Sky (1994)
## 96940 Higher Learning (1995)
## 97035 Scout, The (1994)
## 97093 Awfully Big Adventure, An (1995)
## 97150 Poison Ivy II (1995)
## 97351 Gridlock'd (1997)
## 97559 Clockers (1995)
## 97591 Bitter Moon (1992)
## 98198 Infinity (1996)
## 98377 Anna (1996)
## 98396 M. Butterfly (1993)
## 98560 My Crazy Life (Mi vida loca) (1993)
## 98571 Suture (1993)
## 98575 Walking Dead, The (1995)
## 98579 I Like It Like That (1994)
## 98582 I'll Do Anything (1994)
## 98592 Grace of My Heart (1996)
## 98600 Drunks (1995)
## 98605 SubUrbia (1997)
## 92 Toy Story (1995)
## 13332 Terminator 2: Judgment Day (1991)
## 23929 Empire Strikes Back, The (1980)
## 24289 Princess Bride, The (1987)
## 25758 Clockwork Orange, A (1971)
## 28421 Amadeus (1984)
## 29217 Terminator, The (1984)
## 31059 Back to the Future (1985)
## 37517 Kolya (1996)
## 39539 Contact (1997)
## 40793 Full Monty, The (1997)
## 43212 Emma (1996)
## 43814 English Patient, The (1996)
## 49002 Schindler's List (1993)
## 58112 E.T. the Extra-Terrestrial (1982)
## 63661 Apartment, The (1960)
## 64110 Maltese Falcon, The (1941)
## 67035 Boot, Das (1981)
## 67215 Local Hero (1983)
## 73146 It Happened One Night (1934)
## 93 Toy Story (1995)
## 1090 Twelve Monkeys (1995)
## 4038 Rumble in the Bronx (1995)
## 6522 Star Wars (1977)
## 12834 Welcome to the Dollhouse (1995)
## 14491 Fargo (1996)
## 16033 Rock, The (1996)
## 20766 Ghost and the Darkness, The (1996)
## 20922 Swingers (1996)
## 21113 Willy Wonka and the Chocolate Factory (1971)
## 26264 Return of the Jedi (1983)
## 33989 Star Trek: First Contact (1996)
## 36494 Jerry Maguire (1996)
## 38179 Grosse Pointe Blank (1997)
## 38480 Fifth Element, The (1997)
## 39175 Men in Black (1997)
## 39540 Contact (1997)
## 41212 Starship Troopers (1997)
## 42331 Leaving Las Vegas (1995)
## 42995 Time to Kill, A (1996)
## 43213 Emma (1996)
## 44369 Scream (1996)
## 45595 Liar Liar (1997)
## 47365 Fly Away Home (1996)
## 49474 Mother (1996)
## 49869 Dante's Peak (1997)
## 50349 G.I. Jane (1997)
## 51183 Kiss the Girls (1997)
## 51639 Playing God (1997)
## 61123 Nixon (1995)
## 62032 Courage Under Fire (1996)
## 62739 Trainspotting (1996)
## 63116 Matilda (1996)
## 73830 Extreme Measures (1996)
## 74231 Sleepers (1996)
## 81859 Ransom (1996)
## 82131 Michael Collins (1996)
## 82495 Saint, The (1997)
## 85417 One Fine Day (1996)
## 87830 Peacemaker, The (1997)
## 88216 Mortal Kombat: Annihilation (1997)
## 91570 Hercules (1997)
## 93725 House Arrest (1996)
## 94 Toy Story (1995)
## 1674 Dead Man Walking (1995)
## 2282 Usual Suspects, The (1995)
## 5980 Eat Drink Man Woman (1994)
## 20548 Unhook the Stars (1996)
## 23694 Cinema Paradiso (1988)
## 23930 Empire Strikes Back, The (1980)
## 28422 Amadeus (1984)
## 33138 When Harry Met Sally... (1989)
## 37518 Kolya (1996)
## 37836 Devil's Own, The (1997)
## 39541 Contact (1997)
## 39970 George of the Jungle (1997)
## 40284 In the Company of Men (1997)
## 40794 Full Monty, The (1997)
## 43815 English Patient, The (1996)
## 44370 Scream (1996)
## 45253 Rosewood (1997)
## 46071 Ulee's Gold (1997)
## 46463 Air Force One (1997)
## 46859 In & Out (1997)
## 47103 L.A. Confidential (1997)
## 47366 Fly Away Home (1996)
## 47944 Rainmaker, The (1997)
## 48601 Apt Pupil (1998)
## 48753 As Good As It Gets (1997)
## 49003 Schindler's List (1993)
## 49475 Mother (1996)
## 49644 Murder at 1600 (1997)
## 51349 Game, The (1997)
## 51640 Playing God (1997)
## 51874 Boogie Nights (1997)
## 63739 Some Like It Hot (1959)
## 82496 Saint, The (1997)
## 87592 Career Girls (1997)
## 87958 Soul Food (1997)
## 92667 Fast, Cheap & Out of Control (1997)
## 96496 Once Were Warriors (1994)
## 97729 Manny & Lo (1996)
## 97885 Indian Summer (1996)
## 37519 Kolya (1996)
## 37635 Jungle2Jungle (1997)
## 39542 Contact (1997)
## 40795 Full Monty, The (1997)
## 43816 English Patient, The (1996)
## 44802 Evita (1996)
## 45596 Liar Liar (1997)
## 46464 Air Force One (1997)
## 47367 Fly Away Home (1996)
## 48288 Titanic (1997)
## 48602 Apt Pupil (1998)
## 48754 As Good As It Gets (1997)
## 49645 Murder at 1600 (1997)
## 50350 G.I. Jane (1997)
## 50725 Conspiracy Theory (1997)
## 51350 Game, The (1997)
## 77632 Volcano (1997)
## 82497 Saint, The (1997)
## 87629 She's So Lovely (1997)
## 91295 Shadow Conspiracy (1997)
## 92744 Fire Down Below (1997)
## 37520 Kolya (1996)
## 37837 Devil's Own, The (1997)
## 39543 Contact (1997)
## 40125 Event Horizon (1997)
## 40285 In the Company of Men (1997)
## 40796 Full Monty, The (1997)
## 41426 Good Will Hunting (1997)
## 44371 Scream (1996)
## 45597 Liar Liar (1997)
## 46465 Air Force One (1997)
## 47104 L.A. Confidential (1997)
## 47867 FairyTale: A True Story (1997)
## 47891 Deceiver (1997)
## 47945 Rainmaker, The (1997)
## 48289 Titanic (1997)
## 48566 3 Ninjas: High Noon At Mega Mountain (1998)
## 48603 Apt Pupil (1998)
## 49870 Dante's Peak (1997)
## 50351 G.I. Jane (1997)
## 51184 Kiss the Girls (1997)
## 51351 Game, The (1997)
## 51641 Playing God (1997)
## 51680 House of Yes, The (1997)
## 51875 Boogie Nights (1997)
## 52108 Alien: Resurrection (1997)
## 52354 Jackie Brown (1997)
## 53341 Assignment, The (1997)
## 53360 Wonderland (1997)
## 53368 Incognito (1997)
## 53383 Blues Brothers 2000 (1998)
## 77633 Volcano (1997)
## 77955 I Know What You Did Last Summer (1997)
## 78049 Rocket Man (1997)
## 78697 Seven Years in Tibet (1997)
## 78820 Dark City (1998)
## 82498 Saint, The (1997)
## 82761 MatchMaker, The (1997)
## 82832 Amistad (1997)
## 87512 Picture Perfect (1997)
## 88004 Washington Square (1997)
## 88203 Tango Lesson, The (1997)
## 88258 Bent (1997)
## 88366 Scream 2 (1997)
## 88462 Sweet Hereafter, The (1997)
## 88575 Kundun (1997)
## 88667 Afterglow (1997)
## 88685 Ma vie en rose (My Life in Pink) (1997)
## 91502 Anna Karenina (1997)
## 92668 Fast, Cheap & Out of Control (1997)
## 92726 Mrs. Dalloway (1997)
## 94059 Four Days in September (1997)
## 95454 Truman Show, The (1998)
## 96252 Hugo Pool (1997)
## 96258 Welcome To Sarajevo (1997)
## 97220 Nenette et Boni (1996)
## 98011 Palmetto (1998)
## 98354 Swept from the Sea (1997)
## 98361 Hurricane Streets (1998)
## 98617 Sliding Doors (1998)
## 98621 Ill Gotten Gains (1997)
## 98624 Legal Deceit (1997)
## 98629 Mighty, The (1998)
## 98632 Men of Means (1998)
## 98634 Shooting Fish (1997)
## 474 GoldenEye (1995)
## 600 Four Rooms (1995)
## 708 Get Shorty (1995)
## 898 Copycat (1995)
## 1430 Babe (1995)
## 1675 Dead Man Walking (1995)
## 2045 Seven (Se7en) (1995)
## 2283 Usual Suspects, The (1995)
## 2543 Mighty Aphrodite (1995)
## 2719 Postino, Il (1994)
## 2932 Mr. Holland's Opus (1995)
## 3294 White Balloon, The (1995)
## 3576 Braveheart (1995)
## 3853 Taxi Driver (1976)
## 4249 Birdcage, The (1996)
## 4658 Apollo 13 (1995)
## 5284 Desperado (1995)
## 5421 Net, The (1995)
## 5727 Clerks (1994)
## 5981 Eat Drink Man Woman (1994)
## 7179 Natural Born Killers (1994)
## 7424 Professional, The (1994)
## 7626 Pulp Fiction (1994)
## 8002 Quiz Show (1994)
## 8168 Three Colors: Red (1994)
## 8242 Three Colors: Blue (1993)
## 8625 Shawshank Redemption, The (1994)
## 8866 What's Eating Gilbert Grape (1993)
## 9250 Crow, The (1994)
## 9427 Forrest Gump (1994)
## 9735 Four Weddings and a Funeral (1994)
## 10305 Maverick (1994)
## 10735 Fugitive, The (1993)
## 11227 Jurassic Park (1993)
## 11864 Searching for Bobby Fischer (1993)
## 12012 Sleepless in Seattle (1993)
## 12718 True Romance (1993)
## 13333 Terminator 2: Judgment Day (1991)
## 13904 Silence of the Lambs, The (1991)
## 14492 Fargo (1996)
## 15195 Moll Flanders (1996)
## 15515 Truth About Cats & Dogs, The (1996)
## 16034 Rock, The (1996)
## 16798 Independence Day (ID4) (1996)
## 17591 Phenomenon (1996)
## 17965 Godfather, The (1972)
## 18383 Bound (1996)
## 18529 Breakfast at Tiffany's (1961)
## 18884 Gone with the Wind (1939)
## 19061 Citizen Kane (1941)
## 19276 2001: A Space Odyssey (1968)
## 19626 Big Night (1996)
## 20059 Sound of Music, The (1965)
## 20282 Die Hard (1988)
## 20923 Swingers (1996)
## 21505 Fish Called Wanda, A (1988)
## 21734 Monty Python's Life of Brian (1979)
## 22005 Reservoir Dogs (1992)
## 22259 Weekend at Bernie's (1989)
## 22429 Glengarry Glen Ross (1992)
## 22526 Top Gun (1986)
## 23695 Cinema Paradiso (1988)
## 23806 Delicatessen (1991)
## 24290 Princess Bride, The (1987)
## 24633 Raiders of the Lost Ark (1981)
## 25021 Brazil (1985)
## 25489 Good, The Bad and The Ugly, The (1966)
## 25759 Clockwork Orange, A (1971)
## 25981 Apocalypse Now (1979)
## 26265 Return of the Jedi (1983)
## 26718 GoodFellas (1990)
## 26949 Alien (1979)
## 27351 Psycho (1960)
## 27587 Blues Brothers, The (1980)
## 27837 Godfather: Part II, The (1974)
## 28033 Full Metal Jacket (1987)
## 28423 Amadeus (1984)
## 28661 Raging Bull (1980)
## 28963 Sting, The (1973)
## 29218 Terminator, The (1984)
## 29504 Dead Poets Society (1989)
## 29751 Graduate, The (1967)
## 30588 Groundhog Day (1993)
## 30849 Unforgiven (1992)
## 31060 Back to the Future (1985)
## 31363 Patton (1970)
## 31631 Young Frankenstein (1974)
## 32050 Indiana Jones and the Last Crusade (1989)
## 32361 M*A*S*H (1970)
## 33139 When Harry Met Sally... (1989)
## 34300 Sling Blade (1996)
## 34417 Ridicule (1996)
## 34593 Die Hard 2 (1990)
## 35770 Under Siege (1992)
## 36495 Jerry Maguire (1996)
## 36848 Raising Arizona (1987)
## 37076 Sneakers (1992)
## 37392 Last of the Mohicans, The (1992)
## 37521 Kolya (1996)
## 37838 Devil's Own, The (1997)
## 38180 Grosse Pointe Blank (1997)
## 38963 My Best Friend's Wedding (1997)
## 39544 Contact (1997)
## 40494 Hunt for Red October, The (1990)
## 40797 Full Monty, The (1997)
## 41625 Heat (1995)
## 42332 Leaving Las Vegas (1995)
## 42837 River Wild, The (1994)
## 42996 Time to Kill, A (1996)
## 43397 Tin Cup (1996)
## 43817 English Patient, The (1996)
## 45033 Fierce Creatures (1997)
## 45129 Absolute Power (1997)
## 45367 Donnie Brasco (1997)
## 45598 Liar Liar (1997)
## 46150 Face/Off (1997)
## 47105 L.A. Confidential (1997)
## 48290 Titanic (1997)
## 48755 As Good As It Gets (1997)
## 48864 In the Name of the Father (1993)
## 49004 Schindler's List (1993)
## 49278 Everyone Says I Love You (1996)
## 49646 Murder at 1600 (1997)
## 50726 Conspiracy Theory (1997)
## 52984 One Flew Over the Cuckoo's Nest (1975)
## 53618 Clueless (1995)
## 54703 True Lies (1994)
## 55248 Mrs. Doubtfire (1993)
## 56873 Kingpin (1996)
## 57044 Nutty Professor, The (1996)
## 57325 My Favorite Year (1982)
## 58113 E.T. the Extra-Terrestrial (1982)
## 58733 Harold and Maude (1971)
## 59388 Heathers (1989)
## 59629 Butch Cassidy and the Sundance Kid (1969)
## 61124 Nixon (1995)
## 61252 Smoke (1995)
## 61346 Like Water For Chocolate (Como agua para chocolate) (1992)
## 61756 Rudy (1993)
## 61898 Tombstone (1993)
## 62033 Courage Under Fire (1996)
## 62740 Trainspotting (1996)
## 62972 First Wives Club, The (1996)
## 63888 Casablanca (1942)
## 66115 People vs. Larry Flynt, The (1996)
## 66299 My Left Foot (1989)
## 66856 Annie Hall (1977)
## 67036 Boot, Das (1981)
## 67280 Manhattan (1979)
## 67541 Great Escape, The (1963)
## 67667 Deer Hunter, The (1978)
## 67976 Great Dictator, The (1940)
## 68106 Ben-Hur (1959)
## 68248 Gandhi (1982)
## 68543 My Life as a Dog (Mitt liv som hund) (1985)
## 68726 Shine (1996)
## 68882 Addicted to Love (1997)
## 68980 Anastasia (1997)
## 69089 Money Train (1995)
## 69383 Broken Arrow (1996)
## 70028 Waterworld (1995)
## 70447 Quick and the Dead, The (1995)
## 70597 Clear and Present Danger (1994)
## 70827 Speed (1994)
## 71289 Cliffhanger (1993)
## 71530 Englishman Who Went Up a Hill, But Came Down a Mountain, The (1995)
## 72281 Primal Fear (1996)
## 72686 Eraser (1996)
## 73417 Father of the Bride (1950)
## 74232 Sleepers (1996)
## 74494 Crying Game, The (1992)
## 75115 Grifters, The (1990)
## 76034 Stand by Me (1986)
## 76616 Fried Green Tomatoes (1991)
## 78122 In the Line of Fire (1993)
## 78289 Executive Decision (1996)
## 78870 American President, The (1995)
## 79156 City Hall (1996)
## 80003 Tin Men (1987)
## 80231 Home for the Holidays (1995)
## 80553 Nine Months (1995)
## 81239 Philadelphia (1993)
## 81860 Ransom (1996)
## 82232 Real Genius (1985)
## 82499 Saint, The (1997)
## 83181 Red Corner (1997)
## 83351 Father of the Bride Part II (1995)
## 83725 Happy Gilmore (1996)
## 84618 Roommates (1995)
## 84775 Bullets Over Broadway (1994)
## 85102 Manhattan Murder Mystery (1993)
## 85265 Shadow, The (1994)
## 85948 Phantom, The (1996)
## 86024 Daylight (1996)
## 86211 Bogus (1996)
## 86439 Glimmer Man, The (1996)
## 86616 That Thing You Do! (1996)
## 86809 Looking for Richard (1996)
## 86867 Days of Thunder (1990)
## 87151 My Fellow Americans (1996)
## 87250 Michael (1996)
## 87407 Vegas Vacation (1997)
## 87630 She's So Lovely (1997)
## 91161 Heaven's Prisoners (1996)
## 91354 Turbulence (1997)
## 91571 Hercules (1997)
## 91678 Stuart Saves His Family (1995)
## 92110 Private Parts (1997)
## 92699 Fathers' Day (1997)
## 92824 Grumpier Old Men (1995)
## 93472 Malice (1993)
## 93726 House Arrest (1996)
## 94866 Flirting With Disaster (1996)
## 95000 Two Much (1996)
## 95201 Twelfth Night (1996)
## 95261 Up in Smoke (1978)
## 95864 My Family (1995)
## 96183 Spanking the Monkey (1994)
## 96545 Family Thing, A (1996)
## 97048 Angus (1995)
## 97064 Night Falls on Manhattan (1997)
## 97300 Old Lady Who Walked in the Sea, The (Vieille qui marchait dans la mer, La) (1991)
## 97626 Talking About Sex (1994)
## 97753 Out to Sea (1997)
## 98114 Last Klezmer: Leopold Kozlowski, His Life and Music, The (1995)
## 98120 Midnight Dancers (Sibak) (1994)
## 98185 Crows and Sparrows (1949)
## 98273 Rhyme & Reason (1997)
## 98644 Steal Big, Steal Little (1995)
## 98651 Mr. Jones (1993)
## 7627 Pulp Fiction (1994)
## 8990 While You Were Sleeping (1995)
## 9736 Four Weddings and a Funeral (1994)
## 11716 Remains of the Day, The (1993)
## 12013 Sleepless in Seattle (1993)
## 13612 Dances with Wolves (1990)
## 27588 Blues Brothers, The (1980)
## 28964 Sting, The (1973)
## 29752 Graduate, The (1967)
## 30589 Groundhog Day (1993)
## 31061 Back to the Future (1985)
## 31632 Young Frankenstein (1974)
## 32362 M*A*S*H (1970)
## 33140 When Harry Met Sally... (1989)
## 47106 L.A. Confidential (1997)
## 47946 Rainmaker, The (1997)
## 53619 Clueless (1995)
## 53894 Bridges of Madison County, The (1995)
## 54369 Muriel's Wedding (1994)
## 55249 Mrs. Doubtfire (1993)
## 55782 Ghost (1990)
## 58734 Harold and Maude (1971)
## 58948 Duck Soup (1933)
## 59630 Butch Cassidy and the Sundance Kid (1969)
## 66857 Annie Hall (1977)
## 67281 Manhattan (1979)
## 67834 Cool Hand Luke (1967)
## 67977 Great Dictator, The (1940)
## 76838 Somewhere in Time (1980)
## 76929 Being There (1979)
## 81547 Pretty Woman (1990)
## 84446 French Kiss (1995)
## 91662 Big Green, The (1995)
## 95 Toy Story (1995)
## 1676 Dead Man Walking (1995)
## 2720 Postino, Il (1994)
## 3162 French Twist (Gazon maudit) (1995)
## 6523 Star Wars (1977)
## 17966 Godfather, The (1972)
## 18384 Bound (1996)
## 26266 Return of the Jedi (1983)
## 37522 Kolya (1996)
## 38335 Austin Powers: International Man of Mystery (1997)
## 38649 Shall We Dance? (1996)
## 39545 Contact (1997)
## 40798 Full Monty, The (1997)
## 41213 Starship Troopers (1997)
## 42333 Leaving Las Vegas (1995)
## 43586 Secrets & Lies (1996)
## 43818 English Patient, The (1996)
## 45368 Donnie Brasco (1997)
## 46860 In & Out (1997)
## 47368 Fly Away Home (1996)
## 49476 Mother (1996)
## 51352 Game, The (1997)
## 52595 Hard Rain (1998)
## 52666 Prophecy II, The (1998)
## 56681 Close Shave, A (1995)
## 78541 Leave It to Beaver (1997)
## 83908 Man of the Year (1995)
## 85358 Celluloid Closet, The (1995)
## 88508 Postman, The (1997)
## 88732 Oscar & Lucinda (1997)
## 94607 It's My Party (1995)
## 95028 Firestorm (1998)
## 95701 Beautiful Thing (1996)
## 96 Toy Story (1995)
## 709 Get Shorty (1995)
## 2933 Mr. Holland's Opus (1995)
## 3854 Taxi Driver (1976)
## 4250 Birdcage, The (1996)
## 4659 Apollo 13 (1995)
## 5617 To Wong Foo, Thanks for Everything! Julie Newmar (1995)
## 5900 Dolores Claiborne (1994)
## 6338 I.Q. (1994)
## 6524 Star Wars (1977)
## 7628 Pulp Fiction (1994)
## 8003 Quiz Show (1994)
## 8867 What's Eating Gilbert Grape (1993)
## 9428 Forrest Gump (1994)
## 9737 Four Weddings and a Funeral (1994)
## 10174 Mask, The (1994)
## 10306 Maverick (1994)
## 10736 Fugitive, The (1993)
## 12014 Sleepless in Seattle (1993)
## 12944 Home Alone (1990)
## 13334 Terminator 2: Judgment Day (1991)
## 13613 Dances with Wolves (1990)
## 13905 Silence of the Lambs, The (1991)
## 14243 Snow White and the Seven Dwarfs (1937)
## 15056 Sgt. Bilko (1996)
## 15763 Wallace & Gromit: The Best of Aardman Animation (1996)
## 16799 Independence Day (ID4) (1996)
## 17967 Godfather, The (1972)
## 18651 Wizard of Oz, The (1939)
## 19062 Citizen Kane (1941)
## 19277 2001: A Space Odyssey (1968)
## 21391 Sleeper (1973)
## 21506 Fish Called Wanda, A (1988)
## 21735 Monty Python's Life of Brian (1979)
## 22430 Glengarry Glen Ross (1992)
## 22527 Top Gun (1986)
## 22821 Return of the Pink Panther, The (1974)
## 23183 Private Benjamin (1980)
## 23294 Monty Python and the Holy Grail (1974)
## 23931 Empire Strikes Back, The (1980)
## 24291 Princess Bride, The (1987)
## 24634 Raiders of the Lost Ark (1981)
## 25234 Aliens (1986)
## 25760 Clockwork Orange, A (1971)
## 25982 Apocalypse Now (1979)
## 26267 Return of the Jedi (1983)
## 26719 GoodFellas (1990)
## 27352 Psycho (1960)
## 27589 Blues Brothers, The (1980)
## 27838 Godfather: Part II, The (1974)
## 28034 Full Metal Jacket (1987)
## 29219 Terminator, The (1984)
## 29753 Graduate, The (1967)
## 30273 Shining, The (1980)
## 30590 Groundhog Day (1993)
## 31062 Back to the Future (1985)
## 31364 Patton (1970)
## 31633 Young Frankenstein (1974)
## 32051 Indiana Jones and the Last Crusade (1989)
## 32363 M*A*S*H (1970)
## 33141 When Harry Met Sally... (1989)
## 33677 Nightmare on Elm Street, A (1984)
## 33990 Star Trek: First Contact (1996)
## 35348 Star Trek IV: The Voyage Home (1986)
## 35922 Jaws (1975)
## 36197 Mars Attacks! (1996)
## 36849 Raising Arizona (1987)
## 37636 Jungle2Jungle (1997)
## 38964 My Best Friend's Wedding (1997)
## 39176 Men in Black (1997)
## 41844 Sabrina (1995)
## 42334 Leaving Las Vegas (1995)
## 45034 Fierce Creatures (1997)
## 46466 Air Force One (1997)
## 46861 In & Out (1997)
## 47107 L.A. Confidential (1997)
## 48604 Apt Pupil (1998)
## 50524 Cop Land (1997)
## 52985 One Flew Over the Cuckoo's Nest (1975)
## 54256 Star Trek: Generations (1994)
## 55162 Man Without a Face, The (1993)
## 55250 Mrs. Doubtfire (1993)
## 55783 Ghost (1990)
## 55958 Batman (1989)
## 56140 Pinocchio (1940)
## 57045 Nutty Professor, The (1996)
## 57691 Mary Poppins (1964)
## 57856 Alice in Wonderland (1951)
## 58114 E.T. the Extra-Terrestrial (1982)
## 59631 Butch Cassidy and the Sundance Kid (1969)
## 60019 Birds, The (1963)
## 60251 Carrie (1976)
## 60646 Grease (1978)
## 61579 Jungle Book, The (1994)
## 63740 Some Like It Hot (1959)
## 63889 Casablanca (1942)
## 64111 Maltese Falcon, The (1941)
## 65489 Dumbo (1941)
## 65599 Bananas (1971)
## 66858 Annie Hall (1977)
## 67282 Manhattan (1979)
## 67835 Cool Hand Luke (1967)
## 68249 Gandhi (1982)
## 70828 Speed (1994)
## 74384 Victor/Victoria (1982)
## 74495 Crying Game, The (1992)
## 75581 Glory (1989)
## 75870 Chinatown (1974)
## 76035 Stand by Me (1986)
## 76285 Manchurian Candidate, The (1962)
## 76839 Somewhere in Time (1980)
## 77822 Conan the Barbarian (1981)
## 78123 In the Line of Fire (1993)
## 78871 American President, The (1995)
## 79726 Sex, Lies, and Videotape (1989)
## 80554 Nine Months (1995)
## 81023 Dave (1993)
## 81240 Philadelphia (1993)
## 82973 Tomorrow Never Dies (1997)
## 83245 Jumanji (1995)
## 83726 Happy Gilmore (1996)
## 84776 Bullets Over Broadway (1994)
## 85694 Mrs. Winterbourne (1996)
## 86212 Bogus (1996)
## 87152 My Fellow Americans (1996)
## 89241 Down Periscope (1996)
## 90457 Unstrung Heroes (1995)
## 90543 Nobody's Fool (1994)
## 90882 Winnie the Pooh and the Blustery Day (1968)
## 92111 Private Parts (1997)
## 92825 Grumpier Old Men (1995)
## 95262 Up in Smoke (1978)
## 1677 Dead Man Walking (1995)
## 8626 Shawshank Redemption, The (1994)
## 9429 Forrest Gump (1994)
## 16035 Rock, The (1996)
## 17968 Godfather, The (1972)
## 26268 Return of the Jedi (1983)
## 30104 Bridge on the River Kwai, The (1957)
## 31365 Patton (1970)
## 32907 Field of Dreams (1989)
## 34940 Star Trek: The Wrath of Khan (1982)
## 35349 Star Trek IV: The Voyage Home (1986)
## 39177 Men in Black (1997)
## 40334 Steel (1997)
## 42043 Sense and Sensibility (1995)
## 43819 English Patient, The (1996)
## 46467 Air Force One (1997)
## 47947 Rainmaker, The (1997)
## 52986 One Flew Over the Cuckoo's Nest (1975)
## 58115 E.T. the Extra-Terrestrial (1982)
## 60020 Birds, The (1963)
## 60909 Jackie Chan's First Strike (1996)
## 61079 Free Willy 3: The Rescue (1997)
## 61347 Like Water For Chocolate (Como agua para chocolate) (1992)
## 64663 Adventures of Robin Hood, The (1938)
## 67542 Great Escape, The (1963)
## 68107 Ben-Hur (1959)
## 68425 Killing Fields, The (1984)
## 72546 Hunchback of Notre Dame, The (1996)
## 77634 Volcano (1997)
## 78474 McHale's Navy (1997)
## 79519 Singin' in the Rain (1952)
## 87683 Money Talks (1997)
## 88217 Mortal Kombat: Annihilation (1997)
## 92745 Fire Down Below (1997)
## 95455 Truman Show, The (1998)
## 98110 An Unforgettable Summer (1994)
## 11717 Remains of the Day, The (1993)
## 11865 Searching for Bobby Fischer (1993)
## 17969 Godfather, The (1972)
## 25761 Clockwork Orange, A (1971)
## 25983 Apocalypse Now (1979)
## 28424 Amadeus (1984)
## 29754 Graduate, The (1967)
## 30105 Bridge on the River Kwai, The (1957)
## 38052 Chasing Amy (1997)
## 40799 Full Monty, The (1997)
## 43820 English Patient, The (1996)
## 48865 In the Name of the Father (1993)
## 49005 Schindler's List (1993)
## 54474 Adventures of Priscilla, Queen of the Desert, The (1994)
## 58116 E.T. the Extra-Terrestrial (1982)
## 58528 To Kill a Mockingbird (1962)
## 66555 Lawrence of Arabia (1962)
## 67037 Boot, Das (1981)
## 68250 Gandhi (1982)
## 68426 Killing Fields, The (1984)
## 74496 Crying Game, The (1992)
## 75227 Paris Is Burning (1990)
## 81241 Philadelphia (1993)
## 87114 Garden of Finzi-Contini, The (Giardino dei Finzi-Contini, Il) (1970)
## 97 Toy Story (1995)
## 475 GoldenEye (1995)
## 1091 Twelve Monkeys (1995)
## 1431 Babe (1995)
## 2046 Seven (Se7en) (1995)
## 2284 Usual Suspects, The (1995)
## 2544 Mighty Aphrodite (1995)
## 4039 Rumble in the Bronx (1995)
## 4251 Birdcage, The (1996)
## 5057 Crimson Tide (1995)
## 5728 Clerks (1994)
## 6230 Hoop Dreams (1994)
## 6525 Star Wars (1977)
## 7425 Professional, The (1994)
## 7629 Pulp Fiction (1994)
## 8627 Shawshank Redemption, The (1994)
## 9430 Forrest Gump (1994)
## 9738 Four Weddings and a Funeral (1994)
## 10737 Fugitive, The (1993)
## 13614 Dances with Wolves (1990)
## 13906 Silence of the Lambs, The (1991)
## 14493 Fargo (1996)
## 15130 Diabolique (1996)
## 16036 Rock, The (1996)
## 16404 Twister (1996)
## 16800 Independence Day (ID4) (1996)
## 17592 Phenomenon (1996)
## 17970 Godfather, The (1972)
## 18652 Wizard of Oz, The (1939)
## 18885 Gone with the Wind (1939)
## 19278 2001: A Space Odyssey (1968)
## 20060 Sound of Music, The (1965)
## 20283 Die Hard (1988)
## 21114 Willy Wonka and the Chocolate Factory (1971)
## 21736 Monty Python's Life of Brian (1979)
## 22006 Reservoir Dogs (1992)
## 22147 Platoon (1986)
## 22923 Abyss, The (1989)
## 23696 Cinema Paradiso (1988)
## 23932 Empire Strikes Back, The (1980)
## 24292 Princess Bride, The (1987)
## 24635 Raiders of the Lost Ark (1981)
## 25022 Brazil (1985)
## 25235 Aliens (1986)
## 25984 Apocalypse Now (1979)
## 26269 Return of the Jedi (1983)
## 26720 GoodFellas (1990)
## 27353 Psycho (1960)
## 27839 Godfather: Part II, The (1974)
## 28662 Raging Bull (1980)
## 28787 Right Stuff, The (1983)
## 28965 Sting, The (1973)
## 29220 Terminator, The (1984)
## 29755 Graduate, The (1967)
## 30106 Bridge on the River Kwai, The (1957)
## 30274 Shining, The (1980)
## 31063 Back to the Future (1985)
## 32545 Unbearable Lightness of Being, The (1988)
## 32645 Room with a View, A (1986)
## 32769 Pink Floyd - The Wall (1982)
## 33516 Cape Fear (1991)
## 33991 Star Trek: First Contact (1996)
## 35171 Star Trek III: The Search for Spock (1984)
## 35923 Jaws (1975)
## 36198 Mars Attacks! (1996)
## 36850 Raising Arizona (1987)
## 38715 Lost World: Jurassic Park, The (1997)
## 39178 Men in Black (1997)
## 39546 Contact (1997)
## 41626 Heat (1995)
## 41845 Sabrina (1995)
## 42838 River Wild, The (1994)
## 43398 Tin Cup (1996)
## 43821 English Patient, The (1996)
## 44372 Scream (1996)
## 45599 Liar Liar (1997)
## 49006 Schindler's List (1993)
## 52987 One Flew Over the Cuckoo's Nest (1975)
## 55251 Mrs. Doubtfire (1993)
## 56301 Mission: Impossible (1996)
## 59207 Fantasia (1940)
## 60252 Carrie (1976)
## 60363 Omen, The (1976)
## 60910 Jackie Chan's First Strike (1996)
## 61125 Nixon (1995)
## 61483 Secret of Roan Inish, The (1994)
## 62034 Courage Under Fire (1996)
## 62531 Dr. Strangelove or: How I Learned to Stop Worrying and Love the Bomb (1963)
## 62741 Trainspotting (1996)
## 63210 Philadelphia Story, The (1940)
## 63328 Vertigo (1958)
## 63890 Casablanca (1942)
## 65600 Bananas (1971)
## 65705 Bonnie and Clyde (1967)
## 66116 People vs. Larry Flynt, The (1996)
## 66300 My Left Foot (1989)
## 66556 Lawrence of Arabia (1962)
## 66859 Annie Hall (1977)
## 67038 Boot, Das (1981)
## 67668 Deer Hunter, The (1978)
## 69384 Broken Arrow (1996)
## 70829 Speed (1994)
## 71643 Piano, The (1993)
## 72282 Primal Fear (1996)
## 72687 Eraser (1996)
## 72960 Rear Window (1954)
## 73418 Father of the Bride (1950)
## 74134 Robin Hood: Prince of Thieves (1991)
## 74233 Sleepers (1996)
## 76036 Stand by Me (1986)
## 77635 Volcano (1997)
## 78124 In the Line of Fire (1993)
## 78290 Executive Decision (1996)
## 78698 Seven Years in Tibet (1997)
## 78872 American President, The (1995)
## 80149 To Die For (1995)
## 81242 Philadelphia (1993)
## 83352 Father of the Bride Part II (1995)
## 84267 Don Juan DeMarco (1995)
## 86133 Escape from L.A. (1996)
## 86440 Glimmer Man, The (1996)
## 89114 White Squall (1996)
## 89981 What's Love Got to Do with It (1993)
## 91330 Blood & Wine (1997)
## 92112 Private Parts (1997)
## 96820 Barb Wire (1996)
## 1092 Twelve Monkeys (1995)
## 1432 Babe (1995)
## 2047 Seven (Se7en) (1995)
## 2285 Usual Suspects, The (1995)
## 2545 Mighty Aphrodite (1995)
## 3381 Angels and Insects (1995)
## 3577 Braveheart (1995)
## 3855 Taxi Driver (1976)
## 4040 Rumble in the Bronx (1995)
## 5202 Crumb (1994)
## 5534 Strange Days (1995)
## 5729 Clerks (1994)
## 5982 Eat Drink Man Woman (1994)
## 6526 Star Wars (1977)
## 7426 Professional, The (1994)
## 7630 Pulp Fiction (1994)
## 8628 Shawshank Redemption, The (1994)
## 9431 Forrest Gump (1994)
## 10738 Fugitive, The (1993)
## 12245 Blade Runner (1982)
## 12719 True Romance (1993)
## 12835 Welcome to the Dollhouse (1995)
## 13907 Silence of the Lambs, The (1991)
## 14494 Fargo (1996)
## 15764 Wallace & Gromit: The Best of Aardman Animation (1996)
## 16037 Rock, The (1996)
## 16801 Independence Day (ID4) (1996)
## 17971 Godfather, The (1972)
## 18530 Breakfast at Tiffany's (1961)
## 18653 Wizard of Oz, The (1939)
## 19063 Citizen Kane (1941)
## 19279 2001: A Space Odyssey (1968)
## 19627 Big Night (1996)
## 21115 Willy Wonka and the Chocolate Factory (1971)
## 21737 Monty Python's Life of Brian (1979)
## 22007 Reservoir Dogs (1992)
## 23123 Manon of the Spring (Manon des sources) (1986)
## 23295 Monty Python and the Holy Grail (1974)
## 23575 Wrong Trousers, The (1993)
## 23807 Delicatessen (1991)
## 23933 Empire Strikes Back, The (1980)
## 24293 Princess Bride, The (1987)
## 24636 Raiders of the Lost Ark (1981)
## 25023 Brazil (1985)
## 25762 Clockwork Orange, A (1971)
## 25985 Apocalypse Now (1979)
## 26270 Return of the Jedi (1983)
## 26721 GoodFellas (1990)
## 27354 Psycho (1960)
## 27840 Godfather: Part II, The (1974)
## 28035 Full Metal Jacket (1987)
## 28425 Amadeus (1984)
## 29221 Terminator, The (1984)
## 29505 Dead Poets Society (1989)
## 31634 Young Frankenstein (1974)
## 31841 This Is Spinal Tap (1984)
## 32646 Room with a View, A (1986)
## 33142 When Harry Met Sally... (1989)
## 33853 Breaking the Waves (1996)
## 34301 Sling Blade (1996)
## 36377 Citizen Ruth (1996)
## 36851 Raising Arizona (1987)
## 38053 Chasing Amy (1997)
## 38181 Grosse Pointe Blank (1997)
## 38336 Austin Powers: International Man of Mystery (1997)
## 38481 Fifth Element, The (1997)
## 38847 Pillow Book, The (1995)
## 39179 Men in Black (1997)
## 40800 Full Monty, The (1997)
## 42044 Sense and Sensibility (1995)
## 42335 Leaving Las Vegas (1995)
## 43587 Secrets & Lies (1996)
## 44373 Scream (1996)
## 45600 Liar Liar (1997)
## 46151 Face/Off (1997)
## 47108 L.A. Confidential (1997)
## 47706 Devil's Advocate, The (1997)
## 48291 Titanic (1997)
## 49007 Schindler's List (1993)
## 49279 Everyone Says I Love You (1996)
## 50083 Lost Highway (1997)
## 50214 Crash (1996)
## 50525 Cop Land (1997)
## 51560 U Turn (1997)
## 51876 Boogie Nights (1997)
## 52355 Jackie Brown (1997)
## 52988 One Flew Over the Cuckoo's Nest (1975)
## 56682 Close Shave, A (1995)
## 58529 To Kill a Mockingbird (1962)
## 61253 Smoke (1995)
## 61348 Like Water For Chocolate (Como agua para chocolate) (1992)
## 62742 Trainspotting (1996)
## 63211 Philadelphia Story, The (1940)
## 63329 Vertigo (1958)
## 63741 Some Like It Hot (1959)
## 63891 Casablanca (1942)
## 64992 It's a Wonderful Life (1946)
## 66117 People vs. Larry Flynt, The (1996)
## 66301 My Left Foot (1989)
## 66701 Wings of Desire (1987)
## 67216 Local Hero (1983)
## 67378 Miller's Crossing (1990)
## 67776 Down by Law (1986)
## 68251 Gandhi (1982)
## 68727 Shine (1996)
## 70830 Speed (1994)
## 71644 Piano, The (1993)
## 72961 Rear Window (1954)
## 73379 Spellbound (1945)
## 75488 Seventh Seal, The (Sjunde inseglet, Det) (1957)
## 75737 Rosencrantz and Guildenstern Are Dead (1990)
## 79008 Casino (1995)
## 79520 Singin' in the Rain (1952)
## 79727 Sex, Lies, and Videotape (1989)
## 80494 Mallrats (1995)
## 83118 Replacement Killers, The (1998)
## 87024 Night on Earth (1991)
## 87468 Love Jones (1997)
## 88463 Sweet Hereafter, The (1997)
## 90419 Blue in the Face (1995)
## 90668 Naked (1993)
## 92484 Trees Lounge (1996)
## 93198 Hamlet (1996)
## 94126 Koyaanisqatsi (1983)
## 94319 Shallow Grave (1994)
## 95480 Chungking Express (1994)
## 98397 M. Butterfly (1993)
## 1433 Babe (1995)
## 2048 Seven (Se7en) (1995)
## 2934 Mr. Holland's Opus (1995)
## 3578 Braveheart (1995)
## 3856 Taxi Driver (1976)
## 4660 Apollo 13 (1995)
## 6527 Star Wars (1977)
## 7308 Outbreak (1995)
## 7631 Pulp Fiction (1994)
## 8629 Shawshank Redemption, The (1994)
## 9739 Four Weddings and a Funeral (1994)
## 10507 Firm, The (1993)
## 11228 Jurassic Park (1993)
## 11866 Searching for Bobby Fischer (1993)
## 12015 Sleepless in Seattle (1993)
## 12246 Blade Runner (1982)
## 13908 Silence of the Lambs, The (1991)
## 14244 Snow White and the Seven Dwarfs (1937)
## 17972 Godfather, The (1972)
## 18654 Wizard of Oz, The (1939)
## 19064 Citizen Kane (1941)
## 20284 Die Hard (1988)
## 21116 Willy Wonka and the Chocolate Factory (1971)
## 22148 Platoon (1986)
## 22326 Basic Instinct (1992)
## 22924 Abyss, The (1989)
## 23296 Monty Python and the Holy Grail (1974)
## 23934 Empire Strikes Back, The (1980)
## 24637 Raiders of the Lost Ark (1981)
## 25236 Aliens (1986)
## 25763 Clockwork Orange, A (1971)
## 25986 Apocalypse Now (1979)
## 26271 Return of the Jedi (1983)
## 26722 GoodFellas (1990)
## 26950 Alien (1979)
## 27355 Psycho (1960)
## 27590 Blues Brothers, The (1980)
## 28426 Amadeus (1984)
## 28966 Sting, The (1973)
## 29222 Terminator, The (1984)
## 29506 Dead Poets Society (1989)
## 29756 Graduate, The (1967)
## 30591 Groundhog Day (1993)
## 30850 Unforgiven (1992)
## 31064 Back to the Future (1985)
## 31366 Patton (1970)
## 31635 Young Frankenstein (1974)
## 32052 Indiana Jones and the Last Crusade (1989)
## 32364 M*A*S*H (1970)
## 32546 Unbearable Lightness of Being, The (1988)
## 32908 Field of Dreams (1989)
## 33143 When Harry Met Sally... (1989)
## 33517 Cape Fear (1991)
## 33992 Star Trek: First Contact (1996)
## 34594 Die Hard 2 (1990)
## 34765 Star Trek VI: The Undiscovered Country (1991)
## 34941 Star Trek: The Wrath of Khan (1982)
## 35172 Star Trek III: The Search for Spock (1984)
## 35350 Star Trek IV: The Voyage Home (1986)
## 35924 Jaws (1975)
## 36496 Jerry Maguire (1996)
## 36852 Raising Arizona (1987)
## 37077 Sneakers (1992)
## 39547 Contact (1997)
## 41062 Gattaca (1997)
## 41214 Starship Troopers (1997)
## 41427 Good Will Hunting (1997)
## 44374 Scream (1996)
## 46468 Air Force One (1997)
## 48292 Titanic (1997)
## 52745 Wedding Singer, The (1998)
## 52989 One Flew Over the Cuckoo's Nest (1975)
## 54257 Star Trek: Generations (1994)
## 57945 William Shakespeare's Romeo and Juliet (1996)
## 58117 E.T. the Extra-Terrestrial (1982)
## 59208 Fantasia (1940)
## 59389 Heathers (1989)
## 59531 Forbidden Planet (1956)
## 60021 Birds, The (1963)
## 60459 Star Trek: The Motion Picture (1979)
## 60567 Star Trek V: The Final Frontier (1989)
## 60647 Grease (1978)
## 62532 Dr. Strangelove or: How I Learned to Stop Worrying and Love the Bomb (1963)
## 63509 North by Northwest (1959)
## 63892 Casablanca (1942)
## 64993 It's a Wonderful Life (1946)
## 67283 Manhattan (1979)
## 67836 Cool Hand Luke (1967)
## 69909 Species (1995)
## 74785 Escape from New York (1981)
## 78873 American President, The (1995)
## 93199 Hamlet (1996)
## 94076 Little Princess, A (1995)
## 98 Toy Story (1995)
## 601 Four Rooms (1995)
## 710 Get Shorty (1995)
## 1093 Twelve Monkeys (1995)
## 1678 Dead Man Walking (1995)
## 2049 Seven (Se7en) (1995)
## 2286 Usual Suspects, The (1995)
## 2935 Mr. Holland's Opus (1995)
## 3579 Braveheart (1995)
## 4252 Birdcage, The (1996)
## 4552 Bad Boys (1995)
## 4661 Apollo 13 (1995)
## 5730 Clerks (1994)
## 6096 Ed Wood (1994)
## 6528 Star Wars (1977)
## 7427 Professional, The (1994)
## 7632 Pulp Fiction (1994)
## 8004 Quiz Show (1994)
## 8630 Shawshank Redemption, The (1994)
## 8868 What's Eating Gilbert Grape (1993)
## 8991 While You Were Sleeping (1995)
## 9145 Ace Ventura: Pet Detective (1994)
## 9432 Forrest Gump (1994)
## 10175 Mask, The (1994)
## 10739 Fugitive, The (1993)
## 11082 Hudsucker Proxy, The (1994)
## 11229 Jurassic Park (1993)
## 12585 Nightmare Before Christmas, The (1993)
## 12836 Welcome to the Dollhouse (1995)
## 13089 Aladdin (1992)
## 13615 Dances with Wolves (1990)
## 13909 Silence of the Lambs, The (1991)
## 14495 Fargo (1996)
## 15238 Kids in the Hall: Brain Candy (1996)
## 17155 Cable Guy, The (1996)
## 18385 Bound (1996)
## 19065 Citizen Kane (1941)
## 20061 Sound of Music, The (1965)
## 20285 Die Hard (1988)
## 20593 Long Kiss Goodnight, The (1996)
## 20924 Swingers (1996)
## 21117 Willy Wonka and the Chocolate Factory (1971)
## 21507 Fish Called Wanda, A (1988)
## 22008 Reservoir Dogs (1992)
## 23297 Monty Python and the Holy Grail (1974)
## 23576 Wrong Trousers, The (1993)
## 23935 Empire Strikes Back, The (1980)
## 24638 Raiders of the Lost Ark (1981)
## 26272 Return of the Jedi (1983)
## 26723 GoodFellas (1990)
## 27211 Army of Darkness (1993)
## 28036 Full Metal Jacket (1987)
## 28190 Grand Day Out, A (1992)
## 29507 Dead Poets Society (1989)
## 30275 Shining, The (1980)
## 30466 Evil Dead II (1987)
## 30592 Groundhog Day (1993)
## 31065 Back to the Future (1985)
## 32053 Indiana Jones and the Last Crusade (1989)
## 32909 Field of Dreams (1989)
## 33144 When Harry Met Sally... (1989)
## 33518 Cape Fear (1991)
## 33854 Breaking the Waves (1996)
## 34595 Die Hard 2 (1990)
## 34942 Star Trek: The Wrath of Khan (1982)
## 35530 Batman Returns (1992)
## 35925 Jaws (1975)
## 36497 Jerry Maguire (1996)
## 36853 Raising Arizona (1987)
## 38337 Austin Powers: International Man of Mystery (1997)
## 39180 Men in Black (1997)
## 41846 Sabrina (1995)
## 42336 Leaving Las Vegas (1995)
## 42739 Up Close and Personal (1996)
## 42997 Time to Kill, A (1996)
## 43822 English Patient, The (1996)
## 46152 Face/Off (1997)
## 47109 L.A. Confidential (1997)
## 48293 Titanic (1997)
## 48605 Apt Pupil (1998)
## 49008 Schindler's List (1993)
## 52857 Client, The (1994)
## 52990 One Flew Over the Cuckoo's Nest (1975)
## 53461 Ace Ventura: When Nature Calls (1995)
## 53620 Clueless (1995)
## 53764 Bio-Dome (1996)
## 55485 Serial Mom (1994)
## 55784 Ghost (1990)
## 55959 Batman (1989)
## 56302 Mission: Impossible (1996)
## 56683 Close Shave, A (1995)
## 57188 Very Brady Sequel, A (1996)
## 57408 Old Yeller (1957)
## 57946 William Shakespeare's Romeo and Juliet (1996)
## 58118 E.T. the Extra-Terrestrial (1982)
## 59390 Heathers (1989)
## 61661 Red Rock West (1992)
## 62743 Trainspotting (1996)
## 64994 It's a Wonderful Life (1946)
## 65277 African Queen, The (1951)
## 66118 People vs. Larry Flynt, The (1996)
## 68728 Shine (1996)
## 69385 Broken Arrow (1996)
## 71020 Wolf (1994)
## 71376 Coneheads (1993)
## 74234 Sleepers (1996)
## 75582 Glory (1989)
## 75738 Rosencrantz and Guildenstern Are Dead (1990)
## 76037 Stand by Me (1986)
## 76404 Pump Up the Volume (1990)
## 77335 Cape Fear (1962)
## 79009 Casino (1995)
## 79229 Basketball Diaries, The (1995)
## 80495 Mallrats (1995)
## 81243 Philadelphia (1993)
## 82356 Benny & Joon (1993)
## 83727 Happy Gilmore (1996)
## 83852 If Lucy Fell (1996)
## 84642 Swimming with Sharks (1995)
## 84691 Tommy Boy (1995)
## 85806 Great White Hype, The (1996)
## 86236 Bulletproof (1996)
## 89339 Craft, The (1996)
## 90024 Killing Zoe (1994)
## 91962 Basquiat (1996)
## 93063 Cool Runnings (1993)
## 93537 Multiplicity (1996)
## 94191 Bottle Rocket (1996)
## 94936 Six Degrees of Separation (1993)
## 96064 Palookaville (1996)
## 96893 Friday (1995)
## 476 GoldenEye (1995)
## 1094 Twelve Monkeys (1995)
## 2050 Seven (Se7en) (1995)
## 3211 From Dusk Till Dawn (1996)
## 3580 Braveheart (1995)
## 4553 Bad Boys (1995)
## 4897 Batman Forever (1995)
## 5285 Desperado (1995)
## 5422 Net, The (1995)
## 6529 Star Wars (1977)
## 7180 Natural Born Killers (1994)
## 7633 Pulp Fiction (1994)
## 8382 Stargate (1994)
## 9251 Crow, The (1994)
## 10740 Fugitive, The (1993)
## 11230 Jurassic Park (1993)
## 13335 Terminator 2: Judgment Day (1991)
## 16038 Rock, The (1996)
## 16405 Twister (1996)
## 16802 Independence Day (ID4) (1996)
## 20286 Die Hard (1988)
## 20594 Long Kiss Goodnight, The (1996)
## 23936 Empire Strikes Back, The (1980)
## 24639 Raiders of the Lost Ark (1981)
## 25237 Aliens (1986)
## 26273 Return of the Jedi (1983)
## 26724 GoodFellas (1990)
## 26951 Alien (1979)
## 27356 Psycho (1960)
## 29223 Terminator, The (1984)
## 32054 Indiana Jones and the Last Crusade (1989)
## 33993 Star Trek: First Contact (1996)
## 34596 Die Hard 2 (1990)
## 35531 Batman Returns (1992)
## 35771 Under Siege (1992)
## 39548 Contact (1997)
## 42839 River Wild, The (1994)
## 46469 Air Force One (1997)
## 53417 Sudden Death (1995)
## 53989 Judge Dredd (1995)
## 54704 True Lies (1994)
## 55096 Last Action Hero (1993)
## 55544 Super Mario Bros. (1993)
## 55960 Batman (1989)
## 56303 Mission: Impossible (1996)
## 62240 Dragonheart (1996)
## 69090 Money Train (1995)
## 69132 Mortal Kombat (1995)
## 69386 Broken Arrow (1996)
## 69750 Die Hard: With a Vengeance (1995)
## 70029 Waterworld (1995)
## 70448 Quick and the Dead, The (1995)
## 70598 Clear and Present Danger (1994)
## 70831 Speed (1994)
## 71290 Cliffhanger (1993)
## 71421 Demolition Man (1993)
## 71941 Terminal Velocity (1994)
## 72688 Eraser (1996)
## 74786 Escape from New York (1981)
## 77091 Alien 3 (1992)
## 77823 Conan the Barbarian (1981)
## 78125 In the Line of Fire (1993)
## 78291 Executive Decision (1996)
## 80418 First Knight (1995)
## 83543 Nick of Time (1995)
## 84336 Drop Zone (1994)
## 84961 Timecop (1994)
## 85191 Program, The (1993)
## 85266 Shadow, The (1994)
## 85863 Arrival, The (1996)
## 86025 Daylight (1996)
## 86385 Last Man Standing (1996)
## 93032 Quest, The (1996)
## 97010 Judgment Night (1993)
## 97108 Under Siege 2: Dark Territory (1995)
## 97952 Getaway, The (1994)
## 711 Get Shorty (1995)
## 899 Copycat (1995)
## 1434 Babe (1995)
## 2287 Usual Suspects, The (1995)
## 3857 Taxi Driver (1976)
## 5286 Desperado (1995)
## 5535 Strange Days (1995)
## 5731 Clerks (1994)
## 6097 Ed Wood (1994)
## 7428 Professional, The (1994)
## 7634 Pulp Fiction (1994)
## 13910 Silence of the Lambs, The (1991)
## 14496 Fargo (1996)
## 21508 Fish Called Wanda, A (1988)
## 21738 Monty Python's Life of Brian (1979)
## 22925 Abyss, The (1989)
## 23298 Monty Python and the Holy Grail (1974)
## 24294 Princess Bride, The (1987)
## 25024 Brazil (1985)
## 25238 Aliens (1986)
## 26952 Alien (1979)
## 27591 Blues Brothers, The (1980)
## 28967 Sting, The (1973)
## 30851 Unforgiven (1992)
## 31066 Back to the Future (1985)
## 31636 Young Frankenstein (1974)
## 31842 This Is Spinal Tap (1984)
## 40495 Hunt for Red October, The (1990)
## 40801 Full Monty, The (1997)
## 41627 Heat (1995)
## 44375 Scream (1996)
## 45601 Liar Liar (1997)
## 56874 Kingpin (1996)
## 58949 Duck Soup (1933)
## 59051 Highlander (1986)
## 61662 Red Rock West (1992)
## 65706 Bonnie and Clyde (1967)
## 66860 Annie Hall (1977)
## 67217 Local Hero (1983)
## 67284 Manhattan (1979)
## 72283 Primal Fear (1996)
## 72962 Rear Window (1954)
## 75116 Grifters, The (1990)
## 75368 Quiet Man, The (1952)
## 75871 Chinatown (1974)
## 76286 Manchurian Candidate, The (1962)
## 76487 Arsenic and Old Lace (1944)
## 76930 Being There (1979)
## 79134 Kicking and Screaming (1995)
## 80004 Tin Men (1987)
## 83603 Beautiful Girls (1996)
## 84643 Swimming with Sharks (1995)
## 94320 Shallow Grave (1994)
## 712 Get Shorty (1995)
## 2546 Mighty Aphrodite (1995)
## 5423 Net, The (1995)
## 9972 Lion King, The (1994)
## 11231 Jurassic Park (1993)
## 15765 Wallace & Gromit: The Best of Aardman Animation (1996)
## 18655 Wizard of Oz, The (1939)
## 25764 Clockwork Orange, A (1971)
## 32910 Field of Dreams (1989)
## 34302 Sling Blade (1996)
## 39549 Contact (1997)
## 40802 Full Monty, The (1997)
## 52481 Wag the Dog (1997)
## 54475 Adventures of Priscilla, Queen of the Desert, The (1994)
## 59391 Heathers (1989)
## 69387 Broken Arrow (1996)
## 70832 Speed (1994)
## 73727 Night of the Living Dead (1968)
## 74497 Crying Game, The (1992)
## 77033 Paris, Texas (1984)
## 86963 Diva (1981)
## 87831 Peacemaker, The (1997)
## 88005 Washington Square (1997)
## 88733 Oscar & Lucinda (1997)
## 89735 Paradise Road (1997)
## 89744 Brassed Off (1996)
## 92241 Romy and Michele's High School Reunion (1997)
## 39550 Contact (1997)
## 40366 Mimic (1997)
## 40803 Full Monty, The (1997)
## 43823 English Patient, The (1996)
## 44376 Scream (1996)
## 44803 Evita (1996)
## 45602 Liar Liar (1997)
## 46153 Face/Off (1997)
## 46470 Air Force One (1997)
## 46862 In & Out (1997)
## 47501 Ice Storm, The (1997)
## 47595 Mrs. Brown (Her Majesty, Mrs. Brown) (1997)
## 49280 Everyone Says I Love You (1996)
## 50215 Crash (1996)
## 51185 Kiss the Girls (1997)
## 51353 Game, The (1997)
## 51877 Boogie Nights (1997)
## 52109 Alien: Resurrection (1997)
## 77956 I Know What You Did Last Summer (1997)
## 91637 Kiss Me, Guido (1997)
## 602 Four Rooms (1995)
## 713 Get Shorty (1995)
## 1095 Twelve Monkeys (1995)
## 2288 Usual Suspects, The (1995)
## 3212 From Dusk Till Dawn (1996)
## 3858 Taxi Driver (1976)
## 4041 Rumble in the Bronx (1995)
## 4554 Bad Boys (1995)
## 4898 Batman Forever (1995)
## 5203 Crumb (1994)
## 5287 Desperado (1995)
## 5424 Net, The (1995)
## 5536 Strange Days (1995)
## 5732 Clerks (1994)
## 6231 Hoop Dreams (1994)
## 6530 Star Wars (1977)
## 7181 Natural Born Killers (1994)
## 7429 Professional, The (1994)
## 7635 Pulp Fiction (1994)
## 8169 Three Colors: Red (1994)
## 8631 Shawshank Redemption, The (1994)
## 9433 Forrest Gump (1994)
## 9740 Four Weddings and a Funeral (1994)
## 10429 Carlito's Way (1993)
## 10741 Fugitive, The (1993)
## 12720 True Romance (1993)
## 12945 Home Alone (1990)
## 13336 Terminator 2: Judgment Day (1991)
## 14497 Fargo (1996)
## 15239 Kids in the Hall: Brain Candy (1996)
## 15321 Mystery Science Theater 3000: The Movie (1996)
## 16039 Rock, The (1996)
## 16406 Twister (1996)
## 16803 Independence Day (ID4) (1996)
## 18306 Supercop (1992)
## 18386 Bound (1996)
## 20287 Die Hard (1988)
## 20925 Swingers (1996)
## 21118 Willy Wonka and the Chocolate Factory (1971)
## 21739 Monty Python's Life of Brian (1979)
## 22009 Reservoir Dogs (1992)
## 22528 Top Gun (1986)
## 23937 Empire Strikes Back, The (1980)
## 24295 Princess Bride, The (1987)
## 24640 Raiders of the Lost Ark (1981)
## 25623 12 Angry Men (1957)
## 26274 Return of the Jedi (1983)
## 27212 Army of Darkness (1993)
## 27592 Blues Brothers, The (1980)
## 31067 Back to the Future (1985)
## 32055 Indiana Jones and the Last Crusade (1989)
## 32911 Field of Dreams (1989)
## 33519 Cape Fear (1991)
## 33994 Star Trek: First Contact (1996)
## 34766 Star Trek VI: The Undiscovered Country (1991)
## 35351 Star Trek IV: The Voyage Home (1986)
## 35532 Batman Returns (1992)
## 37234 Beavis and Butt-head Do America (1996)
## 38054 Chasing Amy (1997)
## 38482 Fifth Element, The (1997)
## 39181 Men in Black (1997)
## 39551 Contact (1997)
## 39971 George of the Jungle (1997)
## 40496 Hunt for Red October, The (1990)
## 41428 Good Will Hunting (1997)
## 41628 Heat (1995)
## 42998 Time to Kill, A (1996)
## 43824 English Patient, The (1996)
## 44377 Scream (1996)
## 46154 Face/Off (1997)
## 49009 Schindler's List (1993)
## 50526 Cop Land (1997)
## 51615 How to Be a Player (1997)
## 52356 Jackie Brown (1997)
## 53225 Spawn (1997)
## 54604 Naked Gun 33 1/3: The Final Insult (1994)
## 54705 True Lies (1994)
## 54886 Addams Family Values (1993)
## 55097 Last Action Hero (1993)
## 55579 Three Musketeers, The (1993)
## 55785 Ghost (1990)
## 55961 Batman (1989)
## 56304 Mission: Impossible (1996)
## 56628 Spy Hard (1996)
## 58119 E.T. the Extra-Terrestrial (1982)
## 61254 Smoke (1995)
## 61708 Bronx Tale, A (1993)
## 61757 Rudy (1993)
## 61824 Short Cuts (1993)
## 61899 Tombstone (1993)
## 62744 Trainspotting (1996)
## 62973 First Wives Club, The (1996)
## 64247 My Fair Lady (1964)
## 64995 It's a Wonderful Life (1946)
## 66119 People vs. Larry Flynt, The (1996)
## 69260 Things to Do in Denver when You're Dead (1995)
## 69751 Die Hard: With a Vengeance (1995)
## 70599 Clear and Present Danger (1994)
## 70833 Speed (1994)
## 71291 Cliffhanger (1993)
## 71422 Demolition Man (1993)
## 72021 Beauty and the Beast (1991)
## 73981 Angels in the Outfield (1994)
## 74662 Christmas Carol, A (1938)
## 75583 Glory (1989)
## 78126 In the Line of Fire (1993)
## 78292 Executive Decision (1996)
## 79135 Kicking and Screaming (1995)
## 80496 Mallrats (1995)
## 81024 Dave (1993)
## 81443 Sirens (1994)
## 82974 Tomorrow Never Dies (1997)
## 83604 Beautiful Girls (1996)
## 83728 Happy Gilmore (1996)
## 84376 Dumb & Dumber (1994)
## 84644 Swimming with Sharks (1995)
## 85222 Rising Sun (1993)
## 85807 Great White Hype, The (1996)
## 86810 Looking for Richard (1996)
## 88367 Scream 2 (1997)
## 89565 Island of Dr. Moreau, The (1996)
## 89900 Airheads (1994)
## 90025 Killing Zoe (1994)
## 91963 Basquiat (1996)
## 92011 2 Days in the Valley (1996)
## 92113 Private Parts (1997)
## 92364 Con Air (1997)
## 92485 Trees Lounge (1996)
## 93064 Cool Runnings (1993)
## 93963 Don't Be a Menace to South Central While Drinking Your Juice in the Hood (1996)
## 94192 Bottle Rocket (1996)
## 94321 Shallow Grave (1994)
## 94690 Sliver (1993)
## 94867 Flirting With Disaster (1996)
## 95588 Get on the Bus (1996)
## 96376 In the Army Now (1994)
## 96714 Kiss of Death (1995)
## 96750 Virtuosity (1995)
## 96858 Assassins (1995)
## 96894 Friday (1995)
## 97410 Best of the Best 3: No Turning Back (1995)
## 97560 Clockers (1995)
## 98024 Surviving the Game (1994)
## 98447 Specialist, The (1994)
## 98653 House Party 3 (1994)
## 99 Toy Story (1995)
## 477 GoldenEye (1995)
## 714 Get Shorty (1995)
## 1096 Twelve Monkeys (1995)
## 1435 Babe (1995)
## 1679 Dead Man Walking (1995)
## 2051 Seven (Se7en) (1995)
## 2289 Usual Suspects, The (1995)
## 2936 Mr. Holland's Opus (1995)
## 3213 From Dusk Till Dawn (1996)
## 3581 Braveheart (1995)
## 4042 Rumble in the Bronx (1995)
## 4253 Birdcage, The (1996)
## 4480 Brothers McMullen, The (1995)
## 4662 Apollo 13 (1995)
## 4899 Batman Forever (1995)
## 5058 Crimson Tide (1995)
## 5368 Free Willy 2: The Adventure Home (1995)
## 5425 Net, The (1995)
## 5618 To Wong Foo, Thanks for Everything! Julie Newmar (1995)
## 5668 Billy Madison (1995)
## 5901 Dolores Claiborne (1994)
## 6232 Hoop Dreams (1994)
## 6339 I.Q. (1994)
## 6531 Star Wars (1977)
## 7008 Legends of the Fall (1994)
## 7182 Natural Born Killers (1994)
## 7309 Outbreak (1995)
## 7636 Pulp Fiction (1994)
## 8005 Quiz Show (1994)
## 8383 Stargate (1994)
## 8499 Santa Clause, The (1994)
## 8632 Shawshank Redemption, The (1994)
## 8992 While You Were Sleeping (1995)
## 9146 Ace Ventura: Pet Detective (1994)
## 9252 Crow, The (1994)
## 9434 Forrest Gump (1994)
## 9741 Four Weddings and a Funeral (1994)
## 9973 Lion King, The (1994)
## 10176 Mask, The (1994)
## 10307 Maverick (1994)
## 10508 Firm, The (1993)
## 10637 Free Willy (1993)
## 10742 Fugitive, The (1993)
## 11006 Hot Shots! Part Deux (1993)
## 11083 Hudsucker Proxy, The (1994)
## 11232 Jurassic Park (1993)
## 11867 Searching for Bobby Fischer (1993)
## 12016 Sleepless in Seattle (1993)
## 12247 Blade Runner (1982)
## 12480 So I Married an Axe Murderer (1993)
## 12586 Nightmare Before Christmas, The (1993)
## 12721 True Romance (1993)
## 12837 Welcome to the Dollhouse (1995)
## 12946 Home Alone (1990)
## 13090 Aladdin (1992)
## 13337 Terminator 2: Judgment Day (1991)
## 13616 Dances with Wolves (1990)
## 13911 Silence of the Lambs, The (1991)
## 14245 Snow White and the Seven Dwarfs (1937)
## 14498 Fargo (1996)
## 14906 Heavy Metal (1981)
## 14978 Aristocats, The (1970)
## 15131 Diabolique (1996)
## 15322 Mystery Science Theater 3000: The Movie (1996)
## 15516 Truth About Cats & Dogs, The (1996)
## 16040 Rock, The (1996)
## 16407 Twister (1996)
## 16652 Striptease (1996)
## 16804 Independence Day (ID4) (1996)
## 17593 Phenomenon (1996)
## 17973 Godfather, The (1972)
## 18656 Wizard of Oz, The (1939)
## 18886 Gone with the Wind (1939)
## 19280 2001: A Space Odyssey (1968)
## 19836 Homeward Bound: The Incredible Journey (1993)
## 19966 Bedknobs and Broomsticks (1971)
## 20288 Die Hard (1988)
## 20492 Lawnmower Man, The (1992)
## 20595 Long Kiss Goodnight, The (1996)
## 20767 Ghost and the Darkness, The (1996)
## 20926 Swingers (1996)
## 21119 Willy Wonka and the Chocolate Factory (1971)
## 21509 Fish Called Wanda, A (1988)
## 21740 Monty Python's Life of Brian (1979)
## 21896 Dirty Dancing (1987)
## 22010 Reservoir Dogs (1992)
## 22149 Platoon (1986)
## 22260 Weekend at Bernie's (1989)
## 22327 Basic Instinct (1992)
## 22431 Glengarry Glen Ross (1992)
## 22529 Top Gun (1986)
## 22721 On Golden Pond (1981)
## 22926 Abyss, The (1989)
## 23184 Private Benjamin (1980)
## 23299 Monty Python and the Holy Grail (1974)
## 23938 Empire Strikes Back, The (1980)
## 24296 Princess Bride, The (1987)
## 24641 Raiders of the Lost Ark (1981)
## 25025 Brazil (1985)
## 25239 Aliens (1986)
## 25987 Apocalypse Now (1979)
## 26275 Return of the Jedi (1983)
## 26725 GoodFellas (1990)
## 26953 Alien (1979)
## 27357 Psycho (1960)
## 27593 Blues Brothers, The (1980)
## 28037 Full Metal Jacket (1987)
## 28427 Amadeus (1984)
## 28788 Right Stuff, The (1983)
## 29224 Terminator, The (1984)
## 29508 Dead Poets Society (1989)
## 29967 Nikita (La Femme Nikita) (1990)
## 30276 Shining, The (1980)
## 30593 Groundhog Day (1993)
## 31068 Back to the Future (1985)
## 31637 Young Frankenstein (1974)
## 31843 This Is Spinal Tap (1984)
## 32056 Indiana Jones and the Last Crusade (1989)
## 32770 Pink Floyd - The Wall (1982)
## 32912 Field of Dreams (1989)
## 33145 When Harry Met Sally... (1989)
## 33388 Bram Stoker's Dracula (1992)
## 33520 Cape Fear (1991)
## 33678 Nightmare on Elm Street, A (1984)
## 33995 Star Trek: First Contact (1996)
## 34303 Sling Blade (1996)
## 34485 101 Dalmatians (1996)
## 34597 Die Hard 2 (1990)
## 34767 Star Trek VI: The Undiscovered Country (1991)
## 34943 Star Trek: The Wrath of Khan (1982)
## 35173 Star Trek III: The Search for Spock (1984)
## 35352 Star Trek IV: The Voyage Home (1986)
## 35533 Batman Returns (1992)
## 35664 Young Guns (1988)
## 35772 Under Siege (1992)
## 35926 Jaws (1975)
## 36498 Jerry Maguire (1996)
## 36854 Raising Arizona (1987)
## 37078 Sneakers (1992)
## 37235 Beavis and Butt-head Do America (1996)
## 37393 Last of the Mohicans, The (1992)
## 37839 Devil's Own, The (1997)
## 38055 Chasing Amy (1997)
## 38149 Turbo: A Power Rangers Movie (1997)
## 38182 Grosse Pointe Blank (1997)
## 38338 Austin Powers: International Man of Mystery (1997)
## 38483 Fifth Element, The (1997)
## 38716 Lost World: Jurassic Park, The (1997)
## 38965 My Best Friend's Wedding (1997)
## 39182 Men in Black (1997)
## 39552 Contact (1997)
## 40231 Air Bud (1997)
## 40497 Hunt for Red October, The (1990)
## 41063 Gattaca (1997)
## 41215 Starship Troopers (1997)
## 42337 Leaving Las Vegas (1995)
## 42642 Bed of Roses (1996)
## 42740 Up Close and Personal (1996)
## 42840 River Wild, The (1994)
## 42999 Time to Kill, A (1996)
## 43399 Tin Cup (1996)
## 44378 Scream (1996)
## 45369 Donnie Brasco (1997)
## 45603 Liar Liar (1997)
## 46155 Face/Off (1997)
## 46471 Air Force One (1997)
## 47110 L.A. Confidential (1997)
## 48294 Titanic (1997)
## 49010 Schindler's List (1993)
## 49871 Dante's Peak (1997)
## 50352 G.I. Jane (1997)
## 50727 Conspiracy Theory (1997)
## 51354 Game, The (1997)
## 51714 Bean (1997)
## 52858 Client, The (1994)
## 52991 One Flew Over the Cuckoo's Nest (1975)
## 53226 Spawn (1997)
## 53418 Sudden Death (1995)
## 53462 Ace Ventura: When Nature Calls (1995)
## 53497 Powder (1995)
## 53547 Dangerous Minds (1995)
## 53621 Clueless (1995)
## 53765 Bio-Dome (1996)
## 53990 Judge Dredd (1995)
## 54033 Showgirls (1995)
## 54080 Heavyweights (1994)
## 54105 Miracle on 34th Street (1994)
## 54199 Tales From the Crypt Presents: Demon Knight (1995)
## 54258 Star Trek: Generations (1994)
## 54706 True Lies (1994)
## 54887 Addams Family Values (1993)
## 55025 Beverly Hills Cop III (1994)
## 55098 Last Action Hero (1993)
## 55163 Man Without a Face, The (1993)
## 55252 Mrs. Doubtfire (1993)
## 55425 Robin Hood: Men in Tights (1993)
## 55486 Serial Mom (1994)
## 55580 Three Musketeers, The (1993)
## 55688 Brady Bunch Movie, The (1995)
## 55786 Ghost (1990)
## 55962 Batman (1989)
## 56305 Mission: Impossible (1996)
## 56629 Spy Hard (1996)
## 56788 Jack (1996)
## 56875 Kingpin (1996)
## 57046 Nutty Professor, The (1996)
## 57189 Very Brady Sequel, A (1996)
## 57274 Tales from the Crypt Presents: Bordello of Blood (1996)
## 57560 Cinderella (1950)
## 57692 Mary Poppins (1964)
## 58032 Aladdin and the King of Thieves (1996)
## 58120 E.T. the Extra-Terrestrial (1982)
## 58362 Children of the Corn: The Gathering (1996)
## 58462 Transformers: The Movie, The (1986)
## 59052 Highlander (1986)
## 59209 Fantasia (1940)
## 59392 Heathers (1989)
## 59819 American Werewolf in London, An (1981)
## 59939 Amityville Horror, The (1979)
## 60221 Burnt Offerings (1976)
## 60364 Omen, The (1976)
## 60460 Star Trek: The Motion Picture (1979)
## 60568 Star Trek V: The Final Frontier (1989)
## 60648 Grease (1978)
## 60795 Jaws 2 (1978)
## 60911 Jackie Chan's First Strike (1996)
## 61080 Free Willy 3: The Rescue (1997)
## 61580 Jungle Book, The (1994)
## 61758 Rudy (1993)
## 61900 Tombstone (1993)
## 62035 Courage Under Fire (1996)
## 62241 Dragonheart (1996)
## 62396 James and the Giant Peach (1996)
## 62745 Trainspotting (1996)
## 62974 First Wives Club, The (1996)
## 63117 Matilda (1996)
## 65490 Dumbo (1941)
## 65888 Rebel Without a Cause (1955)
## 66120 People vs. Larry Flynt, The (1996)
## 67669 Deer Hunter, The (1978)
## 68252 Gandhi (1982)
## 68544 My Life as a Dog (Mitt liv som hund) (1985)
## 68946 My Own Private Idaho (1991)
## 69091 Money Train (1995)
## 69133 Mortal Kombat (1995)
## 69183 Pocahontas (1995)
## 69388 Broken Arrow (1996)
## 69651 Rob Roy (1995)
## 69752 Die Hard: With a Vengeance (1995)
## 69910 Species (1995)
## 70030 Waterworld (1995)
## 70245 Interview with the Vampire (1994)
## 70600 Clear and Present Danger (1994)
## 70834 Speed (1994)
## 71021 Wolf (1994)
## 71129 Another Stakeout (1993)
## 71239 City Slickers II: The Legend of Curly's Gold (1994)
## 71292 Cliffhanger (1993)
## 71377 Coneheads (1993)
## 71423 Demolition Man (1993)
## 71531 Englishman Who Went Up a Hill, But Came Down a Mountain, The (1995)
## 71902 Son in Law (1993)
## 72022 Beauty and the Beast (1991)
## 72284 Primal Fear (1996)
## 72547 Hunchback of Notre Dame, The (1996)
## 72689 Eraser (1996)
## 73831 Extreme Measures (1996)
## 73889 Chamber, The (1996)
## 73982 Angels in the Outfield (1994)
## 74135 Robin Hood: Prince of Thieves (1991)
## 74235 Sleepers (1996)
## 74787 Escape from New York (1981)
## 74866 Howling, The (1981)
## 75117 Grifters, The (1990)
## 75584 Glory (1989)
## 75872 Chinatown (1974)
## 76038 Stand by Me (1986)
## 76405 Pump Up the Volume (1990)
## 76840 Somewhere in Time (1980)
## 77092 Alien 3 (1992)
## 77265 Candyman (1992)
## 77636 Volcano (1997)
## 77824 Conan the Barbarian (1981)
## 78293 Executive Decision (1996)
## 78590 Jackal, The (1997)
## 78874 American President, The (1995)
## 79010 Casino (1995)
## 79377 Miami Rhapsody (1995)
## 79927 Better Off Dead... (1985)
## 80005 Tin Men (1987)
## 80150 To Die For (1995)
## 80232 Home for the Holidays (1995)
## 80298 Juror, The (1996)
## 80376 Canadian Bacon (1994)
## 80555 Nine Months (1995)
## 80605 Boys on the Side (1995)
## 80645 Circle of Friends (1995)
## 80867 Nell (1994)
## 81025 Dave (1993)
## 81191 Made in America (1993)
## 81244 Philadelphia (1993)
## 81494 Threesome (1994)
## 81548 Pretty Woman (1990)
## 81861 Ransom (1996)
## 82233 Real Genius (1985)
## 82357 Benny & Joon (1993)
## 82833 Amistad (1997)
## 83246 Jumanji (1995)
## 83353 Father of the Bride Part II (1995)
## 83605 Beautiful Girls (1996)
## 83729 Happy Gilmore (1996)
## 83934 Casper (1995)
## 83984 Congo (1995)
## 84033 Devil in a Blue Dress (1995)
## 84125 Kids (1995)
## 84377 Dumb & Dumber (1994)
## 84447 French Kiss (1995)
## 84533 Milk Money (1994)
## 84692 Tommy Boy (1995)
## 84923 Speechless (1994)
## 85137 Menace II Society (1993)
## 85192 Program, The (1993)
## 85267 Shadow, The (1994)
## 85324 Andre (1994)
## 85418 One Fine Day (1996)
## 85513 Candyman: Farewell to the Flesh (1995)
## 85563 Eddie (1996)
## 85864 Arrival, The (1996)
## 85949 Phantom, The (1996)
## 86090 Fled (1996)
## 86237 Bulletproof (1996)
## 86386 Last Man Standing (1996)
## 86617 That Thing You Do! (1996)
## 86868 Days of Thunder (1990)
## 87356 Fools Rush In (1997)
## 88368 Scream 2 (1997)
## 89439 Harriet the Spy (1996)
## 89566 Island of Dr. Moreau, The (1996)
## 89681 Preacher's Wife, The (1996)
## 89849 Murder in the First (1995)
## 89931 With Honors (1994)
## 90068 Renaissance Man (1994)
## 90153 Fox and the Hound, The (1981)
## 90280 How to Make an American Quilt (1995)
## 90993 Passion Fish (1992)
## 92012 2 Days in the Valley (1996)
## 92365 Con Air (1997)
## 92938 Jury Duty (1995)
## 93065 Cool Runnings (1993)
## 93312 Forget Paris (1995)
## 93366 Just Cause (1995)
## 93405 Paper, The (1994)
## 93445 Fearless (1993)
## 93855 Now and Then (1995)
## 93879 Mr. Wrong (1996)
## 93924 Pallbearer, The (1996)
## 93964 Don't Be a Menace to South Central While Drinking Your Juice in the Hood (1996)
## 93999 Adventures of Pinocchio, The (1996)
## 94170 Balto (1995)
## 94389 Reality Bites (1994)
## 94481 Oliver & Company (1988)
## 94507 Joe's Apartment (1996)
## 94625 Bloodsport 2 (1995)
## 94654 Speed 2: Cruise Control (1997)
## 95731 Hackers (1995)
## 95849 Blue Chips (1994)
## 96285 Major Payne (1994)
## 96305 Man of the House (1995)
## 96412 Young Guns II (1990)
## 96678 Amos & Andrew (1993)
## 96695 Jade (1995)
## 96895 Friday (1995)
## 96941 Higher Learning (1995)
## 97065 Night Falls on Manhattan (1997)
## 97249 Cutthroat Island (1995)
## 97411 Best of the Best 3: No Turning Back (1995)
## 97561 Clockers (1995)
## 97770 Before and After (1996)
## 97850 Celtic Pride (1996)
## 98139 Kazaam (1996)
## 98543 Highlander III: The Sorcerer (1994)
## 98662 Panther (1995)
## 98667 Jason's Lyric (1994)
## 98675 Above the Rim (1994)
## 100 Toy Story (1995)
## 1436 Babe (1995)
## 2052 Seven (Se7en) (1995)
## 3582 Braveheart (1995)
## 4254 Birdcage, The (1996)
## 4663 Apollo 13 (1995)
## 9435 Forrest Gump (1994)
## 9974 Lion King, The (1994)
## 13091 Aladdin (1992)
## 15517 Truth About Cats & Dogs, The (1996)
## 16041 Rock, The (1996)
## 16408 Twister (1996)
## 16653 Striptease (1996)
## 16805 Independence Day (ID4) (1996)
## 17594 Phenomenon (1996)
## 20062 Sound of Music, The (1965)
## 21897 Dirty Dancing (1987)
## 24297 Princess Bride, The (1987)
## 27358 Psycho (1960)
## 33146 When Harry Met Sally... (1989)
## 34486 101 Dalmatians (1996)
## 36499 Jerry Maguire (1996)
## 37637 Jungle2Jungle (1997)
## 38183 Grosse Pointe Blank (1997)
## 38339 Austin Powers: International Man of Mystery (1997)
## 38717 Lost World: Jurassic Park, The (1997)
## 38966 My Best Friend's Wedding (1997)
## 39183 Men in Black (1997)
## 39553 Contact (1997)
## 39972 George of the Jungle (1997)
## 41847 Sabrina (1995)
## 42338 Leaving Las Vegas (1995)
## 42643 Bed of Roses (1996)
## 43000 Time to Kill, A (1996)
## 43400 Tin Cup (1996)
## 43825 English Patient, The (1996)
## 44379 Scream (1996)
## 44804 Evita (1996)
## 45604 Liar Liar (1997)
## 45993 Breakdown (1997)
## 46156 Face/Off (1997)
## 46472 Air Force One (1997)
## 47892 Deceiver (1997)
## 48295 Titanic (1997)
## 49011 Schindler's List (1993)
## 49477 Mother (1996)
## 49647 Murder at 1600 (1997)
## 49872 Dante's Peak (1997)
## 50728 Conspiracy Theory (1997)
## 50967 Desperate Measures (1998)
## 51186 Kiss the Girls (1997)
## 51355 Game, The (1997)
## 51797 Mad City (1997)
## 53798 Black Sheep (1996)
## 56306 Mission: Impossible (1996)
## 56789 Jack (1996)
## 57047 Nutty Professor, The (1996)
## 58121 E.T. the Extra-Terrestrial (1982)
## 61901 Tombstone (1993)
## 62975 First Wives Club, The (1996)
## 63118 Matilda (1996)
## 68883 Addicted to Love (1997)
## 69389 Broken Arrow (1996)
## 72285 Primal Fear (1996)
## 72548 Hunchback of Notre Dame, The (1996)
## 72690 Eraser (1996)
## 73832 Extreme Measures (1996)
## 73890 Chamber, The (1996)
## 77957 I Know What You Did Last Summer (1997)
## 80299 Juror, The (1996)
## 81862 Ransom (1996)
## 82762 MatchMaker, The (1997)
## 83354 Father of the Bride Part II (1995)
## 83730 Happy Gilmore (1996)
## 85564 Eddie (1996)
## 85624 Space Jam (1996)
## 85950 Phantom, The (1996)
## 86618 That Thing You Do! (1996)
## 86760 To Gillian on Her 37th Birthday (1996)
## 87153 My Fellow Americans (1996)
## 87251 Michael (1996)
## 87513 Picture Perfect (1997)
## 88752 Half Baked (1998)
## 89115 White Squall (1996)
## 89242 Down Periscope (1996)
## 89440 Harriet the Spy (1996)
## 89491 Chain Reaction (1996)
## 90883 Winnie the Pooh and the Blustery Day (1968)
## 91026 Eye for an Eye (1996)
## 91059 Fear (1996)
## 91116 Substitute, The (1996)
## 91296 Shadow Conspiracy (1997)
## 91572 Hercules (1997)
## 91899 Stealing Beauty (1996)
## 92242 Romy and Michele's High School Reunion (1997)
## 92366 Con Air (1997)
## 93793 Associate, The (1996)
## 93835 Dracula: Dead and Loving It (1995)
## 94634 Double Team (1997)
## 95918 Last Dance (1996)
## 96546 Family Thing, A (1996)
## 97226 Chairman of the Board (1998)
## 97771 Before and After (1996)
## 97851 Celtic Pride (1996)
## 97934 'Til There Was You (1997)
## 2053 Seven (Se7en) (1995)
## 2937 Mr. Holland's Opus (1995)
## 3382 Angels and Insects (1995)
## 3583 Braveheart (1995)
## 4481 Brothers McMullen, The (1995)
## 4664 Apollo 13 (1995)
## 4900 Batman Forever (1995)
## 5853 Disclosure (1994)
## 7009 Legends of the Fall (1994)
## 7310 Outbreak (1995)
## 9436 Forrest Gump (1994)
## 9742 Four Weddings and a Funeral (1994)
## 10509 Firm, The (1993)
## 11718 Remains of the Day, The (1993)
## 12722 True Romance (1993)
## 13617 Dances with Wolves (1990)
## 15196 Moll Flanders (1996)
## 17595 Phenomenon (1996)
## 17810 Spitfire Grill, The (1996)
## 19281 2001: A Space Odyssey (1968)
## 20596 Long Kiss Goodnight, The (1996)
## 20768 Ghost and the Darkness, The (1996)
## 20874 Jude (1996)
## 22150 Platoon (1986)
## 22722 On Golden Pond (1981)
## 25624 12 Angry Men (1957)
## 28428 Amadeus (1984)
## 28789 Right Stuff, The (1983)
## 29509 Dead Poets Society (1989)
## 32547 Unbearable Lightness of Being, The (1988)
## 32913 Field of Dreams (1989)
## 33855 Breaking the Waves (1996)
## 33996 Star Trek: First Contact (1996)
## 34304 Sling Blade (1996)
## 36500 Jerry Maguire (1996)
## 37079 Sneakers (1992)
## 37638 Jungle2Jungle (1997)
## 37840 Devil's Own, The (1997)
## 39554 Contact (1997)
## 42339 Leaving Las Vegas (1995)
## 42574 Restoration (1995)
## 42741 Up Close and Personal (1996)
## 43001 Time to Kill, A (1996)
## 43401 Tin Cup (1996)
## 43826 English Patient, The (1996)
## 44211 Marvin's Room (1996)
## 45605 Liar Liar (1997)
## 46473 Air Force One (1997)
## 46863 In & Out (1997)
## 48296 Titanic (1997)
## 49012 Schindler's List (1993)
## 49478 Mother (1996)
## 49648 Murder at 1600 (1997)
## 49873 Dante's Peak (1997)
## 50216 Crash (1996)
## 50353 G.I. Jane (1997)
## 50729 Conspiracy Theory (1997)
## 50968 Desperate Measures (1998)
## 51187 Kiss the Girls (1997)
## 51356 Game, The (1997)
## 52596 Hard Rain (1998)
## 52859 Client, The (1994)
## 53498 Powder (1995)
## 53548 Dangerous Minds (1995)
## 54106 Miracle on 34th Street (1994)
## 54259 Star Trek: Generations (1994)
## 54973 Age of Innocence, The (1993)
## 55164 Man Without a Face, The (1993)
## 55787 Ghost (1990)
## 55963 Batman (1989)
## 58122 E.T. the Extra-Terrestrial (1982)
## 61759 Rudy (1993)
## 61825 Short Cuts (1993)
## 61902 Tombstone (1993)
## 67379 Miller's Crossing (1990)
## 68108 Ben-Hur (1959)
## 68427 Killing Fields, The (1984)
## 69261 Things to Do in Denver when You're Dead (1995)
## 69652 Rob Roy (1995)
## 69961 Walk in the Clouds, A (1995)
## 70114 White Man's Burden (1995)
## 70125 Wild Bill (1995)
## 71022 Wolf (1994)
## 71085 Wyatt Earp (1994)
## 71562 Kalifornia (1993)
## 71645 Piano, The (1993)
## 71787 Romeo Is Bleeding (1993)
## 72286 Primal Fear (1996)
## 73891 Chamber, The (1996)
## 74603 Sophie's Choice (1982)
## 76039 Stand by Me (1986)
## 76406 Pump Up the Volume (1990)
## 76617 Fried Green Tomatoes (1991)
## 76841 Somewhere in Time (1980)
## 77519 Crucible, The (1996)
## 77637 Volcano (1997)
## 78421 Perfect World, A (1993)
## 78475 McHale's Navy (1997)
## 78591 Jackal, The (1997)
## 79293 Little Women (1994)
## 79478 House of the Spirits, The (1993)
## 79728 Sex, Lies, and Videotape (1989)
## 80151 To Die For (1995)
## 80419 First Knight (1995)
## 80606 Boys on the Side (1995)
## 80646 Circle of Friends (1995)
## 80750 Immortal Beloved (1994)
## 80868 Nell (1994)
## 80964 Corrina, Corrina (1994)
## 81369 Shadowlands (1993)
## 82132 Michael Collins (1996)
## 82500 Saint, The (1997)
## 82975 Tomorrow Never Dies (1997)
## 84268 Don Juan DeMarco (1995)
## 86761 To Gillian on Her 37th Birthday (1996)
## 87514 Picture Perfect (1997)
## 87832 Peacemaker, The (1997)
## 88316 For Richer or Poorer (1997)
## 89116 White Squall (1996)
## 89191 Unforgettable (1996)
## 90281 How to Make an American Quilt (1995)
## 90725 Ruby in Paradise (1993)
## 91117 Substitute, The (1996)
## 91222 Mother Night (1996)
## 91531 Keys to Tulsa (1997)
## 93200 Hamlet (1996)
## 93406 Paper, The (1994)
## 93446 Fearless (1993)
## 93856 Now and Then (1995)
## 93944 War, The (1994)
## 94592 Carried Away (1996)
## 95312 Some Kind of Wonderful (1987)
## 95935 In Love and War (1996)
## 96082 Portrait of a Lady, The (1996)
## 96715 Kiss of Death (1995)
## 96796 Flesh and Bone (1993)
## 96971 When a Man Loves a Woman (1994)
## 98291 Losing Chase (1996)
## 98398 M. Butterfly (1993)
## 98680 Moonlight and Valentino (1995)
## 98687 Scarlet Letter, The (1995)
## 3584 Braveheart (1995)
## 8633 Shawshank Redemption, The (1994)
## 13912 Silence of the Lambs, The (1991)
## 19500 Mr. Smith Goes to Washington (1939)
## 20063 Sound of Music, The (1965)
## 23939 Empire Strikes Back, The (1980)
## 28790 Right Stuff, The (1983)
## 28968 Sting, The (1973)
## 32914 Field of Dreams (1989)
## 36501 Jerry Maguire (1996)
## 37841 Devil's Own, The (1997)
## 43827 English Patient, The (1996)
## 57561 Cinderella (1950)
## 58530 To Kill a Mockingbird (1962)
## 63212 Philadelphia Story, The (1940)
## 63330 Vertigo (1958)
## 63510 North by Northwest (1959)
## 63742 Some Like It Hot (1959)
## 64728 East of Eden (1955)
## 66422 Magnificent Seven, The (1954)
## 70601 Clear and Present Danger (1994)
## 72963 Rear Window (1954)
## 73147 It Happened One Night (1934)
## 73259 All About Eve (1950)
## 79521 Singin' in the Rain (1952)
## 96630 Top Hat (1935)
## 98692 8 Seconds (1994)
## 1097 Twelve Monkeys (1995)
## 1680 Dead Man Walking (1995)
## 2290 Usual Suspects, The (1995)
## 2721 Postino, Il (1994)
## 3859 Taxi Driver (1976)
## 4043 Rumble in the Bronx (1995)
## 4255 Birdcage, The (1996)
## 4665 Apollo 13 (1995)
## 7637 Pulp Fiction (1994)
## 9437 Forrest Gump (1994)
## 12248 Blade Runner (1982)
## 12723 True Romance (1993)
## 13618 Dances with Wolves (1990)
## 13913 Silence of the Lambs, The (1991)
## 15323 Mystery Science Theater 3000: The Movie (1996)
## 20597 Long Kiss Goodnight, The (1996)
## 20927 Swingers (1996)
## 23577 Wrong Trousers, The (1993)
## 24642 Raiders of the Lost Ark (1981)
## 25240 Aliens (1986)
## 25765 Clockwork Orange, A (1971)
## 25988 Apocalypse Now (1979)
## 26726 GoodFellas (1990)
## 28429 Amadeus (1984)
## 30852 Unforgiven (1992)
## 31844 This Is Spinal Tap (1984)
## 34418 Ridicule (1996)
## 36378 Citizen Ruth (1996)
## 37523 Kolya (1996)
## 38484 Fifth Element, The (1997)
## 39555 Contact (1997)
## 41064 Gattaca (1997)
## 42045 Sense and Sensibility (1995)
## 43214 Emma (1996)
## 43828 English Patient, The (1996)
## 53851 Mary Reilly (1996)
## 56307 Mission: Impossible (1996)
## 56684 Close Shave, A (1995)
## 62533 Dr. Strangelove or: How I Learned to Stop Worrying and Love the Bomb (1963)
## 63511 North by Northwest (1959)
## 65982 Streetcar Named Desire, A (1951)
## 66121 People vs. Larry Flynt, The (1996)
## 66302 My Left Foot (1989)
## 66763 Third Man, The (1949)
## 68253 Gandhi (1982)
## 72549 Hunchback of Notre Dame, The (1996)
## 75739 Rosencrantz and Guildenstern Are Dead (1990)
## 80057 Othello (1995)
## 85359 Celluloid Closet, The (1995)
## 95244 Surviving Picasso (1996)
## 1098 Twelve Monkeys (1995)
## 1681 Dead Man Walking (1995)
## 2547 Mighty Aphrodite (1995)
## 2722 Postino, Il (1994)
## 2938 Mr. Holland's Opus (1995)
## 3311 Antonia's Line (1995)
## 4256 Birdcage, The (1996)
## 6532 Star Wars (1977)
## 12838 Welcome to the Dollhouse (1995)
## 14499 Fargo (1996)
## 15132 Diabolique (1996)
## 15870 Cold Comfort Farm (1995)
## 16042 Rock, The (1996)
## 16806 Independence Day (ID4) (1996)
## 17397 Lone Star (1996)
## 17811 Spitfire Grill, The (1996)
## 17974 Godfather, The (1972)
## 18387 Bound (1996)
## 19628 Big Night (1996)
## 20928 Swingers (1996)
## 33856 Breaking the Waves (1996)
## 37236 Beavis and Butt-head Do America (1996)
## 37746 Smilla's Sense of Snow (1997)
## 38340 Austin Powers: International Man of Mystery (1997)
## 38485 Fifth Element, The (1997)
## 41629 Heat (1995)
## 41848 Sabrina (1995)
## 42340 Leaving Las Vegas (1995)
## 43588 Secrets & Lies (1996)
## 43829 English Patient, The (1996)
## 44212 Marvin's Room (1996)
## 44380 Scream (1996)
## 45370 Donnie Brasco (1997)
## 45606 Liar Liar (1997)
## 45994 Breakdown (1997)
## 49281 Everyone Says I Love You (1996)
## 49479 Mother (1996)
## 49649 Murder at 1600 (1997)
## 50084 Lost Highway (1997)
## 56308 Mission: Impossible (1996)
## 57048 Nutty Professor, The (1996)
## 61222 Crossing Guard, The (1995)
## 62746 Trainspotting (1996)
## 81762 Last Supper, The (1995)
## 82501 Saint, The (1997)
## 83355 Father of the Bride Part II (1995)
## 85742 Mulholland Falls (1996)
## 89682 Preacher's Wife, The (1996)
## 91810 Waiting for Guffman (1996)
## 91861 I Shot Andy Warhol (1996)
## 91964 Basquiat (1996)
## 92013 2 Days in the Valley (1996)
## 92486 Trees Lounge (1996)
## 92826 Grumpier Old Men (1995)
## 93538 Multiplicity (1996)
## 94193 Bottle Rocket (1996)
## 94230 Star Maker, The (Uomo delle stelle, L') (1995)
## 95831 Hard Eight (1996)
## 7638 Pulp Fiction (1994)
## 11868 Searching for Bobby Fischer (1993)
## 13914 Silence of the Lambs, The (1991)
## 19629 Big Night (1996)
## 31069 Back to the Future (1985)
## 41429 Good Will Hunting (1997)
## 42046 Sense and Sensibility (1995)
## 43830 English Patient, The (1996)
## 44381 Scream (1996)
## 48297 Titanic (1997)
## 50527 Cop Land (1997)
## 58531 To Kill a Mockingbird (1962)
## 62747 Trainspotting (1996)
## 75489 Seventh Seal, The (Sjunde inseglet, Det) (1957)
## 75585 Glory (1989)
## 76040 Stand by Me (1986)
## 78699 Seven Years in Tibet (1997)
## 82834 Amistad (1997)
## 85325 Andre (1994)
## 88076 Life Less Ordinary, A (1997)
## 89814 Smile Like Yours, A (1997)
## 37842 Devil's Own, The (1997)
## 39556 Contact (1997)
## 40126 Event Horizon (1997)
## 40804 Full Monty, The (1997)
## 41430 Good Will Hunting (1997)
## 43831 English Patient, The (1996)
## 44382 Scream (1996)
## 46474 Air Force One (1997)
## 47111 L.A. Confidential (1997)
## 48074 Wings of the Dove, The (1997)
## 48149 Midnight in the Garden of Good and Evil (1997)
## 48298 Titanic (1997)
## 48606 Apt Pupil (1998)
## 48756 As Good As It Gets (1997)
## 50730 Conspiracy Theory (1997)
## 51878 Boogie Nights (1997)
## 52215 Apostle, The (1997)
## 52482 Wag the Dog (1997)
## 52597 Hard Rain (1998)
## 53227 Spawn (1997)
## 82502 Saint, The (1997)
## 82835 Amistad (1997)
## 82976 Tomorrow Never Dies (1997)
## 87631 She's So Lovely (1997)
## 88006 Washington Square (1997)
## 88077 Life Less Ordinary, A (1997)
## 88464 Sweet Hereafter, The (1997)
## 88509 Postman, The (1997)
## 89783 Thousand Acres, A (1997)
## 101 Toy Story (1995)
## 1099 Twelve Monkeys (1995)
## 1437 Babe (1995)
## 1922 Richard III (1995)
## 2054 Seven (Se7en) (1995)
## 3585 Braveheart (1995)
## 4257 Birdcage, The (1996)
## 4666 Apollo 13 (1995)
## 6533 Star Wars (1977)
## 7010 Legends of the Fall (1994)
## 7639 Pulp Fiction (1994)
## 8634 Shawshank Redemption, The (1994)
## 9438 Forrest Gump (1994)
## 9743 Four Weddings and a Funeral (1994)
## 9975 Lion King, The (1994)
## 10743 Fugitive, The (1993)
## 11233 Jurassic Park (1993)
## 12587 Nightmare Before Christmas, The (1993)
## 13092 Aladdin (1992)
## 13338 Terminator 2: Judgment Day (1991)
## 13619 Dances with Wolves (1990)
## 13915 Silence of the Lambs, The (1991)
## 14246 Snow White and the Seven Dwarfs (1937)
## 14500 Fargo (1996)
## 16043 Rock, The (1996)
## 16807 Independence Day (ID4) (1996)
## 17596 Phenomenon (1996)
## 18657 Wizard of Oz, The (1939)
## 19066 Citizen Kane (1941)
## 19282 2001: A Space Odyssey (1968)
## 19761 D3: The Mighty Ducks (1996)
## 19837 Homeward Bound: The Incredible Journey (1993)
## 19898 20,000 Leagues Under the Sea (1954)
## 19967 Bedknobs and Broomsticks (1971)
## 20064 Sound of Music, The (1965)
## 20289 Die Hard (1988)
## 21510 Fish Called Wanda, A (1988)
## 21741 Monty Python's Life of Brian (1979)
## 22530 Top Gun (1986)
## 22723 On Golden Pond (1981)
## 23300 Monty Python and the Holy Grail (1974)
## 23940 Empire Strikes Back, The (1980)
## 24643 Raiders of the Lost Ark (1981)
## 25241 Aliens (1986)
## 26276 Return of the Jedi (1983)
## 26727 GoodFellas (1990)
## 26954 Alien (1979)
## 27359 Psycho (1960)
## 27594 Blues Brothers, The (1980)
## 29225 Terminator, The (1984)
## 29510 Dead Poets Society (1989)
## 30107 Bridge on the River Kwai, The (1957)
## 30594 Groundhog Day (1993)
## 30853 Unforgiven (1992)
## 31070 Back to the Future (1985)
## 31367 Patton (1970)
## 31845 This Is Spinal Tap (1984)
## 32057 Indiana Jones and the Last Crusade (1989)
## 32365 M*A*S*H (1970)
## 32771 Pink Floyd - The Wall (1982)
## 33147 When Harry Met Sally... (1989)
## 34305 Sling Blade (1996)
## 34944 Star Trek: The Wrath of Khan (1982)
## 35773 Under Siege (1992)
## 35927 Jaws (1975)
## 36502 Jerry Maguire (1996)
## 36855 Raising Arizona (1987)
## 37080 Sneakers (1992)
## 37237 Beavis and Butt-head Do America (1996)
## 40498 Hunt for Red October, The (1990)
## 40685 Kull the Conqueror (1997)
## 42341 Leaving Las Vegas (1995)
## 42742 Up Close and Personal (1996)
## 43402 Tin Cup (1996)
## 45130 Absolute Power (1997)
## 45607 Liar Liar (1997)
## 47369 Fly Away Home (1996)
## 52992 One Flew Over the Cuckoo's Nest (1975)
## 53895 Bridges of Madison County, The (1995)
## 54107 Miracle on 34th Street (1994)
## 54707 True Lies (1994)
## 55253 Mrs. Doubtfire (1993)
## 55788 Ghost (1990)
## 56309 Mission: Impossible (1996)
## 57562 Cinderella (1950)
## 57693 Mary Poppins (1964)
## 57857 Alice in Wonderland (1951)
## 58033 Aladdin and the King of Thieves (1996)
## 58123 E.T. the Extra-Terrestrial (1982)
## 58532 To Kill a Mockingbird (1962)
## 59053 Highlander (1986)
## 59210 Fantasia (1940)
## 59632 Butch Cassidy and the Sundance Kid (1969)
## 60022 Birds, The (1963)
## 60253 Carrie (1976)
## 60649 Grease (1978)
## 64112 Maltese Falcon, The (1941)
## 64248 My Fair Lady (1964)
## 64664 Adventures of Robin Hood, The (1938)
## 64996 It's a Wonderful Life (1946)
## 65278 African Queen, The (1951)
## 65411 Cat on a Hot Tin Roof (1958)
## 65491 Dumbo (1941)
## 65707 Bonnie and Clyde (1967)
## 66557 Lawrence of Arabia (1962)
## 67039 Boot, Das (1981)
## 68109 Ben-Hur (1959)
## 69653 Rob Roy (1995)
## 70835 Speed (1994)
## 71086 Wyatt Earp (1994)
## 71646 Piano, The (1993)
## 72023 Beauty and the Beast (1991)
## 73317 Rebecca (1940)
## 73419 Father of the Bride (1950)
## 73927 Davy Crockett, King of the Wild Frontier (1955)
## 73944 Swiss Family Robinson (1960)
## 74136 Robin Hood: Prince of Thieves (1991)
## 74236 Sleepers (1996)
## 74663 Christmas Carol, A (1938)
## 75490 Seventh Seal, The (Sjunde inseglet, Det) (1957)
## 77336 Cape Fear (1962)
## 79011 Casino (1995)
## 79294 Little Women (1994)
## 81549 Pretty Woman (1990)
## 81863 Ransom (1996)
## 89243 Down Periscope (1996)
## 90375 Indian in the Cupboard, The (1995)
## 90748 Some Folks Call It a Sling Blade (1993)
## 90884 Winnie the Pooh and the Blustery Day (1968)
## 93747 Ghost and Mrs. Muir, The (1947)
## 96473 Boys of St. Vincent, The (1993)
## 98696 That Darn Cat! (1965)
## 102 Toy Story (1995)
## 2939 Mr. Holland's Opus (1995)
## 6534 Star Wars (1977)
## 16808 Independence Day (ID4) (1996)
## 17812 Spitfire Grill, The (1996)
## 17975 Godfather, The (1972)
## 21120 Willy Wonka and the Chocolate Factory (1971)
## 26277 Return of the Jedi (1983)
## 38718 Lost World: Jurassic Park, The (1997)
## 38967 My Best Friend's Wedding (1997)
## 44805 Evita (1996)
## 46475 Air Force One (1997)
## 48299 Titanic (1997)
## 56310 Mission: Impossible (1996)
## 62036 Courage Under Fire (1996)
## 62976 First Wives Club, The (1996)
## 72691 Eraser (1996)
## 82503 Saint, The (1997)
## 86762 To Gillian on Her 37th Birthday (1996)
## 87252 Michael (1996)
## 89117 White Squall (1996)
## 103 Toy Story (1995)
## 715 Get Shorty (1995)
## 1438 Babe (1995)
## 2723 Postino, Il (1994)
## 3586 Braveheart (1995)
## 5204 Crumb (1994)
## 5902 Dolores Claiborne (1994)
## 6233 Hoop Dreams (1994)
## 6535 Star Wars (1977)
## 7086 Madness of King George, The (1994)
## 7640 Pulp Fiction (1994)
## 8635 Shawshank Redemption, The (1994)
## 9439 Forrest Gump (1994)
## 10430 Carlito's Way (1993)
## 11084 Hudsucker Proxy, The (1994)
## 12588 Nightmare Before Christmas, The (1993)
## 13339 Terminator 2: Judgment Day (1991)
## 13916 Silence of the Lambs, The (1991)
## 14501 Fargo (1996)
## 16044 Rock, The (1996)
## 17976 Godfather, The (1972)
## 18658 Wizard of Oz, The (1939)
## 18887 Gone with the Wind (1939)
## 20929 Swingers (1996)
## 23060 Jean de Florette (1986)
## 23124 Manon of the Spring (Manon des sources) (1986)
## 23697 Cinema Paradiso (1988)
## 23941 Empire Strikes Back, The (1980)
## 24298 Princess Bride, The (1987)
## 25026 Brazil (1985)
## 25625 12 Angry Men (1957)
## 26278 Return of the Jedi (1983)
## 27595 Blues Brothers, The (1980)
## 28430 Amadeus (1984)
## 28969 Sting, The (1973)
## 29511 Dead Poets Society (1989)
## 29757 Graduate, The (1967)
## 30595 Groundhog Day (1993)
## 31071 Back to the Future (1985)
## 31846 This Is Spinal Tap (1984)
## 32915 Field of Dreams (1989)
## 35928 Jaws (1975)
## 38056 Chasing Amy (1997)
## 38486 Fifth Element, The (1997)
## 40805 Full Monty, The (1997)
## 41065 Gattaca (1997)
## 41431 Good Will Hunting (1997)
## 42047 Sense and Sensibility (1995)
## 42342 Leaving Las Vegas (1995)
## 43832 English Patient, The (1996)
## 44806 Evita (1996)
## 45608 Liar Liar (1997)
## 47112 L.A. Confidential (1997)
## 48300 Titanic (1997)
## 48607 Apt Pupil (1998)
## 49013 Schindler's List (1993)
## 52993 One Flew Over the Cuckoo's Nest (1975)
## 57694 Mary Poppins (1964)
## 58124 E.T. the Extra-Terrestrial (1982)
## 58393 Bob Roberts (1992)
## 59633 Butch Cassidy and the Sundance Kid (1969)
## 61255 Smoke (1995)
## 61349 Like Water For Chocolate (Como agua para chocolate) (1992)
## 62037 Courage Under Fire (1996)
## 62534 Dr. Strangelove or: How I Learned to Stop Worrying and Love the Bomb (1963)
## 62748 Trainspotting (1996)
## 63893 Casablanca (1942)
## 64786 Thin Man, The (1934)
## 65279 African Queen, The (1951)
## 66122 People vs. Larry Flynt, The (1996)
## 66861 Annie Hall (1977)
## 67040 Boot, Das (1981)
## 67837 Cool Hand Luke (1967)
## 68729 Shine (1996)
## 71647 Piano, The (1993)
## 72192 Wild Bunch, The (1969)
## 72964 Rear Window (1954)
## 74448 Great Race, The (1965)
## 74902 Return of Martin Guerre, The (Retour de Martin Guerre, Le) (1982)
## 75586 Glory (1989)
## 76041 Stand by Me (1986)
## 78700 Seven Years in Tibet (1997)
## 79522 Singin' in the Rain (1952)
## 79729 Sex, Lies, and Videotape (1989)
## 82133 Michael Collins (1996)
## 82358 Benny & Joon (1993)
## 82836 Amistad (1997)
## 88576 Kundun (1997)
## 88877 City of Lost Children, The (1995)
## 88966 Farewell My Concubine (1993)
## 95467 Heidi Fleiss: Hollywood Madam (1995)
## 95893 Walkabout (1971)
## 716 Get Shorty (1995)
## 1439 Babe (1995)
## 1682 Dead Man Walking (1995)
## 2291 Usual Suspects, The (1995)
## 2724 Postino, Il (1994)
## 3860 Taxi Driver (1976)
## 5059 Crimson Tide (1995)
## 6098 Ed Wood (1994)
## 6234 Hoop Dreams (1994)
## 6536 Star Wars (1977)
## 7641 Pulp Fiction (1994)
## 7943 Priest (1994)
## 8006 Quiz Show (1994)
## 8636 Shawshank Redemption, The (1994)
## 9440 Forrest Gump (1994)
## 9744 Four Weddings and a Funeral (1994)
## 9976 Lion King, The (1994)
## 11234 Jurassic Park (1993)
## 12249 Blade Runner (1982)
## 12589 Nightmare Before Christmas, The (1993)
## 13093 Aladdin (1992)
## 13620 Dances with Wolves (1990)
## 13917 Silence of the Lambs, The (1991)
## 14247 Snow White and the Seven Dwarfs (1937)
## 14502 Fargo (1996)
## 16045 Rock, The (1996)
## 16809 Independence Day (ID4) (1996)
## 17977 Godfather, The (1972)
## 18388 Bound (1996)
## 18888 Gone with the Wind (1939)
## 19283 2001: A Space Odyssey (1968)
## 20065 Sound of Music, The (1965)
## 23301 Monty Python and the Holy Grail (1974)
## 24644 Raiders of the Lost Ark (1981)
## 25490 Good, The Bad and The Ugly, The (1966)
## 25989 Apocalypse Now (1979)
## 27841 Godfather: Part II, The (1974)
## 28431 Amadeus (1984)
## 28663 Raging Bull (1980)
## 28791 Right Stuff, The (1983)
## 28970 Sting, The (1973)
## 29512 Dead Poets Society (1989)
## 29758 Graduate, The (1967)
## 30596 Groundhog Day (1993)
## 30854 Unforgiven (1992)
## 31072 Back to the Future (1985)
## 31368 Patton (1970)
## 31638 Young Frankenstein (1974)
## 32548 Unbearable Lightness of Being, The (1988)
## 32916 Field of Dreams (1989)
## 33148 When Harry Met Sally... (1989)
## 34306 Sling Blade (1996)
## 35929 Jaws (1975)
## 38341 Austin Powers: International Man of Mystery (1997)
## 39184 Men in Black (1997)
## 40232 Air Bud (1997)
## 40806 Full Monty, The (1997)
## 42048 Sense and Sensibility (1995)
## 42343 Leaving Las Vegas (1995)
## 43833 English Patient, The (1996)
## 45371 Donnie Brasco (1997)
## 47370 Fly Away Home (1996)
## 48301 Titanic (1997)
## 49014 Schindler's List (1993)
## 52994 One Flew Over the Cuckoo's Nest (1975)
## 53896 Bridges of Madison County, The (1995)
## 54034 Showgirls (1995)
## 54108 Miracle on 34th Street (1994)
## 54370 Muriel's Wedding (1994)
## 57563 Cinderella (1950)
## 58125 E.T. the Extra-Terrestrial (1982)
## 59211 Fantasia (1940)
## 59634 Butch Cassidy and the Sundance Kid (1969)
## 61350 Like Water For Chocolate (Como agua para chocolate) (1992)
## 63213 Philadelphia Story, The (1940)
## 63743 Some Like It Hot (1959)
## 63894 Casablanca (1942)
## 64729 East of Eden (1955)
## 64905 Around the World in 80 Days (1956)
## 65280 African Queen, The (1951)
## 65412 Cat on a Hot Tin Roof (1958)
## 65492 Dumbo (1941)
## 65708 Bonnie and Clyde (1967)
## 65889 Rebel Without a Cause (1955)
## 66303 My Left Foot (1989)
## 66558 Lawrence of Arabia (1962)
## 67041 Boot, Das (1981)
## 67670 Deer Hunter, The (1978)
## 67838 Cool Hand Luke (1967)
## 68254 Gandhi (1982)
## 68428 Killing Fields, The (1984)
## 70836 Speed (1994)
## 71827 Secret Garden, The (1993)
## 72024 Beauty and the Beast (1991)
## 72965 Rear Window (1954)
## 73616 Giant (1956)
## 73983 Angels in the Outfield (1994)
## 74664 Christmas Carol, A (1938)
## 74997 Cook the Thief His Wife & Her Lover, The (1989)
## 75198 Thin Blue Line, The (1988)
## 75303 Ran (1985)
## 75873 Chinatown (1974)
## 76618 Fried Green Tomatoes (1991)
## 81245 Philadelphia (1993)
## 85138 Menace II Society (1993)
## 86072 Alaska (1996)
## 86619 That Thing You Do! (1996)
## 89051 Raise the Red Lantern (1991)
## 90584 To Live (Huozhe) (1994)
## 96497 Once Were Warriors (1994)
## 104 Toy Story (1995)
## 478 GoldenEye (1995)
## 717 Get Shorty (1995)
## 900 Copycat (1995)
## 1100 Twelve Monkeys (1995)
## 1440 Babe (1995)
## 1683 Dead Man Walking (1995)
## 1923 Richard III (1995)
## 2055 Seven (Se7en) (1995)
## 2292 Usual Suspects, The (1995)
## 2548 Mighty Aphrodite (1995)
## 2725 Postino, Il (1994)
## 2940 Mr. Holland's Opus (1995)
## 3163 French Twist (Gazon maudit) (1995)
## 3383 Angels and Insects (1995)
## 3458 Muppet Treasure Island (1996)
## 3587 Braveheart (1995)
## 3861 Taxi Driver (1976)
## 4258 Birdcage, The (1996)
## 4667 Apollo 13 (1995)
## 4996 Belle de jour (1967)
## 5060 Crimson Tide (1995)
## 5205 Crumb (1994)
## 5619 To Wong Foo, Thanks for Everything! Julie Newmar (1995)
## 5903 Dolores Claiborne (1994)
## 5983 Eat Drink Man Woman (1994)
## 6099 Ed Wood (1994)
## 6235 Hoop Dreams (1994)
## 6537 Star Wars (1977)
## 7087 Madness of King George, The (1994)
## 7311 Outbreak (1995)
## 7642 Pulp Fiction (1994)
## 8637 Shawshank Redemption, The (1994)
## 8993 While You Were Sleeping (1995)
## 9441 Forrest Gump (1994)
## 9745 Four Weddings and a Funeral (1994)
## 9977 Lion King, The (1994)
## 10177 Mask, The (1994)
## 10308 Maverick (1994)
## 10431 Carlito's Way (1993)
## 10510 Firm, The (1993)
## 10744 Fugitive, The (1993)
## 11085 Hudsucker Proxy, The (1994)
## 11235 Jurassic Park (1993)
## 11635 Ref, The (1994)
## 11719 Remains of the Day, The (1993)
## 11869 Searching for Bobby Fischer (1993)
## 12017 Sleepless in Seattle (1993)
## 12250 Blade Runner (1982)
## 12590 Nightmare Before Christmas, The (1993)
## 12839 Welcome to the Dollhouse (1995)
## 13094 Aladdin (1992)
## 13340 Terminator 2: Judgment Day (1991)
## 13621 Dances with Wolves (1990)
## 13918 Silence of the Lambs, The (1991)
## 14248 Snow White and the Seven Dwarfs (1937)
## 14503 Fargo (1996)
## 14979 Aristocats, The (1970)
## 15133 Diabolique (1996)
## 15518 Truth About Cats & Dogs, The (1996)
## 15871 Cold Comfort Farm (1995)
## 16046 Rock, The (1996)
## 16633 Maya Lin: A Strong Clear Vision (1994)
## 17398 Lone Star (1996)
## 17597 Phenomenon (1996)
## 17978 Godfather, The (1972)
## 18492 Kansas City (1996)
## 18531 Breakfast at Tiffany's (1961)
## 18659 Wizard of Oz, The (1939)
## 18889 Gone with the Wind (1939)
## 19067 Citizen Kane (1941)
## 19284 2001: A Space Odyssey (1968)
## 19501 Mr. Smith Goes to Washington (1939)
## 19630 Big Night (1996)
## 19838 Homeward Bound: The Incredible Journey (1993)
## 19899 20,000 Leagues Under the Sea (1954)
## 19968 Bedknobs and Broomsticks (1971)
## 20066 Sound of Music, The (1965)
## 20290 Die Hard (1988)
## 20598 Long Kiss Goodnight, The (1996)
## 20769 Ghost and the Darkness, The (1996)
## 21121 Willy Wonka and the Chocolate Factory (1971)
## 21392 Sleeper (1973)
## 21511 Fish Called Wanda, A (1988)
## 21742 Monty Python's Life of Brian (1979)
## 22011 Reservoir Dogs (1992)
## 22151 Platoon (1986)
## 22432 Glengarry Glen Ross (1992)
## 22531 Top Gun (1986)
## 22724 On Golden Pond (1981)
## 22822 Return of the Pink Panther, The (1974)
## 22927 Abyss, The (1989)
## 23061 Jean de Florette (1986)
## 23125 Manon of the Spring (Manon des sources) (1986)
## 23302 Monty Python and the Holy Grail (1974)
## 23698 Cinema Paradiso (1988)
## 23942 Empire Strikes Back, The (1980)
## 24299 Princess Bride, The (1987)
## 24645 Raiders of the Lost Ark (1981)
## 25027 Brazil (1985)
## 25242 Aliens (1986)
## 25491 Good, The Bad and The Ugly, The (1966)
## 25626 12 Angry Men (1957)
## 25766 Clockwork Orange, A (1971)
## 25990 Apocalypse Now (1979)
## 26279 Return of the Jedi (1983)
## 26728 GoodFellas (1990)
## 26955 Alien (1979)
## 27360 Psycho (1960)
## 27596 Blues Brothers, The (1980)
## 27842 Godfather: Part II, The (1974)
## 28038 Full Metal Jacket (1987)
## 28266 Henry V (1989)
## 28432 Amadeus (1984)
## 28664 Raging Bull (1980)
## 28792 Right Stuff, The (1983)
## 28971 Sting, The (1973)
## 29226 Terminator, The (1984)
## 29513 Dead Poets Society (1989)
## 29759 Graduate, The (1967)
## 29968 Nikita (La Femme Nikita) (1990)
## 30108 Bridge on the River Kwai, The (1957)
## 30277 Shining, The (1980)
## 30597 Groundhog Day (1993)
## 31073 Back to the Future (1985)
## 31369 Patton (1970)
## 31486 Akira (1988)
## 31538 Cyrano de Bergerac (1990)
## 31639 Young Frankenstein (1974)
## 31847 This Is Spinal Tap (1984)
## 32058 Indiana Jones and the Last Crusade (1989)
## 32366 M*A*S*H (1970)
## 32549 Unbearable Lightness of Being, The (1988)
## 32647 Room with a View, A (1986)
## 32917 Field of Dreams (1989)
## 33149 When Harry Met Sally... (1989)
## 33521 Cape Fear (1991)
## 33679 Nightmare on Elm Street, A (1984)
## 33857 Breaking the Waves (1996)
## 33997 Star Trek: First Contact (1996)
## 34307 Sling Blade (1996)
## 34419 Ridicule (1996)
## 34598 Die Hard 2 (1990)
## 34945 Star Trek: The Wrath of Khan (1982)
## 35174 Star Trek III: The Search for Spock (1984)
## 35774 Under Siege (1992)
## 35930 Jaws (1975)
## 36379 Citizen Ruth (1996)
## 36503 Jerry Maguire (1996)
## 36856 Raising Arizona (1987)
## 37394 Last of the Mohicans, The (1992)
## 37524 Kolya (1996)
## 37639 Jungle2Jungle (1997)
## 39557 Contact (1997)
## 39973 George of the Jungle (1997)
## 40499 Hunt for Red October, The (1990)
## 41630 Heat (1995)
## 41849 Sabrina (1995)
## 42344 Leaving Las Vegas (1995)
## 42575 Restoration (1995)
## 42696 Once Upon a Time... When We Were Colored (1995)
## 42743 Up Close and Personal (1996)
## 43215 Emma (1996)
## 43403 Tin Cup (1996)
## 43589 Secrets & Lies (1996)
## 43834 English Patient, The (1996)
## 44213 Marvin's Room (1996)
## 44383 Scream (1996)
## 44807 Evita (1996)
## 45035 Fierce Creatures (1997)
## 45131 Absolute Power (1997)
## 45254 Rosewood (1997)
## 45609 Liar Liar (1997)
## 46476 Air Force One (1997)
## 46864 In & Out (1997)
## 47371 Fly Away Home (1996)
## 47707 Devil's Advocate, The (1997)
## 48302 Titanic (1997)
## 48757 As Good As It Gets (1997)
## 48866 In the Name of the Father (1993)
## 49015 Schindler's List (1993)
## 49282 Everyone Says I Love You (1996)
## 49480 Mother (1996)
## 49650 Murder at 1600 (1997)
## 50731 Conspiracy Theory (1997)
## 50969 Desperate Measures (1998)
## 52995 One Flew Over the Cuckoo's Nest (1975)
## 53228 Spawn (1997)
## 53622 Clueless (1995)
## 53897 Bridges of Madison County, The (1995)
## 54109 Miracle on 34th Street (1994)
## 54371 Muriel's Wedding (1994)
## 54708 True Lies (1994)
## 55057 Black Beauty (1994)
## 55254 Mrs. Doubtfire (1993)
## 55689 Brady Bunch Movie, The (1995)
## 55964 Batman (1989)
## 56141 Pinocchio (1940)
## 57190 Very Brady Sequel, A (1996)
## 57326 My Favorite Year (1982)
## 57409 Old Yeller (1957)
## 57474 Parent Trap, The (1961)
## 57564 Cinderella (1950)
## 57695 Mary Poppins (1964)
## 57947 William Shakespeare's Romeo and Juliet (1996)
## 58126 E.T. the Extra-Terrestrial (1982)
## 58533 To Kill a Mockingbird (1962)
## 58735 Harold and Maude (1971)
## 58850 Day the Earth Stood Still, The (1951)
## 58950 Duck Soup (1933)
## 59054 Highlander (1986)
## 59212 Fantasia (1940)
## 59393 Heathers (1989)
## 59532 Forbidden Planet (1956)
## 59635 Butch Cassidy and the Sundance Kid (1969)
## 59820 American Werewolf in London, An (1981)
## 60023 Birds, The (1963)
## 60204 Body Snatcher, The (1945)
## 60254 Carrie (1976)
## 60365 Omen, The (1976)
## 60650 Grease (1978)
## 61351 Like Water For Chocolate (Como agua para chocolate) (1992)
## 61484 Secret of Roan Inish, The (1994)
## 61544 Vanya on 42nd Street (1994)
## 61581 Jungle Book, The (1994)
## 61663 Red Rock West (1992)
## 61903 Tombstone (1993)
## 62038 Courage Under Fire (1996)
## 62242 Dragonheart (1996)
## 62397 James and the Giant Peach (1996)
## 62535 Dr. Strangelove or: How I Learned to Stop Worrying and Love the Bomb (1963)
## 63119 Matilda (1996)
## 63214 Philadelphia Story, The (1940)
## 63331 Vertigo (1958)
## 63512 North by Northwest (1959)
## 63662 Apartment, The (1960)
## 63744 Some Like It Hot (1959)
## 63895 Casablanca (1942)
## 64113 Maltese Falcon, The (1941)
## 64249 My Fair Lady (1964)
## 64365 Sabrina (1954)
## 64428 Roman Holiday (1953)
## 64496 Sunset Blvd. (1950)
## 64556 Notorious (1946)
## 64607 To Catch a Thief (1955)
## 64665 Adventures of Robin Hood, The (1938)
## 64730 East of Eden (1955)
## 64787 Thin Man, The (1934)
## 64842 His Girl Friday (1940)
## 64906 Around the World in 80 Days (1956)
## 64997 It's a Wonderful Life (1946)
## 65193 Bringing Up Baby (1938)
## 65281 African Queen, The (1951)
## 65413 Cat on a Hot Tin Roof (1958)
## 65493 Dumbo (1941)
## 65601 Bananas (1971)
## 65650 Candidate, The (1972)
## 65709 Bonnie and Clyde (1967)
## 65817 Dial M for Murder (1954)
## 65890 Rebel Without a Cause (1955)
## 65983 Streetcar Named Desire, A (1951)
## 66423 Magnificent Seven, The (1954)
## 66559 Lawrence of Arabia (1962)
## 66764 Third Man, The (1949)
## 67042 Boot, Das (1981)
## 67218 Local Hero (1983)
## 67285 Manhattan (1979)
## 67464 Treasure of the Sierra Madre, The (1948)
## 67543 Great Escape, The (1963)
## 67671 Deer Hunter, The (1978)
## 67839 Cool Hand Luke (1967)
## 67978 Great Dictator, The (1940)
## 68026 Big Sleep, The (1946)
## 68110 Ben-Hur (1959)
## 68255 Gandhi (1982)
## 68429 Killing Fields, The (1984)
## 68635 Man Who Would Be King, The (1975)
## 68730 Shine (1996)
## 69390 Broken Arrow (1996)
## 69654 Rob Roy (1995)
## 69753 Die Hard: With a Vengeance (1995)
## 69911 Species (1995)
## 70136 Farinelli: il castrato (1994)
## 70164 Heavenly Creatures (1994)
## 70602 Clear and Present Danger (1994)
## 71130 Another Stakeout (1993)
## 71648 Piano, The (1993)
## 71828 Secret Garden, The (1993)
## 72025 Beauty and the Beast (1991)
## 72193 Wild Bunch, The (1969)
## 72287 Primal Fear (1996)
## 72550 Hunchback of Notre Dame, The (1996)
## 72857 For Whom the Bell Tolls (1943)
## 72885 American in Paris, An (1951)
## 72966 Rear Window (1954)
## 73148 It Happened One Night (1934)
## 73218 Meet Me in St. Louis (1944)
## 73260 All About Eve (1950)
## 73318 Rebecca (1940)
## 73380 Spellbound (1945)
## 73420 Father of the Bride (1950)
## 73474 Gigi (1958)
## 73513 Laura (1944)
## 73555 Lost Horizon (1937)
## 73586 My Man Godfrey (1936)
## 73617 Giant (1956)
## 73670 39 Steps, The (1935)
## 73728 Night of the Living Dead (1968)
## 73788 Blue Angel, The (Blaue Engel, Der) (1930)
## 73806 Picnic (1955)
## 73833 Extreme Measures (1996)
## 73945 Swiss Family Robinson (1960)
## 73984 Angels in the Outfield (1994)
## 74051 Sword in the Stone, The (1963)
## 74119 So Dear to My Heart (1949)
## 74237 Sleepers (1996)
## 74385 Victor/Victoria (1982)
## 74449 Great Race, The (1965)
## 74498 Crying Game, The (1992)
## 74604 Sophie's Choice (1982)
## 74723 Microcosmos: Le peuple de l'herbe (1996)
## 74750 Fog, The (1980)
## 74788 Escape from New York (1981)
## 74903 Return of Martin Guerre, The (Retour de Martin Guerre, Le) (1982)
## 75070 Paths of Glory (1957)
## 75118 Grifters, The (1990)
## 75257 Once Upon a Time in the West (1969)
## 75304 Ran (1985)
## 75369 Quiet Man, The (1952)
## 75432 Once Upon a Time in America (1984)
## 75491 Seventh Seal, The (Sjunde inseglet, Det) (1957)
## 75587 Glory (1989)
## 75810 Touch of Evil (1958)
## 75874 Chinatown (1974)
## 76042 Stand by Me (1986)
## 76225 M (1931)
## 76287 Manchurian Candidate, The (1962)
## 76488 Arsenic and Old Lace (1944)
## 76619 Fried Green Tomatoes (1991)
## 76756 High Noon (1952)
## 76842 Somewhere in Time (1980)
## 76931 Being There (1979)
## 77214 Bride of Frankenstein (1935)
## 77337 Cape Fear (1962)
## 77461 Nosferatu (Nosferatu, eine Symphonie des Grauens) (1922)
## 78422 Perfect World, A (1993)
## 78875 American President, The (1995)
## 79012 Casino (1995)
## 79097 Persuasion (1995)
## 79295 Little Women (1994)
## 79412 Barcelona (1994)
## 79523 Singin' in the Rain (1952)
## 79826 Strictly Ballroom (1992)
## 80006 Tin Men (1987)
## 80647 Circle of Friends (1995)
## 80751 Immortal Beloved (1994)
## 80965 Corrina, Corrina (1994)
## 81026 Dave (1993)
## 81246 Philadelphia (1993)
## 81550 Pretty Woman (1990)
## 82207 Ruling Class, The (1972)
## 82234 Real Genius (1985)
## 82359 Benny & Joon (1993)
## 82763 MatchMaker, The (1997)
## 82977 Tomorrow Never Dies (1997)
## 83878 Boomerang (1992)
## 83935 Casper (1995)
## 84034 Devil in a Blue Dress (1995)
## 84448 French Kiss (1995)
## 84517 Little Odessa (1994)
## 84573 Only You (1994)
## 84777 Bullets Over Broadway (1994)
## 85139 Menace II Society (1993)
## 85193 Program, The (1993)
## 86213 Bogus (1996)
## 86305 Gay Divorcee, The (1934)
## 86321 Ninotchka (1939)
## 86349 Meet John Doe (1941)
## 86480 Pollyanna (1960)
## 86507 Shaggy Dog, The (1959)
## 86542 Freeway (1996)
## 86620 That Thing You Do! (1996)
## 86811 Looking for Richard (1996)
## 86852 Murder, My Sweet (1944)
## 86915 Perfect Candidate, A (1996)
## 86964 Diva (1981)
## 87115 Garden of Finzi-Contini, The (Giardino dei Finzi-Contini, Il) (1970)
## 87340 Whole Wide World, The (1996)
## 87469 Love Jones (1997)
## 87515 Picture Perfect (1997)
## 87593 Career Girls (1997)
## 87781 That Darn Cat! (1997)
## 88131 Eve's Bayou (1997)
## 88967 Farewell My Concubine (1993)
## 89052 Raise the Red Lantern (1991)
## 89192 Unforgettable (1996)
## 89321 Flower of My Secret, The (Flor de mi secreto, La) (1995)
## 89340 Craft, The (1996)
## 89441 Harriet the Spy (1996)
## 89850 Murder in the First (1995)
## 89982 What's Love Got to Do with It (1993)
## 90107 Charade (1963)
## 90345 Georgia (1995)
## 90376 Indian in the Cupboard, The (1995)
## 90544 Nobody's Fool (1994)
## 90604 Dazed and Confused (1993)
## 90749 Some Folks Call It a Sling Blade (1993)
## 90785 Month by the Lake, A (1995)
## 90796 Funny Face (1957)
## 90819 Affair to Remember, An (1957)
## 90945 Hear My Song (1991)
## 91223 Mother Night (1996)
## 91297 Shadow Conspiracy (1997)
## 91465 Cats Don't Dance (1997)
## 91965 Basquiat (1996)
## 92014 2 Days in the Valley (1996)
## 92327 Shiloh (1997)
## 92594 Gaslight (1944)
## 92628 8 1/2 (1963)
## 93066 Cool Runnings (1993)
## 93201 Hamlet (1996)
## 93407 Paper, The (1994)
## 93658 She's the One (1996)
## 93748 Ghost and Mrs. Muir, The (1947)
## 93794 Associate, The (1996)
## 94077 Little Princess, A (1995)
## 94112 Crossfire (1947)
## 94453 Man of No Importance, A (1994)
## 94482 Oliver & Company (1988)
## 94917 What Happened Was... (1994)
## 94937 Six Degrees of Separation (1993)
## 95364 I'm Not Rappaport (1996)
## 95382 Umbrellas of Cherbourg, The (Parapluies de Cherbourg, Les) (1964)
## 95402 Last Time I Saw Paris, The (1954)
## 95426 Old Man and the Sea, The (1958)
## 95554 Escape to Witch Mountain (1975)
## 95894 Walkabout (1971)
## 96150 Little Buddha (1993)
## 96174 Fresh (1994)
## 96184 Spanking the Monkey (1994)
## 96222 Women, The (1939)
## 96365 Endless Summer 2, The (1994)
## 96377 In the Army Now (1994)
## 96393 Inkwell, The (1994)
## 96584 Purple Noon (1960)
## 96614 Kim (1950)
## 96631 Top Hat (1935)
## 96651 To Be or Not to Be (1942)
## 96668 Secret Agent, The (1996)
## 96972 When a Man Loves a Woman (1994)
## 97506 Foxfire (1996)
## 97602 Love in the Afternoon (1957)
## 97795 Princess Caraboo (1994)
## 97916 Band Wagon, The (1953)
## 98111 An Unforgettable Summer (1994)
## 98237 Forbidden Christ, The (Cristo proibito, Il) (1950)
## 98372 Of Human Bondage (1934)
## 98386 Picture Bride (1995)
## 98715 Ladybird Ladybird (1994)
## 98719 Bye Bye, Love (1995)
## 98734 Century (1993)
## 98735 My Favorite Season (1993)
## 98738 Pather Panchali (1955)
## 98746 Golden Earrings (1947)
## 98748 Foreign Correspondent (1940)
## 98763 Lady of Burlesque (1943)
## 98764 Angel on My Shoulder (1946)
## 98765 Angel and the Badman (1947)
## 98771 Outlaw, The (1943)
## 98773 Beat the Devil (1954)
## 98780 Love Is All There Is (1996)
## 98781 Damsel in Distress, A (1937)
## 98782 Madame Butterfly (1995)
## 98789 Sleepover (1995)
## 98790 Here Comes Cookie (1935)
## 98791 Thieves (Voleurs, Les) (1996)
## 98798 Boys, Les (1997)
## 105 Toy Story (1995)
## 1101 Twelve Monkeys (1995)
## 3588 Braveheart (1995)
## 6538 Star Wars (1977)
## 7088 Madness of King George, The (1994)
## 8869 What's Eating Gilbert Grape (1993)
## 8994 While You Were Sleeping (1995)
## 9442 Forrest Gump (1994)
## 9746 Four Weddings and a Funeral (1994)
## 10745 Fugitive, The (1993)
## 11236 Jurassic Park (1993)
## 11468 Much Ado About Nothing (1993)
## 11636 Ref, The (1994)
## 11720 Remains of the Day, The (1993)
## 11870 Searching for Bobby Fischer (1993)
## 13341 Terminator 2: Judgment Day (1991)
## 14504 Fargo (1996)
## 19285 2001: A Space Odyssey (1968)
## 21512 Fish Called Wanda, A (1988)
## 23699 Cinema Paradiso (1988)
## 24646 Raiders of the Lost Ark (1981)
## 25028 Brazil (1985)
## 25767 Clockwork Orange, A (1971)
## 26280 Return of the Jedi (1983)
## 27361 Psycho (1960)
## 28039 Full Metal Jacket (1987)
## 28267 Henry V (1989)
## 28433 Amadeus (1984)
## 28665 Raging Bull (1980)
## 28793 Right Stuff, The (1983)
## 28972 Sting, The (1973)
## 29227 Terminator, The (1984)
## 29514 Dead Poets Society (1989)
## 29760 Graduate, The (1967)
## 29969 Nikita (La Femme Nikita) (1990)
## 31539 Cyrano de Bergerac (1990)
## 32367 M*A*S*H (1970)
## 32648 Room with a View, A (1986)
## 35353 Star Trek IV: The Voyage Home (1986)
## 36504 Jerry Maguire (1996)
## 40807 Full Monty, The (1997)
## 42049 Sense and Sensibility (1995)
## 43590 Secrets & Lies (1996)
## 45255 Rosewood (1997)
## 49016 Schindler's List (1993)
## 49283 Everyone Says I Love You (1996)
## 50528 Cop Land (1997)
## 51715 Bean (1997)
## 52216 Apostle, The (1997)
## 52357 Jackie Brown (1997)
## 57696 Mary Poppins (1964)
## 58851 Day the Earth Stood Still, The (1951)
## 59055 Highlander (1986)
## 59394 Heathers (1989)
## 59636 Butch Cassidy and the Sundance Kid (1969)
## 61352 Like Water For Chocolate (Como agua para chocolate) (1992)
## 61485 Secret of Roan Inish, The (1994)
## 62536 Dr. Strangelove or: How I Learned to Stop Worrying and Love the Bomb (1963)
## 63513 North by Northwest (1959)
## 63896 Casablanca (1942)
## 64843 His Girl Friday (1940)
## 64998 It's a Wonderful Life (1946)
## 66560 Lawrence of Arabia (1962)
## 66702 Wings of Desire (1987)
## 67043 Boot, Das (1981)
## 67544 Great Escape, The (1963)
## 67777 Down by Law (1986)
## 67840 Cool Hand Luke (1967)
## 67979 Great Dictator, The (1940)
## 72967 Rear Window (1954)
## 75305 Ran (1985)
## 75370 Quiet Man, The (1952)
## 75740 Rosencrantz and Guildenstern Are Dead (1990)
## 76043 Stand by Me (1986)
## 78127 In the Line of Fire (1993)
## 78876 American President, The (1995)
## 79392 Wonderful, Horrible Life of Leni Riefenstahl, The (1993)
## 79524 Singin' in the Rain (1952)
## 82360 Benny & Joon (1993)
## 84778 Bullets Over Broadway (1994)
## 88510 Postman, The (1997)
## 89053 Raise the Red Lantern (1991)
## 90946 Hear My Song (1991)
## 90958 Mediterraneo (1991)
## 92629 8 1/2 (1963)
## 95029 Firestorm (1998)
## 95313 Some Kind of Wonderful (1987)
## 95589 Get on the Bus (1996)
## 95895 Walkabout (1971)
## 96259 Welcome To Sarajevo (1997)
## 96485 Before the Rain (Pred dozhdot) (1994)
## 98749 Foreign Correspondent (1940)
## 98801 Stars Fell on Henrietta, The (1995)
## 1684 Dead Man Walking (1995)
## 2941 Mr. Holland's Opus (1995)
## 4668 Apollo 13 (1995)
## 6539 Star Wars (1977)
## 7011 Legends of the Fall (1994)
## 7643 Pulp Fiction (1994)
## 7944 Priest (1994)
## 8007 Quiz Show (1994)
## 8638 Shawshank Redemption, The (1994)
## 8995 While You Were Sleeping (1995)
## 9443 Forrest Gump (1994)
## 9978 Lion King, The (1994)
## 10746 Fugitive, The (1993)
## 12018 Sleepless in Seattle (1993)
## 13622 Dances with Wolves (1990)
## 13919 Silence of the Lambs, The (1991)
## 14505 Fargo (1996)
## 15519 Truth About Cats & Dogs, The (1996)
## 16047 Rock, The (1996)
## 17979 Godfather, The (1972)
## 18660 Wizard of Oz, The (1939)
## 18890 Gone with the Wind (1939)
## 19068 Citizen Kane (1941)
## 19286 2001: A Space Odyssey (1968)
## 20067 Sound of Music, The (1965)
## 20770 Ghost and the Darkness, The (1996)
## 21122 Willy Wonka and the Chocolate Factory (1971)
## 21513 Fish Called Wanda, A (1988)
## 23700 Cinema Paradiso (1988)
## 23943 Empire Strikes Back, The (1980)
## 24647 Raiders of the Lost Ark (1981)
## 25243 Aliens (1986)
## 25768 Clockwork Orange, A (1971)
## 26281 Return of the Jedi (1983)
## 26956 Alien (1979)
## 27362 Psycho (1960)
## 27843 Godfather: Part II, The (1974)
## 28434 Amadeus (1984)
## 28973 Sting, The (1973)
## 29228 Terminator, The (1984)
## 29515 Dead Poets Society (1989)
## 30109 Bridge on the River Kwai, The (1957)
## 30278 Shining, The (1980)
## 30855 Unforgiven (1992)
## 31074 Back to the Future (1985)
## 31540 Cyrano de Bergerac (1990)
## 32059 Indiana Jones and the Last Crusade (1989)
## 32368 M*A*S*H (1970)
## 33150 When Harry Met Sally... (1989)
## 33998 Star Trek: First Contact (1996)
## 34308 Sling Blade (1996)
## 34487 101 Dalmatians (1996)
## 36505 Jerry Maguire (1996)
## 38968 My Best Friend's Wedding (1997)
## 40500 Hunt for Red October, The (1990)
## 41631 Heat (1995)
## 41850 Sabrina (1995)
## 42050 Sense and Sensibility (1995)
## 43002 Time to Kill, A (1996)
## 43835 English Patient, The (1996)
## 44808 Evita (1996)
## 45610 Liar Liar (1997)
## 46157 Face/Off (1997)
## 47372 Fly Away Home (1996)
## 47708 Devil's Advocate, The (1997)
## 48303 Titanic (1997)
## 49017 Schindler's List (1993)
## 50732 Conspiracy Theory (1997)
## 51357 Game, The (1997)
## 53852 Mary Reilly (1996)
## 57049 Nutty Professor, The (1996)
## 57697 Mary Poppins (1964)
## 57858 Alice in Wonderland (1951)
## 58127 E.T. the Extra-Terrestrial (1982)
## 58534 To Kill a Mockingbird (1962)
## 58852 Day the Earth Stood Still, The (1951)
## 59213 Fantasia (1940)
## 59637 Butch Cassidy and the Sundance Kid (1969)
## 60024 Birds, The (1963)
## 61353 Like Water For Chocolate (Como agua para chocolate) (1992)
## 62977 First Wives Club, The (1996)
## 63215 Philadelphia Story, The (1940)
## 63897 Casablanca (1942)
## 64999 It's a Wonderful Life (1946)
## 65710 Bonnie and Clyde (1967)
## 65818 Dial M for Murder (1954)
## 65891 Rebel Without a Cause (1955)
## 65984 Streetcar Named Desire, A (1951)
## 66424 Magnificent Seven, The (1954)
## 67545 Great Escape, The (1963)
## 67672 Deer Hunter, The (1978)
## 67841 Cool Hand Luke (1967)
## 68111 Ben-Hur (1959)
## 68832 Kama Sutra: A Tale of Love (1996)
## 69391 Broken Arrow (1996)
## 69655 Rob Roy (1995)
## 72288 Primal Fear (1996)
## 72466 Fan, The (1996)
## 72551 Hunchback of Notre Dame, The (1996)
## 73618 Giant (1956)
## 74605 Sophie's Choice (1982)
## 76044 Stand by Me (1986)
## 76489 Arsenic and Old Lace (1944)
## 76757 High Noon (1952)
## 77338 Cape Fear (1962)
## 78294 Executive Decision (1996)
## 78423 Perfect World, A (1993)
## 78877 American President, The (1995)
## 79157 City Hall (1996)
## 79296 Little Women (1994)
## 79525 Singin' in the Rain (1952)
## 80300 Juror, The (1996)
## 80869 Nell (1994)
## 81247 Philadelphia (1993)
## 82837 Amistad (1997)
## 83356 Father of the Bride Part II (1995)
## 87154 My Fellow Americans (1996)
## 87253 Michael (1996)
## 89683 Preacher's Wife, The (1996)
## 92198 Anaconda (1997)
## 93202 Hamlet (1996)
## 95001 Two Much (1996)
## 98103 Of Love and Shadows (1994)
## 98399 M. Butterfly (1993)
## 1685 Dead Man Walking (1995)
## 3862 Taxi Driver (1976)
## 4669 Apollo 13 (1995)
## 8008 Quiz Show (1994)
## 8639 Shawshank Redemption, The (1994)
## 11469 Much Ado About Nothing (1993)
## 13920 Silence of the Lambs, The (1991)
## 14506 Fargo (1996)
## 17980 Godfather, The (1972)
## 19069 Citizen Kane (1941)
## 21514 Fish Called Wanda, A (1988)
## 23578 Wrong Trousers, The (1993)
## 24648 Raiders of the Lost Ark (1981)
## 25244 Aliens (1986)
## 25627 12 Angry Men (1957)
## 25769 Clockwork Orange, A (1971)
## 25991 Apocalypse Now (1979)
## 26957 Alien (1979)
## 27363 Psycho (1960)
## 27844 Godfather: Part II, The (1974)
## 28268 Henry V (1989)
## 28435 Amadeus (1984)
## 29761 Graduate, The (1967)
## 30110 Bridge on the River Kwai, The (1957)
## 32369 M*A*S*H (1970)
## 36857 Raising Arizona (1987)
## 43836 English Patient, The (1996)
## 52996 One Flew Over the Cuckoo's Nest (1975)
## 56685 Close Shave, A (1995)
## 58128 E.T. the Extra-Terrestrial (1982)
## 62537 Dr. Strangelove or: How I Learned to Stop Worrying and Love the Bomb (1963)
## 63332 Vertigo (1958)
## 63898 Casablanca (1942)
## 64250 My Fair Lady (1964)
## 64557 Notorious (1946)
## 64844 His Girl Friday (1940)
## 65282 African Queen, The (1951)
## 65414 Cat on a Hot Tin Roof (1958)
## 65602 Bananas (1971)
## 66765 Third Man, The (1949)
## 66862 Annie Hall (1977)
## 68027 Big Sleep, The (1946)
## 68430 Killing Fields, The (1984)
## 72968 Rear Window (1954)
## 76226 M (1931)
## 76490 Arsenic and Old Lace (1944)
## 79526 Singin' in the Rain (1952)
## 96474 Boys of St. Vincent, The (1993)
## 15520 Truth About Cats & Dogs, The (1996)
## 16409 Twister (1996)
## 16810 Independence Day (ID4) (1996)
## 17598 Phenomenon (1996)
## 21123 Willy Wonka and the Chocolate Factory (1971)
## 26282 Return of the Jedi (1983)
## 33783 Mirror Has Two Faces, The (1996)
## 36506 Jerry Maguire (1996)
## 38719 Lost World: Jurassic Park, The (1997)
## 38969 My Best Friend's Wedding (1997)
## 39185 Men in Black (1997)
## 39558 Contact (1997)
## 43837 English Patient, The (1996)
## 45611 Liar Liar (1997)
## 46158 Face/Off (1997)
## 46477 Air Force One (1997)
## 46865 In & Out (1997)
## 56311 Mission: Impossible (1996)
## 61126 Nixon (1995)
## 62039 Courage Under Fire (1996)
## 62978 First Wives Club, The (1996)
## 68981 Anastasia (1997)
## 69392 Broken Arrow (1996)
## 83357 Father of the Bride Part II (1995)
## 85419 One Fine Day (1996)
## 86621 That Thing You Do! (1996)
## 89244 Down Periscope (1996)
## 96457 That Old Feeling (1997)
## 97467 Trial and Error (1997)
## 1441 Babe (1995)
## 1686 Dead Man Walking (1995)
## 1924 Richard III (1995)
## 2293 Usual Suspects, The (1995)
## 2726 Postino, Il (1994)
## 5537 Strange Days (1995)
## 5733 Clerks (1994)
## 5984 Eat Drink Man Woman (1994)
## 6050 Exotica (1994)
## 6100 Ed Wood (1994)
## 6540 Star Wars (1977)
## 7644 Pulp Fiction (1994)
## 8009 Quiz Show (1994)
## 8640 Shawshank Redemption, The (1994)
## 8870 What's Eating Gilbert Grape (1993)
## 9444 Forrest Gump (1994)
## 10747 Fugitive, The (1993)
## 11086 Hudsucker Proxy, The (1994)
## 12251 Blade Runner (1982)
## 12591 Nightmare Before Christmas, The (1993)
## 13342 Terminator 2: Judgment Day (1991)
## 13921 Silence of the Lambs, The (1991)
## 14507 Fargo (1996)
## 15766 Wallace & Gromit: The Best of Aardman Animation (1996)
## 15872 Cold Comfort Farm (1995)
## 17399 Lone Star (1996)
## 18661 Wizard of Oz, The (1939)
## 18891 Gone with the Wind (1939)
## 19070 Citizen Kane (1941)
## 19287 2001: A Space Odyssey (1968)
## 19631 Big Night (1996)
## 20930 Swingers (1996)
## 21393 Sleeper (1973)
## 22725 On Golden Pond (1981)
## 23062 Jean de Florette (1986)
## 23303 Monty Python and the Holy Grail (1974)
## 23808 Delicatessen (1991)
## 23944 Empire Strikes Back, The (1980)
## 24649 Raiders of the Lost Ark (1981)
## 25029 Brazil (1985)
## 25770 Clockwork Orange, A (1971)
## 25992 Apocalypse Now (1979)
## 26283 Return of the Jedi (1983)
## 26958 Alien (1979)
## 27364 Psycho (1960)
## 27597 Blues Brothers, The (1980)
## 27845 Godfather: Part II, The (1974)
## 28269 Henry V (1989)
## 28974 Sting, The (1973)
## 29229 Terminator, The (1984)
## 29970 Nikita (La Femme Nikita) (1990)
## 30856 Unforgiven (1992)
## 31075 Back to the Future (1985)
## 31370 Patton (1970)
## 31541 Cyrano de Bergerac (1990)
## 31640 Young Frankenstein (1974)
## 31848 This Is Spinal Tap (1984)
## 32060 Indiana Jones and the Last Crusade (1989)
## 33858 Breaking the Waves (1996)
## 34946 Star Trek: The Wrath of Khan (1982)
## 35931 Jaws (1975)
## 36858 Raising Arizona (1987)
## 37525 Kolya (1996)
## 40808 Full Monty, The (1997)
## 41432 Good Will Hunting (1997)
## 42345 Leaving Las Vegas (1995)
## 43838 English Patient, The (1996)
## 44384 Scream (1996)
## 46478 Air Force One (1997)
## 47373 Fly Away Home (1996)
## 47502 Ice Storm, The (1997)
## 48150 Midnight in the Garden of Good and Evil (1997)
## 48867 In the Name of the Father (1993)
## 49018 Schindler's List (1993)
## 51879 Boogie Nights (1997)
## 54476 Adventures of Priscilla, Queen of the Desert, The (1994)
## 57698 Mary Poppins (1964)
## 57948 William Shakespeare's Romeo and Juliet (1996)
## 58535 To Kill a Mockingbird (1962)
## 58736 Harold and Maude (1971)
## 58951 Duck Soup (1933)
## 59214 Fantasia (1940)
## 59395 Heathers (1989)
## 59533 Forbidden Planet (1956)
## 60025 Birds, The (1963)
## 61354 Like Water For Chocolate (Como agua para chocolate) (1992)
## 61486 Secret of Roan Inish, The (1994)
## 62538 Dr. Strangelove or: How I Learned to Stop Worrying and Love the Bomb (1963)
## 62749 Trainspotting (1996)
## 63216 Philadelphia Story, The (1940)
## 63333 Vertigo (1958)
## 63745 Some Like It Hot (1959)
## 63899 Casablanca (1942)
## 64114 Maltese Falcon, The (1941)
## 64497 Sunset Blvd. (1950)
## 64558 Notorious (1946)
## 64666 Adventures of Robin Hood, The (1938)
## 64731 East of Eden (1955)
## 64788 Thin Man, The (1934)
## 65194 Bringing Up Baby (1938)
## 65283 African Queen, The (1951)
## 65415 Cat on a Hot Tin Roof (1958)
## 65711 Bonnie and Clyde (1967)
## 65819 Dial M for Murder (1954)
## 65985 Streetcar Named Desire, A (1951)
## 66123 People vs. Larry Flynt, The (1996)
## 66304 My Left Foot (1989)
## 66561 Lawrence of Arabia (1962)
## 66703 Wings of Desire (1987)
## 66766 Third Man, The (1949)
## 66863 Annie Hall (1977)
## 67219 Local Hero (1983)
## 67380 Miller's Crossing (1990)
## 68256 Gandhi (1982)
## 68431 Killing Fields, The (1984)
## 68545 My Life as a Dog (Mitt liv som hund) (1985)
## 68636 Man Who Would Be King, The (1975)
## 68731 Shine (1996)
## 70165 Heavenly Creatures (1994)
## 72194 Wild Bunch, The (1969)
## 72969 Rear Window (1954)
## 73219 Meet Me in St. Louis (1944)
## 73556 Lost Horizon (1937)
## 74606 Sophie's Choice (1982)
## 74665 Christmas Carol, A (1938)
## 74724 Microcosmos: Le peuple de l'herbe (1996)
## 75306 Ran (1985)
## 75492 Seventh Seal, The (Sjunde inseglet, Det) (1957)
## 75741 Rosencrantz and Guildenstern Are Dead (1990)
## 75875 Chinatown (1974)
## 76491 Arsenic and Old Lace (1944)
## 76932 Being There (1979)
## 77215 Bride of Frankenstein (1935)
## 77462 Nosferatu (Nosferatu, eine Symphonie des Grauens) (1922)
## 78701 Seven Years in Tibet (1997)
## 79393 Wonderful, Horrible Life of Leni Riefenstahl, The (1993)
## 79527 Singin' in the Rain (1952)
## 81370 Shadowlands (1993)
## 82208 Ruling Class, The (1972)
## 83153 Burnt By the Sun (1994)
## 86322 Ninotchka (1939)
## 86965 Diva (1981)
## 88968 Farewell My Concubine (1993)
## 89054 Raise the Red Lantern (1991)
## 90476 Unzipped (1995)
## 90691 Orlando (1993)
## 92595 Gaslight (1944)
## 93911 Cronos (1992)
## 94127 Koyaanisqatsi (1983)
## 94263 Living in Oblivion (1995)
## 94868 Flirting With Disaster (1996)
## 94904 Red Firecracker, Green Firecracker (1994)
## 95202 Twelfth Night (1996)
## 96475 Boys of St. Vincent, The (1993)
## 96632 Top Hat (1935)
## 96652 To Be or Not to Be (1942)
## 97352 Gridlock'd (1997)
## 98118 My Life and Times With Antonin Artaud (En compagnie d'Antonin Artaud) (1993)
## 37526 Kolya (1996)
## 37843 Devil's Own, The (1997)
## 40809 Full Monty, The (1997)
## 41433 Good Will Hunting (1997)
## 43839 English Patient, The (1996)
## 44385 Scream (1996)
## 44809 Evita (1996)
## 46479 Air Force One (1997)
## 46866 In & Out (1997)
## 47113 L.A. Confidential (1997)
## 47709 Devil's Advocate, The (1997)
## 48304 Titanic (1997)
## 51642 Playing God (1997)
## 51880 Boogie Nights (1997)
## 52110 Alien: Resurrection (1997)
## 52598 Hard Rain (1998)
## 52713 Deep Rising (1998)
## 53229 Spawn (1997)
## 82504 Saint, The (1997)
## 82978 Tomorrow Never Dies (1997)
## 87516 Picture Perfect (1997)
## 87833 Peacemaker, The (1997)
## 88369 Scream 2 (1997)
## 88511 Postman, The (1997)
## 41066 Gattaca (1997)
## 43840 English Patient, The (1996)
## 44386 Scream (1996)
## 45256 Rosewood (1997)
## 45612 Liar Liar (1997)
## 46480 Air Force One (1997)
## 47114 L.A. Confidential (1997)
## 47710 Devil's Advocate, The (1997)
## 47948 Rainmaker, The (1997)
## 48305 Titanic (1997)
## 51188 Kiss the Girls (1997)
## 51616 How to Be a Player (1997)
## 52111 Alien: Resurrection (1997)
## 52358 Jackie Brown (1997)
## 52629 Fallen (1998)
## 77958 I Know What You Did Last Summer (1997)
## 78592 Jackal, The (1997)
## 78702 Seven Years in Tibet (1997)
## 82838 Amistad (1997)
## 87959 Soul Food (1997)
## 88132 Eve's Bayou (1997)
## 88370 Scream 2 (1997)
## 106 Toy Story (1995)
## 15521 Truth About Cats & Dogs, The (1996)
## 36507 Jerry Maguire (1996)
## 42051 Sense and Sensibility (1995)
## 43216 Emma (1996)
## 45132 Absolute Power (1997)
## 45613 Liar Liar (1997)
## 47503 Ice Storm, The (1997)
## 47596 Mrs. Brown (Her Majesty, Mrs. Brown) (1997)
## 51066 Edge, The (1997)
## 53369 Incognito (1997)
## 62750 Trainspotting (1996)
## 81696 Jane Eyre (1996)
## 89684 Preacher's Wife, The (1996)
## 92015 2 Days in the Valley (1996)
## 95702 Beautiful Thing (1996)
## 95936 In Love and War (1996)
## 98199 Infinity (1996)
## 98207 For the Moment (1994)
## 107 Toy Story (1995)
## 1102 Twelve Monkeys (1995)
## 1442 Babe (1995)
## 1925 Richard III (1995)
## 2549 Mighty Aphrodite (1995)
## 2727 Postino, Il (1994)
## 2942 Mr. Holland's Opus (1995)
## 3164 French Twist (Gazon maudit) (1995)
## 3589 Braveheart (1995)
## 4259 Birdcage, The (1996)
## 4482 Brothers McMullen, The (1995)
## 4670 Apollo 13 (1995)
## 9445 Forrest Gump (1994)
## 10511 Firm, The (1993)
## 11470 Much Ado About Nothing (1993)
## 11721 Remains of the Day, The (1993)
## 12840 Welcome to the Dollhouse (1995)
## 15522 Truth About Cats & Dogs, The (1996)
## 15873 Cold Comfort Farm (1995)
## 17599 Phenomenon (1996)
## 17981 Godfather, The (1972)
## 18389 Bound (1996)
## 19632 Big Night (1996)
## 21124 Willy Wonka and the Chocolate Factory (1971)
## 22152 Platoon (1986)
## 22726 On Golden Pond (1981)
## 24300 Princess Bride, The (1987)
## 28436 Amadeus (1984)
## 28975 Sting, The (1973)
## 29516 Dead Poets Society (1989)
## 31641 Young Frankenstein (1974)
## 32918 Field of Dreams (1989)
## 33859 Breaking the Waves (1996)
## 34309 Sling Blade (1996)
## 34488 101 Dalmatians (1996)
## 36508 Jerry Maguire (1996)
## 38057 Chasing Amy (1997)
## 42052 Sense and Sensibility (1995)
## 42744 Up Close and Personal (1996)
## 43217 Emma (1996)
## 43591 Secrets & Lies (1996)
## 43841 English Patient, The (1996)
## 47597 Mrs. Brown (Her Majesty, Mrs. Brown) (1997)
## 48868 In the Name of the Father (1993)
## 49019 Schindler's List (1993)
## 53623 Clueless (1995)
## 54974 Age of Innocence, The (1993)
## 58129 E.T. the Extra-Terrestrial (1982)
## 59638 Butch Cassidy and the Sundance Kid (1969)
## 61127 Nixon (1995)
## 61256 Smoke (1995)
## 61760 Rudy (1993)
## 63120 Matilda (1996)
## 66305 My Left Foot (1989)
## 66562 Lawrence of Arabia (1962)
## 66864 Annie Hall (1977)
## 68732 Shine (1996)
## 71649 Piano, The (1993)
## 74499 Crying Game, The (1992)
## 74607 Sophie's Choice (1982)
## 76045 Stand by Me (1986)
## 76620 Fried Green Tomatoes (1991)
## 79098 Persuasion (1995)
## 79297 Little Women (1994)
## 79730 Sex, Lies, and Videotape (1989)
## 80058 Othello (1995)
## 80648 Circle of Friends (1995)
## 81027 Dave (1993)
## 81371 Shadowlands (1993)
## 81444 Sirens (1994)
## 84269 Don Juan DeMarco (1995)
## 85360 Celluloid Closet, The (1995)
## 93203 Hamlet (1996)
## 95203 Twelfth Night (1996)
## 95883 Tom & Viv (1994)
## 96547 Family Thing, A (1996)
## 97730 Manny & Lo (1996)
## 98231 Mina Tannenbaum (1994)
## 98804 Last Summer in the Hamptons (1995)
## 98807 Margaret's Museum (1995)
## 108 Toy Story (1995)
## 603 Four Rooms (1995)
## 1103 Twelve Monkeys (1995)
## 1687 Dead Man Walking (1995)
## 2550 Mighty Aphrodite (1995)
## 3214 From Dusk Till Dawn (1996)
## 3384 Angels and Insects (1995)
## 3590 Braveheart (1995)
## 4483 Brothers McMullen, The (1995)
## 4671 Apollo 13 (1995)
## 5061 Crimson Tide (1995)
## 5206 Crumb (1994)
## 5620 To Wong Foo, Thanks for Everything! Julie Newmar (1995)
## 5734 Clerks (1994)
## 6541 Star Wars (1977)
## 7012 Legends of the Fall (1994)
## 7089 Madness of King George, The (1994)
## 7183 Natural Born Killers (1994)
## 7312 Outbreak (1995)
## 7645 Pulp Fiction (1994)
## 8010 Quiz Show (1994)
## 8384 Stargate (1994)
## 8641 Shawshank Redemption, The (1994)
## 8871 What's Eating Gilbert Grape (1993)
## 8996 While You Were Sleeping (1995)
## 9147 Ace Ventura: Pet Detective (1994)
## 9253 Crow, The (1994)
## 9446 Forrest Gump (1994)
## 9747 Four Weddings and a Funeral (1994)
## 9979 Lion King, The (1994)
## 10178 Mask, The (1994)
## 10512 Firm, The (1993)
## 11007 Hot Shots! Part Deux (1993)
## 11237 Jurassic Park (1993)
## 11722 Remains of the Day, The (1993)
## 12019 Sleepless in Seattle (1993)
## 12252 Blade Runner (1982)
## 12481 So I Married an Axe Murderer (1993)
## 12724 True Romance (1993)
## 13095 Aladdin (1992)
## 13623 Dances with Wolves (1990)
## 14508 Fargo (1996)
## 14907 Heavy Metal (1981)
## 15057 Sgt. Bilko (1996)
## 15324 Mystery Science Theater 3000: The Movie (1996)
## 15523 Truth About Cats & Dogs, The (1996)
## 15767 Wallace & Gromit: The Best of Aardman Animation (1996)
## 16048 Rock, The (1996)
## 16410 Twister (1996)
## 16811 Independence Day (ID4) (1996)
## 17156 Cable Guy, The (1996)
## 17813 Spitfire Grill, The (1996)
## 19288 2001: A Space Odyssey (1968)
## 20291 Die Hard (1988)
## 20493 Lawnmower Man, The (1992)
## 20771 Ghost and the Darkness, The (1996)
## 21125 Willy Wonka and the Chocolate Factory (1971)
## 21515 Fish Called Wanda, A (1988)
## 21743 Monty Python's Life of Brian (1979)
## 21898 Dirty Dancing (1987)
## 22012 Reservoir Dogs (1992)
## 22153 Platoon (1986)
## 22261 Weekend at Bernie's (1989)
## 22532 Top Gun (1986)
## 22727 On Golden Pond (1981)
## 22928 Abyss, The (1989)
## 23185 Private Benjamin (1980)
## 23304 Monty Python and the Holy Grail (1974)
## 23579 Wrong Trousers, The (1993)
## 23809 Delicatessen (1991)
## 23945 Empire Strikes Back, The (1980)
## 24301 Princess Bride, The (1987)
## 24650 Raiders of the Lost Ark (1981)
## 25771 Clockwork Orange, A (1971)
## 25993 Apocalypse Now (1979)
## 26284 Return of the Jedi (1983)
## 26959 Alien (1979)
## 27598 Blues Brothers, The (1980)
## 28040 Full Metal Jacket (1987)
## 28437 Amadeus (1984)
## 28794 Right Stuff, The (1983)
## 29517 Dead Poets Society (1989)
## 29762 Graduate, The (1967)
## 30279 Shining, The (1980)
## 31076 Back to the Future (1985)
## 31642 Young Frankenstein (1974)
## 31849 This Is Spinal Tap (1984)
## 32772 Pink Floyd - The Wall (1982)
## 32919 Field of Dreams (1989)
## 33151 When Harry Met Sally... (1989)
## 33389 Bram Stoker's Dracula (1992)
## 33784 Mirror Has Two Faces, The (1996)
## 33999 Star Trek: First Contact (1996)
## 34599 Die Hard 2 (1990)
## 35665 Young Guns (1988)
## 35932 Jaws (1975)
## 36199 Mars Attacks! (1996)
## 36509 Jerry Maguire (1996)
## 36859 Raising Arizona (1987)
## 37238 Beavis and Butt-head Do America (1996)
## 37395 Last of the Mohicans, The (1992)
## 38058 Chasing Amy (1997)
## 38342 Austin Powers: International Man of Mystery (1997)
## 38970 My Best Friend's Wedding (1997)
## 39559 Contact (1997)
## 40501 Hunt for Red October, The (1990)
## 42346 Leaving Las Vegas (1995)
## 42644 Bed of Roses (1996)
## 42841 River Wild, The (1994)
## 44214 Marvin's Room (1996)
## 45036 Fierce Creatures (1997)
## 45133 Absolute Power (1997)
## 45614 Liar Liar (1997)
## 46867 In & Out (1997)
## 47949 Rainmaker, The (1997)
## 48869 In the Name of the Father (1993)
## 49020 Schindler's List (1993)
## 50085 Lost Highway (1997)
## 52997 One Flew Over the Cuckoo's Nest (1975)
## 53499 Powder (1995)
## 53624 Clueless (1995)
## 53799 Black Sheep (1996)
## 54260 Star Trek: Generations (1994)
## 54372 Muriel's Wedding (1994)
## 54570 Flintstones, The (1994)
## 55255 Mrs. Doubtfire (1993)
## 55690 Brady Bunch Movie, The (1995)
## 56790 Jack (1996)
## 56876 Kingpin (1996)
## 57050 Nutty Professor, The (1996)
## 58737 Harold and Maude (1971)
## 59396 Heathers (1989)
## 60651 Grease (1978)
## 60912 Jackie Chan's First Strike (1996)
## 61040 Beverly Hills Ninja (1997)
## 61128 Nixon (1995)
## 61761 Rudy (1993)
## 62040 Courage Under Fire (1996)
## 62751 Trainspotting (1996)
## 66124 People vs. Larry Flynt, The (1996)
## 66306 My Left Foot (1989)
## 67673 Deer Hunter, The (1978)
## 68257 Gandhi (1982)
## 68432 Killing Fields, The (1984)
## 68947 My Own Private Idaho (1991)
## 69754 Die Hard: With a Vengeance (1995)
## 69962 Walk in the Clouds, A (1995)
## 70031 Waterworld (1995)
## 70246 Interview with the Vampire (1994)
## 70603 Clear and Present Danger (1994)
## 71563 Kalifornia (1993)
## 71829 Secret Garden, The (1993)
## 72552 Hunchback of Notre Dame, The (1996)
## 73421 Father of the Bride (1950)
## 74238 Sleepers (1996)
## 74386 Victor/Victoria (1982)
## 74500 Crying Game, The (1992)
## 75493 Seventh Seal, The (Sjunde inseglet, Det) (1957)
## 75588 Glory (1989)
## 75742 Rosencrantz and Guildenstern Are Dead (1990)
## 76046 Stand by Me (1986)
## 76621 Fried Green Tomatoes (1991)
## 76843 Somewhere in Time (1980)
## 77339 Cape Fear (1962)
## 77520 Crucible, The (1996)
## 78295 Executive Decision (1996)
## 79230 Basketball Diaries, The (1995)
## 79654 Enchanted April (1991)
## 79731 Sex, Lies, and Videotape (1989)
## 79928 Better Off Dead... (1985)
## 80007 Tin Men (1987)
## 80233 Home for the Holidays (1995)
## 80497 Mallrats (1995)
## 80607 Boys on the Side (1995)
## 80649 Circle of Friends (1995)
## 81028 Dave (1993)
## 81248 Philadelphia (1993)
## 81495 Threesome (1994)
## 81551 Pretty Woman (1990)
## 82079 Crow: City of Angels, The (1996)
## 82134 Michael Collins (1996)
## 82235 Real Genius (1985)
## 82361 Benny & Joon (1993)
## 83182 Red Corner (1997)
## 83358 Father of the Bride Part II (1995)
## 83606 Beautiful Girls (1996)
## 83731 Happy Gilmore (1996)
## 83853 If Lucy Fell (1996)
## 84126 Kids (1995)
## 84378 Dumb & Dumber (1994)
## 84693 Tommy Boy (1995)
## 85420 One Fine Day (1996)
## 85534 Girl 6 (1996)
## 86238 Bulletproof (1996)
## 86622 That Thing You Do! (1996)
## 87025 Night on Earth (1991)
## 87254 Michael (1996)
## 87408 Vegas Vacation (1997)
## 88078 Life Less Ordinary, A (1997)
## 89118 White Squall (1996)
## 89245 Down Periscope (1996)
## 89932 With Honors (1994)
## 90154 Fox and the Hound, The (1981)
## 90282 How to Make an American Quilt (1995)
## 90346 Georgia (1995)
## 90458 Unstrung Heroes (1995)
## 90494 Before Sunrise (1995)
## 90605 Dazed and Confused (1993)
## 92114 Private Parts (1997)
## 92487 Trees Lounge (1996)
## 92827 Grumpier Old Men (1995)
## 93204 Hamlet (1996)
## 93313 Forget Paris (1995)
## 93447 Fearless (1993)
## 93539 Multiplicity (1996)
## 93659 She's the One (1996)
## 93857 Now and Then (1995)
## 93880 Mr. Wrong (1996)
## 93925 Pallbearer, The (1996)
## 94390 Reality Bites (1994)
## 94508 Joe's Apartment (1996)
## 94817 High School High (1996)
## 94869 Flirting With Disaster (1996)
## 95052 Beyond Rangoon (1995)
## 95075 Death and the Maiden (1994)
## 95263 Up in Smoke (1978)
## 95314 Some Kind of Wonderful (1987)
## 95526 Feeling Minnesota (1996)
## 95672 Ghosts of Mississippi (1996)
## 95919 Last Dance (1996)
## 96151 Little Buddha (1993)
## 96286 Major Payne (1994)
## 96413 Young Guns II (1990)
## 96731 Mixed Nuts (1994)
## 97049 Angus (1995)
## 98606 SubUrbia (1997)
## 98813 Saint of Fort Washington, The (1993)
## 3459 Muppet Treasure Island (1996)
## 6542 Star Wars (1977)
## 12947 Home Alone (1990)
## 15730 Flipper (1996)
## 18892 Gone with the Wind (1939)
## 21126 Willy Wonka and the Chocolate Factory (1971)
## 26285 Return of the Jedi (1983)
## 32061 Indiana Jones and the Last Crusade (1989)
## 34000 Star Trek: First Contact (1996)
## 37239 Beavis and Butt-head Do America (1996)
## 39560 Contact (1997)
## 46481 Air Force One (1997)
## 57051 Nutty Professor, The (1996)
## 62398 James and the Giant Peach (1996)
## 72553 Hunchback of Notre Dame, The (1996)
## 72692 Eraser (1996)
## 80301 Juror, The (1996)
## 83359 Father of the Bride Part II (1995)
## 88333 Home Alone 3 (1997)
## 92828 Grumpier Old Men (1995)
## 93004 Homeward Bound II: Lost in San Francisco (1996)
## 93540 Multiplicity (1996)
## 109 Toy Story (1995)
## 604 Four Rooms (1995)
## 1443 Babe (1995)
## 2056 Seven (Se7en) (1995)
## 2294 Usual Suspects, The (1995)
## 3215 From Dusk Till Dawn (1996)
## 4044 Rumble in the Bronx (1995)
## 4260 Birdcage, The (1996)
## 4901 Batman Forever (1995)
## 5426 Net, The (1995)
## 5669 Billy Madison (1995)
## 6543 Star Wars (1977)
## 7430 Professional, The (1994)
## 7646 Pulp Fiction (1994)
## 8997 While You Were Sleeping (1995)
## 9148 Ace Ventura: Pet Detective (1994)
## 9254 Crow, The (1994)
## 9447 Forrest Gump (1994)
## 10513 Firm, The (1993)
## 11008 Hot Shots! Part Deux (1993)
## 11087 Hudsucker Proxy, The (1994)
## 11238 Jurassic Park (1993)
## 11471 Much Ado About Nothing (1993)
## 12725 True Romance (1993)
## 12948 Home Alone (1990)
## 13096 Aladdin (1992)
## 13343 Terminator 2: Judgment Day (1991)
## 13624 Dances with Wolves (1990)
## 13922 Silence of the Lambs, The (1991)
## 14249 Snow White and the Seven Dwarfs (1937)
## 14509 Fargo (1996)
## 14908 Heavy Metal (1981)
## 15325 Mystery Science Theater 3000: The Movie (1996)
## 15524 Truth About Cats & Dogs, The (1996)
## 16049 Rock, The (1996)
## 16411 Twister (1996)
## 16812 Independence Day (ID4) (1996)
## 18662 Wizard of Oz, The (1939)
## 18893 Gone with the Wind (1939)
## 19762 D3: The Mighty Ducks (1996)
## 20494 Lawnmower Man, The (1992)
## 21127 Willy Wonka and the Chocolate Factory (1971)
## 21899 Dirty Dancing (1987)
## 22262 Weekend at Bernie's (1989)
## 22328 Basic Instinct (1992)
## 22533 Top Gun (1986)
## 22929 Abyss, The (1989)
## 23946 Empire Strikes Back, The (1980)
## 24302 Princess Bride, The (1987)
## 24651 Raiders of the Lost Ark (1981)
## 25030 Brazil (1985)
## 25245 Aliens (1986)
## 25628 12 Angry Men (1957)
## 26286 Return of the Jedi (1983)
## 27213 Army of Darkness (1993)
## 27365 Psycho (1960)
## 29230 Terminator, The (1984)
## 29518 Dead Poets Society (1989)
## 29971 Nikita (La Femme Nikita) (1990)
## 30467 Evil Dead II (1987)
## 30598 Groundhog Day (1993)
## 31077 Back to the Future (1985)
## 31643 Young Frankenstein (1974)
## 32062 Indiana Jones and the Last Crusade (1989)
## 32370 M*A*S*H (1970)
## 32920 Field of Dreams (1989)
## 33152 When Harry Met Sally... (1989)
## 33680 Nightmare on Elm Street, A (1984)
## 34310 Sling Blade (1996)
## 34600 Die Hard 2 (1990)
## 34768 Star Trek VI: The Undiscovered Country (1991)
## 34947 Star Trek: The Wrath of Khan (1982)
## 35354 Star Trek IV: The Voyage Home (1986)
## 35534 Batman Returns (1992)
## 35666 Young Guns (1988)
## 36200 Mars Attacks! (1996)
## 36380 Citizen Ruth (1996)
## 36860 Raising Arizona (1987)
## 37081 Sneakers (1992)
## 37240 Beavis and Butt-head Do America (1996)
## 38487 Fifth Element, The (1997)
## 38720 Lost World: Jurassic Park, The (1997)
## 38879 Batman & Robin (1997)
## 39186 Men in Black (1997)
## 40127 Event Horizon (1997)
## 40502 Hunt for Red October, The (1990)
## 43404 Tin Cup (1996)
## 44387 Scream (1996)
## 44810 Evita (1996)
## 45615 Liar Liar (1997)
## 52860 Client, The (1994)
## 53766 Bio-Dome (1996)
## 53800 Black Sheep (1996)
## 54605 Naked Gun 33 1/3: The Final Insult (1994)
## 54709 True Lies (1994)
## 55256 Mrs. Doubtfire (1993)
## 55691 Brady Bunch Movie, The (1995)
## 55789 Ghost (1990)
## 55965 Batman (1989)
## 56142 Pinocchio (1940)
## 56579 Thinner (1996)
## 56791 Jack (1996)
## 56877 Kingpin (1996)
## 57052 Nutty Professor, The (1996)
## 57191 Very Brady Sequel, A (1996)
## 57275 Tales from the Crypt Presents: Bordello of Blood (1996)
## 57410 Old Yeller (1957)
## 57565 Cinderella (1950)
## 57859 Alice in Wonderland (1951)
## 58130 E.T. the Extra-Terrestrial (1982)
## 58394 Bob Roberts (1992)
## 58463 Transformers: The Movie, The (1986)
## 59056 Highlander (1986)
## 59215 Fantasia (1940)
## 59397 Heathers (1989)
## 59940 Amityville Horror, The (1979)
## 60158 Blob, The (1958)
## 60255 Carrie (1976)
## 60652 Grease (1978)
## 61826 Short Cuts (1993)
## 61904 Tombstone (1993)
## 62752 Trainspotting (1996)
## 63121 Matilda (1996)
## 69134 Mortal Kombat (1995)
## 69592 Young Poisoner's Handbook, The (1995)
## 69755 Die Hard: With a Vengeance (1995)
## 70247 Interview with the Vampire (1994)
## 70388 Mary Shelley's Frankenstein (1994)
## 70751 Wes Craven's New Nightmare (1994)
## 70837 Speed (1994)
## 71087 Wyatt Earp (1994)
## 71160 Blown Away (1994)
## 71293 Cliffhanger (1993)
## 71424 Demolition Man (1993)
## 71903 Son in Law (1993)
## 72026 Beauty and the Beast (1991)
## 72554 Hunchback of Notre Dame, The (1996)
## 72693 Eraser (1996)
## 73729 Night of the Living Dead (1968)
## 74239 Sleepers (1996)
## 74666 Christmas Carol, A (1938)
## 75589 Glory (1989)
## 75743 Rosencrantz and Guildenstern Are Dead (1990)
## 76407 Pump Up the Volume (1990)
## 77093 Alien 3 (1992)
## 77266 Candyman (1992)
## 77463 Nosferatu (Nosferatu, eine Symphonie des Grauens) (1922)
## 77825 Conan the Barbarian (1981)
## 80377 Canadian Bacon (1994)
## 80420 First Knight (1995)
## 80498 Mallrats (1995)
## 80650 Circle of Friends (1995)
## 80812 Junior (1994)
## 81249 Philadelphia (1993)
## 81552 Pretty Woman (1990)
## 81763 Last Supper, The (1995)
## 82080 Crow: City of Angels, The (1996)
## 82236 Real Genius (1985)
## 82505 Saint, The (1997)
## 83467 Lawnmower Man 2: Beyond Cyberspace (1996)
## 83879 Boomerang (1992)
## 84694 Tommy Boy (1995)
## 84988 Bad Company (1995)
## 85049 Hard Target (1993)
## 85223 Rising Sun (1993)
## 85514 Candyman: Farewell to the Flesh (1995)
## 86026 Daylight (1996)
## 86134 Escape from L.A. (1996)
## 86387 Last Man Standing (1996)
## 86441 Glimmer Man, The (1996)
## 86869 Days of Thunder (1990)
## 86926 Braindead (1992)
## 88371 Scream 2 (1997)
## 88878 City of Lost Children, The (1995)
## 89492 Chain Reaction (1996)
## 89614 First Kid (1996)
## 89933 With Honors (1994)
## 91241 Dangerous Ground (1997)
## 91573 Hercules (1997)
## 92829 Grumpier Old Men (1995)
## 93205 Hamlet (1996)
## 93408 Paper, The (1994)
## 93836 Dracula: Dead and Loving It (1995)
## 94322 Shallow Grave (1994)
## 94655 Speed 2: Cruise Control (1997)
## 94938 Six Degrees of Separation (1993)
## 95622 Doors, The (1991)
## 95732 Hackers (1995)
## 96414 Young Guns II (1990)
## 96896 Friday (1995)
## 96942 Higher Learning (1995)
## 97011 Judgment Night (1993)
## 97109 Under Siege 2: Dark Territory (1995)
## 97203 Madonna: Truth or Dare (1991)
## 98481 Barbarella (1968)
## 110 Toy Story (1995)
## 1104 Twelve Monkeys (1995)
## 4672 Apollo 13 (1995)
## 6544 Star Wars (1977)
## 8011 Quiz Show (1994)
## 8642 Shawshank Redemption, The (1994)
## 9748 Four Weddings and a Funeral (1994)
## 14510 Fargo (1996)
## 15525 Truth About Cats & Dogs, The (1996)
## 16813 Independence Day (ID4) (1996)
## 21128 Willy Wonka and the Chocolate Factory (1971)
## 26287 Return of the Jedi (1983)
## 34001 Star Trek: First Contact (1996)
## 38650 Shall We Dance? (1996)
## 39187 Men in Black (1997)
## 39561 Contact (1997)
## 39974 George of the Jungle (1997)
## 40810 Full Monty, The (1997)
## 41216 Starship Troopers (1997)
## 41434 Good Will Hunting (1997)
## 46482 Air Force One (1997)
## 51881 Boogie Nights (1997)
## 81372 Shadowlands (1993)
## 82839 Amistad (1997)
## 82979 Tomorrow Never Dies (1997)
## 92669 Fast, Cheap & Out of Control (1997)
## 111 Toy Story (1995)
## 1105 Twelve Monkeys (1995)
## 2057 Seven (Se7en) (1995)
## 3591 Braveheart (1995)
## 6545 Star Wars (1977)
## 7431 Professional, The (1994)
## 8643 Shawshank Redemption, The (1994)
## 9448 Forrest Gump (1994)
## 10748 Fugitive, The (1993)
## 12253 Blade Runner (1982)
## 13344 Terminator 2: Judgment Day (1991)
## 13923 Silence of the Lambs, The (1991)
## 14511 Fargo (1996)
## 15768 Wallace & Gromit: The Best of Aardman Animation (1996)
## 16050 Rock, The (1996)
## 16814 Independence Day (ID4) (1996)
## 17982 Godfather, The (1972)
## 21516 Fish Called Wanda, A (1988)
## 22013 Reservoir Dogs (1992)
## 23305 Monty Python and the Holy Grail (1974)
## 23947 Empire Strikes Back, The (1980)
## 24652 Raiders of the Lost Ark (1981)
## 25246 Aliens (1986)
## 25772 Clockwork Orange, A (1971)
## 25994 Apocalypse Now (1979)
## 26288 Return of the Jedi (1983)
## 26960 Alien (1979)
## 27366 Psycho (1960)
## 27599 Blues Brothers, The (1980)
## 27846 Godfather: Part II, The (1974)
## 28976 Sting, The (1973)
## 29519 Dead Poets Society (1989)
## 29972 Nikita (La Femme Nikita) (1990)
## 32063 Indiana Jones and the Last Crusade (1989)
## 35933 Jaws (1975)
## 36201 Mars Attacks! (1996)
## 38343 Austin Powers: International Man of Mystery (1997)
## 38488 Fifth Element, The (1997)
## 39188 Men in Black (1997)
## 43003 Time to Kill, A (1996)
## 43218 Emma (1996)
## 45037 Fierce Creatures (1997)
## 45616 Liar Liar (1997)
## 49874 Dante's Peak (1997)
## 50086 Lost Highway (1997)
## 52112 Alien: Resurrection (1997)
## 56312 Mission: Impossible (1996)
## 62539 Dr. Strangelove or: How I Learned to Stop Worrying and Love the Bomb (1963)
## 62753 Trainspotting (1996)
## 64115 Maltese Falcon, The (1941)
## 67044 Boot, Das (1981)
## 72195 Wild Bunch, The (1969)
## 77638 Volcano (1997)
## 85140 Menace II Society (1993)
## 86938 Bad Taste (1987)
## 89341 Craft, The (1996)
## 112 Toy Story (1995)
## 479 GoldenEye (1995)
## 718 Get Shorty (1995)
## 1106 Twelve Monkeys (1995)
## 1688 Dead Man Walking (1995)
## 2058 Seven (Se7en) (1995)
## 2295 Usual Suspects, The (1995)
## 2551 Mighty Aphrodite (1995)
## 3592 Braveheart (1995)
## 3863 Taxi Driver (1976)
## 4045 Rumble in the Bronx (1995)
## 4673 Apollo 13 (1995)
## 5062 Crimson Tide (1995)
## 5538 Strange Days (1995)
## 5735 Clerks (1994)
## 6546 Star Wars (1977)
## 7184 Natural Born Killers (1994)
## 7432 Professional, The (1994)
## 7647 Pulp Fiction (1994)
## 8012 Quiz Show (1994)
## 8644 Shawshank Redemption, The (1994)
## 9255 Crow, The (1994)
## 9449 Forrest Gump (1994)
## 10749 Fugitive, The (1993)
## 11472 Much Ado About Nothing (1993)
## 11723 Remains of the Day, The (1993)
## 12020 Sleepless in Seattle (1993)
## 12254 Blade Runner (1982)
## 12726 True Romance (1993)
## 12841 Welcome to the Dollhouse (1995)
## 13345 Terminator 2: Judgment Day (1991)
## 13924 Silence of the Lambs, The (1991)
## 14512 Fargo (1996)
## 15240 Kids in the Hall: Brain Candy (1996)
## 15769 Wallace & Gromit: The Best of Aardman Animation (1996)
## 16051 Rock, The (1996)
## 16815 Independence Day (ID4) (1996)
## 17265 Frighteners, The (1996)
## 17400 Lone Star (1996)
## 17600 Phenomenon (1996)
## 18390 Bound (1996)
## 19289 2001: A Space Odyssey (1968)
## 19633 Big Night (1996)
## 20292 Die Hard (1988)
## 20599 Long Kiss Goodnight, The (1996)
## 20772 Ghost and the Darkness, The (1996)
## 22014 Reservoir Dogs (1992)
## 22534 Top Gun (1986)
## 23306 Monty Python and the Holy Grail (1974)
## 23580 Wrong Trousers, The (1993)
## 23948 Empire Strikes Back, The (1980)
## 24303 Princess Bride, The (1987)
## 24653 Raiders of the Lost Ark (1981)
## 25031 Brazil (1985)
## 25247 Aliens (1986)
## 25773 Clockwork Orange, A (1971)
## 26289 Return of the Jedi (1983)
## 26729 GoodFellas (1990)
## 26961 Alien (1979)
## 27600 Blues Brothers, The (1980)
## 28041 Full Metal Jacket (1987)
## 28438 Amadeus (1984)
## 29231 Terminator, The (1984)
## 29973 Nikita (La Femme Nikita) (1990)
## 30599 Groundhog Day (1993)
## 30857 Unforgiven (1992)
## 31850 This Is Spinal Tap (1984)
## 32064 Indiana Jones and the Last Crusade (1989)
## 32550 Unbearable Lightness of Being, The (1988)
## 33153 When Harry Met Sally... (1989)
## 33522 Cape Fear (1991)
## 34002 Star Trek: First Contact (1996)
## 34311 Sling Blade (1996)
## 34948 Star Trek: The Wrath of Khan (1982)
## 36202 Mars Attacks! (1996)
## 36510 Jerry Maguire (1996)
## 36861 Raising Arizona (1987)
## 37082 Sneakers (1992)
## 37241 Beavis and Butt-head Do America (1996)
## 37396 Last of the Mohicans, The (1992)
## 37527 Kolya (1996)
## 37844 Devil's Own, The (1997)
## 38184 Grosse Pointe Blank (1997)
## 38344 Austin Powers: International Man of Mystery (1997)
## 38489 Fifth Element, The (1997)
## 38721 Lost World: Jurassic Park, The (1997)
## 38971 My Best Friend's Wedding (1997)
## 39189 Men in Black (1997)
## 39562 Contact (1997)
## 41217 Starship Troopers (1997)
## 41632 Heat (1995)
## 42053 Sense and Sensibility (1995)
## 43219 Emma (1996)
## 45038 Fierce Creatures (1997)
## 45617 Liar Liar (1997)
## 46159 Face/Off (1997)
## 46483 Air Force One (1997)
## 47115 L.A. Confidential (1997)
## 47893 Deceiver (1997)
## 48870 In the Name of the Father (1993)
## 49021 Schindler's List (1993)
## 50529 Cop Land (1997)
## 51358 Game, The (1997)
## 52998 One Flew Over the Cuckoo's Nest (1975)
## 55966 Batman (1989)
## 56313 Mission: Impossible (1996)
## 56630 Spy Hard (1996)
## 56686 Close Shave, A (1995)
## 56792 Jack (1996)
## 57053 Nutty Professor, The (1996)
## 57949 William Shakespeare's Romeo and Juliet (1996)
## 58131 E.T. the Extra-Terrestrial (1982)
## 58536 To Kill a Mockingbird (1962)
## 59057 Highlander (1986)
## 60913 Jackie Chan's First Strike (1996)
## 61041 Beverly Hills Ninja (1997)
## 61355 Like Water For Chocolate (Como agua para chocolate) (1992)
## 61709 Bronx Tale, A (1993)
## 61827 Short Cuts (1993)
## 62041 Courage Under Fire (1996)
## 62243 Dragonheart (1996)
## 62979 First Wives Club, The (1996)
## 63217 Philadelphia Story, The (1940)
## 63334 Vertigo (1958)
## 63514 North by Northwest (1959)
## 63900 Casablanca (1942)
## 69393 Broken Arrow (1996)
## 70838 Speed (1994)
## 71788 Romeo Is Bleeding (1993)
## 72027 Beauty and the Beast (1991)
## 72289 Primal Fear (1996)
## 72694 Eraser (1996)
## 72970 Rear Window (1954)
## 74240 Sleepers (1996)
## 74725 Microcosmos: Le peuple de l'herbe (1996)
## 76408 Pump Up the Volume (1990)
## 78128 In the Line of Fire (1993)
## 78424 Perfect World, A (1993)
## 79732 Sex, Lies, and Videotape (1989)
## 80608 Boys on the Side (1995)
## 81764 Last Supper, The (1995)
## 81864 Ransom (1996)
## 82237 Real Genius (1985)
## 82506 Saint, The (1997)
## 84645 Swimming with Sharks (1995)
## 85141 Menace II Society (1993)
## 85951 Phantom, The (1996)
## 86543 Freeway (1996)
## 86927 Braindead (1992)
## 88879 City of Lost Children, The (1995)
## 89493 Chain Reaction (1996)
## 91574 Hercules (1997)
## 92016 2 Days in the Valley (1996)
## 92115 Private Parts (1997)
## 92367 Con Air (1997)
## 93206 Hamlet (1996)
## 93541 Multiplicity (1996)
## 94243 Amateur (1994)
## 94323 Shallow Grave (1994)
## 95007 Trust (1990)
## 96138 Sum of Us, The (1994)
## 113 Toy Story (1995)
## 480 GoldenEye (1995)
## 1107 Twelve Monkeys (1995)
## 1689 Dead Man Walking (1995)
## 2296 Usual Suspects, The (1995)
## 3864 Taxi Driver (1976)
## 4674 Apollo 13 (1995)
## 5904 Dolores Claiborne (1994)
## 6547 Star Wars (1977)
## 7433 Professional, The (1994)
## 7648 Pulp Fiction (1994)
## 8645 Shawshank Redemption, The (1994)
## 9450 Forrest Gump (1994)
## 9980 Lion King, The (1994)
## 11088 Hudsucker Proxy, The (1994)
## 12255 Blade Runner (1982)
## 12592 Nightmare Before Christmas, The (1993)
## 12727 True Romance (1993)
## 13097 Aladdin (1992)
## 13346 Terminator 2: Judgment Day (1991)
## 13925 Silence of the Lambs, The (1991)
## 14513 Fargo (1996)
## 15526 Truth About Cats & Dogs, The (1996)
## 15874 Cold Comfort Farm (1995)
## 16052 Rock, The (1996)
## 17266 Frighteners, The (1996)
## 17983 Godfather, The (1972)
## 18391 Bound (1996)
## 19290 2001: A Space Odyssey (1968)
## 19839 Homeward Bound: The Incredible Journey (1993)
## 20293 Die Hard (1988)
## 21129 Willy Wonka and the Chocolate Factory (1971)
## 21517 Fish Called Wanda, A (1988)
## 21744 Monty Python's Life of Brian (1979)
## 22329 Basic Instinct (1992)
## 24654 Raiders of the Lost Ark (1981)
## 25032 Brazil (1985)
## 25774 Clockwork Orange, A (1971)
## 26290 Return of the Jedi (1983)
## 26962 Alien (1979)
## 27214 Army of Darkness (1993)
## 28439 Amadeus (1984)
## 29232 Terminator, The (1984)
## 29520 Dead Poets Society (1989)
## 30280 Shining, The (1980)
## 30600 Groundhog Day (1993)
## 31078 Back to the Future (1985)
## 34003 Star Trek: First Contact (1996)
## 34312 Sling Blade (1996)
## 35934 Jaws (1975)
## 36203 Mars Attacks! (1996)
## 36511 Jerry Maguire (1996)
## 36862 Raising Arizona (1987)
## 37242 Beavis and Butt-head Do America (1996)
## 37747 Smilla's Sense of Snow (1997)
## 38185 Grosse Pointe Blank (1997)
## 39563 Contact (1997)
## 39975 George of the Jungle (1997)
## 40128 Event Horizon (1997)
## 40367 Mimic (1997)
## 41067 Gattaca (1997)
## 41218 Starship Troopers (1997)
## 42347 Leaving Las Vegas (1995)
## 44388 Scream (1996)
## 45372 Donnie Brasco (1997)
## 45618 Liar Liar (1997)
## 48306 Titanic (1997)
## 49481 Mother (1996)
## 49651 Murder at 1600 (1997)
## 49875 Dante's Peak (1997)
## 50087 Lost Highway (1997)
## 50217 Crash (1996)
## 50733 Conspiracy Theory (1997)
## 51067 Edge, The (1997)
## 51359 Game, The (1997)
## 51716 Bean (1997)
## 51882 Boogie Nights (1997)
## 52999 One Flew Over the Cuckoo's Nest (1975)
## 53625 Clueless (1995)
## 54110 Miracle on 34th Street (1994)
## 56143 Pinocchio (1940)
## 57566 Cinderella (1950)
## 61129 Nixon (1995)
## 61828 Short Cuts (1993)
## 62540 Dr. Strangelove or: How I Learned to Stop Worrying and Love the Bomb (1963)
## 62754 Trainspotting (1996)
## 63122 Matilda (1996)
## 63515 North by Northwest (1959)
## 64251 My Fair Lady (1964)
## 65000 It's a Wonderful Life (1946)
## 65494 Dumbo (1941)
## 68258 Gandhi (1982)
## 70166 Heavenly Creatures (1994)
## 71650 Piano, The (1993)
## 72028 Beauty and the Beast (1991)
## 72555 Hunchback of Notre Dame, The (1996)
## 74241 Sleepers (1996)
## 74387 Victor/Victoria (1982)
## 77521 Crucible, The (1996)
## 77639 Volcano (1997)
## 78476 McHale's Navy (1997)
## 78542 Leave It to Beaver (1997)
## 81865 Ransom (1996)
## 82507 Saint, The (1997)
## 82980 Tomorrow Never Dies (1997)
## 83183 Red Corner (1997)
## 85361 Celluloid Closet, The (1995)
## 86544 Freeway (1996)
## 89649 Funeral, The (1996)
## 90026 Killing Zoe (1994)
## 90231 Booty Call (1997)
## 90885 Winnie the Pooh and the Blustery Day (1968)
## 91298 Shadow Conspiracy (1997)
## 91393 Beautician and the Beast, The (1997)
## 91532 Keys to Tulsa (1997)
## 91575 Hercules (1997)
## 92243 Romy and Michele's High School Reunion (1997)
## 94324 Shallow Grave (1994)
## 95703 Beautiful Thing (1996)
## 96065 Palookaville (1996)
## 96592 Cemetery Man (Dellamorte Dellamore) (1994)
## 98593 Grace of My Heart (1996)
## 114 Toy Story (1995)
## 1108 Twelve Monkeys (1995)
## 2297 Usual Suspects, The (1995)
## 2943 Mr. Holland's Opus (1995)
## 3593 Braveheart (1995)
## 4046 Rumble in the Bronx (1995)
## 4261 Birdcage, The (1996)
## 5288 Desperado (1995)
## 5985 Eat Drink Man Woman (1994)
## 6548 Star Wars (1977)
## 7434 Professional, The (1994)
## 8243 Three Colors: Blue (1993)
## 8646 Shawshank Redemption, The (1994)
## 10750 Fugitive, The (1993)
## 14514 Fargo (1996)
## 15326 Mystery Science Theater 3000: The Movie (1996)
## 15527 Truth About Cats & Dogs, The (1996)
## 16053 Rock, The (1996)
## 16412 Twister (1996)
## 16816 Independence Day (ID4) (1996)
## 17601 Phenomenon (1996)
## 18663 Wizard of Oz, The (1939)
## 20294 Die Hard (1988)
## 20600 Long Kiss Goodnight, The (1996)
## 20773 Ghost and the Darkness, The (1996)
## 21130 Willy Wonka and the Chocolate Factory (1971)
## 23949 Empire Strikes Back, The (1980)
## 26291 Return of the Jedi (1983)
## 26963 Alien (1979)
## 27367 Psycho (1960)
## 30601 Groundhog Day (1993)
## 32065 Indiana Jones and the Last Crusade (1989)
## 34004 Star Trek: First Contact (1996)
## 36512 Jerry Maguire (1996)
## 38186 Grosse Pointe Blank (1997)
## 38345 Austin Powers: International Man of Mystery (1997)
## 38490 Fifth Element, The (1997)
## 38722 Lost World: Jurassic Park, The (1997)
## 39190 Men in Black (1997)
## 39564 Contact (1997)
## 40503 Hunt for Red October, The (1990)
## 42054 Sense and Sensibility (1995)
## 42842 River Wild, The (1994)
## 43004 Time to Kill, A (1996)
## 44389 Scream (1996)
## 45619 Liar Liar (1997)
## 45995 Breakdown (1997)
## 46160 Face/Off (1997)
## 46484 Air Force One (1997)
## 48307 Titanic (1997)
## 56314 Mission: Impossible (1996)
## 57567 Cinderella (1950)
## 58537 To Kill a Mockingbird (1962)
## 58853 Day the Earth Stood Still, The (1951)
## 61762 Rudy (1993)
## 62042 Courage Under Fire (1996)
## 62244 Dragonheart (1996)
## 62980 First Wives Club, The (1996)
## 63516 North by Northwest (1959)
## 67546 Great Escape, The (1963)
## 68884 Addicted to Love (1997)
## 72467 Fan, The (1996)
## 72556 Hunchback of Notre Dame, The (1996)
## 72695 Eraser (1996)
## 73557 Lost Horizon (1937)
## 78296 Executive Decision (1996)
## 81866 Ransom (1996)
## 82508 Saint, The (1997)
## 85362 Celluloid Closet, The (1995)
## 86623 That Thing You Do! (1996)
## 87255 Michael (1996)
## 91162 Heaven's Prisoners (1996)
## 92116 Private Parts (1997)
## 92244 Romy and Michele's High School Reunion (1997)
## 92368 Con Air (1997)
## 92830 Grumpier Old Men (1995)
## 94870 Flirting With Disaster (1996)
## 115 Toy Story (1995)
## 1109 Twelve Monkeys (1995)
## 1690 Dead Man Walking (1995)
## 2728 Postino, Il (1994)
## 14515 Fargo (1996)
## 17401 Lone Star (1996)
## 18392 Bound (1996)
## 20875 Jude (1996)
## 34420 Ridicule (1996)
## 42055 Sense and Sensibility (1995)
## 42348 Leaving Las Vegas (1995)
## 42576 Restoration (1995)
## 43842 English Patient, The (1996)
## 45039 Fierce Creatures (1997)
## 46485 Air Force One (1997)
## 56878 Kingpin (1996)
## 62755 Trainspotting (1996)
## 81697 Jane Eyre (1996)
## 81867 Ransom (1996)
## 86812 Looking for Richard (1996)
## 116 Toy Story (1995)
## 719 Get Shorty (1995)
## 1444 Babe (1995)
## 2298 Usual Suspects, The (1995)
## 2944 Mr. Holland's Opus (1995)
## 3594 Braveheart (1995)
## 6549 Star Wars (1977)
## 7649 Pulp Fiction (1994)
## 8647 Shawshank Redemption, The (1994)
## 10751 Fugitive, The (1993)
## 11089 Hudsucker Proxy, The (1994)
## 11239 Jurassic Park (1993)
## 11473 Much Ado About Nothing (1993)
## 11871 Searching for Bobby Fischer (1993)
## 12256 Blade Runner (1982)
## 13098 Aladdin (1992)
## 13347 Terminator 2: Judgment Day (1991)
## 13625 Dances with Wolves (1990)
## 13926 Silence of the Lambs, The (1991)
## 14516 Fargo (1996)
## 16054 Rock, The (1996)
## 16817 Independence Day (ID4) (1996)
## 17602 Phenomenon (1996)
## 17984 Godfather, The (1972)
## 18664 Wizard of Oz, The (1939)
## 21518 Fish Called Wanda, A (1988)
## 22015 Reservoir Dogs (1992)
## 23307 Monty Python and the Holy Grail (1974)
## 24304 Princess Bride, The (1987)
## 25033 Brazil (1985)
## 26730 GoodFellas (1990)
## 26964 Alien (1979)
## 28042 Full Metal Jacket (1987)
## 28270 Henry V (1989)
## 28666 Raging Bull (1980)
## 29974 Nikita (La Femme Nikita) (1990)
## 30281 Shining, The (1980)
## 30602 Groundhog Day (1993)
## 30858 Unforgiven (1992)
## 32066 Indiana Jones and the Last Crusade (1989)
## 33154 When Harry Met Sally... (1989)
## 33785 Mirror Has Two Faces, The (1996)
## 34005 Star Trek: First Contact (1996)
## 35935 Jaws (1975)
## 36513 Jerry Maguire (1996)
## 37640 Jungle2Jungle (1997)
## 39976 George of the Jungle (1997)
## 41633 Heat (1995)
## 43005 Time to Kill, A (1996)
## 45620 Liar Liar (1997)
## 46161 Face/Off (1997)
## 46486 Air Force One (1997)
## 49022 Schindler's List (1993)
## 50734 Conspiracy Theory (1997)
## 51068 Edge, The (1997)
## 51360 Game, The (1997)
## 52113 Alien: Resurrection (1997)
## 58538 To Kill a Mockingbird (1962)
## 59398 Heathers (1989)
## 60366 Omen, The (1976)
## 61582 Jungle Book, The (1994)
## 63746 Some Like It Hot (1959)
## 63901 Casablanca (1942)
## 64252 My Fair Lady (1964)
## 64429 Roman Holiday (1953)
## 64608 To Catch a Thief (1955)
## 64845 His Girl Friday (1940)
## 65001 It's a Wonderful Life (1946)
## 66425 Magnificent Seven, The (1954)
## 67381 Miller's Crossing (1990)
## 67842 Cool Hand Luke (1967)
## 68259 Gandhi (1982)
## 70604 Clear and Present Danger (1994)
## 70839 Speed (1994)
## 72029 Beauty and the Beast (1991)
## 72290 Primal Fear (1996)
## 75307 Ran (1985)
## 76047 Stand by Me (1986)
## 76492 Arsenic and Old Lace (1944)
## 77826 Conan the Barbarian (1981)
## 78297 Executive Decision (1996)
## 78593 Jackal, The (1997)
## 79298 Little Women (1994)
## 79528 Singin' in the Rain (1952)
## 81029 Dave (1993)
## 81868 Ransom (1996)
## 82238 Real Genius (1985)
## 82362 Benny & Joon (1993)
## 82981 Tomorrow Never Dies (1997)
## 85142 Menace II Society (1993)
## 88372 Scream 2 (1997)
## 90820 Affair to Remember, An (1957)
## 92369 Con Air (1997)
## 92746 Fire Down Below (1997)
## 93207 Hamlet (1996)
## 98422 Withnail and I (1987)
## 98815 Cure, The (1995)
## 117 Toy Story (1995)
## 1445 Babe (1995)
## 2945 Mr. Holland's Opus (1995)
## 3460 Muppet Treasure Island (1996)
## 3595 Braveheart (1995)
## 4675 Apollo 13 (1995)
## 4902 Batman Forever (1995)
## 5369 Free Willy 2: The Adventure Home (1995)
## 6550 Star Wars (1977)
## 8385 Stargate (1994)
## 8648 Shawshank Redemption, The (1994)
## 9451 Forrest Gump (1994)
## 9981 Lion King, The (1994)
## 10417 Brother Minister: The Assassination of Malcolm X (1994)
## 10638 Free Willy (1993)
## 11240 Jurassic Park (1993)
## 12482 So I Married an Axe Murderer (1993)
## 12949 Home Alone (1990)
## 13626 Dances with Wolves (1990)
## 13927 Silence of the Lambs, The (1991)
## 14250 Snow White and the Seven Dwarfs (1937)
## 14980 Aristocats, The (1970)
## 15027 All Dogs Go to Heaven 2 (1996)
## 15731 Flipper (1996)
## 16413 Twister (1996)
## 16818 Independence Day (ID4) (1996)
## 17603 Phenomenon (1996)
## 17814 Spitfire Grill, The (1996)
## 18665 Wizard of Oz, The (1939)
## 18894 Gone with the Wind (1939)
## 19291 2001: A Space Odyssey (1968)
## 19502 Mr. Smith Goes to Washington (1939)
## 19763 D3: The Mighty Ducks (1996)
## 19840 Homeward Bound: The Incredible Journey (1993)
## 19900 20,000 Leagues Under the Sea (1954)
## 19969 Bedknobs and Broomsticks (1971)
## 20068 Sound of Music, The (1965)
## 21131 Willy Wonka and the Chocolate Factory (1971)
## 22728 On Golden Pond (1981)
## 22823 Return of the Pink Panther, The (1974)
## 22930 Abyss, The (1989)
## 23186 Private Benjamin (1980)
## 23308 Monty Python and the Holy Grail (1974)
## 23950 Empire Strikes Back, The (1980)
## 24655 Raiders of the Lost Ark (1981)
## 25248 Aliens (1986)
## 26292 Return of the Jedi (1983)
## 26965 Alien (1979)
## 27601 Blues Brothers, The (1980)
## 28043 Full Metal Jacket (1987)
## 29521 Dead Poets Society (1989)
## 30111 Bridge on the River Kwai, The (1957)
## 30282 Shining, The (1980)
## 31079 Back to the Future (1985)
## 32067 Indiana Jones and the Last Crusade (1989)
## 32371 M*A*S*H (1970)
## 32773 Pink Floyd - The Wall (1982)
## 33681 Nightmare on Elm Street, A (1984)
## 34006 Star Trek: First Contact (1996)
## 34489 101 Dalmatians (1996)
## 34769 Star Trek VI: The Undiscovered Country (1991)
## 34949 Star Trek: The Wrath of Khan (1982)
## 35175 Star Trek III: The Search for Spock (1984)
## 35355 Star Trek IV: The Voyage Home (1986)
## 35535 Batman Returns (1992)
## 35936 Jaws (1975)
## 36863 Raising Arizona (1987)
## 37243 Beavis and Butt-head Do America (1996)
## 37397 Last of the Mohicans, The (1992)
## 37641 Jungle2Jungle (1997)
## 39191 Men in Black (1997)
## 39565 Contact (1997)
## 39977 George of the Jungle (1997)
## 40504 Hunt for Red October, The (1990)
## 40811 Full Monty, The (1997)
## 43843 English Patient, The (1996)
## 48308 Titanic (1997)
## 49876 Dante's Peak (1997)
## 52114 Alien: Resurrection (1997)
## 53000 One Flew Over the Cuckoo's Nest (1975)
## 54111 Miracle on 34th Street (1994)
## 54200 Tales From the Crypt Presents: Demon Knight (1995)
## 54261 Star Trek: Generations (1994)
## 54606 Naked Gun 33 1/3: The Final Insult (1994)
## 54888 Addams Family Values (1993)
## 55058 Black Beauty (1994)
## 55257 Mrs. Doubtfire (1993)
## 55657 Little Rascals, The (1994)
## 55967 Batman (1989)
## 56315 Mission: Impossible (1996)
## 57377 Apple Dumpling Gang, The (1975)
## 57411 Old Yeller (1957)
## 57475 Parent Trap, The (1961)
## 57568 Cinderella (1950)
## 57699 Mary Poppins (1964)
## 58132 E.T. the Extra-Terrestrial (1982)
## 58854 Day the Earth Stood Still, The (1951)
## 59216 Fantasia (1940)
## 59639 Butch Cassidy and the Sundance Kid (1969)
## 59821 American Werewolf in London, An (1981)
## 59941 Amityville Horror, The (1979)
## 60026 Birds, The (1963)
## 60367 Omen, The (1976)
## 60461 Star Trek: The Motion Picture (1979)
## 60653 Grease (1978)
## 61081 Free Willy 3: The Rescue (1997)
## 61583 Jungle Book, The (1994)
## 62245 Dragonheart (1996)
## 65002 It's a Wonderful Life (1946)
## 65284 African Queen, The (1951)
## 65495 Dumbo (1941)
## 65712 Bonnie and Clyde (1967)
## 68112 Ben-Hur (1959)
## 69184 Pocahontas (1995)
## 69626 NeverEnding Story III, The (1994)
## 70032 Waterworld (1995)
## 70389 Mary Shelley's Frankenstein (1994)
## 71190 Body Snatchers (1993)
## 71240 City Slickers II: The Legend of Curly's Gold (1994)
## 71378 Coneheads (1993)
## 71830 Secret Garden, The (1993)
## 72030 Beauty and the Beast (1991)
## 72557 Hunchback of Notre Dame, The (1996)
## 73475 Gigi (1958)
## 73558 Lost Horizon (1937)
## 73730 Night of the Living Dead (1968)
## 73928 Davy Crockett, King of the Wild Frontier (1955)
## 73946 Swiss Family Robinson (1960)
## 74018 Three Caballeros, The (1945)
## 74052 Sword in the Stone, The (1963)
## 74388 Victor/Victoria (1982)
## 75433 Once Upon a Time in America (1984)
## 76048 Stand by Me (1986)
## 76844 Somewhere in Time (1980)
## 77094 Alien 3 (1992)
## 77640 Volcano (1997)
## 77827 Conan the Barbarian (1981)
## 79299 Little Women (1994)
## 83247 Jumanji (1995)
## 83936 Casper (1995)
## 86481 Pollyanna (1960)
## 86508 Shaggy Dog, The (1959)
## 87409 Vegas Vacation (1997)
## 88274 Flubber (1997)
## 90377 Indian in the Cupboard, The (1995)
## 90840 Little Lord Fauntleroy (1936)
## 92831 Grumpier Old Men (1995)
## 93005 Homeward Bound II: Lost in San Francisco (1996)
## 93749 Ghost and Mrs. Muir, The (1947)
## 94000 Adventures of Pinocchio, The (1996)
## 94727 Pete's Dragon (1977)
## 95226 Mark of Zorro, The (1940)
## 95555 Escape to Witch Mountain (1975)
## 96348 Cowboy Way, The (1994)
## 97507 Foxfire (1996)
## 98693 8 Seconds (1994)
## 98697 That Darn Cat! (1965)
## 98821 Tom and Huck (1995)
## 98833 Gumby: The Movie (1995)
## 901 Copycat (1995)
## 1110 Twelve Monkeys (1995)
## 7185 Natural Born Killers (1994)
## 7650 Pulp Fiction (1994)
## 13928 Silence of the Lambs, The (1991)
## 14517 Fargo (1996)
## 16055 Rock, The (1996)
## 16414 Twister (1996)
## 16819 Independence Day (ID4) (1996)
## 20601 Long Kiss Goodnight, The (1996)
## 27368 Psycho (1960)
## 30283 Shining, The (1980)
## 33390 Bram Stoker's Dracula (1992)
## 33523 Cape Fear (1991)
## 33682 Nightmare on Elm Street, A (1984)
## 34007 Star Trek: First Contact (1996)
## 35937 Jaws (1975)
## 37845 Devil's Own, The (1997)
## 38346 Austin Powers: International Man of Mystery (1997)
## 39566 Contact (1997)
## 39978 George of the Jungle (1997)
## 40368 Mimic (1997)
## 41219 Starship Troopers (1997)
## 41634 Heat (1995)
## 42843 River Wild, The (1994)
## 44390 Scream (1996)
## 45621 Liar Liar (1997)
## 46487 Air Force One (1997)
## 49652 Murder at 1600 (1997)
## 49877 Dante's Peak (1997)
## 50088 Lost Highway (1997)
## 50218 Crash (1996)
## 50735 Conspiracy Theory (1997)
## 51189 Kiss the Girls (1997)
## 51617 How to Be a Player (1997)
## 52115 Alien: Resurrection (1997)
## 56316 Mission: Impossible (1996)
## 56580 Thinner (1996)
## 57276 Tales from the Crypt Presents: Bordello of Blood (1996)
## 59822 American Werewolf in London, An (1981)
## 59942 Amityville Horror, The (1979)
## 60027 Birds, The (1963)
## 60159 Blob, The (1958)
## 60256 Carrie (1976)
## 60368 Omen, The (1976)
## 60796 Jaws 2 (1978)
## 60914 Jackie Chan's First Strike (1996)
## 62246 Dragonheart (1996)
## 69394 Broken Arrow (1996)
## 69884 Lord of Illusions (1995)
## 70248 Interview with the Vampire (1994)
## 70526 Tales from the Hood (1995)
## 70548 Village of the Damned (1995)
## 71023 Wolf (1994)
## 72696 Eraser (1996)
## 77095 Alien 3 (1992)
## 77267 Candyman (1992)
## 77641 Volcano (1997)
## 77959 I Know What You Did Last Summer (1997)
## 78298 Executive Decision (1996)
## 82081 Crow: City of Angels, The (1996)
## 82509 Saint, The (1997)
## 83502 Screamers (1995)
## 83732 Happy Gilmore (1996)
## 85865 Arrival, The (1996)
## 85952 Phantom, The (1996)
## 86027 Daylight (1996)
## 86091 Fled (1996)
## 86135 Escape from L.A. (1996)
## 86239 Bulletproof (1996)
## 86284 Halloween: The Curse of Michael Myers (1995)
## 86388 Last Man Standing (1996)
## 86442 Glimmer Man, The (1996)
## 87062 April Fool's Day (1986)
## 87076 Believers, The (1987)
## 87470 Love Jones (1997)
## 87834 Peacemaker, The (1997)
## 88373 Scream 2 (1997)
## 89494 Chain Reaction (1996)
## 91098 Solo (1996)
## 91253 Maximum Risk (1996)
## 91299 Shadow Conspiracy (1997)
## 93033 Quest, The (1996)
## 118 Toy Story (1995)
## 481 GoldenEye (1995)
## 720 Get Shorty (1995)
## 902 Copycat (1995)
## 1111 Twelve Monkeys (1995)
## 1691 Dead Man Walking (1995)
## 2059 Seven (Se7en) (1995)
## 2299 Usual Suspects, The (1995)
## 2946 Mr. Holland's Opus (1995)
## 3461 Muppet Treasure Island (1996)
## 3596 Braveheart (1995)
## 4262 Birdcage, The (1996)
## 4903 Batman Forever (1995)
## 5063 Crimson Tide (1995)
## 5379 Mad Love (1995)
## 5427 Net, The (1995)
## 5905 Dolores Claiborne (1994)
## 6340 I.Q. (1994)
## 6551 Star Wars (1977)
## 7013 Legends of the Fall (1994)
## 7313 Outbreak (1995)
## 7651 Pulp Fiction (1994)
## 8649 Shawshank Redemption, The (1994)
## 8998 While You Were Sleeping (1995)
## 10514 Firm, The (1993)
## 10752 Fugitive, The (1993)
## 11241 Jurassic Park (1993)
## 11724 Remains of the Day, The (1993)
## 12021 Sleepless in Seattle (1993)
## 12257 Blade Runner (1982)
## 12728 True Romance (1993)
## 13348 Terminator 2: Judgment Day (1991)
## 13627 Dances with Wolves (1990)
## 13929 Silence of the Lambs, The (1991)
## 14518 Fargo (1996)
## 15134 Diabolique (1996)
## 16056 Rock, The (1996)
## 16415 Twister (1996)
## 16654 Striptease (1996)
## 16820 Independence Day (ID4) (1996)
## 17267 Frighteners, The (1996)
## 17604 Phenomenon (1996)
## 17985 Godfather, The (1972)
## 20602 Long Kiss Goodnight, The (1996)
## 21132 Willy Wonka and the Chocolate Factory (1971)
## 22535 Top Gun (1986)
## 23951 Empire Strikes Back, The (1980)
## 24656 Raiders of the Lost Ark (1981)
## 26293 Return of the Jedi (1983)
## 26731 GoodFellas (1990)
## 27369 Psycho (1960)
## 27847 Godfather: Part II, The (1974)
## 28044 Full Metal Jacket (1987)
## 29233 Terminator, The (1984)
## 30603 Groundhog Day (1993)
## 30859 Unforgiven (1992)
## 32068 Indiana Jones and the Last Crusade (1989)
## 33155 When Harry Met Sally... (1989)
## 33524 Cape Fear (1991)
## 33786 Mirror Has Two Faces, The (1996)
## 34008 Star Trek: First Contact (1996)
## 34490 101 Dalmatians (1996)
## 34601 Die Hard 2 (1990)
## 34770 Star Trek VI: The Undiscovered Country (1991)
## 34950 Star Trek: The Wrath of Khan (1982)
## 35176 Star Trek III: The Search for Spock (1984)
## 35356 Star Trek IV: The Voyage Home (1986)
## 35667 Young Guns (1988)
## 35775 Under Siege (1992)
## 35938 Jaws (1975)
## 36204 Mars Attacks! (1996)
## 36514 Jerry Maguire (1996)
## 37642 Jungle2Jungle (1997)
## 37846 Devil's Own, The (1997)
## 40505 Hunt for Red October, The (1990)
## 41851 Sabrina (1995)
## 42349 Leaving Las Vegas (1995)
## 42645 Bed of Roses (1996)
## 42745 Up Close and Personal (1996)
## 43006 Time to Kill, A (1996)
## 43220 Emma (1996)
## 43405 Tin Cup (1996)
## 44391 Scream (1996)
## 45134 Absolute Power (1997)
## 45622 Liar Liar (1997)
## 49284 Everyone Says I Love You (1996)
## 49653 Murder at 1600 (1997)
## 49878 Dante's Peak (1997)
## 52861 Client, The (1994)
## 53419 Sudden Death (1995)
## 53767 Bio-Dome (1996)
## 53853 Mary Reilly (1996)
## 54373 Muriel's Wedding (1994)
## 54710 True Lies (1994)
## 54975 Age of Innocence, The (1993)
## 55790 Ghost (1990)
## 55968 Batman (1989)
## 56317 Mission: Impossible (1996)
## 56581 Thinner (1996)
## 56793 Jack (1996)
## 57277 Tales from the Crypt Presents: Bordello of Blood (1996)
## 60028 Birds, The (1963)
## 60462 Star Trek: The Motion Picture (1979)
## 60654 Grease (1978)
## 60797 Jaws 2 (1978)
## 61223 Crossing Guard, The (1995)
## 62043 Courage Under Fire (1996)
## 62247 Dragonheart (1996)
## 62399 James and the Giant Peach (1996)
## 62981 First Wives Club, The (1996)
## 64430 Roman Holiday (1953)
## 68113 Ben-Hur (1959)
## 68982 Anastasia (1997)
## 69395 Broken Arrow (1996)
## 69756 Die Hard: With a Vengeance (1995)
## 69912 Species (1995)
## 70033 Waterworld (1995)
## 70605 Clear and Present Danger (1994)
## 70840 Speed (1994)
## 71294 Cliffhanger (1993)
## 71789 Romeo Is Bleeding (1993)
## 72291 Primal Fear (1996)
## 72468 Fan, The (1996)
## 72697 Eraser (1996)
## 73892 Chamber, The (1996)
## 74242 Sleepers (1996)
## 75119 Grifters, The (1990)
## 76288 Manchurian Candidate, The (1962)
## 76845 Somewhere in Time (1980)
## 77096 Alien 3 (1992)
## 77642 Volcano (1997)
## 77828 Conan the Barbarian (1981)
## 78129 In the Line of Fire (1993)
## 78299 Executive Decision (1996)
## 78878 American President, The (1995)
## 80234 Home for the Holidays (1995)
## 80556 Nine Months (1995)
## 80651 Circle of Friends (1995)
## 80813 Junior (1994)
## 81030 Dave (1993)
## 81553 Pretty Woman (1990)
## 81765 Last Supper, The (1995)
## 81869 Ransom (1996)
## 82510 Saint, The (1997)
## 83360 Father of the Bride Part II (1995)
## 83544 Nick of Time (1995)
## 83880 Boomerang (1992)
## 83985 Congo (1995)
## 84083 Johnny Mnemonic (1995)
## 84220 Something to Talk About (1995)
## 84270 Don Juan DeMarco (1995)
## 84337 Drop Zone (1994)
## 84449 French Kiss (1995)
## 84534 Milk Money (1994)
## 84574 Only You (1994)
## 84859 It Could Happen to You (1994)
## 84924 Speechless (1994)
## 85050 Hard Target (1993)
## 85194 Program, The (1993)
## 85421 One Fine Day (1996)
## 85565 Eddie (1996)
## 86028 Daylight (1996)
## 86092 Fled (1996)
## 86136 Escape from L.A. (1996)
## 86285 Halloween: The Curse of Michael Myers (1995)
## 86443 Glimmer Man, The (1996)
## 86763 To Gillian on Her 37th Birthday (1996)
## 86870 Days of Thunder (1990)
## 87155 My Fellow Americans (1996)
## 87256 Michael (1996)
## 89193 Unforgettable (1996)
## 89495 Chain Reaction (1996)
## 89615 First Kid (1996)
## 89685 Preacher's Wife, The (1996)
## 89851 Murder in the First (1995)
## 91027 Eye for an Eye (1996)
## 91060 Fear (1996)
## 91118 Substitute, The (1996)
## 91254 Maximum Risk (1996)
## 91300 Shadow Conspiracy (1997)
## 91355 Turbulence (1997)
## 91394 Beautician and the Beast, The (1997)
## 91466 Cats Don't Dance (1997)
## 92832 Grumpier Old Men (1995)
## 93006 Homeward Bound II: Lost in San Francisco (1996)
## 93282 Two if by Sea (1996)
## 93314 Forget Paris (1995)
## 93367 Just Cause (1995)
## 93473 Malice (1993)
## 93542 Multiplicity (1996)
## 93795 Associate, The (1996)
## 93926 Pallbearer, The (1996)
## 94033 Evening Star, The (1996)
## 94608 It's My Party (1995)
## 94691 Sliver (1993)
## 95076 Death and the Maiden (1994)
## 95187 Faithful (1996)
## 95315 Some Kind of Wonderful (1987)
## 95920 Last Dance (1996)
## 96696 Jade (1995)
## 96716 Kiss of Death (1995)
## 96751 Virtuosity (1995)
## 97110 Under Siege 2: Dark Territory (1995)
## 97182 Marked for Death (1990)
## 97841 Jack and Sarah (1995)
## 98580 I Like It Like That (1994)
## 98838 Hideaway (1995)
## 2729 Postino, Il (1994)
## 6552 Star Wars (1977)
## 7945 Priest (1994)
## 8170 Three Colors: Red (1994)
## 8244 Three Colors: Blue (1993)
## 8309 Three Colors: White (1994)
## 9749 Four Weddings and a Funeral (1994)
## 11725 Remains of the Day, The (1993)
## 14519 Fargo (1996)
## 15747 Horseman on the Roof, The (Hussard sur le toit, Le) (1995)
## 15875 Cold Comfort Farm (1995)
## 16821 Independence Day (ID4) (1996)
## 18393 Bound (1996)
## 18493 Kansas City (1996)
## 19634 Big Night (1996)
## 21133 Willy Wonka and the Chocolate Factory (1971)
## 23063 Jean de Florette (1986)
## 23126 Manon of the Spring (Manon des sources) (1986)
## 26294 Return of the Jedi (1983)
## 29975 Nikita (La Femme Nikita) (1990)
## 33860 Breaking the Waves (1996)
## 34421 Ridicule (1996)
## 36515 Jerry Maguire (1996)
## 37847 Devil's Own, The (1997)
## 39567 Contact (1997)
## 40812 Full Monty, The (1997)
## 42056 Sense and Sensibility (1995)
## 42350 Leaving Las Vegas (1995)
## 43592 Secrets & Lies (1996)
## 43844 English Patient, The (1996)
## 44392 Scream (1996)
## 44811 Evita (1996)
## 46868 In & Out (1997)
## 47504 Ice Storm, The (1997)
## 47711 Devil's Advocate, The (1997)
## 48309 Titanic (1997)
## 50089 Lost Highway (1997)
## 52275 Deconstructing Harry (1997)
## 54374 Muriel's Wedding (1994)
## 56318 Mission: Impossible (1996)
## 61356 Like Water For Chocolate (Como agua para chocolate) (1992)
## 62756 Trainspotting (1996)
## 68733 Shine (1996)
## 71651 Piano, The (1993)
## 77522 Crucible, The (1996)
## 88969 Farewell My Concubine (1993)
## 89745 Brassed Off (1996)
## 90283 How to Make an American Quilt (1995)
## 91862 I Shot Andy Warhol (1996)
## 91966 Basquiat (1996)
## 92670 Fast, Cheap & Out of Control (1997)
## 95481 Chungking Express (1994)
## 95704 Beautiful Thing (1996)
## 96039 Love! Valour! Compassion! (1997)
## 97489 Total Eclipse (1995)
## 98792 Thieves (Voleurs, Les) (1996)
## 98847 Visitors, The (Visiteurs, Les) (1993)
## 37643 Jungle2Jungle (1997)
## 39568 Contact (1997)
## 41435 Good Will Hunting (1997)
## 43845 English Patient, The (1996)
## 44393 Scream (1996)
## 44812 Evita (1996)
## 45623 Liar Liar (1997)
## 46488 Air Force One (1997)
## 47950 Rainmaker, The (1997)
## 48075 Wings of the Dove, The (1997)
## 48310 Titanic (1997)
## 48608 Apt Pupil (1998)
## 49879 Dante's Peak (1997)
## 50354 G.I. Jane (1997)
## 50736 Conspiracy Theory (1997)
## 51190 Kiss the Girls (1997)
## 51361 Game, The (1997)
## 78703 Seven Years in Tibet (1997)
## 82511 Saint, The (1997)
## 82982 Tomorrow Never Dies (1997)
## 87517 Picture Perfect (1997)
## 87730 Excess Baggage (1997)
## 88317 For Richer or Poorer (1997)
## 2300 Usual Suspects, The (1995)
## 2947 Mr. Holland's Opus (1995)
## 5539 Strange Days (1995)
## 8872 What's Eating Gilbert Grape (1993)
## 13628 Dances with Wolves (1990)
## 13930 Silence of the Lambs, The (1991)
## 15241 Kids in the Hall: Brain Candy (1996)
## 16057 Rock, The (1996)
## 16822 Independence Day (ID4) (1996)
## 20603 Long Kiss Goodnight, The (1996)
## 21745 Monty Python's Life of Brian (1979)
## 23309 Monty Python and the Holy Grail (1974)
## 23952 Empire Strikes Back, The (1980)
## 24305 Princess Bride, The (1987)
## 25249 Aliens (1986)
## 25775 Clockwork Orange, A (1971)
## 25995 Apocalypse Now (1979)
## 26295 Return of the Jedi (1983)
## 27370 Psycho (1960)
## 30284 Shining, The (1980)
## 32069 Indiana Jones and the Last Crusade (1989)
## 36205 Mars Attacks! (1996)
## 38972 My Best Friend's Wedding (1997)
## 40813 Full Monty, The (1997)
## 41220 Starship Troopers (1997)
## 43846 English Patient, The (1996)
## 44394 Scream (1996)
## 45373 Donnie Brasco (1997)
## 45624 Liar Liar (1997)
## 46162 Face/Off (1997)
## 48311 Titanic (1997)
## 48871 In the Name of the Father (1993)
## 53001 One Flew Over the Cuckoo's Nest (1975)
## 56319 Mission: Impossible (1996)
## 62757 Trainspotting (1996)
## 64116 Maltese Falcon, The (1941)
## 69396 Broken Arrow (1996)
## 82512 Saint, The (1997)
## 82840 Amistad (1997)
## 83607 Beautiful Girls (1996)
## 84127 Kids (1995)
## 84450 French Kiss (1995)
## 89342 Craft, The (1996)
## 90606 Dazed and Confused (1993)
## 94391 Reality Bites (1994)
## 95623 Doors, The (1991)
## 39569 Contact (1997)
## 41068 Gattaca (1997)
## 41436 Good Will Hunting (1997)
## 44395 Scream (1996)
## 46489 Air Force One (1997)
## 47712 Devil's Advocate, The (1997)
## 48312 Titanic (1997)
## 49285 Everyone Says I Love You (1996)
## 49654 Murder at 1600 (1997)
## 50355 G.I. Jane (1997)
## 51362 Game, The (1997)
## 51561 U Turn (1997)
## 52630 Fallen (1998)
## 53384 Blues Brothers 2000 (1998)
## 68983 Anastasia (1997)
## 77960 I Know What You Did Last Summer (1997)
## 82513 Saint, The (1997)
## 88007 Washington Square (1997)
## 88259 Bent (1997)
## 91503 Anna Karenina (1997)
## 92747 Fire Down Below (1997)
## 95030 Firestorm (1998)
## 97304 Night Flier (1997)
## 16058 Rock, The (1996)
## 17605 Phenomenon (1996)
## 37644 Jungle2Jungle (1997)
## 37848 Devil's Own, The (1997)
## 39979 George of the Jungle (1997)
## 44396 Scream (1996)
## 45625 Liar Liar (1997)
## 46490 Air Force One (1997)
## 46869 In & Out (1997)
## 47374 Fly Away Home (1996)
## 49482 Mother (1996)
## 49655 Murder at 1600 (1997)
## 50356 G.I. Jane (1997)
## 51798 Mad City (1997)
## 51883 Boogie Nights (1997)
## 52042 Man Who Knew Too Little, The (1997)
## 53342 Assignment, The (1997)
## 56879 Kingpin (1996)
## 72558 Hunchback of Notre Dame, The (1996)
## 72698 Eraser (1996)
## 78477 McHale's Navy (1997)
## 82514 Saint, The (1997)
## 87632 She's So Lovely (1997)
## 88275 Flubber (1997)
## 91395 Beautician and the Beast, The (1997)
## 92748 Fire Down Below (1997)
## 97235 Twisted (1996)
## 119 Toy Story (1995)
## 1112 Twelve Monkeys (1995)
## 2060 Seven (Se7en) (1995)
## 2948 Mr. Holland's Opus (1995)
## 3597 Braveheart (1995)
## 4676 Apollo 13 (1995)
## 5621 To Wong Foo, Thanks for Everything! Julie Newmar (1995)
## 5906 Dolores Claiborne (1994)
## 6101 Ed Wood (1994)
## 6553 Star Wars (1977)
## 7090 Madness of King George, The (1994)
## 7435 Professional, The (1994)
## 7652 Pulp Fiction (1994)
## 8013 Quiz Show (1994)
## 8650 Shawshank Redemption, The (1994)
## 8873 What's Eating Gilbert Grape (1993)
## 8999 While You Were Sleeping (1995)
## 9256 Crow, The (1994)
## 9452 Forrest Gump (1994)
## 9750 Four Weddings and a Funeral (1994)
## 9982 Lion King, The (1994)
## 10179 Mask, The (1994)
## 10515 Firm, The (1993)
## 11242 Jurassic Park (1993)
## 11726 Remains of the Day, The (1993)
## 12483 So I Married an Axe Murderer (1993)
## 12593 Nightmare Before Christmas, The (1993)
## 12729 True Romance (1993)
## 13099 Aladdin (1992)
## 13349 Terminator 2: Judgment Day (1991)
## 13931 Silence of the Lambs, The (1991)
## 14251 Snow White and the Seven Dwarfs (1937)
## 14520 Fargo (1996)
## 15528 Truth About Cats & Dogs, The (1996)
## 16823 Independence Day (ID4) (1996)
## 17157 Cable Guy, The (1996)
## 17606 Phenomenon (1996)
## 18532 Breakfast at Tiffany's (1961)
## 18666 Wizard of Oz, The (1939)
## 19841 Homeward Bound: The Incredible Journey (1993)
## 20069 Sound of Music, The (1965)
## 20495 Lawnmower Man, The (1992)
## 20604 Long Kiss Goodnight, The (1996)
## 21519 Fish Called Wanda, A (1988)
## 23581 Wrong Trousers, The (1993)
## 23953 Empire Strikes Back, The (1980)
## 24657 Raiders of the Lost Ark (1981)
## 25776 Clockwork Orange, A (1971)
## 26296 Return of the Jedi (1983)
## 27371 Psycho (1960)
## 28440 Amadeus (1984)
## 29234 Terminator, The (1984)
## 30285 Shining, The (1980)
## 31080 Back to the Future (1985)
## 32070 Indiana Jones and the Last Crusade (1989)
## 33156 When Harry Met Sally... (1989)
## 33391 Bram Stoker's Dracula (1992)
## 33683 Nightmare on Elm Street, A (1984)
## 34313 Sling Blade (1996)
## 35939 Jaws (1975)
## 36206 Mars Attacks! (1996)
## 36516 Jerry Maguire (1996)
## 36864 Raising Arizona (1987)
## 38723 Lost World: Jurassic Park, The (1997)
## 38973 My Best Friend's Wedding (1997)
## 39570 Contact (1997)
## 40814 Full Monty, The (1997)
## 41069 Gattaca (1997)
## 42057 Sense and Sensibility (1995)
## 42646 Bed of Roses (1996)
## 43221 Emma (1996)
## 44397 Scream (1996)
## 45257 Rosewood (1997)
## 45374 Donnie Brasco (1997)
## 45626 Liar Liar (1997)
## 49023 Schindler's List (1993)
## 51191 Kiss the Girls (1997)
## 51643 Playing God (1997)
## 51717 Bean (1997)
## 53230 Spawn (1997)
## 53500 Powder (1995)
## 53626 Clueless (1995)
## 53801 Black Sheep (1996)
## 54711 True Lies (1994)
## 54889 Addams Family Values (1993)
## 55258 Mrs. Doubtfire (1993)
## 55791 Ghost (1990)
## 56320 Mission: Impossible (1996)
## 56582 Thinner (1996)
## 57054 Nutty Professor, The (1996)
## 57476 Parent Trap, The (1961)
## 57569 Cinderella (1950)
## 57700 Mary Poppins (1964)
## 57860 Alice in Wonderland (1951)
## 57950 William Shakespeare's Romeo and Juliet (1996)
## 58133 E.T. the Extra-Terrestrial (1982)
## 58539 To Kill a Mockingbird (1962)
## 59217 Fantasia (1940)
## 59399 Heathers (1989)
## 60029 Birds, The (1963)
## 60257 Carrie (1976)
## 60655 Grease (1978)
## 62400 James and the Giant Peach (1996)
## 62982 First Wives Club, The (1996)
## 64253 My Fair Lady (1964)
## 64366 Sabrina (1954)
## 64667 Adventures of Robin Hood, The (1938)
## 65003 It's a Wonderful Life (1946)
## 66307 My Left Foot (1989)
## 69397 Broken Arrow (1996)
## 69963 Walk in the Clouds, A (1995)
## 70249 Interview with the Vampire (1994)
## 70752 Wes Craven's New Nightmare (1994)
## 70841 Speed (1994)
## 71564 Kalifornia (1993)
## 71652 Piano, The (1993)
## 72031 Beauty and the Beast (1991)
## 72559 Hunchback of Notre Dame, The (1996)
## 73422 Father of the Bride (1950)
## 73789 Blue Angel, The (Blaue Engel, Der) (1930)
## 74053 Sword in the Stone, The (1963)
## 74243 Sleepers (1996)
## 74501 Crying Game, The (1992)
## 75494 Seventh Seal, The (Sjunde inseglet, Det) (1957)
## 76049 Stand by Me (1986)
## 76622 Fried Green Tomatoes (1991)
## 79300 Little Women (1994)
## 79827 Strictly Ballroom (1992)
## 80752 Immortal Beloved (1994)
## 81250 Philadelphia (1993)
## 81373 Shadowlands (1993)
## 82363 Benny & Joon (1993)
## 83184 Red Corner (1997)
## 83248 Jumanji (1995)
## 83608 Beautiful Girls (1996)
## 84271 Don Juan DeMarco (1995)
## 84451 French Kiss (1995)
## 84575 Only You (1994)
## 84604 Perez Family, The (1995)
## 84695 Tommy Boy (1995)
## 85422 One Fine Day (1996)
## 85695 Mrs. Winterbourne (1996)
## 86624 That Thing You Do! (1996)
## 89055 Raise the Red Lantern (1991)
## 89442 Harriet the Spy (1996)
## 89567 Island of Dr. Moreau, The (1996)
## 90284 How to Make an American Quilt (1995)
## 90495 Before Sunrise (1995)
## 90607 Dazed and Confused (1993)
## 91028 Eye for an Eye (1996)
## 92199 Anaconda (1997)
## 92245 Romy and Michele's High School Reunion (1997)
## 93067 Cool Runnings (1993)
## 93660 She's the One (1996)
## 93881 Mr. Wrong (1996)
## 94818 High School High (1996)
## 95624 Doors, The (1991)
## 95865 My Family (1995)
## 96943 Higher Learning (1995)
## 97689 Selena (1997)
## 120 Toy Story (1995)
## 3598 Braveheart (1995)
## 3865 Taxi Driver (1976)
## 4677 Apollo 13 (1995)
## 5064 Crimson Tide (1995)
## 6554 Star Wars (1977)
## 8014 Quiz Show (1994)
## 8651 Shawshank Redemption, The (1994)
## 9453 Forrest Gump (1994)
## 10753 Fugitive, The (1993)
## 11243 Jurassic Park (1993)
## 11727 Remains of the Day, The (1993)
## 11872 Searching for Bobby Fischer (1993)
## 13100 Aladdin (1992)
## 13350 Terminator 2: Judgment Day (1991)
## 13629 Dances with Wolves (1990)
## 13932 Silence of the Lambs, The (1991)
## 14252 Snow White and the Seven Dwarfs (1937)
## 14521 Fargo (1996)
## 16059 Rock, The (1996)
## 17607 Phenomenon (1996)
## 17986 Godfather, The (1972)
## 18667 Wizard of Oz, The (1939)
## 18895 Gone with the Wind (1939)
## 19071 Citizen Kane (1941)
## 19292 2001: A Space Odyssey (1968)
## 19503 Mr. Smith Goes to Washington (1939)
## 19901 20,000 Leagues Under the Sea (1954)
## 20070 Sound of Music, The (1965)
## 20295 Die Hard (1988)
## 21520 Fish Called Wanda, A (1988)
## 22729 On Golden Pond (1981)
## 22824 Return of the Pink Panther, The (1974)
## 23310 Monty Python and the Holy Grail (1974)
## 24658 Raiders of the Lost Ark (1981)
## 25250 Aliens (1986)
## 25492 Good, The Bad and The Ugly, The (1966)
## 25996 Apocalypse Now (1979)
## 26297 Return of the Jedi (1983)
## 26966 Alien (1979)
## 27602 Blues Brothers, The (1980)
## 28045 Full Metal Jacket (1987)
## 28977 Sting, The (1973)
## 29235 Terminator, The (1984)
## 29522 Dead Poets Society (1989)
## 29763 Graduate, The (1967)
## 30112 Bridge on the River Kwai, The (1957)
## 30604 Groundhog Day (1993)
## 31081 Back to the Future (1985)
## 31371 Patton (1970)
## 32071 Indiana Jones and the Last Crusade (1989)
## 32921 Field of Dreams (1989)
## 34009 Star Trek: First Contact (1996)
## 35940 Jaws (1975)
## 36517 Jerry Maguire (1996)
## 37849 Devil's Own, The (1997)
## 38491 Fifth Element, The (1997)
## 39571 Contact (1997)
## 40129 Event Horizon (1997)
## 40506 Hunt for Red October, The (1990)
## 40815 Full Monty, The (1997)
## 41221 Starship Troopers (1997)
## 41437 Good Will Hunting (1997)
## 45627 Liar Liar (1997)
## 46491 Air Force One (1997)
## 48609 Apt Pupil (1998)
## 48758 As Good As It Gets (1997)
## 49024 Schindler's List (1993)
## 49656 Murder at 1600 (1997)
## 49880 Dante's Peak (1997)
## 50737 Conspiracy Theory (1997)
## 51363 Game, The (1997)
## 53002 One Flew Over the Cuckoo's Nest (1975)
## 54112 Miracle on 34th Street (1994)
## 57412 Old Yeller (1957)
## 57701 Mary Poppins (1964)
## 58134 E.T. the Extra-Terrestrial (1982)
## 59218 Fantasia (1940)
## 59534 Forbidden Planet (1956)
## 59640 Butch Cassidy and the Sundance Kid (1969)
## 60030 Birds, The (1963)
## 61584 Jungle Book, The (1994)
## 63517 North by Northwest (1959)
## 63747 Some Like It Hot (1959)
## 63902 Casablanca (1942)
## 64117 Maltese Falcon, The (1941)
## 64367 Sabrina (1954)
## 64907 Around the World in 80 Days (1956)
## 65004 It's a Wonderful Life (1946)
## 65285 African Queen, The (1951)
## 66426 Magnificent Seven, The (1954)
## 66563 Lawrence of Arabia (1962)
## 66865 Annie Hall (1977)
## 67045 Boot, Das (1981)
## 67547 Great Escape, The (1963)
## 67674 Deer Hunter, The (1978)
## 67843 Cool Hand Luke (1967)
## 68114 Ben-Hur (1959)
## 68260 Gandhi (1982)
## 68433 Killing Fields, The (1984)
## 69229 Miserables, Les (1995)
## 70842 Speed (1994)
## 72032 Beauty and the Beast (1991)
## 72886 American in Paris, An (1951)
## 73619 Giant (1956)
## 73947 Swiss Family Robinson (1960)
## 75258 Once Upon a Time in the West (1969)
## 75371 Quiet Man, The (1952)
## 76758 High Noon (1952)
## 76846 Somewhere in Time (1980)
## 77643 Volcano (1997)
## 78704 Seven Years in Tibet (1997)
## 79301 Little Women (1994)
## 81031 Dave (1993)
## 87835 Peacemaker, The (1997)
## 88079 Life Less Ordinary, A (1997)
## 88276 Flubber (1997)
## 88970 Farewell My Concubine (1993)
## 92596 Gaslight (1944)
## 95427 Old Man and the Sea, The (1958)
## 98698 That Darn Cat! (1965)
## 98750 Foreign Correspondent (1940)
## 98849 Little Princess, The (1939)
## 721 Get Shorty (1995)
## 1113 Twelve Monkeys (1995)
## 2301 Usual Suspects, The (1995)
## 2730 Postino, Il (1994)
## 3312 Antonia's Line (1995)
## 3866 Taxi Driver (1976)
## 4263 Birdcage, The (1996)
## 4484 Brothers McMullen, The (1995)
## 5289 Desperado (1995)
## 5736 Clerks (1994)
## 6102 Ed Wood (1994)
## 7653 Pulp Fiction (1994)
## 9751 Four Weddings and a Funeral (1994)
## 12022 Sleepless in Seattle (1993)
## 12842 Welcome to the Dollhouse (1995)
## 13933 Silence of the Lambs, The (1991)
## 14522 Fargo (1996)
## 15876 Cold Comfort Farm (1995)
## 17268 Frighteners, The (1996)
## 19635 Big Night (1996)
## 20931 Swingers (1996)
## 21521 Fish Called Wanda, A (1988)
## 22016 Reservoir Dogs (1992)
## 23311 Monty Python and the Holy Grail (1974)
## 24306 Princess Bride, The (1987)
## 25034 Brazil (1985)
## 25777 Clockwork Orange, A (1971)
## 26732 GoodFellas (1990)
## 26967 Alien (1979)
## 27215 Army of Darkness (1993)
## 27372 Psycho (1960)
## 27603 Blues Brothers, The (1980)
## 28667 Raging Bull (1980)
## 28978 Sting, The (1973)
## 30286 Shining, The (1980)
## 30468 Evil Dead II (1987)
## 30605 Groundhog Day (1993)
## 30860 Unforgiven (1992)
## 31082 Back to the Future (1985)
## 31644 Young Frankenstein (1974)
## 31851 This Is Spinal Tap (1984)
## 32072 Indiana Jones and the Last Crusade (1989)
## 32372 M*A*S*H (1970)
## 33157 When Harry Met Sally... (1989)
## 33392 Bram Stoker's Dracula (1992)
## 33684 Nightmare on Elm Street, A (1984)
## 34010 Star Trek: First Contact (1996)
## 35357 Star Trek IV: The Voyage Home (1986)
## 35941 Jaws (1975)
## 36207 Mars Attacks! (1996)
## 36865 Raising Arizona (1987)
## 37244 Beavis and Butt-head Do America (1996)
## 40816 Full Monty, The (1997)
## 42058 Sense and Sensibility (1995)
## 43222 Emma (1996)
## 43847 English Patient, The (1996)
## 44398 Scream (1996)
## 45628 Liar Liar (1997)
## 49414 Paradise Lost: The Child Murders at Robin Hood Hills (1996)
## 52276 Deconstructing Harry (1997)
## 53627 Clueless (1995)
## 54375 Muriel's Wedding (1994)
## 54477 Adventures of Priscilla, Queen of the Desert, The (1994)
## 55692 Brady Bunch Movie, The (1995)
## 58952 Duck Soup (1933)
## 59400 Heathers (1989)
## 59823 American Werewolf in London, An (1981)
## 60031 Birds, The (1963)
## 60258 Carrie (1976)
## 60369 Omen, The (1976)
## 60656 Grease (1978)
## 62758 Trainspotting (1996)
## 63218 Philadelphia Story, The (1940)
## 65713 Bonnie and Clyde (1967)
## 66866 Annie Hall (1977)
## 67220 Local Hero (1983)
## 67286 Manhattan (1979)
## 67980 Great Dictator, The (1940)
## 68028 Big Sleep, The (1946)
## 70167 Heavenly Creatures (1994)
## 70250 Interview with the Vampire (1994)
## 72887 American in Paris, An (1951)
## 72971 Rear Window (1954)
## 73261 All About Eve (1950)
## 74867 Howling, The (1981)
## 75228 Paris Is Burning (1990)
## 75876 Chinatown (1974)
## 76050 Stand by Me (1986)
## 76227 M (1931)
## 76493 Arsenic and Old Lace (1944)
## 77216 Bride of Frankenstein (1935)
## 77268 Candyman (1992)
## 77464 Nosferatu (Nosferatu, eine Symphonie des Grauens) (1922)
## 77523 Crucible, The (1996)
## 78050 Rocket Man (1997)
## 79413 Barcelona (1994)
## 79828 Strictly Ballroom (1992)
## 80499 Mallrats (1995)
## 81870 Ransom (1996)
## 82209 Ruling Class, The (1972)
## 82239 Real Genius (1985)
## 83609 Beautiful Girls (1996)
## 84190 Prophecy, The (1995)
## 84646 Swimming with Sharks (1995)
## 84779 Bullets Over Broadway (1994)
## 85363 Celluloid Closet, The (1995)
## 86545 Freeway (1996)
## 87026 Night on Earth (1991)
## 87518 Picture Perfect (1997)
## 91900 Stealing Beauty (1996)
## 94244 Amateur (1994)
## 94264 Living in Oblivion (1995)
## 94392 Reality Bites (1994)
## 95008 Trust (1990)
## 95264 Up in Smoke (1978)
## 97050 Angus (1995)
## 97611 Life with Mikey (1993)
## 98200 Infinity (1996)
## 98858 Nina Takes a Lover (1994)
## 98864 Bhaji on the Beach (1993)
## 121 Toy Story (1995)
## 1114 Twelve Monkeys (1995)
## 2949 Mr. Holland's Opus (1995)
## 6555 Star Wars (1977)
## 14523 Fargo (1996)
## 15197 Moll Flanders (1996)
## 15529 Truth About Cats & Dogs, The (1996)
## 16060 Rock, The (1996)
## 16416 Twister (1996)
## 17608 Phenomenon (1996)
## 21134 Willy Wonka and the Chocolate Factory (1971)
## 26298 Return of the Jedi (1983)
## 36518 Jerry Maguire (1996)
## 37245 Beavis and Butt-head Do America (1996)
## 37850 Devil's Own, The (1997)
## 39192 Men in Black (1997)
## 39572 Contact (1997)
## 41635 Heat (1995)
## 42697 Once Upon a Time... When We Were Colored (1995)
## 43007 Time to Kill, A (1996)
## 43406 Tin Cup (1996)
## 44399 Scream (1996)
## 45375 Donnie Brasco (1997)
## 45629 Liar Liar (1997)
## 46163 Face/Off (1997)
## 46492 Air Force One (1997)
## 49881 Dante's Peak (1997)
## 50530 Cop Land (1997)
## 50738 Conspiracy Theory (1997)
## 56794 Jack (1996)
## 56880 Kingpin (1996)
## 62044 Courage Under Fire (1996)
## 62248 Dragonheart (1996)
## 63123 Matilda (1996)
## 72292 Primal Fear (1996)
## 74244 Sleepers (1996)
## 77524 Crucible, The (1996)
## 78543 Leave It to Beaver (1997)
## 81871 Ransom (1996)
## 82515 Saint, The (1997)
## 83361 Father of the Bride Part II (1995)
## 85423 One Fine Day (1996)
## 89686 Preacher's Wife, The (1996)
## 91061 Fear (1996)
## 92370 Con Air (1997)
## 96548 Family Thing, A (1996)
## 1692 Dead Man Walking (1995)
## 2731 Postino, Il (1994)
## 4264 Birdcage, The (1996)
## 14524 Fargo (1996)
## 17402 Lone Star (1996)
## 36519 Jerry Maguire (1996)
## 37851 Devil's Own, The (1997)
## 41438 Good Will Hunting (1997)
## 42059 Sense and Sensibility (1995)
## 42351 Leaving Las Vegas (1995)
## 43223 Emma (1996)
## 43593 Secrets & Lies (1996)
## 43848 English Patient, The (1996)
## 44813 Evita (1996)
## 48313 Titanic (1997)
## 49286 Everyone Says I Love You (1996)
## 49483 Mother (1996)
## 50219 Crash (1996)
## 66125 People vs. Larry Flynt, The (1996)
## 77525 Crucible, The (1996)
## 87594 Career Girls (1997)
## 89119 White Squall (1996)
## 482 GoldenEye (1995)
## 605 Four Rooms (1995)
## 903 Copycat (1995)
## 1115 Twelve Monkeys (1995)
## 2302 Usual Suspects, The (1995)
## 3216 From Dusk Till Dawn (1996)
## 3599 Braveheart (1995)
## 4047 Rumble in the Bronx (1995)
## 4678 Apollo 13 (1995)
## 4904 Batman Forever (1995)
## 5065 Crimson Tide (1995)
## 5290 Desperado (1995)
## 6103 Ed Wood (1994)
## 6556 Star Wars (1977)
## 7186 Natural Born Killers (1994)
## 7314 Outbreak (1995)
## 7436 Professional, The (1994)
## 7654 Pulp Fiction (1994)
## 8386 Stargate (1994)
## 8652 Shawshank Redemption, The (1994)
## 8874 What's Eating Gilbert Grape (1993)
## 9149 Ace Ventura: Pet Detective (1994)
## 9257 Crow, The (1994)
## 9454 Forrest Gump (1994)
## 10516 Firm, The (1993)
## 11009 Hot Shots! Part Deux (1993)
## 11090 Hudsucker Proxy, The (1994)
## 11244 Jurassic Park (1993)
## 12023 Sleepless in Seattle (1993)
## 12258 Blade Runner (1982)
## 12730 True Romance (1993)
## 12950 Home Alone (1990)
## 13934 Silence of the Lambs, The (1991)
## 14525 Fargo (1996)
## 15242 Kids in the Hall: Brain Candy (1996)
## 15770 Wallace & Gromit: The Best of Aardman Animation (1996)
## 16824 Independence Day (ID4) (1996)
## 17403 Lone Star (1996)
## 17987 Godfather, The (1972)
## 18307 Supercop (1992)
## 19293 2001: A Space Odyssey (1968)
## 19902 20,000 Leagues Under the Sea (1954)
## 20071 Sound of Music, The (1965)
## 20296 Die Hard (1988)
## 20496 Lawnmower Man, The (1992)
## 20605 Long Kiss Goodnight, The (1996)
## 21522 Fish Called Wanda, A (1988)
## 21900 Dirty Dancing (1987)
## 22017 Reservoir Dogs (1992)
## 22154 Platoon (1986)
## 22263 Weekend at Bernie's (1989)
## 22330 Basic Instinct (1992)
## 22536 Top Gun (1986)
## 22931 Abyss, The (1989)
## 23312 Monty Python and the Holy Grail (1974)
## 23582 Wrong Trousers, The (1993)
## 23954 Empire Strikes Back, The (1980)
## 24659 Raiders of the Lost Ark (1981)
## 25035 Brazil (1985)
## 25251 Aliens (1986)
## 25493 Good, The Bad and The Ugly, The (1966)
## 25778 Clockwork Orange, A (1971)
## 25997 Apocalypse Now (1979)
## 26299 Return of the Jedi (1983)
## 26733 GoodFellas (1990)
## 26968 Alien (1979)
## 27604 Blues Brothers, The (1980)
## 27848 Godfather: Part II, The (1974)
## 28046 Full Metal Jacket (1987)
## 28191 Grand Day Out, A (1992)
## 29236 Terminator, The (1984)
## 29976 Nikita (La Femme Nikita) (1990)
## 30606 Groundhog Day (1993)
## 30861 Unforgiven (1992)
## 31083 Back to the Future (1985)
## 31487 Akira (1988)
## 31852 This Is Spinal Tap (1984)
## 32073 Indiana Jones and the Last Crusade (1989)
## 32774 Pink Floyd - The Wall (1982)
## 33158 When Harry Met Sally... (1989)
## 33393 Bram Stoker's Dracula (1992)
## 33525 Cape Fear (1991)
## 34011 Star Trek: First Contact (1996)
## 34602 Die Hard 2 (1990)
## 34771 Star Trek VI: The Undiscovered Country (1991)
## 34951 Star Trek: The Wrath of Khan (1982)
## 35177 Star Trek III: The Search for Spock (1984)
## 35358 Star Trek IV: The Voyage Home (1986)
## 35536 Batman Returns (1992)
## 35776 Under Siege (1992)
## 36208 Mars Attacks! (1996)
## 36866 Raising Arizona (1987)
## 37083 Sneakers (1992)
## 37246 Beavis and Butt-head Do America (1996)
## 38492 Fifth Element, The (1997)
## 40507 Hunt for Red October, The (1990)
## 41636 Heat (1995)
## 45376 Donnie Brasco (1997)
## 45630 Liar Liar (1997)
## 50090 Lost Highway (1997)
## 53463 Ace Ventura: When Nature Calls (1995)
## 53628 Clueless (1995)
## 54262 Star Trek: Generations (1994)
## 54607 Naked Gun 33 1/3: The Final Insult (1994)
## 54712 True Lies (1994)
## 54890 Addams Family Values (1993)
## 55099 Last Action Hero (1993)
## 55259 Mrs. Doubtfire (1993)
## 55969 Batman (1989)
## 56321 Mission: Impossible (1996)
## 56687 Close Shave, A (1995)
## 56881 Kingpin (1996)
## 57055 Nutty Professor, The (1996)
## 58135 E.T. the Extra-Terrestrial (1982)
## 59058 Highlander (1986)
## 59401 Heathers (1989)
## 60463 Star Trek: The Motion Picture (1979)
## 60569 Star Trek V: The Final Frontier (1989)
## 60915 Jackie Chan's First Strike (1996)
## 61545 Vanya on 42nd Street (1994)
## 61905 Tombstone (1993)
## 62541 Dr. Strangelove or: How I Learned to Stop Worrying and Love the Bomb (1963)
## 62759 Trainspotting (1996)
## 63335 Vertigo (1958)
## 63518 North by Northwest (1959)
## 63903 Casablanca (1942)
## 64118 Maltese Falcon, The (1941)
## 65286 African Queen, The (1951)
## 67046 Boot, Das (1981)
## 67382 Miller's Crossing (1990)
## 69318 Vampire in Brooklyn (1995)
## 69398 Broken Arrow (1996)
## 69757 Die Hard: With a Vengeance (1995)
## 69913 Species (1995)
## 70034 Waterworld (1995)
## 70251 Interview with the Vampire (1994)
## 70606 Clear and Present Danger (1994)
## 70843 Speed (1994)
## 71241 City Slickers II: The Legend of Curly's Gold (1994)
## 71295 Cliffhanger (1993)
## 71425 Demolition Man (1993)
## 71502 Fatal Instinct (1993)
## 72699 Eraser (1996)
## 73620 Giant (1956)
## 73948 Swiss Family Robinson (1960)
## 75120 Grifters, The (1990)
## 75308 Ran (1985)
## 75877 Chinatown (1974)
## 76051 Stand by Me (1986)
## 77097 Alien 3 (1992)
## 77829 Conan the Barbarian (1981)
## 78130 In the Line of Fire (1993)
## 78300 Executive Decision (1996)
## 79013 Casino (1995)
## 79929 Better Off Dead... (1985)
## 80152 To Die For (1995)
## 80421 First Knight (1995)
## 80753 Immortal Beloved (1994)
## 81032 Dave (1993)
## 81554 Pretty Woman (1990)
## 81872 Ransom (1996)
## 84084 Johnny Mnemonic (1995)
## 84191 Prophecy, The (1995)
## 84379 Dumb & Dumber (1994)
## 84647 Swimming with Sharks (1995)
## 85268 Shadow, The (1994)
## 85808 Great White Hype, The (1996)
## 85953 Phantom, The (1996)
## 86389 Last Man Standing (1996)
## 89246 Down Periscope (1996)
## 90027 Killing Zoe (1994)
## 90069 Renaissance Man (1994)
## 90608 Dazed and Confused (1993)
## 91224 Mother Night (1996)
## 92833 Grumpier Old Men (1995)
## 93068 Cool Runnings (1993)
## 94325 Shallow Grave (1994)
## 94692 Sliver (1993)
## 95104 Tank Girl (1995)
## 95850 Blue Chips (1994)
## 96378 In the Army Now (1994)
## 97267 Ghost in the Shell (Kokaku kidotai) (1995)
## 98140 Kazaam (1996)
## 98400 M. Butterfly (1993)
## 98839 Hideaway (1995)
## 122 Toy Story (1995)
## 483 GoldenEye (1995)
## 606 Four Rooms (1995)
## 722 Get Shorty (1995)
## 1116 Twelve Monkeys (1995)
## 1926 Richard III (1995)
## 2061 Seven (Se7en) (1995)
## 2303 Usual Suspects, The (1995)
## 2552 Mighty Aphrodite (1995)
## 3165 French Twist (Gazon maudit) (1995)
## 3217 From Dusk Till Dawn (1996)
## 3462 Muppet Treasure Island (1996)
## 4048 Rumble in the Bronx (1995)
## 4265 Birdcage, The (1996)
## 4555 Bad Boys (1995)
## 4905 Batman Forever (1995)
## 5066 Crimson Tide (1995)
## 5291 Desperado (1995)
## 5392 Nadja (1994)
## 5428 Net, The (1995)
## 5540 Strange Days (1995)
## 5622 To Wong Foo, Thanks for Everything! Julie Newmar (1995)
## 5737 Clerks (1994)
## 6104 Ed Wood (1994)
## 6557 Star Wars (1977)
## 7014 Legends of the Fall (1994)
## 7091 Madness of King George, The (1994)
## 7187 Natural Born Killers (1994)
## 7437 Professional, The (1994)
## 7655 Pulp Fiction (1994)
## 8171 Three Colors: Red (1994)
## 8245 Three Colors: Blue (1993)
## 8310 Three Colors: White (1994)
## 8387 Stargate (1994)
## 8500 Santa Clause, The (1994)
## 9150 Ace Ventura: Pet Detective (1994)
## 9258 Crow, The (1994)
## 9752 Four Weddings and a Funeral (1994)
## 9983 Lion King, The (1994)
## 10180 Mask, The (1994)
## 10309 Maverick (1994)
## 10517 Firm, The (1993)
## 10754 Fugitive, The (1993)
## 11010 Hot Shots! Part Deux (1993)
## 11245 Jurassic Park (1993)
## 11474 Much Ado About Nothing (1993)
## 12024 Sleepless in Seattle (1993)
## 12259 Blade Runner (1982)
## 12594 Nightmare Before Christmas, The (1993)
## 12731 True Romance (1993)
## 12951 Home Alone (1990)
## 13101 Aladdin (1992)
## 13351 Terminator 2: Judgment Day (1991)
## 13630 Dances with Wolves (1990)
## 13935 Silence of the Lambs, The (1991)
## 14253 Snow White and the Seven Dwarfs (1937)
## 14526 Fargo (1996)
## 14909 Heavy Metal (1981)
## 15058 Sgt. Bilko (1996)
## 15243 Kids in the Hall: Brain Candy (1996)
## 15771 Wallace & Gromit: The Best of Aardman Animation (1996)
## 15877 Cold Comfort Farm (1995)
## 16061 Rock, The (1996)
## 16655 Striptease (1996)
## 16825 Independence Day (ID4) (1996)
## 17158 Cable Guy, The (1996)
## 17269 Frighteners, The (1996)
## 17404 Lone Star (1996)
## 17988 Godfather, The (1972)
## 18308 Supercop (1992)
## 18394 Bound (1996)
## 19072 Citizen Kane (1941)
## 19294 2001: A Space Odyssey (1968)
## 19784 Love Bug, The (1969)
## 19903 20,000 Leagues Under the Sea (1954)
## 20072 Sound of Music, The (1965)
## 20297 Die Hard (1988)
## 20497 Lawnmower Man, The (1992)
## 20606 Long Kiss Goodnight, The (1996)
## 21135 Willy Wonka and the Chocolate Factory (1971)
## 21523 Fish Called Wanda, A (1988)
## 21746 Monty Python's Life of Brian (1979)
## 22018 Reservoir Dogs (1992)
## 22264 Weekend at Bernie's (1989)
## 22331 Basic Instinct (1992)
## 22537 Top Gun (1986)
## 22825 Return of the Pink Panther, The (1974)
## 22932 Abyss, The (1989)
## 23313 Monty Python and the Holy Grail (1974)
## 23583 Wrong Trousers, The (1993)
## 23955 Empire Strikes Back, The (1980)
## 24307 Princess Bride, The (1987)
## 24660 Raiders of the Lost Ark (1981)
## 25252 Aliens (1986)
## 25629 12 Angry Men (1957)
## 25779 Clockwork Orange, A (1971)
## 25998 Apocalypse Now (1979)
## 26300 Return of the Jedi (1983)
## 26734 GoodFellas (1990)
## 26969 Alien (1979)
## 27216 Army of Darkness (1993)
## 27373 Psycho (1960)
## 27605 Blues Brothers, The (1980)
## 28047 Full Metal Jacket (1987)
## 28192 Grand Day Out, A (1992)
## 28441 Amadeus (1984)
## 28979 Sting, The (1973)
## 29237 Terminator, The (1984)
## 29977 Nikita (La Femme Nikita) (1990)
## 30287 Shining, The (1980)
## 30469 Evil Dead II (1987)
## 30862 Unforgiven (1992)
## 31084 Back to the Future (1985)
## 31372 Patton (1970)
## 31488 Akira (1988)
## 31645 Young Frankenstein (1974)
## 31853 This Is Spinal Tap (1984)
## 32074 Indiana Jones and the Last Crusade (1989)
## 32373 M*A*S*H (1970)
## 33394 Bram Stoker's Dracula (1992)
## 33526 Cape Fear (1991)
## 33685 Nightmare on Elm Street, A (1984)
## 34012 Star Trek: First Contact (1996)
## 34314 Sling Blade (1996)
## 34603 Die Hard 2 (1990)
## 34772 Star Trek VI: The Undiscovered Country (1991)
## 34952 Star Trek: The Wrath of Khan (1982)
## 35178 Star Trek III: The Search for Spock (1984)
## 35359 Star Trek IV: The Voyage Home (1986)
## 35537 Batman Returns (1992)
## 35668 Young Guns (1988)
## 35777 Under Siege (1992)
## 35942 Jaws (1975)
## 36209 Mars Attacks! (1996)
## 36867 Raising Arizona (1987)
## 37084 Sneakers (1992)
## 37247 Beavis and Butt-head Do America (1996)
## 37398 Last of the Mohicans, The (1992)
## 37748 Smilla's Sense of Snow (1997)
## 38059 Chasing Amy (1997)
## 38187 Grosse Pointe Blank (1997)
## 38347 Austin Powers: International Man of Mystery (1997)
## 38493 Fifth Element, The (1997)
## 38724 Lost World: Jurassic Park, The (1997)
## 39193 Men in Black (1997)
## 39573 Contact (1997)
## 39980 George of the Jungle (1997)
## 40130 Event Horizon (1997)
## 40369 Mimic (1997)
## 40508 Hunt for Red October, The (1990)
## 40714 unknown
## 40817 Full Monty, The (1997)
## 41637 Heat (1995)
## 43407 Tin Cup (1996)
## 43849 English Patient, The (1996)
## 44400 Scream (1996)
## 45040 Fierce Creatures (1997)
## 45631 Liar Liar (1997)
## 46164 Face/Off (1997)
## 47116 L.A. Confidential (1997)
## 50091 Lost Highway (1997)
## 50220 Crash (1996)
## 50739 Conspiracy Theory (1997)
## 51364 Game, The (1997)
## 53003 One Flew Over the Cuckoo's Nest (1975)
## 53231 Spawn (1997)
## 53420 Sudden Death (1995)
## 53464 Ace Ventura: When Nature Calls (1995)
## 53802 Black Sheep (1996)
## 53854 Mary Reilly (1996)
## 54021 Mighty Morphin Power Rangers: The Movie (1995)
## 54201 Tales From the Crypt Presents: Demon Knight (1995)
## 54263 Star Trek: Generations (1994)
## 54376 Muriel's Wedding (1994)
## 54478 Adventures of Priscilla, Queen of the Desert, The (1994)
## 54608 Naked Gun 33 1/3: The Final Insult (1994)
## 54713 True Lies (1994)
## 54891 Addams Family Values (1993)
## 55026 Beverly Hills Cop III (1994)
## 55100 Last Action Hero (1993)
## 55426 Robin Hood: Men in Tights (1993)
## 55529 Striking Distance (1993)
## 55581 Three Musketeers, The (1993)
## 55792 Ghost (1990)
## 55970 Batman (1989)
## 56144 Pinocchio (1940)
## 56322 Mission: Impossible (1996)
## 56631 Spy Hard (1996)
## 56688 Close Shave, A (1995)
## 57951 William Shakespeare's Romeo and Juliet (1996)
## 58136 E.T. the Extra-Terrestrial (1982)
## 58395 Bob Roberts (1992)
## 59219 Fantasia (1940)
## 59402 Heathers (1989)
## 59641 Butch Cassidy and the Sundance Kid (1969)
## 59824 American Werewolf in London, An (1981)
## 60464 Star Trek: The Motion Picture (1979)
## 60570 Star Trek V: The Final Frontier (1989)
## 60798 Jaws 2 (1978)
## 60854 Jaws 3-D (1983)
## 60916 Jackie Chan's First Strike (1996)
## 61042 Beverly Hills Ninja (1997)
## 61664 Red Rock West (1992)
## 61906 Tombstone (1993)
## 62249 Dragonheart (1996)
## 62542 Dr. Strangelove or: How I Learned to Stop Worrying and Love the Bomb (1963)
## 62760 Trainspotting (1996)
## 63124 Matilda (1996)
## 63336 Vertigo (1958)
## 63519 North by Northwest (1959)
## 63904 Casablanca (1942)
## 64119 Maltese Falcon, The (1941)
## 65892 Rebel Without a Cause (1955)
## 68029 Big Sleep, The (1946)
## 68261 Gandhi (1982)
## 69092 Money Train (1995)
## 69135 Mortal Kombat (1995)
## 69262 Things to Do in Denver when You're Dead (1995)
## 69399 Broken Arrow (1996)
## 69758 Die Hard: With a Vengeance (1995)
## 69914 Species (1995)
## 70035 Waterworld (1995)
## 70168 Heavenly Creatures (1994)
## 70252 Interview with the Vampire (1994)
## 70390 Mary Shelley's Frankenstein (1994)
## 70449 Quick and the Dead, The (1995)
## 70607 Clear and Present Danger (1994)
## 70844 Speed (1994)
## 71024 Wolf (1994)
## 71218 Boxing Helena (1993)
## 71296 Cliffhanger (1993)
## 71426 Demolition Man (1993)
## 71503 Fatal Instinct (1993)
## 71532 Englishman Who Went Up a Hill, But Came Down a Mountain, The (1995)
## 71653 Piano, The (1993)
## 71790 Romeo Is Bleeding (1993)
## 72033 Beauty and the Beast (1991)
## 72700 Eraser (1996)
## 73949 Swiss Family Robinson (1960)
## 74137 Robin Hood: Prince of Thieves (1991)
## 74450 Great Race, The (1965)
## 74789 Escape from New York (1981)
## 75744 Rosencrantz and Guildenstern Are Dead (1990)
## 75878 Chinatown (1974)
## 76052 Stand by Me (1986)
## 76409 Pump Up the Volume (1990)
## 77098 Alien 3 (1992)
## 77269 Candyman (1992)
## 77830 Conan the Barbarian (1981)
## 78131 In the Line of Fire (1993)
## 79302 Little Women (1994)
## 79930 Better Off Dead... (1985)
## 80059 Othello (1995)
## 80153 To Die For (1995)
## 80302 Juror, The (1996)
## 80362 In the Bleak Midwinter (1995)
## 80378 Canadian Bacon (1994)
## 80500 Mallrats (1995)
## 80754 Immortal Beloved (1994)
## 80814 Junior (1994)
## 80870 Nell (1994)
## 81033 Dave (1993)
## 81251 Philadelphia (1993)
## 81496 Threesome (1994)
## 82082 Crow: City of Angels, The (1996)
## 82240 Real Genius (1985)
## 82364 Benny & Joon (1993)
## 83545 Nick of Time (1995)
## 83610 Beautiful Girls (1996)
## 83881 Boomerang (1992)
## 83937 Casper (1995)
## 84380 Dumb & Dumber (1994)
## 84452 French Kiss (1995)
## 84696 Tommy Boy (1995)
## 85008 In the Mouth of Madness (1995)
## 85051 Hard Target (1993)
## 85269 Shadow, The (1994)
## 85743 Mulholland Falls (1996)
## 85809 Great White Hype, The (1996)
## 85866 Arrival, The (1996)
## 85954 Phantom, The (1996)
## 86137 Escape from L.A. (1996)
## 86390 Last Man Standing (1996)
## 87077 Believers, The (1987)
## 89247 Down Periscope (1996)
## 89343 Craft, The (1996)
## 89496 Chain Reaction (1996)
## 89901 Airheads (1994)
## 89934 With Honors (1994)
## 90155 Fox and the Hound, The (1981)
## 90285 How to Make an American Quilt (1995)
## 90496 Before Sunrise (1995)
## 91163 Heaven's Prisoners (1996)
## 91242 Dangerous Ground (1997)
## 91692 Cabin Boy (1994)
## 91746 Pest, The (1997)
## 92371 Con Air (1997)
## 93069 Cool Runnings (1993)
## 93149 Grease 2 (1982)
## 93315 Forget Paris (1995)
## 93474 Malice (1993)
## 93882 Mr. Wrong (1996)
## 93965 Don't Be a Menace to South Central While Drinking Your Juice in the Hood (1996)
## 94128 Koyaanisqatsi (1983)
## 94326 Shallow Grave (1994)
## 94393 Reality Bites (1994)
## 94509 Joe's Apartment (1996)
## 94693 Sliver (1993)
## 94728 Pete's Dragon (1977)
## 94819 High School High (1996)
## 94871 Flirting With Disaster (1996)
## 95105 Tank Girl (1995)
## 95265 Up in Smoke (1978)
## 96000 Relic, The (1997)
## 96287 Major Payne (1994)
## 96415 Young Guns II (1990)
## 96717 Kiss of Death (1995)
## 97012 Judgment Night (1993)
## 97111 Under Siege 2: Dark Territory (1995)
## 97183 Marked for Death (1990)
## 97399 For Love or Money (1993)
## 97631 Color of Night (1994)
## 97953 Getaway, The (1994)
## 98025 Surviving the Game (1994)
## 98514 Street Fighter (1994)
## 98872 Raw Deal (1948)
## 98873 Nightwatch (1997)
## 607 Four Rooms (1995)
## 904 Copycat (1995)
## 1117 Twelve Monkeys (1995)
## 1446 Babe (1995)
## 1693 Dead Man Walking (1995)
## 2062 Seven (Se7en) (1995)
## 2553 Mighty Aphrodite (1995)
## 2950 Mr. Holland's Opus (1995)
## 3218 From Dusk Till Dawn (1996)
## 3600 Braveheart (1995)
## 3867 Taxi Driver (1976)
## 5738 Clerks (1994)
## 5907 Dolores Claiborne (1994)
## 6105 Ed Wood (1994)
## 6236 Hoop Dreams (1994)
## 6558 Star Wars (1977)
## 7015 Legends of the Fall (1994)
## 7092 Madness of King George, The (1994)
## 7188 Natural Born Killers (1994)
## 7438 Professional, The (1994)
## 7656 Pulp Fiction (1994)
## 8015 Quiz Show (1994)
## 8172 Three Colors: Red (1994)
## 8501 Santa Clause, The (1994)
## 8653 Shawshank Redemption, The (1994)
## 8875 What's Eating Gilbert Grape (1993)
## 9000 While You Were Sleeping (1995)
## 9259 Crow, The (1994)
## 9455 Forrest Gump (1994)
## 9753 Four Weddings and a Funeral (1994)
## 10181 Mask, The (1994)
## 10432 Carlito's Way (1993)
## 10518 Firm, The (1993)
## 11091 Hudsucker Proxy, The (1994)
## 11246 Jurassic Park (1993)
## 12025 Sleepless in Seattle (1993)
## 12260 Blade Runner (1982)
## 12843 Welcome to the Dollhouse (1995)
## 13352 Terminator 2: Judgment Day (1991)
## 13936 Silence of the Lambs, The (1991)
## 14527 Fargo (1996)
## 15135 Diabolique (1996)
## 15244 Kids in the Hall: Brain Candy (1996)
## 15530 Truth About Cats & Dogs, The (1996)
## 16656 Striptease (1996)
## 16826 Independence Day (ID4) (1996)
## 17159 Cable Guy, The (1996)
## 17405 Lone Star (1996)
## 17989 Godfather, The (1972)
## 18533 Breakfast at Tiffany's (1961)
## 18668 Wizard of Oz, The (1939)
## 18896 Gone with the Wind (1939)
## 19073 Citizen Kane (1941)
## 19295 2001: A Space Odyssey (1968)
## 19504 Mr. Smith Goes to Washington (1939)
## 19636 Big Night (1996)
## 19785 Love Bug, The (1969)
## 19970 Bedknobs and Broomsticks (1971)
## 20073 Sound of Music, The (1965)
## 20774 Ghost and the Darkness, The (1996)
## 21136 Willy Wonka and the Chocolate Factory (1971)
## 21394 Sleeper (1973)
## 21524 Fish Called Wanda, A (1988)
## 21747 Monty Python's Life of Brian (1979)
## 22019 Reservoir Dogs (1992)
## 22155 Platoon (1986)
## 22433 Glengarry Glen Ross (1992)
## 22538 Top Gun (1986)
## 22730 On Golden Pond (1981)
## 22826 Return of the Pink Panther, The (1974)
## 23187 Private Benjamin (1980)
## 23314 Monty Python and the Holy Grail (1974)
## 23701 Cinema Paradiso (1988)
## 23810 Delicatessen (1991)
## 23956 Empire Strikes Back, The (1980)
## 24308 Princess Bride, The (1987)
## 24661 Raiders of the Lost Ark (1981)
## 25036 Brazil (1985)
## 25253 Aliens (1986)
## 25494 Good, The Bad and The Ugly, The (1966)
## 25780 Clockwork Orange, A (1971)
## 25999 Apocalypse Now (1979)
## 26301 Return of the Jedi (1983)
## 26735 GoodFellas (1990)
## 26970 Alien (1979)
## 27374 Psycho (1960)
## 27606 Blues Brothers, The (1980)
## 27849 Godfather: Part II, The (1974)
## 28048 Full Metal Jacket (1987)
## 28442 Amadeus (1984)
## 28668 Raging Bull (1980)
## 28980 Sting, The (1973)
## 29238 Terminator, The (1984)
## 29523 Dead Poets Society (1989)
## 29764 Graduate, The (1967)
## 29978 Nikita (La Femme Nikita) (1990)
## 30288 Shining, The (1980)
## 30607 Groundhog Day (1993)
## 31085 Back to the Future (1985)
## 31373 Patton (1970)
## 31646 Young Frankenstein (1974)
## 31854 This Is Spinal Tap (1984)
## 32075 Indiana Jones and the Last Crusade (1989)
## 32374 M*A*S*H (1970)
## 32551 Unbearable Lightness of Being, The (1988)
## 32649 Room with a View, A (1986)
## 32775 Pink Floyd - The Wall (1982)
## 33159 When Harry Met Sally... (1989)
## 33395 Bram Stoker's Dracula (1992)
## 33527 Cape Fear (1991)
## 35538 Batman Returns (1992)
## 35669 Young Guns (1988)
## 35943 Jaws (1975)
## 36210 Mars Attacks! (1996)
## 36520 Jerry Maguire (1996)
## 36868 Raising Arizona (1987)
## 37085 Sneakers (1992)
## 37399 Last of the Mohicans, The (1992)
## 38060 Chasing Amy (1997)
## 38725 Lost World: Jurassic Park, The (1997)
## 38880 Batman & Robin (1997)
## 38974 My Best Friend's Wedding (1997)
## 41439 Good Will Hunting (1997)
## 41852 Sabrina (1995)
## 42352 Leaving Las Vegas (1995)
## 42844 River Wild, The (1994)
## 43594 Secrets & Lies (1996)
## 45377 Donnie Brasco (1997)
## 47117 L.A. Confidential (1997)
## 48610 Apt Pupil (1998)
## 48759 As Good As It Gets (1997)
## 49025 Schindler's List (1993)
## 51884 Boogie Nights (1997)
## 52359 Jackie Brown (1997)
## 53004 One Flew Over the Cuckoo's Nest (1975)
## 53501 Powder (1995)
## 53629 Clueless (1995)
## 53898 Bridges of Madison County, The (1995)
## 54113 Miracle on 34th Street (1994)
## 54976 Age of Innocence, The (1993)
## 55260 Mrs. Doubtfire (1993)
## 55487 Serial Mom (1994)
## 55693 Brady Bunch Movie, The (1995)
## 55793 Ghost (1990)
## 55971 Batman (1989)
## 56323 Mission: Impossible (1996)
## 56882 Kingpin (1996)
## 57056 Nutty Professor, The (1996)
## 57192 Very Brady Sequel, A (1996)
## 57327 My Favorite Year (1982)
## 57477 Parent Trap, The (1961)
## 58137 E.T. the Extra-Terrestrial (1982)
## 58396 Bob Roberts (1992)
## 58540 To Kill a Mockingbird (1962)
## 58738 Harold and Maude (1971)
## 59220 Fantasia (1940)
## 59403 Heathers (1989)
## 59642 Butch Cassidy and the Sundance Kid (1969)
## 59825 American Werewolf in London, An (1981)
## 59943 Amityville Horror, The (1979)
## 60160 Blob, The (1958)
## 60205 Body Snatcher, The (1945)
## 60259 Carrie (1976)
## 60370 Omen, The (1976)
## 60657 Grease (1978)
## 61357 Like Water For Chocolate (Como agua para chocolate) (1992)
## 61546 Vanya on 42nd Street (1994)
## 61829 Short Cuts (1993)
## 62543 Dr. Strangelove or: How I Learned to Stop Worrying and Love the Bomb (1963)
## 62761 Trainspotting (1996)
## 62983 First Wives Club, The (1996)
## 63219 Philadelphia Story, The (1940)
## 63337 Vertigo (1958)
## 63748 Some Like It Hot (1959)
## 63905 Casablanca (1942)
## 64120 Maltese Falcon, The (1941)
## 64368 Sabrina (1954)
## 64498 Sunset Blvd. (1950)
## 64732 East of Eden (1955)
## 65005 It's a Wonderful Life (1946)
## 65195 Bringing Up Baby (1938)
## 65287 African Queen, The (1951)
## 65416 Cat on a Hot Tin Roof (1958)
## 65603 Bananas (1971)
## 65714 Bonnie and Clyde (1967)
## 65820 Dial M for Murder (1954)
## 65893 Rebel Without a Cause (1955)
## 65986 Streetcar Named Desire, A (1951)
## 66126 People vs. Larry Flynt, The (1996)
## 66308 My Left Foot (1989)
## 66704 Wings of Desire (1987)
## 66867 Annie Hall (1977)
## 67047 Boot, Das (1981)
## 67287 Manhattan (1979)
## 67383 Miller's Crossing (1990)
## 67675 Deer Hunter, The (1978)
## 67778 Down by Law (1986)
## 67844 Cool Hand Luke (1967)
## 68030 Big Sleep, The (1946)
## 68262 Gandhi (1982)
## 68434 Killing Fields, The (1984)
## 68546 My Life as a Dog (Mitt liv som hund) (1985)
## 68637 Man Who Would Be King, The (1975)
## 68734 Shine (1996)
## 68948 My Own Private Idaho (1991)
## 70845 Speed (1994)
## 71654 Piano, The (1993)
## 72701 Eraser (1996)
## 72888 American in Paris, An (1951)
## 72972 Rear Window (1954)
## 73149 It Happened One Night (1934)
## 73381 Spellbound (1945)
## 73621 Giant (1956)
## 73731 Night of the Living Dead (1968)
## 74138 Robin Hood: Prince of Thieves (1991)
## 74389 Victor/Victoria (1982)
## 74502 Crying Game, The (1992)
## 74608 Sophie's Choice (1982)
## 74790 Escape from New York (1981)
## 74947 Tin Drum, The (Blechtrommel, Die) (1979)
## 74998 Cook the Thief His Wife & Her Lover, The (1989)
## 75121 Grifters, The (1990)
## 75199 Thin Blue Line, The (1988)
## 75229 Paris Is Burning (1990)
## 75309 Ran (1985)
## 75434 Once Upon a Time in America (1984)
## 75879 Chinatown (1974)
## 76053 Stand by Me (1986)
## 76289 Manchurian Candidate, The (1962)
## 76410 Pump Up the Volume (1990)
## 76494 Arsenic and Old Lace (1944)
## 76623 Fried Green Tomatoes (1991)
## 76759 High Noon (1952)
## 76933 Being There (1979)
## 77034 Paris, Texas (1984)
## 77099 Alien 3 (1992)
## 77340 Cape Fear (1962)
## 77413 Cat People (1982)
## 77831 Conan the Barbarian (1981)
## 79231 Basketball Diaries, The (1995)
## 79529 Singin' in the Rain (1952)
## 79655 Enchanted April (1991)
## 79733 Sex, Lies, and Videotape (1989)
## 79931 Better Off Dead... (1985)
## 80154 To Die For (1995)
## 80235 Home for the Holidays (1995)
## 80303 Juror, The (1996)
## 80609 Boys on the Side (1995)
## 80871 Nell (1994)
## 81252 Philadelphia (1993)
## 81555 Pretty Woman (1990)
## 81766 Last Supper, The (1995)
## 82365 Benny & Joon (1993)
## 83362 Father of the Bride Part II (1995)
## 83546 Nick of Time (1995)
## 83611 Beautiful Girls (1996)
## 83733 Happy Gilmore (1996)
## 84085 Johnny Mnemonic (1995)
## 84221 Something to Talk About (1995)
## 84272 Don Juan DeMarco (1995)
## 84535 Milk Money (1994)
## 84780 Bullets Over Broadway (1994)
## 84842 Crooklyn (1994)
## 85103 Manhattan Murder Mystery (1993)
## 85143 Menace II Society (1993)
## 85224 Rising Sun (1993)
## 85535 Girl 6 (1996)
## 85696 Mrs. Winterbourne (1996)
## 85744 Mulholland Falls (1996)
## 85867 Arrival, The (1996)
## 86138 Escape from L.A. (1996)
## 86509 Shaggy Dog, The (1959)
## 86625 That Thing You Do! (1996)
## 87027 Night on Earth (1991)
## 88080 Life Less Ordinary, A (1997)
## 88627 Big Lebowski, The (1998)
## 88880 City of Lost Children, The (1995)
## 89013 Dead Man (1995)
## 89056 Raise the Red Lantern (1991)
## 89344 Craft, The (1996)
## 89568 Island of Dr. Moreau, The (1996)
## 89852 Murder in the First (1995)
## 89902 Airheads (1994)
## 90545 Nobody's Fool (1994)
## 90609 Dazed and Confused (1993)
## 90692 Orlando (1993)
## 91331 Blood & Wine (1997)
## 91693 Cabin Boy (1994)
## 91763 Double vie de Veronique, La (Double Life of Veronique, The) (1991)
## 91788 Until the End of the World (Bis ans Ende der Welt) (1991)
## 92017 2 Days in the Valley (1996)
## 92246 Romy and Michele's High School Reunion (1997)
## 92488 Trees Lounge (1996)
## 92597 Gaslight (1944)
## 92834 Grumpier Old Men (1995)
## 93283 Two if by Sea (1996)
## 94129 Koyaanisqatsi (1983)
## 94288 Party Girl (1995)
## 94327 Shallow Grave (1994)
## 94394 Reality Bites (1994)
## 94729 Pete's Dragon (1977)
## 94939 Six Degrees of Separation (1993)
## 95009 Trust (1990)
## 95106 Tank Girl (1995)
## 95556 Escape to Witch Mountain (1975)
## 95625 Doors, The (1991)
## 95884 Tom & Viv (1994)
## 95983 Alphaville (1965)
## 96113 Big Bully (1996)
## 96152 Little Buddha (1993)
## 96416 Young Guns II (1990)
## 97562 Clockers (1995)
## 98216 Search for One-eye Jimmy, The (1996)
## 98373 Of Human Bondage (1934)
## 98482 Barbarella (1968)
## 98601 Drunks (1995)
## 98607 SubUrbia (1997)
## 98663 Panther (1995)
## 98699 That Darn Cat! (1965)
## 98875 Dead Presidents (1995)
## 98893 Reckless (1995)
## 98901 Herbie Rides Again (1974)
## 905 Copycat (1995)
## 1118 Twelve Monkeys (1995)
## 2554 Mighty Aphrodite (1995)
## 3219 From Dusk Till Dawn (1996)
## 4266 Birdcage, The (1996)
## 4485 Brothers McMullen, The (1995)
## 6559 Star Wars (1977)
## 7189 Natural Born Killers (1994)
## 7657 Pulp Fiction (1994)
## 8246 Three Colors: Blue (1993)
## 9001 While You Were Sleeping (1995)
## 9754 Four Weddings and a Funeral (1994)
## 10519 Firm, The (1993)
## 10755 Fugitive, The (1993)
## 11475 Much Ado About Nothing (1993)
## 11728 Remains of the Day, The (1993)
## 12026 Sleepless in Seattle (1993)
## 12484 So I Married an Axe Murderer (1993)
## 12844 Welcome to the Dollhouse (1995)
## 13631 Dances with Wolves (1990)
## 13937 Silence of the Lambs, The (1991)
## 16417 Twister (1996)
## 16827 Independence Day (ID4) (1996)
## 17270 Frighteners, The (1996)
## 20498 Lawnmower Man, The (1992)
## 20775 Ghost and the Darkness, The (1996)
## 21901 Dirty Dancing (1987)
## 22020 Reservoir Dogs (1992)
## 22332 Basic Instinct (1992)
## 22933 Abyss, The (1989)
## 24309 Princess Bride, The (1987)
## 25254 Aliens (1986)
## 26302 Return of the Jedi (1983)
## 26971 Alien (1979)
## 27375 Psycho (1960)
## 30289 Shining, The (1980)
## 32650 Room with a View, A (1986)
## 33396 Bram Stoker's Dracula (1992)
## 33528 Cape Fear (1991)
## 33686 Nightmare on Elm Street, A (1984)
## 34013 Star Trek: First Contact (1996)
## 34604 Die Hard 2 (1990)
## 35360 Star Trek IV: The Voyage Home (1986)
## 35944 Jaws (1975)
## 36521 Jerry Maguire (1996)
## 37400 Last of the Mohicans, The (1992)
## 37528 Kolya (1996)
## 37749 Smilla's Sense of Snow (1997)
## 38494 Fifth Element, The (1997)
## 38651 Shall We Dance? (1996)
## 38848 Pillow Book, The (1995)
## 39194 Men in Black (1997)
## 39574 Contact (1997)
## 40509 Hunt for Red October, The (1990)
## 42060 Sense and Sensibility (1995)
## 42698 Once Upon a Time... When We Were Colored (1995)
## 42845 River Wild, The (1994)
## 43008 Time to Kill, A (1996)
## 43224 Emma (1996)
## 43850 English Patient, The (1996)
## 44401 Scream (1996)
## 45996 Breakdown (1997)
## 47598 Mrs. Brown (Her Majesty, Mrs. Brown) (1997)
## 49287 Everyone Says I Love You (1996)
## 50092 Lost Highway (1997)
## 50531 Cop Land (1997)
## 51618 How to Be a Player (1997)
## 52862 Client, The (1994)
## 53855 Mary Reilly (1996)
## 54202 Tales From the Crypt Presents: Demon Knight (1995)
## 54977 Age of Innocence, The (1993)
## 55794 Ghost (1990)
## 57952 William Shakespeare's Romeo and Juliet (1996)
## 59944 Amityville Horror, The (1979)
## 60032 Birds, The (1963)
## 60260 Carrie (1976)
## 60799 Jaws 2 (1978)
## 61665 Red Rock West (1992)
## 62045 Courage Under Fire (1996)
## 62762 Trainspotting (1996)
## 66309 My Left Foot (1989)
## 68735 Shine (1996)
## 68885 Addicted to Love (1997)
## 69400 Broken Arrow (1996)
## 69885 Lord of Illusions (1995)
## 69964 Walk in the Clouds, A (1995)
## 70036 Waterworld (1995)
## 70169 Heavenly Creatures (1994)
## 70253 Interview with the Vampire (1994)
## 70492 Stephen King's The Langoliers (1995)
## 70608 Clear and Present Danger (1994)
## 71025 Wolf (1994)
## 71219 Boxing Helena (1993)
## 71565 Kalifornia (1993)
## 71655 Piano, The (1993)
## 71791 Romeo Is Bleeding (1993)
## 71831 Secret Garden, The (1993)
## 72560 Hunchback of Notre Dame, The (1996)
## 72973 Rear Window (1954)
## 77100 Alien 3 (1992)
## 77217 Bride of Frankenstein (1935)
## 77270 Candyman (1992)
## 78132 In the Line of Fire (1993)
## 79099 Persuasion (1995)
## 79459 Widows' Peak (1994)
## 79656 Enchanted April (1991)
## 80060 Othello (1995)
## 80119 Carrington (1995)
## 80236 Home for the Holidays (1995)
## 80557 Nine Months (1995)
## 80755 Immortal Beloved (1994)
## 81374 Shadowlands (1993)
## 81556 Pretty Woman (1990)
## 81698 Jane Eyre (1996)
## 81767 Last Supper, The (1995)
## 81873 Ransom (1996)
## 82366 Benny & Joon (1993)
## 84273 Don Juan DeMarco (1995)
## 84453 French Kiss (1995)
## 84860 It Could Happen to You (1994)
## 85009 In the Mouth of Madness (1995)
## 85424 One Fine Day (1996)
## 87078 Believers, The (1987)
## 87357 Fools Rush In (1997)
## 87471 Love Jones (1997)
## 89345 Craft, The (1996)
## 90028 Killing Zoe (1994)
## 91811 Waiting for Guffman (1996)
## 91901 Stealing Beauty (1996)
## 92247 Romy and Michele's High School Reunion (1997)
## 94328 Shallow Grave (1994)
## 94395 Reality Bites (1994)
## 95077 Death and the Maiden (1994)
## 95316 Some Kind of Wonderful (1987)
## 95885 Tom & Viv (1994)
## 96752 Virtuosity (1995)
## 98840 Hideaway (1995)
## 123 Toy Story (1995)
## 484 GoldenEye (1995)
## 723 Get Shorty (1995)
## 1447 Babe (1995)
## 1694 Dead Man Walking (1995)
## 2063 Seven (Se7en) (1995)
## 2304 Usual Suspects, The (1995)
## 2555 Mighty Aphrodite (1995)
## 2951 Mr. Holland's Opus (1995)
## 3601 Braveheart (1995)
## 4267 Birdcage, The (1996)
## 4679 Apollo 13 (1995)
## 5067 Crimson Tide (1995)
## 5429 Net, The (1995)
## 5623 To Wong Foo, Thanks for Everything! Julie Newmar (1995)
## 5854 Disclosure (1994)
## 5908 Dolores Claiborne (1994)
## 6106 Ed Wood (1994)
## 6237 Hoop Dreams (1994)
## 6560 Star Wars (1977)
## 7016 Legends of the Fall (1994)
## 7093 Madness of King George, The (1994)
## 7315 Outbreak (1995)
## 7658 Pulp Fiction (1994)
## 8016 Quiz Show (1994)
## 8388 Stargate (1994)
## 8654 Shawshank Redemption, The (1994)
## 8876 What's Eating Gilbert Grape (1993)
## 9456 Forrest Gump (1994)
## 9755 Four Weddings and a Funeral (1994)
## 10310 Maverick (1994)
## 10520 Firm, The (1993)
## 10756 Fugitive, The (1993)
## 11092 Hudsucker Proxy, The (1994)
## 11476 Much Ado About Nothing (1993)
## 11873 Searching for Bobby Fischer (1993)
## 12027 Sleepless in Seattle (1993)
## 12261 Blade Runner (1982)
## 13102 Aladdin (1992)
## 13632 Dances with Wolves (1990)
## 13938 Silence of the Lambs, The (1991)
## 14528 Fargo (1996)
## 15198 Moll Flanders (1996)
## 15531 Truth About Cats & Dogs, The (1996)
## 15878 Cold Comfort Farm (1995)
## 16062 Rock, The (1996)
## 16418 Twister (1996)
## 16828 Independence Day (ID4) (1996)
## 17406 Lone Star (1996)
## 17609 Phenomenon (1996)
## 17815 Spitfire Grill, The (1996)
## 17990 Godfather, The (1972)
## 18494 Kansas City (1996)
## 18534 Breakfast at Tiffany's (1961)
## 18669 Wizard of Oz, The (1939)
## 18897 Gone with the Wind (1939)
## 19074 Citizen Kane (1941)
## 19296 2001: A Space Odyssey (1968)
## 19505 Mr. Smith Goes to Washington (1939)
## 19637 Big Night (1996)
## 19904 20,000 Leagues Under the Sea (1954)
## 20776 Ghost and the Darkness, The (1996)
## 22539 Top Gun (1986)
## 23315 Monty Python and the Holy Grail (1974)
## 23584 Wrong Trousers, The (1993)
## 23702 Cinema Paradiso (1988)
## 23957 Empire Strikes Back, The (1980)
## 24310 Princess Bride, The (1987)
## 24662 Raiders of the Lost Ark (1981)
## 25255 Aliens (1986)
## 25495 Good, The Bad and The Ugly, The (1966)
## 25630 12 Angry Men (1957)
## 25781 Clockwork Orange, A (1971)
## 26000 Apocalypse Now (1979)
## 26303 Return of the Jedi (1983)
## 26736 GoodFellas (1990)
## 27376 Psycho (1960)
## 27607 Blues Brothers, The (1980)
## 27850 Godfather: Part II, The (1974)
## 28049 Full Metal Jacket (1987)
## 28271 Henry V (1989)
## 28443 Amadeus (1984)
## 28669 Raging Bull (1980)
## 28795 Right Stuff, The (1983)
## 28981 Sting, The (1973)
## 29524 Dead Poets Society (1989)
## 29765 Graduate, The (1967)
## 29979 Nikita (La Femme Nikita) (1990)
## 30113 Bridge on the River Kwai, The (1957)
## 30290 Shining, The (1980)
## 30608 Groundhog Day (1993)
## 30863 Unforgiven (1992)
## 31086 Back to the Future (1985)
## 31374 Patton (1970)
## 31647 Young Frankenstein (1974)
## 32076 Indiana Jones and the Last Crusade (1989)
## 32375 M*A*S*H (1970)
## 32922 Field of Dreams (1989)
## 33160 When Harry Met Sally... (1989)
## 33529 Cape Fear (1991)
## 33787 Mirror Has Two Faces, The (1996)
## 33861 Breaking the Waves (1996)
## 34422 Ridicule (1996)
## 35945 Jaws (1975)
## 36211 Mars Attacks! (1996)
## 36522 Jerry Maguire (1996)
## 36869 Raising Arizona (1987)
## 37086 Sneakers (1992)
## 37401 Last of the Mohicans, The (1992)
## 37529 Kolya (1996)
## 37750 Smilla's Sense of Snow (1997)
## 38188 Grosse Pointe Blank (1997)
## 39195 Men in Black (1997)
## 39575 Contact (1997)
## 40510 Hunt for Red October, The (1990)
## 40818 Full Monty, The (1997)
## 41440 Good Will Hunting (1997)
## 41853 Sabrina (1995)
## 42061 Sense and Sensibility (1995)
## 42353 Leaving Las Vegas (1995)
## 42577 Restoration (1995)
## 43009 Time to Kill, A (1996)
## 43225 Emma (1996)
## 43408 Tin Cup (1996)
## 43595 Secrets & Lies (1996)
## 43851 English Patient, The (1996)
## 44814 Evita (1996)
## 45632 Liar Liar (1997)
## 46493 Air Force One (1997)
## 47118 L.A. Confidential (1997)
## 47951 Rainmaker, The (1997)
## 48076 Wings of the Dove, The (1997)
## 48151 Midnight in the Garden of Good and Evil (1997)
## 48314 Titanic (1997)
## 48611 Apt Pupil (1998)
## 48872 In the Name of the Father (1993)
## 49026 Schindler's List (1993)
## 50740 Conspiracy Theory (1997)
## 51718 Bean (1997)
## 52277 Deconstructing Harry (1997)
## 52360 Jackie Brown (1997)
## 52483 Wag the Dog (1997)
## 52863 Client, The (1994)
## 53005 One Flew Over the Cuckoo's Nest (1975)
## 53899 Bridges of Madison County, The (1995)
## 54114 Miracle on 34th Street (1994)
## 54377 Muriel's Wedding (1994)
## 54609 Naked Gun 33 1/3: The Final Insult (1994)
## 55165 Man Without a Face, The (1993)
## 55261 Mrs. Doubtfire (1993)
## 55795 Ghost (1990)
## 56324 Mission: Impossible (1996)
## 56883 Kingpin (1996)
## 57057 Nutty Professor, The (1996)
## 57328 My Favorite Year (1982)
## 57702 Mary Poppins (1964)
## 58138 E.T. the Extra-Terrestrial (1982)
## 58397 Bob Roberts (1992)
## 58541 To Kill a Mockingbird (1962)
## 58739 Harold and Maude (1971)
## 58855 Day the Earth Stood Still, The (1951)
## 58953 Duck Soup (1933)
## 59643 Butch Cassidy and the Sundance Kid (1969)
## 59945 Amityville Horror, The (1979)
## 60033 Birds, The (1963)
## 60658 Grease (1978)
## 61257 Smoke (1995)
## 61358 Like Water For Chocolate (Como agua para chocolate) (1992)
## 61666 Red Rock West (1992)
## 61907 Tombstone (1993)
## 62046 Courage Under Fire (1996)
## 62250 Dragonheart (1996)
## 62544 Dr. Strangelove or: How I Learned to Stop Worrying and Love the Bomb (1963)
## 62984 First Wives Club, The (1996)
## 63125 Matilda (1996)
## 63338 Vertigo (1958)
## 63520 North by Northwest (1959)
## 63663 Apartment, The (1960)
## 63749 Some Like It Hot (1959)
## 64254 My Fair Lady (1964)
## 64431 Roman Holiday (1953)
## 64609 To Catch a Thief (1955)
## 64789 Thin Man, The (1934)
## 64846 His Girl Friday (1940)
## 64908 Around the World in 80 Days (1956)
## 65006 It's a Wonderful Life (1946)
## 65288 African Queen, The (1951)
## 65417 Cat on a Hot Tin Roof (1958)
## 65715 Bonnie and Clyde (1967)
## 65821 Dial M for Murder (1954)
## 65894 Rebel Without a Cause (1955)
## 65987 Streetcar Named Desire, A (1951)
## 66310 My Left Foot (1989)
## 66427 Magnificent Seven, The (1954)
## 66564 Lawrence of Arabia (1962)
## 66868 Annie Hall (1977)
## 67048 Boot, Das (1981)
## 67221 Local Hero (1983)
## 67288 Manhattan (1979)
## 67384 Miller's Crossing (1990)
## 67548 Great Escape, The (1963)
## 67676 Deer Hunter, The (1978)
## 67845 Cool Hand Luke (1967)
## 68115 Ben-Hur (1959)
## 68263 Gandhi (1982)
## 68435 Killing Fields, The (1984)
## 68547 My Life as a Dog (Mitt liv som hund) (1985)
## 68638 Man Who Would Be King, The (1975)
## 69051 Mouse Hunt (1997)
## 69401 Broken Arrow (1996)
## 69656 Rob Roy (1995)
## 70609 Clear and Present Danger (1994)
## 71088 Wyatt Earp (1994)
## 71533 Englishman Who Went Up a Hill, But Came Down a Mountain, The (1995)
## 71656 Piano, The (1993)
## 72293 Primal Fear (1996)
## 72889 American in Paris, An (1951)
## 72974 Rear Window (1954)
## 73220 Meet Me in St. Louis (1944)
## 73476 Gigi (1958)
## 73622 Giant (1956)
## 74019 Three Caballeros, The (1945)
## 74054 Sword in the Stone, The (1963)
## 74451 Great Race, The (1965)
## 75122 Grifters, The (1990)
## 75200 Thin Blue Line, The (1988)
## 75372 Quiet Man, The (1952)
## 75435 Once Upon a Time in America (1984)
## 75590 Glory (1989)
## 75880 Chinatown (1974)
## 76290 Manchurian Candidate, The (1962)
## 76495 Arsenic and Old Lace (1944)
## 76624 Fried Green Tomatoes (1991)
## 76760 High Noon (1952)
## 76934 Being There (1979)
## 78705 Seven Years in Tibet (1997)
## 78879 American President, The (1995)
## 79232 Basketball Diaries, The (1995)
## 79303 Little Women (1994)
## 79460 Widows' Peak (1994)
## 79530 Singin' in the Rain (1952)
## 79657 Enchanted April (1991)
## 79829 Strictly Ballroom (1992)
## 80061 Othello (1995)
## 80120 Carrington (1995)
## 80872 Nell (1994)
## 81034 Dave (1993)
## 81253 Philadelphia (1993)
## 81557 Pretty Woman (1990)
## 81874 Ransom (1996)
## 82135 Michael Collins (1996)
## 82367 Benny & Joon (1993)
## 82841 Amistad (1997)
## 83363 Father of the Bride Part II (1995)
## 83734 Happy Gilmore (1996)
## 84781 Bullets Over Broadway (1994)
## 85425 One Fine Day (1996)
## 85745 Mulholland Falls (1996)
## 86626 That Thing You Do! (1996)
## 86813 Looking for Richard (1996)
## 87156 My Fellow Americans (1996)
## 87257 Michael (1996)
## 88008 Washington Square (1997)
## 89120 White Squall (1996)
## 90378 Indian in the Cupboard, The (1995)
## 90546 Nobody's Fool (1994)
## 90750 Some Folks Call It a Sling Blade (1993)
## 92835 Grumpier Old Men (1995)
## 93475 Malice (1993)
## 94730 Pete's Dragon (1977)
## 94940 Six Degrees of Separation (1993)
## 95245 Surviving Picasso (1996)
## 95365 I'm Not Rappaport (1996)
## 95557 Escape to Witch Mountain (1975)
## 95733 Hackers (1995)
## 97547 Bread and Chocolate (Pane e cioccolata) (1973)
## 97743 Grass Harp, The (1995)
## 98483 Barbarella (1968)
## 1448 Babe (1995)
## 2064 Seven (Se7en) (1995)
## 2305 Usual Suspects, The (1995)
## 3602 Braveheart (1995)
## 3868 Taxi Driver (1976)
## 5207 Crumb (1994)
## 5739 Clerks (1994)
## 6238 Hoop Dreams (1994)
## 6561 Star Wars (1977)
## 7659 Pulp Fiction (1994)
## 9457 Forrest Gump (1994)
## 10757 Fugitive, The (1993)
## 13353 Terminator 2: Judgment Day (1991)
## 13939 Silence of the Lambs, The (1991)
## 17991 Godfather, The (1972)
## 18898 Gone with the Wind (1939)
## 19075 Citizen Kane (1941)
## 23958 Empire Strikes Back, The (1980)
## 24663 Raiders of the Lost Ark (1981)
## 25037 Brazil (1985)
## 25631 12 Angry Men (1957)
## 26972 Alien (1979)
## 27851 Godfather: Part II, The (1974)
## 28796 Right Stuff, The (1983)
## 28982 Sting, The (1973)
## 30291 Shining, The (1980)
## 30470 Evil Dead II (1987)
## 31087 Back to the Future (1985)
## 31375 Patton (1970)
## 31648 Young Frankenstein (1974)
## 32077 Indiana Jones and the Last Crusade (1989)
## 32376 M*A*S*H (1970)
## 35946 Jaws (1975)
## 36870 Raising Arizona (1987)
## 44402 Scream (1996)
## 48873 In the Name of the Father (1993)
## 53006 One Flew Over the Cuckoo's Nest (1975)
## 58139 E.T. the Extra-Terrestrial (1982)
## 61830 Short Cuts (1993)
## 62545 Dr. Strangelove or: How I Learned to Stop Worrying and Love the Bomb (1963)
## 63906 Casablanca (1942)
## 65289 African Queen, The (1951)
## 66869 Annie Hall (1977)
## 67677 Deer Hunter, The (1978)
## 73150 It Happened One Night (1934)
## 75591 Glory (1989)
## 75881 Chinatown (1974)
## 82241 Real Genius (1985)
## 84128 Kids (1995)
## 94941 Six Degrees of Separation (1993)
## 98345 Stag (1997)
## 41441 Good Will Hunting (1997)
## 43852 English Patient, The (1996)
## 47375 Fly Away Home (1996)
## 47505 Ice Storm, The (1997)
## 47713 Devil's Advocate, The (1997)
## 48077 Wings of the Dove, The (1997)
## 48315 Titanic (1997)
## 48612 Apt Pupil (1998)
## 48760 As Good As It Gets (1997)
## 49288 Everyone Says I Love You (1996)
## 49484 Mother (1996)
## 50741 Conspiracy Theory (1997)
## 51719 Bean (1997)
## 51885 Boogie Nights (1997)
## 52278 Deconstructing Harry (1997)
## 52484 Wag the Dog (1997)
## 78706 Seven Years in Tibet (1997)
## 88465 Sweet Hereafter, The (1997)
## 88577 Kundun (1997)
## 88628 Big Lebowski, The (1998)
## 124 Toy Story (1995)
## 1695 Dead Man Walking (1995)
## 2952 Mr. Holland's Opus (1995)
## 4268 Birdcage, The (1996)
## 6562 Star Wars (1977)
## 9458 Forrest Gump (1994)
## 9984 Lion King, The (1994)
## 11477 Much Ado About Nothing (1993)
## 12028 Sleepless in Seattle (1993)
## 13940 Silence of the Lambs, The (1991)
## 14529 Fargo (1996)
## 15532 Truth About Cats & Dogs, The (1996)
## 16063 Rock, The (1996)
## 16419 Twister (1996)
## 17610 Phenomenon (1996)
## 20777 Ghost and the Darkness, The (1996)
## 20932 Swingers (1996)
## 22934 Abyss, The (1989)
## 26304 Return of the Jedi (1983)
## 30292 Shining, The (1980)
## 31649 Young Frankenstein (1974)
## 32377 M*A*S*H (1970)
## 33788 Mirror Has Two Faces, The (1996)
## 35947 Jaws (1975)
## 36523 Jerry Maguire (1996)
## 37645 Jungle2Jungle (1997)
## 38975 My Best Friend's Wedding (1997)
## 39576 Contact (1997)
## 41854 Sabrina (1995)
## 42062 Sense and Sensibility (1995)
## 42354 Leaving Las Vegas (1995)
## 42578 Restoration (1995)
## 42746 Up Close and Personal (1996)
## 43010 Time to Kill, A (1996)
## 44403 Scream (1996)
## 45633 Liar Liar (1997)
## 46494 Air Force One (1997)
## 49027 Schindler's List (1993)
## 49289 Everyone Says I Love You (1996)
## 56325 Mission: Impossible (1996)
## 57058 Nutty Professor, The (1996)
## 62047 Courage Under Fire (1996)
## 62251 Dragonheart (1996)
## 62985 First Wives Club, The (1996)
## 63220 Philadelphia Story, The (1940)
## 65007 It's a Wonderful Life (1946)
## 69402 Broken Arrow (1996)
## 72294 Primal Fear (1996)
## 72561 Hunchback of Notre Dame, The (1996)
## 72702 Eraser (1996)
## 74245 Sleepers (1996)
## 74390 Victor/Victoria (1982)
## 78301 Executive Decision (1996)
## 80062 Othello (1995)
## 81875 Ransom (1996)
## 82136 Michael Collins (1996)
## 82516 Saint, The (1997)
## 83364 Father of the Bride Part II (1995)
## 83612 Beautiful Girls (1996)
## 85426 One Fine Day (1996)
## 86627 That Thing You Do! (1996)
## 86764 To Gillian on Her 37th Birthday (1996)
## 87258 Michael (1996)
## 87519 Picture Perfect (1997)
## 87731 Excess Baggage (1997)
## 89121 White Squall (1996)
## 93796 Associate, The (1996)
## 94001 Adventures of Pinocchio, The (1996)
## 94078 Little Princess, A (1995)
## 95937 In Love and War (1996)
## 96083 Portrait of a Lady, The (1996)
## 125 Toy Story (1995)
## 3603 Braveheart (1995)
## 4680 Apollo 13 (1995)
## 6563 Star Wars (1977)
## 8389 Stargate (1994)
## 9459 Forrest Gump (1994)
## 9985 Lion King, The (1994)
## 12262 Blade Runner (1982)
## 13103 Aladdin (1992)
## 13354 Terminator 2: Judgment Day (1991)
## 13941 Silence of the Lambs, The (1991)
## 14254 Snow White and the Seven Dwarfs (1937)
## 14910 Heavy Metal (1981)
## 14981 Aristocats, The (1970)
## 16064 Rock, The (1996)
## 16420 Twister (1996)
## 16829 Independence Day (ID4) (1996)
## 18670 Wizard of Oz, The (1939)
## 19297 2001: A Space Odyssey (1968)
## 19971 Bedknobs and Broomsticks (1971)
## 20298 Die Hard (1988)
## 21748 Monty Python's Life of Brian (1979)
## 22731 On Golden Pond (1981)
## 22935 Abyss, The (1989)
## 23585 Wrong Trousers, The (1993)
## 24311 Princess Bride, The (1987)
## 24664 Raiders of the Lost Ark (1981)
## 25256 Aliens (1986)
## 26305 Return of the Jedi (1983)
## 26973 Alien (1979)
## 27608 Blues Brothers, The (1980)
## 28050 Full Metal Jacket (1987)
## 28444 Amadeus (1984)
## 29525 Dead Poets Society (1989)
## 30114 Bridge on the River Kwai, The (1957)
## 30609 Groundhog Day (1993)
## 31650 Young Frankenstein (1974)
## 32078 Indiana Jones and the Last Crusade (1989)
## 34014 Star Trek: First Contact (1996)
## 34605 Die Hard 2 (1990)
## 34773 Star Trek VI: The Undiscovered Country (1991)
## 34953 Star Trek: The Wrath of Khan (1982)
## 35179 Star Trek III: The Search for Spock (1984)
## 35361 Star Trek IV: The Voyage Home (1986)
## 38726 Lost World: Jurassic Park, The (1997)
## 39196 Men in Black (1997)
## 39577 Contact (1997)
## 40511 Hunt for Red October, The (1990)
## 45634 Liar Liar (1997)
## 46495 Air Force One (1997)
## 47376 Fly Away Home (1996)
## 54264 Star Trek: Generations (1994)
## 55262 Mrs. Doubtfire (1993)
## 56326 Mission: Impossible (1996)
## 56689 Close Shave, A (1995)
## 57413 Old Yeller (1957)
## 57570 Cinderella (1950)
## 57703 Mary Poppins (1964)
## 57861 Alice in Wonderland (1951)
## 58140 E.T. the Extra-Terrestrial (1982)
## 59059 Highlander (1986)
## 59221 Fantasia (1940)
## 59535 Forbidden Planet (1956)
## 59644 Butch Cassidy and the Sundance Kid (1969)
## 60371 Omen, The (1976)
## 60465 Star Trek: The Motion Picture (1979)
## 60571 Star Trek V: The Final Frontier (1989)
## 60659 Grease (1978)
## 61908 Tombstone (1993)
## 62252 Dragonheart (1996)
## 62401 James and the Giant Peach (1996)
## 65008 It's a Wonderful Life (1946)
## 65496 Dumbo (1941)
## 67049 Boot, Das (1981)
## 67549 Great Escape, The (1963)
## 67846 Cool Hand Luke (1967)
## 69185 Pocahontas (1995)
## 72034 Beauty and the Beast (1991)
## 72703 Eraser (1996)
## 74020 Three Caballeros, The (1945)
## 74055 Sword in the Stone, The (1963)
## 74139 Robin Hood: Prince of Thieves (1991)
## 74452 Great Race, The (1965)
## 74791 Escape from New York (1981)
## 76847 Somewhere in Time (1980)
## 77832 Conan the Barbarian (1981)
## 82242 Real Genius (1985)
## 85868 Arrival, The (1996)
## 85955 Phantom, The (1996)
## 89497 Chain Reaction (1996)
## 90156 Fox and the Hound, The (1981)
## 90886 Winnie the Pooh and the Blustery Day (1968)
## 94171 Balto (1995)
## 94731 Pete's Dragon (1977)
## 96919 Goofy Movie, A (1995)
## 126 Toy Story (1995)
## 485 GoldenEye (1995)
## 608 Four Rooms (1995)
## 724 Get Shorty (1995)
## 906 Copycat (1995)
## 1119 Twelve Monkeys (1995)
## 1449 Babe (1995)
## 1696 Dead Man Walking (1995)
## 2065 Seven (Se7en) (1995)
## 2306 Usual Suspects, The (1995)
## 2732 Postino, Il (1994)
## 3220 From Dusk Till Dawn (1996)
## 3463 Muppet Treasure Island (1996)
## 3604 Braveheart (1995)
## 3869 Taxi Driver (1976)
## 4049 Rumble in the Bronx (1995)
## 4269 Birdcage, The (1996)
## 4556 Bad Boys (1995)
## 4681 Apollo 13 (1995)
## 4906 Batman Forever (1995)
## 5068 Crimson Tide (1995)
## 5292 Desperado (1995)
## 5361 Doom Generation, The (1995)
## 5430 Net, The (1995)
## 5541 Strange Days (1995)
## 5624 To Wong Foo, Thanks for Everything! Julie Newmar (1995)
## 5670 Billy Madison (1995)
## 5740 Clerks (1994)
## 5855 Disclosure (1994)
## 5909 Dolores Claiborne (1994)
## 6051 Exotica (1994)
## 6107 Ed Wood (1994)
## 6564 Star Wars (1977)
## 7017 Legends of the Fall (1994)
## 7190 Natural Born Killers (1994)
## 7316 Outbreak (1995)
## 7439 Professional, The (1994)
## 7660 Pulp Fiction (1994)
## 7946 Priest (1994)
## 8017 Quiz Show (1994)
## 8390 Stargate (1994)
## 8502 Santa Clause, The (1994)
## 8655 Shawshank Redemption, The (1994)
## 8877 What's Eating Gilbert Grape (1993)
## 9002 While You Were Sleeping (1995)
## 9151 Ace Ventura: Pet Detective (1994)
## 9260 Crow, The (1994)
## 9460 Forrest Gump (1994)
## 9756 Four Weddings and a Funeral (1994)
## 9986 Lion King, The (1994)
## 10182 Mask, The (1994)
## 10311 Maverick (1994)
## 10410 Faster Pussycat! Kill! Kill! (1965)
## 10433 Carlito's Way (1993)
## 10521 Firm, The (1993)
## 10639 Free Willy (1993)
## 10758 Fugitive, The (1993)
## 11011 Hot Shots! Part Deux (1993)
## 11093 Hudsucker Proxy, The (1994)
## 11247 Jurassic Park (1993)
## 11613 Robert A. Heinlein's The Puppet Masters (1994)
## 11637 Ref, The (1994)
## 11729 Remains of the Day, The (1993)
## 12029 Sleepless in Seattle (1993)
## 12263 Blade Runner (1982)
## 12595 Nightmare Before Christmas, The (1993)
## 12732 True Romance (1993)
## 12952 Home Alone (1990)
## 13104 Aladdin (1992)
## 13355 Terminator 2: Judgment Day (1991)
## 13633 Dances with Wolves (1990)
## 13942 Silence of the Lambs, The (1991)
## 14255 Snow White and the Seven Dwarfs (1937)
## 14530 Fargo (1996)
## 14911 Heavy Metal (1981)
## 15037 Theodore Rex (1995)
## 15245 Kids in the Hall: Brain Candy (1996)
## 15327 Mystery Science Theater 3000: The Movie (1996)
## 16065 Rock, The (1996)
## 16421 Twister (1996)
## 16657 Striptease (1996)
## 16830 Independence Day (ID4) (1996)
## 17160 Cable Guy, The (1996)
## 17271 Frighteners, The (1996)
## 17407 Lone Star (1996)
## 17611 Phenomenon (1996)
## 17992 Godfather, The (1972)
## 18309 Supercop (1992)
## 19298 2001: A Space Odyssey (1968)
## 19786 Love Bug, The (1969)
## 19905 20,000 Leagues Under the Sea (1954)
## 19972 Bedknobs and Broomsticks (1971)
## 20074 Sound of Music, The (1965)
## 20299 Die Hard (1988)
## 20499 Lawnmower Man, The (1992)
## 20607 Long Kiss Goodnight, The (1996)
## 20778 Ghost and the Darkness, The (1996)
## 20933 Swingers (1996)
## 21137 Willy Wonka and the Chocolate Factory (1971)
## 21525 Fish Called Wanda, A (1988)
## 21749 Monty Python's Life of Brian (1979)
## 22021 Reservoir Dogs (1992)
## 22156 Platoon (1986)
## 22265 Weekend at Bernie's (1989)
## 22333 Basic Instinct (1992)
## 22434 Glengarry Glen Ross (1992)
## 22540 Top Gun (1986)
## 22936 Abyss, The (1989)
## 23316 Monty Python and the Holy Grail (1974)
## 23586 Wrong Trousers, The (1993)
## 23811 Delicatessen (1991)
## 23959 Empire Strikes Back, The (1980)
## 24312 Princess Bride, The (1987)
## 24665 Raiders of the Lost Ark (1981)
## 25038 Brazil (1985)
## 25257 Aliens (1986)
## 25782 Clockwork Orange, A (1971)
## 26001 Apocalypse Now (1979)
## 26306 Return of the Jedi (1983)
## 26737 GoodFellas (1990)
## 26974 Alien (1979)
## 27217 Army of Darkness (1993)
## 27377 Psycho (1960)
## 27609 Blues Brothers, The (1980)
## 27852 Godfather: Part II, The (1974)
## 28051 Full Metal Jacket (1987)
## 28193 Grand Day Out, A (1992)
## 28670 Raging Bull (1980)
## 28797 Right Stuff, The (1983)
## 29239 Terminator, The (1984)
## 29526 Dead Poets Society (1989)
## 29766 Graduate, The (1967)
## 29980 Nikita (La Femme Nikita) (1990)
## 30293 Shining, The (1980)
## 30471 Evil Dead II (1987)
## 30610 Groundhog Day (1993)
## 30864 Unforgiven (1992)
## 31088 Back to the Future (1985)
## 31489 Akira (1988)
## 31542 Cyrano de Bergerac (1990)
## 31855 This Is Spinal Tap (1984)
## 32079 Indiana Jones and the Last Crusade (1989)
## 32776 Pink Floyd - The Wall (1982)
## 32923 Field of Dreams (1989)
## 33397 Bram Stoker's Dracula (1992)
## 33530 Cape Fear (1991)
## 33687 Nightmare on Elm Street, A (1984)
## 34015 Star Trek: First Contact (1996)
## 34315 Sling Blade (1996)
## 34491 101 Dalmatians (1996)
## 34606 Die Hard 2 (1990)
## 34774 Star Trek VI: The Undiscovered Country (1991)
## 34954 Star Trek: The Wrath of Khan (1982)
## 35180 Star Trek III: The Search for Spock (1984)
## 35362 Star Trek IV: The Voyage Home (1986)
## 35539 Batman Returns (1992)
## 35670 Young Guns (1988)
## 35778 Under Siege (1992)
## 35948 Jaws (1975)
## 36212 Mars Attacks! (1996)
## 36524 Jerry Maguire (1996)
## 36871 Raising Arizona (1987)
## 37087 Sneakers (1992)
## 37248 Beavis and Butt-head Do America (1996)
## 37402 Last of the Mohicans, The (1992)
## 37852 Devil's Own, The (1997)
## 38061 Chasing Amy (1997)
## 38189 Grosse Pointe Blank (1997)
## 38348 Austin Powers: International Man of Mystery (1997)
## 38495 Fifth Element, The (1997)
## 38727 Lost World: Jurassic Park, The (1997)
## 38881 Batman & Robin (1997)
## 39197 Men in Black (1997)
## 39578 Contact (1997)
## 40131 Event Horizon (1997)
## 40286 In the Company of Men (1997)
## 40370 Mimic (1997)
## 40512 Hunt for Red October, The (1990)
## 40819 Full Monty, The (1997)
## 41070 Gattaca (1997)
## 41222 Starship Troopers (1997)
## 41442 Good Will Hunting (1997)
## 41638 Heat (1995)
## 41855 Sabrina (1995)
## 42355 Leaving Las Vegas (1995)
## 42846 River Wild, The (1994)
## 43011 Time to Kill, A (1996)
## 43409 Tin Cup (1996)
## 44404 Scream (1996)
## 44815 Evita (1996)
## 45041 Fierce Creatures (1997)
## 45135 Absolute Power (1997)
## 45378 Donnie Brasco (1997)
## 45635 Liar Liar (1997)
## 46165 Face/Off (1997)
## 46496 Air Force One (1997)
## 46870 In & Out (1997)
## 47119 L.A. Confidential (1997)
## 47714 Devil's Advocate, The (1997)
## 48316 Titanic (1997)
## 48613 Apt Pupil (1998)
## 48761 As Good As It Gets (1997)
## 48874 In the Name of the Father (1993)
## 49028 Schindler's List (1993)
## 49657 Murder at 1600 (1997)
## 49882 Dante's Peak (1997)
## 50093 Lost Highway (1997)
## 50221 Crash (1996)
## 50742 Conspiracy Theory (1997)
## 51069 Edge, The (1997)
## 51192 Kiss the Girls (1997)
## 51365 Game, The (1997)
## 51562 U Turn (1997)
## 51886 Boogie Nights (1997)
## 52116 Alien: Resurrection (1997)
## 52361 Jackie Brown (1997)
## 52485 Wag the Dog (1997)
## 52746 Wedding Singer, The (1998)
## 52802 Sphere (1998)
## 52864 Client, The (1994)
## 53007 One Flew Over the Cuckoo's Nest (1975)
## 53232 Spawn (1997)
## 53465 Ace Ventura: When Nature Calls (1995)
## 53502 Powder (1995)
## 53549 Dangerous Minds (1995)
## 53630 Clueless (1995)
## 53991 Judge Dredd (1995)
## 54035 Showgirls (1995)
## 54203 Tales From the Crypt Presents: Demon Knight (1995)
## 54265 Star Trek: Generations (1994)
## 54479 Adventures of Priscilla, Queen of the Desert, The (1994)
## 54571 Flintstones, The (1994)
## 54610 Naked Gun 33 1/3: The Final Insult (1994)
## 54714 True Lies (1994)
## 54892 Addams Family Values (1993)
## 54978 Age of Innocence, The (1993)
## 55027 Beverly Hills Cop III (1994)
## 55101 Last Action Hero (1993)
## 55166 Man Without a Face, The (1993)
## 55263 Mrs. Doubtfire (1993)
## 55427 Robin Hood: Men in Tights (1993)
## 55488 Serial Mom (1994)
## 55530 Striking Distance (1993)
## 55582 Three Musketeers, The (1993)
## 55694 Brady Bunch Movie, The (1995)
## 55796 Ghost (1990)
## 55972 Batman (1989)
## 56145 Pinocchio (1940)
## 56327 Mission: Impossible (1996)
## 56583 Thinner (1996)
## 56632 Spy Hard (1996)
## 56690 Close Shave, A (1995)
## 56795 Jack (1996)
## 56884 Kingpin (1996)
## 57059 Nutty Professor, The (1996)
## 57278 Tales from the Crypt Presents: Bordello of Blood (1996)
## 57378 Apple Dumpling Gang, The (1975)
## 57478 Parent Trap, The (1961)
## 57571 Cinderella (1950)
## 57704 Mary Poppins (1964)
## 57862 Alice in Wonderland (1951)
## 57953 William Shakespeare's Romeo and Juliet (1996)
## 58141 E.T. the Extra-Terrestrial (1982)
## 58398 Bob Roberts (1992)
## 58464 Transformers: The Movie, The (1986)
## 58542 To Kill a Mockingbird (1962)
## 58740 Harold and Maude (1971)
## 58856 Day the Earth Stood Still, The (1951)
## 59060 Highlander (1986)
## 59222 Fantasia (1940)
## 59404 Heathers (1989)
## 59826 American Werewolf in London, An (1981)
## 60034 Birds, The (1963)
## 60261 Carrie (1976)
## 60372 Omen, The (1976)
## 60466 Star Trek: The Motion Picture (1979)
## 60572 Star Trek V: The Final Frontier (1989)
## 60660 Grease (1978)
## 60800 Jaws 2 (1978)
## 60855 Jaws 3-D (1983)
## 60917 Jackie Chan's First Strike (1996)
## 61043 Beverly Hills Ninja (1997)
## 61130 Nixon (1995)
## 61258 Smoke (1995)
## 61359 Like Water For Chocolate (Como agua para chocolate) (1992)
## 61487 Secret of Roan Inish, The (1994)
## 61831 Short Cuts (1993)
## 61909 Tombstone (1993)
## 62048 Courage Under Fire (1996)
## 62253 Dragonheart (1996)
## 62402 James and the Giant Peach (1996)
## 62546 Dr. Strangelove or: How I Learned to Stop Worrying and Love the Bomb (1963)
## 62763 Trainspotting (1996)
## 63339 Vertigo (1958)
## 65009 It's a Wonderful Life (1946)
## 65497 Dumbo (1941)
## 66127 People vs. Larry Flynt, The (1996)
## 67385 Miller's Crossing (1990)
## 67847 Cool Hand Luke (1967)
## 68116 Ben-Hur (1959)
## 68736 Shine (1996)
## 69093 Money Train (1995)
## 69136 Mortal Kombat (1995)
## 69263 Things to Do in Denver when You're Dead (1995)
## 69403 Broken Arrow (1996)
## 69593 Young Poisoner's Handbook, The (1995)
## 69657 Rob Roy (1995)
## 69759 Die Hard: With a Vengeance (1995)
## 69886 Lord of Illusions (1995)
## 69915 Species (1995)
## 70037 Waterworld (1995)
## 70170 Heavenly Creatures (1994)
## 70254 Interview with the Vampire (1994)
## 70391 Mary Shelley's Frankenstein (1994)
## 70450 Quick and the Dead, The (1995)
## 70493 Stephen King's The Langoliers (1995)
## 70527 Tales from the Hood (1995)
## 70610 Clear and Present Danger (1994)
## 70753 Wes Craven's New Nightmare (1994)
## 70846 Speed (1994)
## 71026 Wolf (1994)
## 71131 Another Stakeout (1993)
## 71161 Blown Away (1994)
## 71242 City Slickers II: The Legend of Curly's Gold (1994)
## 71297 Cliffhanger (1993)
## 71379 Coneheads (1993)
## 71427 Demolition Man (1993)
## 71566 Kalifornia (1993)
## 71657 Piano, The (1993)
## 71792 Romeo Is Bleeding (1993)
## 71942 Terminal Velocity (1994)
## 72035 Beauty and the Beast (1991)
## 72234 Hellraiser: Bloodline (1996)
## 72295 Primal Fear (1996)
## 72469 Fan, The (1996)
## 72704 Eraser (1996)
## 72975 Rear Window (1954)
## 74021 Three Caballeros, The (1945)
## 74140 Robin Hood: Prince of Thieves (1991)
## 74246 Sleepers (1996)
## 74503 Crying Game, The (1992)
## 74726 Microcosmos: Le peuple de l'herbe (1996)
## 74792 Escape from New York (1981)
## 74999 Cook the Thief His Wife & Her Lover, The (1989)
## 75310 Ran (1985)
## 75436 Once Upon a Time in America (1984)
## 75745 Rosencrantz and Guildenstern Are Dead (1990)
## 75811 Touch of Evil (1958)
## 76054 Stand by Me (1986)
## 76411 Pump Up the Volume (1990)
## 77101 Alien 3 (1992)
## 77198 Body Parts (1991)
## 77271 Candyman (1992)
## 77644 Volcano (1997)
## 77833 Conan the Barbarian (1981)
## 77961 I Know What You Did Last Summer (1997)
## 78133 In the Line of Fire (1993)
## 78302 Executive Decision (1996)
## 78425 Perfect World, A (1993)
## 78821 Dark City (1998)
## 78880 American President, The (1995)
## 79014 Casino (1995)
## 79158 City Hall (1996)
## 79233 Basketball Diaries, The (1995)
## 79830 Strictly Ballroom (1992)
## 79932 Better Off Dead... (1985)
## 80155 To Die For (1995)
## 80379 Canadian Bacon (1994)
## 80422 First Knight (1995)
## 80501 Mallrats (1995)
## 80713 Exit to Eden (1994)
## 80756 Immortal Beloved (1994)
## 80815 Junior (1994)
## 81035 Dave (1993)
## 81192 Made in America (1993)
## 81254 Philadelphia (1993)
## 81445 Sirens (1994)
## 81558 Pretty Woman (1990)
## 81876 Ransom (1996)
## 82083 Crow: City of Angels, The (1996)
## 82243 Real Genius (1985)
## 82368 Benny & Joon (1993)
## 82517 Saint, The (1997)
## 82842 Amistad (1997)
## 82983 Tomorrow Never Dies (1997)
## 83249 Jumanji (1995)
## 83481 Fair Game (1995)
## 83735 Happy Gilmore (1996)
## 83882 Boomerang (1992)
## 83938 Casper (1995)
## 83986 Congo (1995)
## 84035 Devil in a Blue Dress (1995)
## 84086 Johnny Mnemonic (1995)
## 84129 Kids (1995)
## 84170 Mute Witness (1994)
## 84192 Prophecy, The (1995)
## 84338 Drop Zone (1994)
## 84381 Dumb & Dumber (1994)
## 84536 Milk Money (1994)
## 84605 Perez Family, The (1995)
## 84648 Swimming with Sharks (1995)
## 84697 Tommy Boy (1995)
## 84861 It Could Happen to You (1994)
## 84925 Speechless (1994)
## 84962 Timecop (1994)
## 85010 In the Mouth of Madness (1995)
## 85028 Air Up There, The (1994)
## 85052 Hard Target (1993)
## 85084 Heaven & Earth (1993)
## 85144 Menace II Society (1993)
## 85176 Poetic Justice (1993)
## 85225 Rising Sun (1993)
## 85515 Candyman: Farewell to the Flesh (1995)
## 85625 Space Jam (1996)
## 85746 Mulholland Falls (1996)
## 85869 Arrival, The (1996)
## 86139 Escape from L.A. (1996)
## 86391 Last Man Standing (1996)
## 86510 Shaggy Dog, The (1959)
## 86546 Freeway (1996)
## 86628 That Thing You Do! (1996)
## 86928 Braindead (1992)
## 86939 Bad Taste (1987)
## 87410 Vegas Vacation (1997)
## 87684 Money Talks (1997)
## 87836 Peacemaker, The (1997)
## 88218 Mortal Kombat: Annihilation (1997)
## 88629 Big Lebowski, The (1998)
## 88814 Primary Colors (1998)
## 88831 Lost in Space (1998)
## 88881 City of Lost Children, The (1995)
## 89014 Dead Man (1995)
## 89346 Craft, The (1996)
## 89498 Chain Reaction (1996)
## 89569 Island of Dr. Moreau, The (1996)
## 89853 Murder in the First (1995)
## 89935 With Honors (1994)
## 89983 What's Love Got to Do with It (1993)
## 90029 Killing Zoe (1994)
## 90286 How to Make an American Quilt (1995)
## 90379 Indian in the Cupboard, The (1995)
## 90610 Dazed and Confused (1993)
## 90887 Winnie the Pooh and the Blustery Day (1968)
## 91029 Eye for an Eye (1996)
## 91062 Fear (1996)
## 91119 Substitute, The (1996)
## 91576 Hercules (1997)
## 91718 Lightning Jack (1994)
## 91789 Until the End of the World (Bis ans Ende der Welt) (1991)
## 91967 Basquiat (1996)
## 92018 2 Days in the Valley (1996)
## 92200 Anaconda (1997)
## 92372 Con Air (1997)
## 92564 Die xue shuang xiong (Killer, The) (1989)
## 92836 Grumpier Old Men (1995)
## 92972 Lassie (1994)
## 93070 Cool Runnings (1993)
## 93125 Drop Dead Fred (1991)
## 93368 Just Cause (1995)
## 93409 Paper, The (1994)
## 93476 Malice (1993)
## 93543 Multiplicity (1996)
## 93837 Dracula: Dead and Loving It (1995)
## 93912 Cronos (1992)
## 94329 Shallow Grave (1994)
## 94396 Reality Bites (1994)
## 94510 Joe's Apartment (1996)
## 94549 Curdled (1996)
## 94565 Albino Alligator (1996)
## 94656 Speed 2: Cruise Control (1997)
## 94694 Sliver (1993)
## 94732 Pete's Dragon (1977)
## 94820 High School High (1996)
## 94872 Flirting With Disaster (1996)
## 95078 Death and the Maiden (1994)
## 95107 Tank Girl (1995)
## 95266 Up in Smoke (1978)
## 95482 Chungking Express (1994)
## 95509 Safe (1995)
## 95626 Doors, The (1991)
## 95762 Road to Wellville, The (1994)
## 95779 War Room, The (1993)
## 95851 Blue Chips (1994)
## 96001 Relic, The (1997)
## 96185 Spanking the Monkey (1994)
## 96223 Women, The (1939)
## 96314 I Love Trouble (1994)
## 96498 Once Were Warriors (1994)
## 96593 Cemetery Man (Dellamorte Dellamore) (1994)
## 96718 Kiss of Death (1995)
## 96753 Virtuosity (1995)
## 96803 Guilty as Sin (1993)
## 96897 Friday (1995)
## 96944 Higher Learning (1995)
## 96973 When a Man Loves a Woman (1994)
## 97112 Under Siege 2: Dark Territory (1995)
## 97204 Madonna: Truth or Dare (1991)
## 97250 Cutthroat Island (1995)
## 97268 Ghost in the Shell (Kokaku kidotai) (1995)
## 97317 Metro (1997)
## 97353 Gridlock'd (1997)
## 97434 Tie That Binds, The (1995)
## 97563 Clockers (1995)
## 97632 Color of Night (1994)
## 97645 Robocop 3 (1993)
## 97942 Stripes (1981)
## 98026 Surviving the Game (1994)
## 98448 Specialist, The (1994)
## 98515 Street Fighter (1994)
## 98532 No Escape (1994)
## 98841 Hideaway (1995)
## 98876 Dead Presidents (1995)
## 98912 S.F.W. (1994)
## 98914 Gate of Heavenly Peace, The (1995)
## 98915 Man in the Iron Mask, The (1998)
## 127 Toy Story (1995)
## 1120 Twelve Monkeys (1995)
## 1697 Dead Man Walking (1995)
## 2953 Mr. Holland's Opus (1995)
## 4050 Rumble in the Bronx (1995)
## 4270 Birdcage, The (1996)
## 6565 Star Wars (1977)
## 12845 Welcome to the Dollhouse (1995)
## 14531 Fargo (1996)
## 15533 Truth About Cats & Dogs, The (1996)
## 16066 Rock, The (1996)
## 16831 Independence Day (ID4) (1996)
## 17408 Lone Star (1996)
## 18395 Bound (1996)
## 19638 Big Night (1996)
## 20608 Long Kiss Goodnight, The (1996)
## 21138 Willy Wonka and the Chocolate Factory (1971)
## 26307 Return of the Jedi (1983)
## 33862 Breaking the Waves (1996)
## 36525 Jerry Maguire (1996)
## 38976 My Best Friend's Wedding (1997)
## 39198 Men in Black (1997)
## 39579 Contact (1997)
## 41639 Heat (1995)
## 41856 Sabrina (1995)
## 42356 Leaving Las Vegas (1995)
## 42647 Bed of Roses (1996)
## 42699 Once Upon a Time... When We Were Colored (1995)
## 43012 Time to Kill, A (1996)
## 43410 Tin Cup (1996)
## 43596 Secrets & Lies (1996)
## 43853 English Patient, The (1996)
## 45379 Donnie Brasco (1997)
## 47120 L.A. Confidential (1997)
## 56328 Mission: Impossible (1996)
## 62049 Courage Under Fire (1996)
## 62254 Dragonheart (1996)
## 62403 James and the Giant Peach (1996)
## 66128 People vs. Larry Flynt, The (1996)
## 72296 Primal Fear (1996)
## 73834 Extreme Measures (1996)
## 74247 Sleepers (1996)
## 81877 Ransom (1996)
## 82518 Saint, The (1997)
## 83613 Beautiful Girls (1996)
## 86547 Freeway (1996)
## 87472 Love Jones (1997)
## 89194 Unforgettable (1996)
## 91863 I Shot Andy Warhol (1996)
## 92019 2 Days in the Valley (1996)
## 92117 Private Parts (1997)
## 95483 Chungking Express (1994)
## 96549 Family Thing, A (1996)
## 97754 Out to Sea (1997)
## 3605 Braveheart (1995)
## 13943 Silence of the Lambs, The (1991)
## 24313 Princess Bride, The (1987)
## 37853 Devil's Own, The (1997)
## 39580 Contact (1997)
## 40820 Full Monty, The (1997)
## 43854 English Patient, The (1996)
## 44405 Scream (1996)
## 45636 Liar Liar (1997)
## 46871 In & Out (1997)
## 47121 L.A. Confidential (1997)
## 47599 Mrs. Brown (Her Majesty, Mrs. Brown) (1997)
## 48078 Wings of the Dove, The (1997)
## 48317 Titanic (1997)
## 48614 Apt Pupil (1998)
## 52486 Wag the Dog (1997)
## 67050 Boot, Das (1981)
## 68031 Big Sleep, The (1946)
## 68984 Anastasia (1997)
## 72976 Rear Window (1954)
## 83119 Replacement Killers, The (1998)
## 88009 Washington Square (1997)
## 89057 Raise the Red Lantern (1991)
## 128 Toy Story (1995)
## 486 GoldenEye (1995)
## 725 Get Shorty (1995)
## 1121 Twelve Monkeys (1995)
## 1927 Richard III (1995)
## 2307 Usual Suspects, The (1995)
## 2556 Mighty Aphrodite (1995)
## 3166 French Twist (Gazon maudit) (1995)
## 3221 From Dusk Till Dawn (1996)
## 3464 Muppet Treasure Island (1996)
## 3606 Braveheart (1995)
## 4051 Rumble in the Bronx (1995)
## 4271 Birdcage, The (1996)
## 4557 Bad Boys (1995)
## 4682 Apollo 13 (1995)
## 4907 Batman Forever (1995)
## 4997 Belle de jour (1967)
## 5069 Crimson Tide (1995)
## 5208 Crumb (1994)
## 5293 Desperado (1995)
## 5625 To Wong Foo, Thanks for Everything! Julie Newmar (1995)
## 5671 Billy Madison (1995)
## 5741 Clerks (1994)
## 5910 Dolores Claiborne (1994)
## 6108 Ed Wood (1994)
## 6566 Star Wars (1977)
## 7094 Madness of King George, The (1994)
## 7661 Pulp Fiction (1994)
## 8173 Three Colors: Red (1994)
## 8247 Three Colors: Blue (1993)
## 8311 Three Colors: White (1994)
## 8391 Stargate (1994)
## 8503 Santa Clause, The (1994)
## 8656 Shawshank Redemption, The (1994)
## 8878 What's Eating Gilbert Grape (1993)
## 9003 While You Were Sleeping (1995)
## 9152 Ace Ventura: Pet Detective (1994)
## 9261 Crow, The (1994)
## 9757 Four Weddings and a Funeral (1994)
## 9987 Lion King, The (1994)
## 10312 Maverick (1994)
## 10759 Fugitive, The (1993)
## 11012 Hot Shots! Part Deux (1993)
## 11094 Hudsucker Proxy, The (1994)
## 11478 Much Ado About Nothing (1993)
## 11874 Searching for Bobby Fischer (1993)
## 12030 Sleepless in Seattle (1993)
## 12264 Blade Runner (1982)
## 12485 So I Married an Axe Murderer (1993)
## 12733 True Romance (1993)
## 12953 Home Alone (1990)
## 13105 Aladdin (1992)
## 13356 Terminator 2: Judgment Day (1991)
## 14256 Snow White and the Seven Dwarfs (1937)
## 14532 Fargo (1996)
## 14912 Heavy Metal (1981)
## 15059 Sgt. Bilko (1996)
## 15246 Kids in the Hall: Brain Candy (1996)
## 15328 Mystery Science Theater 3000: The Movie (1996)
## 15772 Wallace & Gromit: The Best of Aardman Animation (1996)
## 15879 Cold Comfort Farm (1995)
## 16067 Rock, The (1996)
## 16658 Striptease (1996)
## 16832 Independence Day (ID4) (1996)
## 17161 Cable Guy, The (1996)
## 17409 Lone Star (1996)
## 18310 Supercop (1992)
## 18396 Bound (1996)
## 18495 Kansas City (1996)
## 18535 Breakfast at Tiffany's (1961)
## 18671 Wizard of Oz, The (1939)
## 19639 Big Night (1996)
## 19787 Love Bug, The (1969)
## 20300 Die Hard (1988)
## 20549 Unhook the Stars (1996)
## 20609 Long Kiss Goodnight, The (1996)
## 20934 Swingers (1996)
## 21139 Willy Wonka and the Chocolate Factory (1971)
## 21395 Sleeper (1973)
## 21526 Fish Called Wanda, A (1988)
## 21750 Monty Python's Life of Brian (1979)
## 22022 Reservoir Dogs (1992)
## 22266 Weekend at Bernie's (1989)
## 22827 Return of the Pink Panther, The (1974)
## 23064 Jean de Florette (1986)
## 23127 Manon of the Spring (Manon des sources) (1986)
## 23188 Private Benjamin (1980)
## 23317 Monty Python and the Holy Grail (1974)
## 23587 Wrong Trousers, The (1993)
## 23703 Cinema Paradiso (1988)
## 23960 Empire Strikes Back, The (1980)
## 24314 Princess Bride, The (1987)
## 24666 Raiders of the Lost Ark (1981)
## 25039 Brazil (1985)
## 25258 Aliens (1986)
## 26002 Apocalypse Now (1979)
## 26308 Return of the Jedi (1983)
## 27218 Army of Darkness (1993)
## 27610 Blues Brothers, The (1980)
## 28194 Grand Day Out, A (1992)
## 28272 Henry V (1989)
## 28445 Amadeus (1984)
## 28798 Right Stuff, The (1983)
## 29240 Terminator, The (1984)
## 29981 Nikita (La Femme Nikita) (1990)
## 30472 Evil Dead II (1987)
## 30611 Groundhog Day (1993)
## 30865 Unforgiven (1992)
## 31089 Back to the Future (1985)
## 31543 Cyrano de Bergerac (1990)
## 31651 Young Frankenstein (1974)
## 31856 This Is Spinal Tap (1984)
## 32080 Indiana Jones and the Last Crusade (1989)
## 32378 M*A*S*H (1970)
## 32777 Pink Floyd - The Wall (1982)
## 33161 When Harry Met Sally... (1989)
## 33688 Nightmare on Elm Street, A (1984)
## 34016 Star Trek: First Contact (1996)
## 34423 Ridicule (1996)
## 34607 Die Hard 2 (1990)
## 34775 Star Trek VI: The Undiscovered Country (1991)
## 34955 Star Trek: The Wrath of Khan (1982)
## 35181 Star Trek III: The Search for Spock (1984)
## 35363 Star Trek IV: The Voyage Home (1986)
## 35540 Batman Returns (1992)
## 35779 Under Siege (1992)
## 35949 Jaws (1975)
## 36213 Mars Attacks! (1996)
## 36381 Citizen Ruth (1996)
## 36872 Raising Arizona (1987)
## 37088 Sneakers (1992)
## 37249 Beavis and Butt-head Do America (1996)
## 37530 Kolya (1996)
## 38190 Grosse Pointe Blank (1997)
## 38349 Austin Powers: International Man of Mystery (1997)
## 38496 Fifth Element, The (1997)
## 38882 Batman & Robin (1997)
## 39199 Men in Black (1997)
## 39981 George of the Jungle (1997)
## 40513 Hunt for Red October, The (1990)
## 40821 Full Monty, The (1997)
## 41640 Heat (1995)
## 41857 Sabrina (1995)
## 42063 Sense and Sensibility (1995)
## 43226 Emma (1996)
## 43411 Tin Cup (1996)
## 44406 Scream (1996)
## 45042 Fierce Creatures (1997)
## 45136 Absolute Power (1997)
## 45637 Liar Liar (1997)
## 46872 In & Out (1997)
## 49290 Everyone Says I Love You (1996)
## 49485 Mother (1996)
## 52043 Man Who Knew Too Little, The (1997)
## 53421 Sudden Death (1995)
## 53466 Ace Ventura: When Nature Calls (1995)
## 53631 Clueless (1995)
## 53768 Bio-Dome (1996)
## 53959 Jeffrey (1995)
## 53992 Judge Dredd (1995)
## 54022 Mighty Morphin Power Rangers: The Movie (1995)
## 54036 Showgirls (1995)
## 54204 Tales From the Crypt Presents: Demon Knight (1995)
## 54266 Star Trek: Generations (1994)
## 54480 Adventures of Priscilla, Queen of the Desert, The (1994)
## 54611 Naked Gun 33 1/3: The Final Insult (1994)
## 54715 True Lies (1994)
## 54893 Addams Family Values (1993)
## 55028 Beverly Hills Cop III (1994)
## 55079 Fear of a Black Hat (1993)
## 55102 Last Action Hero (1993)
## 55264 Mrs. Doubtfire (1993)
## 55428 Robin Hood: Men in Tights (1993)
## 55489 Serial Mom (1994)
## 55531 Striking Distance (1993)
## 55545 Super Mario Bros. (1993)
## 55583 Three Musketeers, The (1993)
## 55695 Brady Bunch Movie, The (1995)
## 55973 Batman (1989)
## 56329 Mission: Impossible (1996)
## 56633 Spy Hard (1996)
## 56691 Close Shave, A (1995)
## 56885 Kingpin (1996)
## 57060 Nutty Professor, The (1996)
## 57193 Very Brady Sequel, A (1996)
## 57279 Tales from the Crypt Presents: Bordello of Blood (1996)
## 57379 Apple Dumpling Gang, The (1975)
## 57572 Cinderella (1950)
## 57954 William Shakespeare's Romeo and Juliet (1996)
## 58399 Bob Roberts (1992)
## 58741 Harold and Maude (1971)
## 58857 Day the Earth Stood Still, The (1951)
## 59061 Highlander (1986)
## 59223 Fantasia (1940)
## 59405 Heathers (1989)
## 59536 Forbidden Planet (1956)
## 59827 American Werewolf in London, An (1981)
## 60161 Blob, The (1958)
## 60467 Star Trek: The Motion Picture (1979)
## 60573 Star Trek V: The Final Frontier (1989)
## 60661 Grease (1978)
## 60918 Jackie Chan's First Strike (1996)
## 61044 Beverly Hills Ninja (1997)
## 61259 Smoke (1995)
## 61360 Like Water For Chocolate (Como agua para chocolate) (1992)
## 61547 Vanya on 42nd Street (1994)
## 61585 Jungle Book, The (1994)
## 61832 Short Cuts (1993)
## 61910 Tombstone (1993)
## 62255 Dragonheart (1996)
## 62547 Dr. Strangelove or: How I Learned to Stop Worrying and Love the Bomb (1963)
## 63521 North by Northwest (1959)
## 63750 Some Like It Hot (1959)
## 64369 Sabrina (1954)
## 64432 Roman Holiday (1953)
## 64559 Notorious (1946)
## 64610 To Catch a Thief (1955)
## 64668 Adventures of Robin Hood, The (1938)
## 65498 Dumbo (1941)
## 65604 Bananas (1971)
## 66311 My Left Foot (1989)
## 66870 Annie Hall (1977)
## 67051 Boot, Das (1981)
## 67289 Manhattan (1979)
## 68548 My Life as a Dog (Mitt liv som hund) (1985)
## 68639 Man Who Would Be King, The (1975)
## 68833 Kama Sutra: A Tale of Love (1996)
## 68867 Traveller (1997)
## 69137 Mortal Kombat (1995)
## 69264 Things to Do in Denver when You're Dead (1995)
## 69404 Broken Arrow (1996)
## 69594 Young Poisoner's Handbook, The (1995)
## 69760 Die Hard: With a Vengeance (1995)
## 70038 Waterworld (1995)
## 70126 Wild Bill (1995)
## 70171 Heavenly Creatures (1994)
## 70451 Quick and the Dead, The (1995)
## 70611 Clear and Present Danger (1994)
## 71132 Another Stakeout (1993)
## 71298 Cliffhanger (1993)
## 71380 Coneheads (1993)
## 71428 Demolition Man (1993)
## 71943 Terminal Velocity (1994)
## 72297 Primal Fear (1996)
## 72446 Heavy (1995)
## 72705 Eraser (1996)
## 73732 Night of the Living Dead (1968)
## 74022 Three Caballeros, The (1945)
## 74056 Sword in the Stone, The (1963)
## 74453 Great Race, The (1965)
## 74793 Escape from New York (1981)
## 74904 Return of Martin Guerre, The (Retour de Martin Guerre, Le) (1982)
## 75201 Thin Blue Line, The (1988)
## 75437 Once Upon a Time in America (1984)
## 75746 Rosencrantz and Guildenstern Are Dead (1990)
## 75882 Chinatown (1974)
## 76496 Arsenic and Old Lace (1944)
## 76625 Fried Green Tomatoes (1991)
## 76848 Somewhere in Time (1980)
## 76935 Being There (1979)
## 77171 Blood For Dracula (Andy Warhol's Dracula) (1974)
## 77218 Bride of Frankenstein (1935)
## 77834 Conan the Barbarian (1981)
## 78134 In the Line of Fire (1993)
## 78303 Executive Decision (1996)
## 78478 McHale's Navy (1997)
## 79414 Barcelona (1994)
## 79831 Strictly Ballroom (1992)
## 79933 Better Off Dead... (1985)
## 80008 Tin Men (1987)
## 80063 Othello (1995)
## 80380 Canadian Bacon (1994)
## 80502 Mallrats (1995)
## 80714 Exit to Eden (1994)
## 80757 Immortal Beloved (1994)
## 80816 Junior (1994)
## 81036 Dave (1993)
## 81559 Pretty Woman (1990)
## 81699 Jane Eyre (1996)
## 81768 Last Supper, The (1995)
## 82137 Michael Collins (1996)
## 82244 Real Genius (1985)
## 82984 Tomorrow Never Dies (1997)
## 83154 Burnt By the Sun (1994)
## 83482 Fair Game (1995)
## 83503 Screamers (1995)
## 83614 Beautiful Girls (1996)
## 83736 Happy Gilmore (1996)
## 83854 If Lucy Fell (1996)
## 84274 Don Juan DeMarco (1995)
## 84339 Drop Zone (1994)
## 84382 Dumb & Dumber (1994)
## 84454 French Kiss (1995)
## 84649 Swimming with Sharks (1995)
## 84782 Bullets Over Broadway (1994)
## 84963 Timecop (1994)
## 85053 Hard Target (1993)
## 85092 Jimmy Hollywood (1994)
## 85104 Manhattan Murder Mystery (1993)
## 85226 Rising Sun (1993)
## 85270 Shadow, The (1994)
## 85626 Space Jam (1996)
## 85747 Mulholland Falls (1996)
## 85810 Great White Hype, The (1996)
## 85956 Phantom, The (1996)
## 86029 Daylight (1996)
## 86140 Escape from L.A. (1996)
## 86214 Bogus (1996)
## 86240 Bulletproof (1996)
## 86444 Glimmer Man, The (1996)
## 86511 Shaggy Dog, The (1959)
## 86629 That Thing You Do! (1996)
## 86929 Braindead (1992)
## 86940 Bad Taste (1987)
## 87098 Jingle All the Way (1996)
## 87157 My Fellow Americans (1996)
## 87358 Fools Rush In (1997)
## 87411 Vegas Vacation (1997)
## 88219 Mortal Kombat: Annihilation (1997)
## 88612 Mr. Magoo (1997)
## 88882 City of Lost Children, The (1995)
## 89015 Dead Man (1995)
## 89248 Down Periscope (1996)
## 89616 First Kid (1996)
## 89903 Airheads (1994)
## 90108 Charade (1963)
## 90157 Fox and the Hound, The (1981)
## 90232 Booty Call (1997)
## 90420 Blue in the Face (1995)
## 90888 Winnie the Pooh and the Blustery Day (1968)
## 90959 Mediterraneo (1991)
## 91099 Solo (1996)
## 91120 Substitute, The (1996)
## 91164 Heaven's Prisoners (1996)
## 91255 Maximum Risk (1996)
## 91504 Anna Karenina (1997)
## 91552 Head Above Water (1996)
## 91694 Cabin Boy (1994)
## 91719 Lightning Jack (1994)
## 91733 Stupids, The (1996)
## 91812 Waiting for Guffman (1996)
## 92020 2 Days in the Valley (1996)
## 92118 Private Parts (1997)
## 92489 Trees Lounge (1996)
## 92749 Fire Down Below (1997)
## 92787 Shooter, The (1995)
## 92837 Grumpier Old Men (1995)
## 92955 Beverly Hillbillies, The (1993)
## 92981 Little Big League (1994)
## 93034 Quest, The (1996)
## 93071 Cool Runnings (1993)
## 93150 Grease 2 (1982)
## 93208 Hamlet (1996)
## 93544 Multiplicity (1996)
## 93661 She's the One (1996)
## 93838 Dracula: Dead and Loving It (1995)
## 93966 Don't Be a Menace to South Central While Drinking Your Juice in the Hood (1996)
## 94265 Living in Oblivion (1995)
## 94303 Pyromaniac's Love Story, A (1995)
## 94626 Bloodsport 2 (1995)
## 94635 Double Team (1997)
## 94782 Live Nude Girls (1995)
## 94821 High School High (1996)
## 95068 Feast of July (1995)
## 95108 Tank Girl (1995)
## 95167 Mrs. Parker and the Vicious Circle (1994)
## 95267 Up in Smoke (1978)
## 95366 I'm Not Rappaport (1996)
## 95383 Umbrellas of Cherbourg, The (Parapluies de Cherbourg, Les) (1964)
## 95527 Feeling Minnesota (1996)
## 95558 Escape to Witch Mountain (1975)
## 95796 When We Were Kings (1996)
## 95928 Original Gangstas (1996)
## 96076 Phat Beach (1996)
## 96186 Spanking the Monkey (1994)
## 96288 Major Payne (1994)
## 96315 I Love Trouble (1994)
## 96323 Low Down Dirty Shame, A (1994)
## 96334 Cops and Robbersons (1994)
## 96379 In the Army Now (1994)
## 96525 Strawberry and Chocolate (Fresa y chocolate) (1993)
## 96669 Secret Agent, The (1996)
## 96679 Amos & Andrew (1993)
## 96732 Mixed Nuts (1994)
## 96821 Barb Wire (1996)
## 96920 Goofy Movie, A (1995)
## 97036 Scout, The (1994)
## 97113 Under Siege 2: Dark Territory (1995)
## 97163 Ready to Wear (Pret-A-Porter) (1994)
## 97184 Marked for Death (1990)
## 97251 Cutthroat Island (1995)
## 97269 Ghost in the Shell (Kokaku kidotai) (1995)
## 97301 Old Lady Who Walked in the Sea, The (Vieille qui marchait dans la mer, La) (1991)
## 97318 Metro (1997)
## 97373 Bad Girls (1994)
## 97412 Best of the Best 3: No Turning Back (1995)
## 97548 Bread and Chocolate (Pane e cioccolata) (1973)
## 97618 North (1994)
## 97646 Robocop 3 (1993)
## 97834 Denise Calls Up (1995)
## 97852 Celtic Pride (1996)
## 97972 National Lampoon's Senior Trip (1995)
## 98004 Pompatus of Love, The (1996)
## 98077 Open Season (1996)
## 98141 Kazaam (1996)
## 98217 Search for One-eye Jimmy, The (1996)
## 98262 Meet Wally Sparks (1997)
## 98414 Ciao, Professore! (1993)
## 98484 Barbarella (1968)
## 98516 Street Fighter (1994)
## 98608 SubUrbia (1997)
## 98645 Steal Big, Steal Little (1995)
## 98654 House Party 3 (1994)
## 98700 That Darn Cat! (1965)
## 98902 Herbie Rides Again (1974)
## 98913 S.F.W. (1994)
## 98927 Jerky Boys, The (1994)
## 98930 Colonel Chabert, Le (1994)
## 98934 Girl in the Cadillac (1995)
## 98935 Even Cowgirls Get the Blues (1993)
## 98940 Germinal (1993)
## 98944 Chasers (1994)
## 98949 Fausto (1993)
## 98952 Tough and Deadly (1995)
## 98954 Window to Paris (1994)
## 98955 Modern Affair, A (1995)
## 98956 Mostro, Il (1994)
## 98957 Flirt (1995)
## 98962 Carpool (1996)
## 98967 Line King: Al Hirschfeld, The (1996)
## 98969 Farmer & Chase (1995)
## 98970 Grosse Fatigue (1994)
## 98974 Santa with Muscles (1996)
## 98976 Prisoner of the Mountains (Kavkazsky Plennik) (1996)
## 129 Toy Story (1995)
## 487 GoldenEye (1995)
## 609 Four Rooms (1995)
## 726 Get Shorty (1995)
## 907 Copycat (1995)
## 1122 Twelve Monkeys (1995)
## 1450 Babe (1995)
## 1698 Dead Man Walking (1995)
## 2066 Seven (Se7en) (1995)
## 2308 Usual Suspects, The (1995)
## 2557 Mighty Aphrodite (1995)
## 3607 Braveheart (1995)
## 4908 Batman Forever (1995)
## 5070 Crimson Tide (1995)
## 5294 Desperado (1995)
## 5431 Net, The (1995)
## 5626 To Wong Foo, Thanks for Everything! Julie Newmar (1995)
## 6567 Star Wars (1977)
## 7191 Natural Born Killers (1994)
## 7317 Outbreak (1995)
## 7662 Pulp Fiction (1994)
## 8018 Quiz Show (1994)
## 8392 Stargate (1994)
## 9004 While You Were Sleeping (1995)
## 9153 Ace Ventura: Pet Detective (1994)
## 9262 Crow, The (1994)
## 9461 Forrest Gump (1994)
## 9758 Four Weddings and a Funeral (1994)
## 9988 Lion King, The (1994)
## 10183 Mask, The (1994)
## 10313 Maverick (1994)
## 10434 Carlito's Way (1993)
## 10522 Firm, The (1993)
## 10760 Fugitive, The (1993)
## 11013 Hot Shots! Part Deux (1993)
## 11248 Jurassic Park (1993)
## 11730 Remains of the Day, The (1993)
## 12031 Sleepless in Seattle (1993)
## 12486 So I Married an Axe Murderer (1993)
## 12734 True Romance (1993)
## 12954 Home Alone (1990)
## 13106 Aladdin (1992)
## 13357 Terminator 2: Judgment Day (1991)
## 13944 Silence of the Lambs, The (1991)
## 14257 Snow White and the Seven Dwarfs (1937)
## 14533 Fargo (1996)
## 14982 Aristocats, The (1970)
## 15028 All Dogs Go to Heaven 2 (1996)
## 15534 Truth About Cats & Dogs, The (1996)
## 15732 Flipper (1996)
## 16068 Rock, The (1996)
## 16422 Twister (1996)
## 17612 Phenomenon (1996)
## 17816 Spitfire Grill, The (1996)
## 17993 Godfather, The (1972)
## 18311 Supercop (1992)
## 18672 Wizard of Oz, The (1939)
## 19299 2001: A Space Odyssey (1968)
## 19842 Homeward Bound: The Incredible Journey (1993)
## 19973 Bedknobs and Broomsticks (1971)
## 20301 Die Hard (1988)
## 20500 Lawnmower Man, The (1992)
## 21527 Fish Called Wanda, A (1988)
## 21902 Dirty Dancing (1987)
## 22023 Reservoir Dogs (1992)
## 22157 Platoon (1986)
## 22267 Weekend at Bernie's (1989)
## 22334 Basic Instinct (1992)
## 22541 Top Gun (1986)
## 22732 On Golden Pond (1981)
## 23189 Private Benjamin (1980)
## 23961 Empire Strikes Back, The (1980)
## 24315 Princess Bride, The (1987)
## 24667 Raiders of the Lost Ark (1981)
## 25259 Aliens (1986)
## 26003 Apocalypse Now (1979)
## 26309 Return of the Jedi (1983)
## 26738 GoodFellas (1990)
## 26975 Alien (1979)
## 29241 Terminator, The (1984)
## 29767 Graduate, The (1967)
## 30294 Shining, The (1980)
## 30612 Groundhog Day (1993)
## 30866 Unforgiven (1992)
## 31090 Back to the Future (1985)
## 32081 Indiana Jones and the Last Crusade (1989)
## 32924 Field of Dreams (1989)
## 33162 When Harry Met Sally... (1989)
## 33398 Bram Stoker's Dracula (1992)
## 33531 Cape Fear (1991)
## 33689 Nightmare on Elm Street, A (1984)
## 33789 Mirror Has Two Faces, The (1996)
## 34017 Star Trek: First Contact (1996)
## 34492 101 Dalmatians (1996)
## 34608 Die Hard 2 (1990)
## 34776 Star Trek VI: The Undiscovered Country (1991)
## 34956 Star Trek: The Wrath of Khan (1982)
## 35182 Star Trek III: The Search for Spock (1984)
## 35364 Star Trek IV: The Voyage Home (1986)
## 35541 Batman Returns (1992)
## 35671 Young Guns (1988)
## 35780 Under Siege (1992)
## 35950 Jaws (1975)
## 36214 Mars Attacks! (1996)
## 36526 Jerry Maguire (1996)
## 37089 Sneakers (1992)
## 37403 Last of the Mohicans, The (1992)
## 37854 Devil's Own, The (1997)
## 40514 Hunt for Red October, The (1990)
## 41858 Sabrina (1995)
## 42357 Leaving Las Vegas (1995)
## 43013 Time to Kill, A (1996)
## 43412 Tin Cup (1996)
## 43855 English Patient, The (1996)
## 44407 Scream (1996)
## 45638 Liar Liar (1997)
## 48318 Titanic (1997)
## 48615 Apt Pupil (1998)
## 48762 As Good As It Gets (1997)
## 49029 Schindler's List (1993)
## 49658 Murder at 1600 (1997)
## 49883 Dante's Peak (1997)
## 50094 Lost Highway (1997)
## 53467 Ace Ventura: When Nature Calls (1995)
## 53632 Clueless (1995)
## 54205 Tales From the Crypt Presents: Demon Knight (1995)
## 54267 Star Trek: Generations (1994)
## 54378 Muriel's Wedding (1994)
## 54612 Naked Gun 33 1/3: The Final Insult (1994)
## 54716 True Lies (1994)
## 54979 Age of Innocence, The (1993)
## 55029 Beverly Hills Cop III (1994)
## 55059 Black Beauty (1994)
## 55167 Man Without a Face, The (1993)
## 55265 Mrs. Doubtfire (1993)
## 55797 Ghost (1990)
## 55974 Batman (1989)
## 56146 Pinocchio (1940)
## 56330 Mission: Impossible (1996)
## 56796 Jack (1996)
## 57061 Nutty Professor, The (1996)
## 57414 Old Yeller (1957)
## 57705 Mary Poppins (1964)
## 57863 Alice in Wonderland (1951)
## 58142 E.T. the Extra-Terrestrial (1982)
## 59062 Highlander (1986)
## 60373 Omen, The (1976)
## 60468 Star Trek: The Motion Picture (1979)
## 60662 Grease (1978)
## 60801 Jaws 2 (1978)
## 61586 Jungle Book, The (1994)
## 61763 Rudy (1993)
## 62050 Courage Under Fire (1996)
## 62256 Dragonheart (1996)
## 62986 First Wives Club, The (1996)
## 63907 Casablanca (1942)
## 64370 Sabrina (1954)
## 65010 It's a Wonderful Life (1946)
## 65418 Cat on a Hot Tin Roof (1958)
## 65988 Streetcar Named Desire, A (1951)
## 66129 People vs. Larry Flynt, The (1996)
## 68264 Gandhi (1982)
## 68436 Killing Fields, The (1984)
## 68985 Anastasia (1997)
## 69094 Money Train (1995)
## 69186 Pocahontas (1995)
## 69265 Things to Do in Denver when You're Dead (1995)
## 69405 Broken Arrow (1996)
## 69761 Die Hard: With a Vengeance (1995)
## 70039 Waterworld (1995)
## 70255 Interview with the Vampire (1994)
## 70612 Clear and Present Danger (1994)
## 70847 Speed (1994)
## 71133 Another Stakeout (1993)
## 71243 City Slickers II: The Legend of Curly's Gold (1994)
## 71299 Cliffhanger (1993)
## 71832 Secret Garden, The (1993)
## 71904 Son in Law (1993)
## 71944 Terminal Velocity (1994)
## 72036 Beauty and the Beast (1991)
## 72470 Fan, The (1996)
## 73423 Father of the Bride (1950)
## 73835 Extreme Measures (1996)
## 74391 Victor/Victoria (1982)
## 74504 Crying Game, The (1992)
## 76055 Stand by Me (1986)
## 76626 Fried Green Tomatoes (1991)
## 76936 Being There (1979)
## 77341 Cape Fear (1962)
## 77645 Volcano (1997)
## 78707 Seven Years in Tibet (1997)
## 78881 American President, The (1995)
## 79015 Casino (1995)
## 79234 Basketball Diaries, The (1995)
## 79304 Little Women (1994)
## 80156 To Die For (1995)
## 80558 Nine Months (1995)
## 80610 Boys on the Side (1995)
## 80715 Exit to Eden (1994)
## 80817 Junior (1994)
## 80873 Nell (1994)
## 80966 Corrina, Corrina (1994)
## 81255 Philadelphia (1993)
## 81375 Shadowlands (1993)
## 81560 Pretty Woman (1990)
## 81878 Ransom (1996)
## 82245 Real Genius (1985)
## 82519 Saint, The (1997)
## 82843 Amistad (1997)
## 82985 Tomorrow Never Dies (1997)
## 83250 Jumanji (1995)
## 83365 Father of the Bride Part II (1995)
## 83855 If Lucy Fell (1996)
## 83883 Boomerang (1992)
## 83987 Congo (1995)
## 84087 Johnny Mnemonic (1995)
## 84383 Dumb & Dumber (1994)
## 84455 French Kiss (1995)
## 84698 Tommy Boy (1995)
## 86630 That Thing You Do! (1996)
## 87259 Michael (1996)
## 89195 Unforgettable (1996)
## 89347 Craft, The (1996)
## 89687 Preacher's Wife, The (1996)
## 89984 What's Love Got to Do with It (1993)
## 90158 Fox and the Hound, The (1981)
## 91063 Fear (1996)
## 91121 Substitute, The (1996)
## 92328 Shiloh (1997)
## 92838 Grumpier Old Men (1995)
## 93072 Cool Runnings (1993)
## 93316 Forget Paris (1995)
## 93545 Multiplicity (1996)
## 93662 She's the One (1996)
## 93727 House Arrest (1996)
## 93797 Associate, The (1996)
## 94002 Adventures of Pinocchio, The (1996)
## 94079 Little Princess, A (1995)
## 94172 Balto (1995)
## 94905 Red Firecracker, Green Firecracker (1994)
## 95150 Cobb (1994)
## 95188 Faithful (1996)
## 95559 Escape to Witch Mountain (1975)
## 96153 Little Buddha (1993)
## 96324 Low Down Dirty Shame, A (1994)
## 96335 Cops and Robbersons (1994)
## 96697 Jade (1995)
## 96859 Assassins (1995)
## 96974 When a Man Loves a Woman (1994)
## 97905 Love Affair (1994)
## 98012 Palmetto (1998)
## 98401 M. Butterfly (1993)
## 98783 Madame Butterfly (1995)
## 98808 Margaret's Museum (1995)
## 98850 Little Princess, The (1939)
## 98877 Dead Presidents (1995)
## 98894 Reckless (1995)
## 39581 Contact (1997)
## 39982 George of the Jungle (1997)
## 41223 Starship Troopers (1997)
## 44408 Scream (1996)
## 44816 Evita (1996)
## 45639 Liar Liar (1997)
## 46497 Air Force One (1997)
## 46873 In & Out (1997)
## 47377 Fly Away Home (1996)
## 47868 FairyTale: A True Story (1997)
## 47952 Rainmaker, The (1997)
## 49659 Murder at 1600 (1997)
## 49884 Dante's Peak (1997)
## 50357 G.I. Jane (1997)
## 51070 Edge, The (1997)
## 51193 Kiss the Girls (1997)
## 51366 Game, The (1997)
## 51720 Bean (1997)
## 52044 Man Who Knew Too Little, The (1997)
## 68986 Anastasia (1997)
## 77962 I Know What You Did Last Summer (1997)
## 78708 Seven Years in Tibet (1997)
## 82520 Saint, The (1997)
## 87732 Excess Baggage (1997)
## 89815 Smile Like Yours, A (1997)
## 91467 Cats Don't Dance (1997)
## 39582 Contact (1997)
## 40287 In the Company of Men (1997)
## 40822 Full Monty, The (1997)
## 41224 Starship Troopers (1997)
## 44409 Scream (1996)
## 45640 Liar Liar (1997)
## 46498 Air Force One (1997)
## 47122 L.A. Confidential (1997)
## 47506 Ice Storm, The (1997)
## 47715 Devil's Advocate, The (1997)
## 49291 Everyone Says I Love You (1996)
## 50222 Crash (1996)
## 50532 Cop Land (1997)
## 51367 Game, The (1997)
## 51721 Bean (1997)
## 51887 Boogie Nights (1997)
## 52117 Alien: Resurrection (1997)
## 53233 Spawn (1997)
## 78594 Jackal, The (1997)
## 87837 Peacemaker, The (1997)
## 88220 Mortal Kombat: Annihilation (1997)
## 3465 Muppet Treasure Island (1996)
## 4052 Rumble in the Bronx (1995)
## 5742 Clerks (1994)
## 6341 I.Q. (1994)
## 6568 Star Wars (1977)
## 7663 Pulp Fiction (1994)
## 9759 Four Weddings and a Funeral (1994)
## 9989 Lion King, The (1994)
## 11479 Much Ado About Nothing (1993)
## 12596 Nightmare Before Christmas, The (1993)
## 13107 Aladdin (1992)
## 14534 Fargo (1996)
## 15329 Mystery Science Theater 3000: The Movie (1996)
## 17613 Phenomenon (1996)
## 21140 Willy Wonka and the Chocolate Factory (1971)
## 23318 Monty Python and the Holy Grail (1974)
## 24316 Princess Bride, The (1987)
## 25040 Brazil (1985)
## 27611 Blues Brothers, The (1980)
## 28983 Sting, The (1973)
## 30613 Groundhog Day (1993)
## 31091 Back to the Future (1985)
## 31652 Young Frankenstein (1974)
## 31857 This Is Spinal Tap (1984)
## 32082 Indiana Jones and the Last Crusade (1989)
## 32379 M*A*S*H (1970)
## 33163 When Harry Met Sally... (1989)
## 36873 Raising Arizona (1987)
## 44410 Scream (1996)
## 45137 Absolute Power (1997)
## 45641 Liar Liar (1997)
## 55266 Mrs. Doubtfire (1993)
## 56634 Spy Hard (1996)
## 56797 Jack (1996)
## 57194 Very Brady Sequel, A (1996)
## 59224 Fantasia (1940)
## 59406 Heathers (1989)
## 59645 Butch Cassidy and the Sundance Kid (1969)
## 60919 Jackie Chan's First Strike (1996)
## 72037 Beauty and the Beast (1991)
## 74057 Sword in the Stone, The (1963)
## 74141 Robin Hood: Prince of Thieves (1991)
## 76497 Arsenic and Old Lace (1944)
## 77526 Crucible, The (1996)
## 79832 Strictly Ballroom (1992)
## 81037 Dave (1993)
## 85627 Space Jam (1996)
## 86631 That Thing You Do! (1996)
## 87260 Michael (1996)
## 91902 Stealing Beauty (1996)
## 94511 Joe's Apartment (1996)
## 95189 Faithful (1996)
## 98936 Even Cowgirls Get the Blues (1993)
## 39583 Contact (1997)
## 39983 George of the Jungle (1997)
## 40288 In the Company of Men (1997)
## 40823 Full Monty, The (1997)
## 41071 Gattaca (1997)
## 41443 Good Will Hunting (1997)
## 43856 English Patient, The (1996)
## 44817 Evita (1996)
## 46499 Air Force One (1997)
## 46874 In & Out (1997)
## 47123 L.A. Confidential (1997)
## 47378 Fly Away Home (1996)
## 47507 Ice Storm, The (1997)
## 47600 Mrs. Brown (Her Majesty, Mrs. Brown) (1997)
## 47716 Devil's Advocate, The (1997)
## 47953 Rainmaker, The (1997)
## 48319 Titanic (1997)
## 48616 Apt Pupil (1998)
## 49292 Everyone Says I Love You (1996)
## 49660 Murder at 1600 (1997)
## 50095 Lost Highway (1997)
## 50743 Conspiracy Theory (1997)
## 51194 Kiss the Girls (1997)
## 51368 Game, The (1997)
## 51563 U Turn (1997)
## 51799 Mad City (1997)
## 51888 Boogie Nights (1997)
## 52217 Apostle, The (1997)
## 52279 Deconstructing Harry (1997)
## 52362 Jackie Brown (1997)
## 52487 Wag the Dog (1997)
## 69052 Mouse Hunt (1997)
## 77963 I Know What You Did Last Summer (1997)
## 78479 McHale's Navy (1997)
## 78709 Seven Years in Tibet (1997)
## 82521 Saint, The (1997)
## 82844 Amistad (1997)
## 82986 Tomorrow Never Dies (1997)
## 83185 Red Corner (1997)
## 87733 Excess Baggage (1997)
## 88133 Eve's Bayou (1997)
## 88578 Kundun (1997)
## 88668 Afterglow (1997)
## 88734 Oscar & Lucinda (1997)
## 89816 Smile Like Yours, A (1997)
## 8657 Shawshank Redemption, The (1994)
## 14535 Fargo (1996)
## 20935 Swingers (1996)
## 21141 Willy Wonka and the Chocolate Factory (1971)
## 23319 Monty Python and the Holy Grail (1974)
## 26976 Alien (1979)
## 27378 Psycho (1960)
## 28446 Amadeus (1984)
## 28984 Sting, The (1973)
## 29982 Nikita (La Femme Nikita) (1990)
## 31376 Patton (1970)
## 33164 When Harry Met Sally... (1989)
## 34018 Star Trek: First Contact (1996)
## 36527 Jerry Maguire (1996)
## 39584 Contact (1997)
## 40824 Full Monty, The (1997)
## 41072 Gattaca (1997)
## 42358 Leaving Las Vegas (1995)
## 43857 English Patient, The (1996)
## 44411 Scream (1996)
## 46500 Air Force One (1997)
## 47124 L.A. Confidential (1997)
## 48320 Titanic (1997)
## 49293 Everyone Says I Love You (1996)
## 52363 Jackie Brown (1997)
## 53008 One Flew Over the Cuckoo's Nest (1975)
## 60920 Jackie Chan's First Strike (1996)
## 66871 Annie Hall (1977)
## 68987 Anastasia (1997)
## 74248 Sleepers (1996)
## 77964 I Know What You Did Last Summer (1997)
## 88630 Big Lebowski, The (1998)
## 130 Toy Story (1995)
## 610 Four Rooms (1995)
## 727 Get Shorty (1995)
## 1123 Twelve Monkeys (1995)
## 2067 Seven (Se7en) (1995)
## 2558 Mighty Aphrodite (1995)
## 2733 Postino, Il (1994)
## 3167 French Twist (Gazon maudit) (1995)
## 3222 From Dusk Till Dawn (1996)
## 3385 Angels and Insects (1995)
## 3608 Braveheart (1995)
## 4272 Birdcage, The (1996)
## 4909 Batman Forever (1995)
## 5362 Doom Generation, The (1995)
## 5627 To Wong Foo, Thanks for Everything! Julie Newmar (1995)
## 5672 Billy Madison (1995)
## 5743 Clerks (1994)
## 5911 Dolores Claiborne (1994)
## 6109 Ed Wood (1994)
## 6569 Star Wars (1977)
## 7192 Natural Born Killers (1994)
## 7440 Professional, The (1994)
## 7664 Pulp Fiction (1994)
## 7947 Priest (1994)
## 9005 While You Were Sleeping (1995)
## 9760 Four Weddings and a Funeral (1994)
## 10184 Mask, The (1994)
## 10314 Maverick (1994)
## 10523 Firm, The (1993)
## 11095 Hudsucker Proxy, The (1994)
## 11249 Jurassic Park (1993)
## 11480 Much Ado About Nothing (1993)
## 11638 Ref, The (1994)
## 12032 Sleepless in Seattle (1993)
## 12265 Blade Runner (1982)
## 12487 So I Married an Axe Murderer (1993)
## 12597 Nightmare Before Christmas, The (1993)
## 13108 Aladdin (1992)
## 13358 Terminator 2: Judgment Day (1991)
## 13634 Dances with Wolves (1990)
## 14258 Snow White and the Seven Dwarfs (1937)
## 14536 Fargo (1996)
## 14913 Heavy Metal (1981)
## 15199 Moll Flanders (1996)
## 15535 Truth About Cats & Dogs, The (1996)
## 15880 Cold Comfort Farm (1995)
## 16069 Rock, The (1996)
## 16833 Independence Day (ID4) (1996)
## 17272 Frighteners, The (1996)
## 17614 Phenomenon (1996)
## 17994 Godfather, The (1972)
## 18673 Wizard of Oz, The (1939)
## 18899 Gone with the Wind (1939)
## 19640 Big Night (1996)
## 19788 Love Bug, The (1969)
## 19974 Bedknobs and Broomsticks (1971)
## 20075 Sound of Music, The (1965)
## 20302 Die Hard (1988)
## 20610 Long Kiss Goodnight, The (1996)
## 21142 Willy Wonka and the Chocolate Factory (1971)
## 21528 Fish Called Wanda, A (1988)
## 21751 Monty Python's Life of Brian (1979)
## 21903 Dirty Dancing (1987)
## 22268 Weekend at Bernie's (1989)
## 22542 Top Gun (1986)
## 22937 Abyss, The (1989)
## 23190 Private Benjamin (1980)
## 23320 Monty Python and the Holy Grail (1974)
## 23588 Wrong Trousers, The (1993)
## 23812 Delicatessen (1991)
## 23962 Empire Strikes Back, The (1980)
## 24317 Princess Bride, The (1987)
## 24668 Raiders of the Lost Ark (1981)
## 25041 Brazil (1985)
## 25260 Aliens (1986)
## 25783 Clockwork Orange, A (1971)
## 26310 Return of the Jedi (1983)
## 26977 Alien (1979)
## 27219 Army of Darkness (1993)
## 27612 Blues Brothers, The (1980)
## 28195 Grand Day Out, A (1992)
## 28447 Amadeus (1984)
## 29242 Terminator, The (1984)
## 29527 Dead Poets Society (1989)
## 29983 Nikita (La Femme Nikita) (1990)
## 30614 Groundhog Day (1993)
## 31092 Back to the Future (1985)
## 31653 Young Frankenstein (1974)
## 31858 This Is Spinal Tap (1984)
## 32083 Indiana Jones and the Last Crusade (1989)
## 32380 M*A*S*H (1970)
## 32552 Unbearable Lightness of Being, The (1988)
## 32778 Pink Floyd - The Wall (1982)
## 32925 Field of Dreams (1989)
## 33165 When Harry Met Sally... (1989)
## 33399 Bram Stoker's Dracula (1992)
## 34424 Ridicule (1996)
## 34957 Star Trek: The Wrath of Khan (1982)
## 35183 Star Trek III: The Search for Spock (1984)
## 35542 Batman Returns (1992)
## 35672 Young Guns (1988)
## 35951 Jaws (1975)
## 36215 Mars Attacks! (1996)
## 36528 Jerry Maguire (1996)
## 37250 Beavis and Butt-head Do America (1996)
## 38191 Grosse Pointe Blank (1997)
## 38497 Fifth Element, The (1997)
## 38652 Shall We Dance? (1996)
## 39200 Men in Black (1997)
## 39585 Contact (1997)
## 40825 Full Monty, The (1997)
## 41444 Good Will Hunting (1997)
## 41859 Sabrina (1995)
## 42064 Sense and Sensibility (1995)
## 42579 Restoration (1995)
## 42648 Bed of Roses (1996)
## 42747 Up Close and Personal (1996)
## 43597 Secrets & Lies (1996)
## 44412 Scream (1996)
## 44818 Evita (1996)
## 45043 Fierce Creatures (1997)
## 46166 Face/Off (1997)
## 46875 In & Out (1997)
## 47894 Deceiver (1997)
## 48152 Midnight in the Garden of Good and Evil (1997)
## 48617 Apt Pupil (1998)
## 48763 As Good As It Gets (1997)
## 50223 Crash (1996)
## 50970 Desperate Measures (1998)
## 51006 187 (1997)
## 51644 Playing God (1997)
## 51800 Mad City (1997)
## 51889 Boogie Nights (1997)
## 52024 Critical Care (1997)
## 52280 Deconstructing Harry (1997)
## 52747 Wedding Singer, The (1998)
## 53009 One Flew Over the Cuckoo's Nest (1975)
## 53633 Clueless (1995)
## 53960 Jeffrey (1995)
## 54206 Tales From the Crypt Presents: Demon Knight (1995)
## 54379 Muriel's Wedding (1994)
## 54481 Adventures of Priscilla, Queen of the Desert, The (1994)
## 54894 Addams Family Values (1993)
## 55080 Fear of a Black Hat (1993)
## 55267 Mrs. Doubtfire (1993)
## 55408 Radioland Murders (1994)
## 55490 Serial Mom (1994)
## 55696 Brady Bunch Movie, The (1995)
## 55798 Ghost (1990)
## 55975 Batman (1989)
## 56147 Pinocchio (1940)
## 56331 Mission: Impossible (1996)
## 56692 Close Shave, A (1995)
## 57062 Nutty Professor, The (1996)
## 57280 Tales from the Crypt Presents: Bordello of Blood (1996)
## 57479 Parent Trap, The (1961)
## 57706 Mary Poppins (1964)
## 57955 William Shakespeare's Romeo and Juliet (1996)
## 58143 E.T. the Extra-Terrestrial (1982)
## 58400 Bob Roberts (1992)
## 58742 Harold and Maude (1971)
## 59063 Highlander (1986)
## 59225 Fantasia (1940)
## 59407 Heathers (1989)
## 60663 Grease (1978)
## 60921 Jackie Chan's First Strike (1996)
## 61260 Smoke (1995)
## 61361 Like Water For Chocolate (Como agua para chocolate) (1992)
## 61587 Jungle Book, The (1994)
## 62257 Dragonheart (1996)
## 62404 James and the Giant Peach (1996)
## 62764 Trainspotting (1996)
## 62987 First Wives Club, The (1996)
## 63126 Matilda (1996)
## 63908 Casablanca (1942)
## 66705 Wings of Desire (1987)
## 68265 Gandhi (1982)
## 68886 Addicted to Love (1997)
## 68949 My Own Private Idaho (1991)
## 69406 Broken Arrow (1996)
## 69916 Species (1995)
## 70040 Waterworld (1995)
## 70256 Interview with the Vampire (1994)
## 71027 Wolf (1994)
## 71220 Boxing Helena (1993)
## 71381 Coneheads (1993)
## 72038 Beauty and the Beast (1991)
## 72562 Hunchback of Notre Dame, The (1996)
## 72706 Eraser (1996)
## 74249 Sleepers (1996)
## 74392 Victor/Victoria (1982)
## 74794 Escape from New York (1981)
## 75000 Cook the Thief His Wife & Her Lover, The (1989)
## 75123 Grifters, The (1990)
## 75747 Rosencrantz and Guildenstern Are Dead (1990)
## 76056 Stand by Me (1986)
## 76412 Pump Up the Volume (1990)
## 78051 Rocket Man (1997)
## 78595 Jackal, The (1997)
## 79461 Widows' Peak (1994)
## 79479 House of the Spirits, The (1993)
## 79658 Enchanted April (1991)
## 79833 Strictly Ballroom (1992)
## 79934 Better Off Dead... (1985)
## 80503 Mallrats (1995)
## 80652 Circle of Friends (1995)
## 80818 Junior (1994)
## 81038 Dave (1993)
## 81193 Made in America (1993)
## 81446 Sirens (1994)
## 81497 Threesome (1994)
## 81561 Pretty Woman (1990)
## 81769 Last Supper, The (1995)
## 81879 Ransom (1996)
## 82246 Real Genius (1985)
## 82369 Benny & Joon (1993)
## 82764 MatchMaker, The (1997)
## 83547 Nick of Time (1995)
## 83615 Beautiful Girls (1996)
## 83737 Happy Gilmore (1996)
## 83909 Man of the Year (1995)
## 83939 Casper (1995)
## 84088 Johnny Mnemonic (1995)
## 84275 Don Juan DeMarco (1995)
## 84456 French Kiss (1995)
## 84699 Tommy Boy (1995)
## 84783 Bullets Over Broadway (1994)
## 85011 In the Mouth of Madness (1995)
## 85105 Manhattan Murder Mystery (1993)
## 85427 One Fine Day (1996)
## 85536 Girl 6 (1996)
## 85566 Eddie (1996)
## 85697 Mrs. Winterbourne (1996)
## 85811 Great White Hype, The (1996)
## 87028 Night on Earth (1991)
## 88037 Telling Lies in America (1997)
## 88050 Year of the Horse (1997)
## 88189 One Night Stand (1997)
## 88735 Oscar & Lucinda (1997)
## 89122 White Squall (1996)
## 89443 Harriet the Spy (1996)
## 89499 Chain Reaction (1996)
## 89570 Island of Dr. Moreau, The (1996)
## 89688 Preacher's Wife, The (1996)
## 90159 Fox and the Hound, The (1981)
## 90287 How to Make an American Quilt (1995)
## 90421 Blue in the Face (1995)
## 90497 Before Sunrise (1995)
## 90889 Winnie the Pooh and the Blustery Day (1968)
## 91396 Beautician and the Beast, The (1997)
## 91577 Hercules (1997)
## 92248 Romy and Michele's High School Reunion (1997)
## 93073 Cool Runnings (1993)
## 93173 Switchback (1997)
## 93209 Hamlet (1996)
## 93546 Multiplicity (1996)
## 93798 Associate, The (1996)
## 93858 Now and Then (1995)
## 94003 Adventures of Pinocchio, The (1996)
## 94397 Reality Bites (1994)
## 94454 Man of No Importance, A (1994)
## 94512 Joe's Apartment (1996)
## 94733 Pete's Dragon (1977)
## 94942 Six Degrees of Separation (1993)
## 95031 Firestorm (1998)
## 95168 Mrs. Parker and the Vicious Circle (1994)
## 95268 Up in Smoke (1978)
## 95317 Some Kind of Wonderful (1987)
## 95560 Escape to Witch Mountain (1975)
## 95763 Road to Wellville, The (1994)
## 96336 Cops and Robbersons (1994)
## 96499 Once Were Warriors (1994)
## 96623 Maybe, Maybe Not (Bewegte Mann, Der) (1994)
## 97164 Ready to Wear (Pret-A-Porter) (1994)
## 97252 Cutthroat Island (1995)
## 97530 Star Maps (1997)
## 97714 Gang Related (1997)
## 97811 Shall We Dance? (1937)
## 97835 Denise Calls Up (1995)
## 98058 Horse Whisperer, The (1998)
## 98252 Cement Garden, The (1993)
## 98485 Barbarella (1968)
## 98981 Naked in New York (1994)
## 98983 Gold Diggers: The Secret of Bear Mountain (1995)
## 98993 Bewegte Mann, Der (1994)
## 131 Toy Story (1995)
## 728 Get Shorty (1995)
## 1699 Dead Man Walking (1995)
## 2068 Seven (Se7en) (1995)
## 4683 Apollo 13 (1995)
## 5542 Strange Days (1995)
## 6570 Star Wars (1977)
## 7665 Pulp Fiction (1994)
## 8658 Shawshank Redemption, The (1994)
## 12735 True Romance (1993)
## 13945 Silence of the Lambs, The (1991)
## 14537 Fargo (1996)
## 15247 Kids in the Hall: Brain Candy (1996)
## 15536 Truth About Cats & Dogs, The (1996)
## 16070 Rock, The (1996)
## 16834 Independence Day (ID4) (1996)
## 22024 Reservoir Dogs (1992)
## 23321 Monty Python and the Holy Grail (1974)
## 26311 Return of the Jedi (1983)
## 30295 Shining, The (1980)
## 30473 Evil Dead II (1987)
## 31654 Young Frankenstein (1974)
## 33532 Cape Fear (1991)
## 34019 Star Trek: First Contact (1996)
## 36216 Mars Attacks! (1996)
## 36529 Jerry Maguire (1996)
## 37251 Beavis and Butt-head Do America (1996)
## 38062 Chasing Amy (1997)
## 38192 Grosse Pointe Blank (1997)
## 38350 Austin Powers: International Man of Mystery (1997)
## 38498 Fifth Element, The (1997)
## 38728 Lost World: Jurassic Park, The (1997)
## 39201 Men in Black (1997)
## 42359 Leaving Las Vegas (1995)
## 45138 Absolute Power (1997)
## 45642 Liar Liar (1997)
## 46167 Face/Off (1997)
## 46876 In & Out (1997)
## 48321 Titanic (1997)
## 50533 Cop Land (1997)
## 51890 Boogie Nights (1997)
## 52364 Jackie Brown (1997)
## 52488 Wag the Dog (1997)
## 58465 Transformers: The Movie, The (1986)
## 61261 Smoke (1995)
## 62988 First Wives Club, The (1996)
## 69407 Broken Arrow (1996)
## 72298 Primal Fear (1996)
## 75748 Rosencrantz and Guildenstern Are Dead (1990)
## 77965 I Know What You Did Last Summer (1997)
## 79935 Better Off Dead... (1985)
## 81880 Ransom (1996)
## 82522 Saint, The (1997)
## 85428 One Fine Day (1996)
## 86632 That Thing You Do! (1996)
## 88374 Scream 2 (1997)
## 89249 Down Periscope (1996)
## 89936 With Honors (1994)
## 90422 Blue in the Face (1995)
## 92373 Con Air (1997)
## 94194 Bottle Rocket (1996)
## 2309 Usual Suspects, The (1995)
## 2559 Mighty Aphrodite (1995)
## 2954 Mr. Holland's Opus (1995)
## 3609 Braveheart (1995)
## 6571 Star Wars (1977)
## 8659 Shawshank Redemption, The (1994)
## 9462 Forrest Gump (1994)
## 13635 Dances with Wolves (1990)
## 13946 Silence of the Lambs, The (1991)
## 14538 Fargo (1996)
## 16835 Independence Day (ID4) (1996)
## 17995 Godfather, The (1972)
## 18674 Wizard of Oz, The (1939)
## 19076 Citizen Kane (1941)
## 19506 Mr. Smith Goes to Washington (1939)
## 22158 Platoon (1986)
## 24318 Princess Bride, The (1987)
## 24669 Raiders of the Lost Ark (1981)
## 25042 Brazil (1985)
## 25261 Aliens (1986)
## 25496 Good, The Bad and The Ugly, The (1966)
## 25632 12 Angry Men (1957)
## 26004 Apocalypse Now (1979)
## 26739 GoodFellas (1990)
## 28273 Henry V (1989)
## 29528 Dead Poets Society (1989)
## 29768 Graduate, The (1967)
## 30115 Bridge on the River Kwai, The (1957)
## 30296 Shining, The (1980)
## 30615 Groundhog Day (1993)
## 31377 Patton (1970)
## 32084 Indiana Jones and the Last Crusade (1989)
## 32381 M*A*S*H (1970)
## 32779 Pink Floyd - The Wall (1982)
## 33166 When Harry Met Sally... (1989)
## 34316 Sling Blade (1996)
## 35365 Star Trek IV: The Voyage Home (1986)
## 35952 Jaws (1975)
## 36530 Jerry Maguire (1996)
## 39586 Contact (1997)
## 40826 Full Monty, The (1997)
## 41445 Good Will Hunting (1997)
## 42360 Leaving Las Vegas (1995)
## 43858 English Patient, The (1996)
## 44819 Evita (1996)
## 45643 Liar Liar (1997)
## 46501 Air Force One (1997)
## 47508 Ice Storm, The (1997)
## 48875 In the Name of the Father (1993)
## 49030 Schindler's List (1993)
## 50534 Cop Land (1997)
## 51891 Boogie Nights (1997)
## 52281 Deconstructing Harry (1997)
## 52365 Jackie Brown (1997)
## 53010 One Flew Over the Cuckoo's Nest (1975)
## 58543 To Kill a Mockingbird (1962)
## 59646 Butch Cassidy and the Sundance Kid (1969)
## 66565 Lawrence of Arabia (1962)
## 67052 Boot, Das (1981)
## 67550 Great Escape, The (1963)
## 68266 Gandhi (1982)
## 68437 Killing Fields, The (1984)
## 69266 Things to Do in Denver when You're Dead (1995)
## 72436 Stalingrad (1993)
## 74609 Sophie's Choice (1982)
## 75592 Glory (1989)
## 78544 Leave It to Beaver (1997)
## 81881 Ransom (1996)
## 87960 Soul Food (1997)
## 88134 Eve's Bayou (1997)
## 88579 Kundun (1997)
## 93210 Hamlet (1996)
## 94130 Koyaanisqatsi (1983)
## 98210 The Deadly Cure (1996)
## 132 Toy Story (1995)
## 1124 Twelve Monkeys (1995)
## 2955 Mr. Holland's Opus (1995)
## 3466 Muppet Treasure Island (1996)
## 4053 Rumble in the Bronx (1995)
## 15330 Mystery Science Theater 3000: The Movie (1996)
## 16071 Rock, The (1996)
## 16836 Independence Day (ID4) (1996)
## 17615 Phenomenon (1996)
## 20611 Long Kiss Goodnight, The (1996)
## 21143 Willy Wonka and the Chocolate Factory (1971)
## 34020 Star Trek: First Contact (1996)
## 38883 Batman & Robin (1997)
## 43014 Time to Kill, A (1996)
## 53422 Sudden Death (1995)
## 56332 Mission: Impossible (1996)
## 56886 Kingpin (1996)
## 60922 Jackie Chan's First Strike (1996)
## 62051 Courage Under Fire (1996)
## 62405 James and the Giant Peach (1996)
## 63127 Matilda (1996)
## 78304 Executive Decision (1996)
## 81882 Ransom (1996)
## 85429 One Fine Day (1996)
## 86871 Days of Thunder (1990)
## 89250 Down Periscope (1996)
## 92374 Con Air (1997)
## 133 Toy Story (1995)
## 2956 Mr. Holland's Opus (1995)
## 3467 Muppet Treasure Island (1996)
## 3610 Braveheart (1995)
## 4684 Apollo 13 (1995)
## 5071 Crimson Tide (1995)
## 5856 Disclosure (1994)
## 6342 I.Q. (1994)
## 6572 Star Wars (1977)
## 7318 Outbreak (1995)
## 8393 Stargate (1994)
## 8660 Shawshank Redemption, The (1994)
## 9006 While You Were Sleeping (1995)
## 9463 Forrest Gump (1994)
## 9990 Lion King, The (1994)
## 11250 Jurassic Park (1993)
## 12033 Sleepless in Seattle (1993)
## 12266 Blade Runner (1982)
## 12598 Nightmare Before Christmas, The (1993)
## 13109 Aladdin (1992)
## 13636 Dances with Wolves (1990)
## 13947 Silence of the Lambs, The (1991)
## 14259 Snow White and the Seven Dwarfs (1937)
## 14983 Aristocats, The (1970)
## 15060 Sgt. Bilko (1996)
## 15331 Mystery Science Theater 3000: The Movie (1996)
## 16072 Rock, The (1996)
## 16423 Twister (1996)
## 16659 Striptease (1996)
## 16837 Independence Day (ID4) (1996)
## 17616 Phenomenon (1996)
## 18675 Wizard of Oz, The (1939)
## 18900 Gone with the Wind (1939)
## 19300 2001: A Space Odyssey (1968)
## 19507 Mr. Smith Goes to Washington (1939)
## 19789 Love Bug, The (1969)
## 19906 20,000 Leagues Under the Sea (1954)
## 20076 Sound of Music, The (1965)
## 20303 Die Hard (1988)
## 21144 Willy Wonka and the Chocolate Factory (1971)
## 21529 Fish Called Wanda, A (1988)
## 22269 Weekend at Bernie's (1989)
## 22543 Top Gun (1986)
## 22733 On Golden Pond (1981)
## 22938 Abyss, The (1989)
## 23191 Private Benjamin (1980)
## 23322 Monty Python and the Holy Grail (1974)
## 23963 Empire Strikes Back, The (1980)
## 24670 Raiders of the Lost Ark (1981)
## 25262 Aliens (1986)
## 26005 Apocalypse Now (1979)
## 26312 Return of the Jedi (1983)
## 26978 Alien (1979)
## 28448 Amadeus (1984)
## 28799 Right Stuff, The (1983)
## 29529 Dead Poets Society (1989)
## 30116 Bridge on the River Kwai, The (1957)
## 30616 Groundhog Day (1993)
## 31093 Back to the Future (1985)
## 31378 Patton (1970)
## 31655 Young Frankenstein (1974)
## 32085 Indiana Jones and the Last Crusade (1989)
## 32382 M*A*S*H (1970)
## 33167 When Harry Met Sally... (1989)
## 33533 Cape Fear (1991)
## 34021 Star Trek: First Contact (1996)
## 34777 Star Trek VI: The Undiscovered Country (1991)
## 34958 Star Trek: The Wrath of Khan (1982)
## 35184 Star Trek III: The Search for Spock (1984)
## 35366 Star Trek IV: The Voyage Home (1986)
## 35953 Jaws (1975)
## 36217 Mars Attacks! (1996)
## 37090 Sneakers (1992)
## 37646 Jungle2Jungle (1997)
## 38729 Lost World: Jurassic Park, The (1997)
## 39202 Men in Black (1997)
## 40515 Hunt for Red October, The (1990)
## 41225 Starship Troopers (1997)
## 41860 Sabrina (1995)
## 49031 Schindler's List (1993)
## 49885 Dante's Peak (1997)
## 53011 One Flew Over the Cuckoo's Nest (1975)
## 54115 Miracle on 34th Street (1994)
## 54268 Star Trek: Generations (1994)
## 54717 True Lies (1994)
## 55268 Mrs. Doubtfire (1993)
## 55799 Ghost (1990)
## 55976 Batman (1989)
## 56148 Pinocchio (1940)
## 56333 Mission: Impossible (1996)
## 57573 Cinderella (1950)
## 57707 Mary Poppins (1964)
## 58144 E.T. the Extra-Terrestrial (1982)
## 58858 Day the Earth Stood Still, The (1951)
## 59226 Fantasia (1940)
## 59537 Forbidden Planet (1956)
## 59647 Butch Cassidy and the Sundance Kid (1969)
## 59828 American Werewolf in London, An (1981)
## 60469 Star Trek: The Motion Picture (1979)
## 60574 Star Trek V: The Final Frontier (1989)
## 61588 Jungle Book, The (1994)
## 62258 Dragonheart (1996)
## 62406 James and the Giant Peach (1996)
## 62548 Dr. Strangelove or: How I Learned to Stop Worrying and Love the Bomb (1963)
## 62989 First Wives Club, The (1996)
## 63909 Casablanca (1942)
## 64121 Maltese Falcon, The (1941)
## 65011 It's a Wonderful Life (1946)
## 65290 African Queen, The (1951)
## 67053 Boot, Das (1981)
## 67551 Great Escape, The (1963)
## 67848 Cool Hand Luke (1967)
## 68267 Gandhi (1982)
## 69408 Broken Arrow (1996)
## 69762 Die Hard: With a Vengeance (1995)
## 70613 Clear and Present Danger (1994)
## 70848 Speed (1994)
## 72039 Beauty and the Beast (1991)
## 72563 Hunchback of Notre Dame, The (1996)
## 73950 Swiss Family Robinson (1960)
## 74058 Sword in the Stone, The (1963)
## 74393 Victor/Victoria (1982)
## 75495 Seventh Seal, The (Sjunde inseglet, Det) (1957)
## 75593 Glory (1989)
## 78052 Rocket Man (1997)
## 78305 Executive Decision (1996)
## 78882 American President, The (1995)
## 79305 Little Women (1994)
## 80423 First Knight (1995)
## 81039 Dave (1993)
## 81562 Pretty Woman (1990)
## 81883 Ransom (1996)
## 83251 Jumanji (1995)
## 85227 Rising Sun (1993)
## 85537 Girl 6 (1996)
## 85870 Arrival, The (1996)
## 85957 Phantom, The (1996)
## 86215 Bogus (1996)
## 89251 Down Periscope (1996)
## 89500 Chain Reaction (1996)
## 91578 Hercules (1997)
## 92201 Anaconda (1997)
## 92839 Grumpier Old Men (1995)
## 93074 Cool Runnings (1993)
## 93547 Multiplicity (1996)
## 94004 Adventures of Pinocchio, The (1996)
## 94513 Joe's Apartment (1996)
## 94734 Pete's Dragon (1977)
## 97796 Princess Caraboo (1994)
## 98142 Kazaam (1996)
## 134 Toy Story (1995)
## 611 Four Rooms (1995)
## 729 Get Shorty (1995)
## 908 Copycat (1995)
## 1125 Twelve Monkeys (1995)
## 1451 Babe (1995)
## 1700 Dead Man Walking (1995)
## 2069 Seven (Se7en) (1995)
## 2310 Usual Suspects, The (1995)
## 2957 Mr. Holland's Opus (1995)
## 3223 From Dusk Till Dawn (1996)
## 3468 Muppet Treasure Island (1996)
## 3611 Braveheart (1995)
## 4054 Rumble in the Bronx (1995)
## 4558 Bad Boys (1995)
## 4685 Apollo 13 (1995)
## 5072 Crimson Tide (1995)
## 5295 Desperado (1995)
## 5432 Net, The (1995)
## 5673 Billy Madison (1995)
## 6052 Exotica (1994)
## 6239 Hoop Dreams (1994)
## 6343 I.Q. (1994)
## 6573 Star Wars (1977)
## 7193 Natural Born Killers (1994)
## 7319 Outbreak (1995)
## 7441 Professional, The (1994)
## 7666 Pulp Fiction (1994)
## 8661 Shawshank Redemption, The (1994)
## 9007 While You Were Sleeping (1995)
## 9154 Ace Ventura: Pet Detective (1994)
## 9464 Forrest Gump (1994)
## 9761 Four Weddings and a Funeral (1994)
## 9991 Lion King, The (1994)
## 10185 Mask, The (1994)
## 10524 Firm, The (1993)
## 10761 Fugitive, The (1993)
## 11014 Hot Shots! Part Deux (1993)
## 11251 Jurassic Park (1993)
## 11614 Robert A. Heinlein's The Puppet Masters (1994)
## 11639 Ref, The (1994)
## 12267 Blade Runner (1982)
## 12488 So I Married an Axe Murderer (1993)
## 12736 True Romance (1993)
## 12846 Welcome to the Dollhouse (1995)
## 12955 Home Alone (1990)
## 13110 Aladdin (1992)
## 13359 Terminator 2: Judgment Day (1991)
## 13637 Dances with Wolves (1990)
## 13948 Silence of the Lambs, The (1991)
## 14260 Snow White and the Seven Dwarfs (1937)
## 14539 Fargo (1996)
## 14914 Heavy Metal (1981)
## 15136 Diabolique (1996)
## 16073 Rock, The (1996)
## 16424 Twister (1996)
## 16838 Independence Day (ID4) (1996)
## 17162 Cable Guy, The (1996)
## 17273 Frighteners, The (1996)
## 17410 Lone Star (1996)
## 17617 Phenomenon (1996)
## 18312 Supercop (1992)
## 18397 Bound (1996)
## 19843 Homeward Bound: The Incredible Journey (1993)
## 20077 Sound of Music, The (1965)
## 20304 Die Hard (1988)
## 20612 Long Kiss Goodnight, The (1996)
## 21145 Willy Wonka and the Chocolate Factory (1971)
## 21530 Fish Called Wanda, A (1988)
## 21752 Monty Python's Life of Brian (1979)
## 21904 Dirty Dancing (1987)
## 22025 Reservoir Dogs (1992)
## 22270 Weekend at Bernie's (1989)
## 22335 Basic Instinct (1992)
## 22939 Abyss, The (1989)
## 23323 Monty Python and the Holy Grail (1974)
## 23964 Empire Strikes Back, The (1980)
## 24319 Princess Bride, The (1987)
## 24671 Raiders of the Lost Ark (1981)
## 25043 Brazil (1985)
## 25784 Clockwork Orange, A (1971)
## 26313 Return of the Jedi (1983)
## 27220 Army of Darkness (1993)
## 28052 Full Metal Jacket (1987)
## 29243 Terminator, The (1984)
## 30297 Shining, The (1980)
## 30617 Groundhog Day (1993)
## 31094 Back to the Future (1985)
## 32086 Indiana Jones and the Last Crusade (1989)
## 32553 Unbearable Lightness of Being, The (1988)
## 32780 Pink Floyd - The Wall (1982)
## 32926 Field of Dreams (1989)
## 33534 Cape Fear (1991)
## 33690 Nightmare on Elm Street, A (1984)
## 34317 Sling Blade (1996)
## 34609 Die Hard 2 (1990)
## 35543 Batman Returns (1992)
## 35673 Young Guns (1988)
## 35954 Jaws (1975)
## 36218 Mars Attacks! (1996)
## 36382 Citizen Ruth (1996)
## 36531 Jerry Maguire (1996)
## 36874 Raising Arizona (1987)
## 37252 Beavis and Butt-head Do America (1996)
## 37751 Smilla's Sense of Snow (1997)
## 37855 Devil's Own, The (1997)
## 38063 Chasing Amy (1997)
## 38351 Austin Powers: International Man of Mystery (1997)
## 38499 Fifth Element, The (1997)
## 40289 In the Company of Men (1997)
## 41641 Heat (1995)
## 43015 Time to Kill, A (1996)
## 43413 Tin Cup (1996)
## 43598 Secrets & Lies (1996)
## 44413 Scream (1996)
## 45044 Fierce Creatures (1997)
## 45139 Absolute Power (1997)
## 45380 Donnie Brasco (1997)
## 45644 Liar Liar (1997)
## 50096 Lost Highway (1997)
## 50224 Crash (1996)
## 52865 Client, The (1994)
## 53468 Ace Ventura: When Nature Calls (1995)
## 53503 Powder (1995)
## 53550 Dangerous Minds (1995)
## 53634 Clueless (1995)
## 53803 Black Sheep (1996)
## 54037 Showgirls (1995)
## 54060 Houseguest (1994)
## 54207 Tales From the Crypt Presents: Demon Knight (1995)
## 54572 Flintstones, The (1994)
## 54613 Naked Gun 33 1/3: The Final Insult (1994)
## 54718 True Lies (1994)
## 55103 Last Action Hero (1993)
## 55269 Mrs. Doubtfire (1993)
## 55429 Robin Hood: Men in Tights (1993)
## 55491 Serial Mom (1994)
## 55697 Brady Bunch Movie, The (1995)
## 55800 Ghost (1990)
## 55977 Batman (1989)
## 56149 Pinocchio (1940)
## 56334 Mission: Impossible (1996)
## 56887 Kingpin (1996)
## 57063 Nutty Professor, The (1996)
## 57195 Very Brady Sequel, A (1996)
## 57281 Tales from the Crypt Presents: Bordello of Blood (1996)
## 57415 Old Yeller (1957)
## 57480 Parent Trap, The (1961)
## 57574 Cinderella (1950)
## 57864 Alice in Wonderland (1951)
## 57956 William Shakespeare's Romeo and Juliet (1996)
## 58145 E.T. the Extra-Terrestrial (1982)
## 58544 To Kill a Mockingbird (1962)
## 58743 Harold and Maude (1971)
## 60374 Omen, The (1976)
## 60923 Jackie Chan's First Strike (1996)
## 61045 Beverly Hills Ninja (1997)
## 61224 Crossing Guard, The (1995)
## 61667 Red Rock West (1992)
## 61833 Short Cuts (1993)
## 61911 Tombstone (1993)
## 62052 Courage Under Fire (1996)
## 62765 Trainspotting (1996)
## 65012 It's a Wonderful Life (1946)
## 65499 Dumbo (1941)
## 66130 People vs. Larry Flynt, The (1996)
## 69095 Money Train (1995)
## 69409 Broken Arrow (1996)
## 69763 Die Hard: With a Vengeance (1995)
## 69887 Lord of Illusions (1995)
## 69917 Species (1995)
## 70115 White Man's Burden (1995)
## 70172 Heavenly Creatures (1994)
## 70452 Quick and the Dead, The (1995)
## 70494 Stephen King's The Langoliers (1995)
## 70549 Village of the Damned (1995)
## 70614 Clear and Present Danger (1994)
## 70754 Wes Craven's New Nightmare (1994)
## 70849 Speed (1994)
## 71028 Wolf (1994)
## 71134 Another Stakeout (1993)
## 71162 Blown Away (1994)
## 71191 Body Snatchers (1993)
## 71221 Boxing Helena (1993)
## 71244 City Slickers II: The Legend of Curly's Gold (1994)
## 71300 Cliffhanger (1993)
## 71382 Coneheads (1993)
## 71429 Demolition Man (1993)
## 71567 Kalifornia (1993)
## 71658 Piano, The (1993)
## 72040 Beauty and the Beast (1991)
## 72426 True Crime (1995)
## 72707 Eraser (1996)
## 73836 Extreme Measures (1996)
## 74142 Robin Hood: Prince of Thieves (1991)
## 74505 Crying Game, The (1992)
## 74795 Escape from New York (1981)
## 76057 Stand by Me (1986)
## 77272 Candyman (1992)
## 78306 Executive Decision (1996)
## 78426 Perfect World, A (1993)
## 79636 Bad Moon (1996)
## 80157 To Die For (1995)
## 80304 Juror, The (1996)
## 80559 Nine Months (1995)
## 80874 Nell (1994)
## 81040 Dave (1993)
## 81256 Philadelphia (1993)
## 81563 Pretty Woman (1990)
## 81770 Last Supper, The (1995)
## 81884 Ransom (1996)
## 82370 Benny & Joon (1993)
## 83252 Jumanji (1995)
## 83366 Father of the Bride Part II (1995)
## 83504 Screamers (1995)
## 83548 Nick of Time (1995)
## 83738 Happy Gilmore (1996)
## 83988 Congo (1995)
## 84036 Devil in a Blue Dress (1995)
## 84130 Kids (1995)
## 84171 Mute Witness (1994)
## 84193 Prophecy, The (1995)
## 84384 Dumb & Dumber (1994)
## 84537 Milk Money (1994)
## 84576 Only You (1994)
## 84700 Tommy Boy (1995)
## 84862 It Could Happen to You (1994)
## 84989 Bad Company (1995)
## 85012 In the Mouth of Madness (1995)
## 85029 Air Up There, The (1994)
## 85516 Candyman: Farewell to the Flesh (1995)
## 85628 Space Jam (1996)
## 85748 Mulholland Falls (1996)
## 85812 Great White Hype, The (1996)
## 85871 Arrival, The (1996)
## 86093 Fled (1996)
## 86241 Bulletproof (1996)
## 86286 Halloween: The Curse of Michael Myers (1995)
## 86548 Freeway (1996)
## 89123 White Squall (1996)
## 89348 Craft, The (1996)
## 89650 Funeral, The (1996)
## 89854 Murder in the First (1995)
## 89904 Airheads (1994)
## 89937 With Honors (1994)
## 90030 Killing Zoe (1994)
## 90160 Fox and the Hound, The (1981)
## 91030 Eye for an Eye (1996)
## 91064 Fear (1996)
## 91122 Substitute, The (1996)
## 91332 Blood & Wine (1997)
## 91695 Cabin Boy (1994)
## 92119 Private Parts (1997)
## 92375 Con Air (1997)
## 92490 Trees Lounge (1996)
## 92840 Grumpier Old Men (1995)
## 93369 Just Cause (1995)
## 93477 Malice (1993)
## 93548 Multiplicity (1996)
## 93967 Don't Be a Menace to South Central While Drinking Your Juice in the Hood (1996)
## 94195 Bottle Rocket (1996)
## 94330 Shallow Grave (1994)
## 94473 Love and a .45 (1994)
## 94483 Oliver & Company (1988)
## 94514 Joe's Apartment (1996)
## 94566 Albino Alligator (1996)
## 94695 Sliver (1993)
## 94873 Flirting With Disaster (1996)
## 95079 Death and the Maiden (1994)
## 95734 Hackers (1995)
## 96002 Relic, The (1997)
## 96289 Major Payne (1994)
## 96417 Young Guns II (1990)
## 96680 Amos & Andrew (1993)
## 96733 Mixed Nuts (1994)
## 96754 Virtuosity (1995)
## 96804 Guilty as Sin (1993)
## 96822 Barb Wire (1996)
## 96860 Assassins (1995)
## 96921 Goofy Movie, A (1995)
## 96945 Higher Learning (1995)
## 97151 Poison Ivy II (1995)
## 97253 Cutthroat Island (1995)
## 97319 Metro (1997)
## 97381 Blink (1994)
## 97435 Tie That Binds, The (1995)
## 97633 Color of Night (1994)
## 97670 Set It Off (1996)
## 97954 Getaway, The (1994)
## 97973 National Lampoon's Senior Trip (1995)
## 98263 Meet Wally Sparks (1997)
## 98842 Hideaway (1995)
## 98878 Dead Presidents (1995)
## 98945 Chasers (1994)
## 98996 Killer: A Journal of Murder (1995)
## 135 Toy Story (1995)
## 488 GoldenEye (1995)
## 1126 Twelve Monkeys (1995)
## 1701 Dead Man Walking (1995)
## 1928 Richard III (1995)
## 2070 Seven (Se7en) (1995)
## 3386 Angels and Insects (1995)
## 4055 Rumble in the Bronx (1995)
## 4686 Apollo 13 (1995)
## 6240 Hoop Dreams (1994)
## 6574 Star Wars (1977)
## 7667 Pulp Fiction (1994)
## 8019 Quiz Show (1994)
## 8662 Shawshank Redemption, The (1994)
## 10762 Fugitive, The (1993)
## 11481 Much Ado About Nothing (1993)
## 11731 Remains of the Day, The (1993)
## 13360 Terminator 2: Judgment Day (1991)
## 13949 Silence of the Lambs, The (1991)
## 14540 Fargo (1996)
## 15537 Truth About Cats & Dogs, The (1996)
## 15824 Haunted World of Edward D. Wood Jr., The (1995)
## 16074 Rock, The (1996)
## 16425 Twister (1996)
## 17411 Lone Star (1996)
## 17618 Phenomenon (1996)
## 17996 Godfather, The (1972)
## 18676 Wizard of Oz, The (1939)
## 19301 2001: A Space Odyssey (1968)
## 20305 Die Hard (1988)
## 20936 Swingers (1996)
## 21146 Willy Wonka and the Chocolate Factory (1971)
## 21531 Fish Called Wanda, A (1988)
## 22026 Reservoir Dogs (1992)
## 23065 Jean de Florette (1986)
## 23324 Monty Python and the Holy Grail (1974)
## 23589 Wrong Trousers, The (1993)
## 24320 Princess Bride, The (1987)
## 24672 Raiders of the Lost Ark (1981)
## 25263 Aliens (1986)
## 26006 Apocalypse Now (1979)
## 26314 Return of the Jedi (1983)
## 26979 Alien (1979)
## 28274 Henry V (1989)
## 28800 Right Stuff, The (1983)
## 28985 Sting, The (1973)
## 29244 Terminator, The (1984)
## 29769 Graduate, The (1967)
## 30117 Bridge on the River Kwai, The (1957)
## 30867 Unforgiven (1992)
## 31544 Cyrano de Bergerac (1990)
## 31859 This Is Spinal Tap (1984)
## 32781 Pink Floyd - The Wall (1982)
## 34022 Star Trek: First Contact (1996)
## 34318 Sling Blade (1996)
## 34610 Die Hard 2 (1990)
## 34959 Star Trek: The Wrath of Khan (1982)
## 35955 Jaws (1975)
## 36219 Mars Attacks! (1996)
## 38193 Grosse Pointe Blank (1997)
## 38352 Austin Powers: International Man of Mystery (1997)
## 38500 Fifth Element, The (1997)
## 38730 Lost World: Jurassic Park, The (1997)
## 40371 Mimic (1997)
## 40516 Hunt for Red October, The (1990)
## 42361 Leaving Las Vegas (1995)
## 43016 Time to Kill, A (1996)
## 43599 Secrets & Lies (1996)
## 44414 Scream (1996)
## 46168 Face/Off (1997)
## 46502 Air Force One (1997)
## 49415 Paradise Lost: The Child Murders at Robin Hood Hills (1996)
## 50097 Lost Highway (1997)
## 50744 Conspiracy Theory (1997)
## 51071 Edge, The (1997)
## 52118 Alien: Resurrection (1997)
## 56335 Mission: Impossible (1996)
## 56693 Close Shave, A (1995)
## 57708 Mary Poppins (1964)
## 58146 E.T. the Extra-Terrestrial (1982)
## 58859 Day the Earth Stood Still, The (1951)
## 61362 Like Water For Chocolate (Como agua para chocolate) (1992)
## 62259 Dragonheart (1996)
## 62766 Trainspotting (1996)
## 63340 Vertigo (1958)
## 63751 Some Like It Hot (1959)
## 63910 Casablanca (1942)
## 64122 Maltese Falcon, The (1941)
## 64371 Sabrina (1954)
## 64499 Sunset Blvd. (1950)
## 64669 Adventures of Robin Hood, The (1938)
## 64733 East of Eden (1955)
## 65419 Cat on a Hot Tin Roof (1958)
## 66428 Magnificent Seven, The (1954)
## 66566 Lawrence of Arabia (1962)
## 67054 Boot, Das (1981)
## 67849 Cool Hand Luke (1967)
## 68032 Big Sleep, The (1946)
## 68438 Killing Fields, The (1984)
## 68887 Addicted to Love (1997)
## 72196 Wild Bunch, The (1969)
## 72890 American in Paris, An (1951)
## 72977 Rear Window (1954)
## 73319 Rebecca (1940)
## 74250 Sleepers (1996)
## 74506 Crying Game, The (1992)
## 75812 Touch of Evil (1958)
## 75883 Chinatown (1974)
## 76291 Manchurian Candidate, The (1962)
## 76498 Arsenic and Old Lace (1944)
## 76761 High Noon (1952)
## 77102 Alien 3 (1992)
## 79531 Singin' in the Rain (1952)
## 82523 Saint, The (1997)
## 84650 Swimming with Sharks (1995)
## 86549 Freeway (1996)
## 86966 Diva (1981)
## 88883 City of Lost Children, The (1995)
## 91968 Basquiat (1996)
## 92249 Romy and Michele's High School Reunion (1997)
## 93211 Hamlet (1996)
## 93750 Ghost and Mrs. Muir, The (1947)
## 94331 Shallow Grave (1994)
## 95797 When We Were Kings (1996)
## 136 Toy Story (1995)
## 489 GoldenEye (1995)
## 612 Four Rooms (1995)
## 730 Get Shorty (1995)
## 909 Copycat (1995)
## 1127 Twelve Monkeys (1995)
## 1452 Babe (1995)
## 2071 Seven (Se7en) (1995)
## 2311 Usual Suspects, The (1995)
## 2734 Postino, Il (1994)
## 2958 Mr. Holland's Opus (1995)
## 3168 French Twist (Gazon maudit) (1995)
## 3224 From Dusk Till Dawn (1996)
## 3612 Braveheart (1995)
## 3870 Taxi Driver (1976)
## 4273 Birdcage, The (1996)
## 4486 Brothers McMullen, The (1995)
## 4559 Bad Boys (1995)
## 4687 Apollo 13 (1995)
## 4910 Batman Forever (1995)
## 5073 Crimson Tide (1995)
## 5296 Desperado (1995)
## 5380 Mad Love (1995)
## 5433 Net, The (1995)
## 5543 Strange Days (1995)
## 5986 Eat Drink Man Woman (1994)
## 6110 Ed Wood (1994)
## 6241 Hoop Dreams (1994)
## 6344 I.Q. (1994)
## 6575 Star Wars (1977)
## 7018 Legends of the Fall (1994)
## 7194 Natural Born Killers (1994)
## 7320 Outbreak (1995)
## 7442 Professional, The (1994)
## 7668 Pulp Fiction (1994)
## 8394 Stargate (1994)
## 8663 Shawshank Redemption, The (1994)
## 8879 What's Eating Gilbert Grape (1993)
## 9008 While You Were Sleeping (1995)
## 9155 Ace Ventura: Pet Detective (1994)
## 9263 Crow, The (1994)
## 9465 Forrest Gump (1994)
## 9762 Four Weddings and a Funeral (1994)
## 9992 Lion King, The (1994)
## 10315 Maverick (1994)
## 10435 Carlito's Way (1993)
## 10525 Firm, The (1993)
## 10763 Fugitive, The (1993)
## 11096 Hudsucker Proxy, The (1994)
## 11252 Jurassic Park (1993)
## 11640 Ref, The (1994)
## 11875 Searching for Bobby Fischer (1993)
## 12034 Sleepless in Seattle (1993)
## 12268 Blade Runner (1982)
## 12599 Nightmare Before Christmas, The (1993)
## 12737 True Romance (1993)
## 12956 Home Alone (1990)
## 13361 Terminator 2: Judgment Day (1991)
## 13638 Dances with Wolves (1990)
## 13950 Silence of the Lambs, The (1991)
## 14261 Snow White and the Seven Dwarfs (1937)
## 14541 Fargo (1996)
## 15538 Truth About Cats & Dogs, The (1996)
## 16075 Rock, The (1996)
## 16839 Independence Day (ID4) (1996)
## 17163 Cable Guy, The (1996)
## 17412 Lone Star (1996)
## 17619 Phenomenon (1996)
## 17997 Godfather, The (1972)
## 18398 Bound (1996)
## 18677 Wizard of Oz, The (1939)
## 18901 Gone with the Wind (1939)
## 19077 Citizen Kane (1941)
## 19302 2001: A Space Odyssey (1968)
## 19641 Big Night (1996)
## 19790 Love Bug, The (1969)
## 20078 Sound of Music, The (1965)
## 20306 Die Hard (1988)
## 20613 Long Kiss Goodnight, The (1996)
## 20779 Ghost and the Darkness, The (1996)
## 20937 Swingers (1996)
## 21147 Willy Wonka and the Chocolate Factory (1971)
## 21396 Sleeper (1973)
## 21532 Fish Called Wanda, A (1988)
## 21905 Dirty Dancing (1987)
## 22027 Reservoir Dogs (1992)
## 22159 Platoon (1986)
## 22271 Weekend at Bernie's (1989)
## 22336 Basic Instinct (1992)
## 22435 Glengarry Glen Ross (1992)
## 22544 Top Gun (1986)
## 22734 On Golden Pond (1981)
## 22828 Return of the Pink Panther, The (1974)
## 22940 Abyss, The (1989)
## 23066 Jean de Florette (1986)
## 23128 Manon of the Spring (Manon des sources) (1986)
## 23192 Private Benjamin (1980)
## 23325 Monty Python and the Holy Grail (1974)
## 23965 Empire Strikes Back, The (1980)
## 24321 Princess Bride, The (1987)
## 24673 Raiders of the Lost Ark (1981)
## 25044 Brazil (1985)
## 25264 Aliens (1986)
## 25497 Good, The Bad and The Ugly, The (1966)
## 25785 Clockwork Orange, A (1971)
## 26007 Apocalypse Now (1979)
## 26315 Return of the Jedi (1983)
## 26740 GoodFellas (1990)
## 26980 Alien (1979)
## 27379 Psycho (1960)
## 27613 Blues Brothers, The (1980)
## 27853 Godfather: Part II, The (1974)
## 28053 Full Metal Jacket (1987)
## 28671 Raging Bull (1980)
## 28801 Right Stuff, The (1983)
## 28986 Sting, The (1973)
## 29245 Terminator, The (1984)
## 29530 Dead Poets Society (1989)
## 29984 Nikita (La Femme Nikita) (1990)
## 30118 Bridge on the River Kwai, The (1957)
## 30298 Shining, The (1980)
## 30618 Groundhog Day (1993)
## 30868 Unforgiven (1992)
## 31095 Back to the Future (1985)
## 31490 Akira (1988)
## 31656 Young Frankenstein (1974)
## 31860 This Is Spinal Tap (1984)
## 32087 Indiana Jones and the Last Crusade (1989)
## 32383 M*A*S*H (1970)
## 32651 Room with a View, A (1986)
## 32927 Field of Dreams (1989)
## 33168 When Harry Met Sally... (1989)
## 33400 Bram Stoker's Dracula (1992)
## 33535 Cape Fear (1991)
## 34023 Star Trek: First Contact (1996)
## 34319 Sling Blade (1996)
## 34611 Die Hard 2 (1990)
## 34778 Star Trek VI: The Undiscovered Country (1991)
## 34960 Star Trek: The Wrath of Khan (1982)
## 35185 Star Trek III: The Search for Spock (1984)
## 35367 Star Trek IV: The Voyage Home (1986)
## 35674 Young Guns (1988)
## 35781 Under Siege (1992)
## 35956 Jaws (1975)
## 36220 Mars Attacks! (1996)
## 36532 Jerry Maguire (1996)
## 36875 Raising Arizona (1987)
## 37091 Sneakers (1992)
## 37253 Beavis and Butt-head Do America (1996)
## 37856 Devil's Own, The (1997)
## 38194 Grosse Pointe Blank (1997)
## 38353 Austin Powers: International Man of Mystery (1997)
## 38501 Fifth Element, The (1997)
## 38653 Shall We Dance? (1996)
## 38731 Lost World: Jurassic Park, The (1997)
## 38977 My Best Friend's Wedding (1997)
## 39203 Men in Black (1997)
## 39587 Contact (1997)
## 40372 Mimic (1997)
## 40517 Hunt for Red October, The (1990)
## 41446 Good Will Hunting (1997)
## 41642 Heat (1995)
## 42065 Sense and Sensibility (1995)
## 42748 Up Close and Personal (1996)
## 43017 Time to Kill, A (1996)
## 43227 Emma (1996)
## 43414 Tin Cup (1996)
## 43600 Secrets & Lies (1996)
## 43859 English Patient, The (1996)
## 44415 Scream (1996)
## 45045 Fierce Creatures (1997)
## 45140 Absolute Power (1997)
## 45381 Donnie Brasco (1997)
## 45645 Liar Liar (1997)
## 46072 Ulee's Gold (1997)
## 46169 Face/Off (1997)
## 46503 Air Force One (1997)
## 47125 L.A. Confidential (1997)
## 48322 Titanic (1997)
## 48618 Apt Pupil (1998)
## 48764 As Good As It Gets (1997)
## 48876 In the Name of the Father (1993)
## 49661 Murder at 1600 (1997)
## 50225 Crash (1996)
## 50745 Conspiracy Theory (1997)
## 52366 Jackie Brown (1997)
## 52489 Wag the Dog (1997)
## 52866 Client, The (1994)
## 53012 One Flew Over the Cuckoo's Nest (1975)
## 53551 Dangerous Minds (1995)
## 53635 Clueless (1995)
## 53900 Bridges of Madison County, The (1995)
## 54269 Star Trek: Generations (1994)
## 54895 Addams Family Values (1993)
## 55270 Mrs. Doubtfire (1993)
## 55698 Brady Bunch Movie, The (1995)
## 55801 Ghost (1990)
## 55978 Batman (1989)
## 56150 Pinocchio (1940)
## 56336 Mission: Impossible (1996)
## 56888 Kingpin (1996)
## 57064 Nutty Professor, The (1996)
## 57196 Very Brady Sequel, A (1996)
## 57329 My Favorite Year (1982)
## 57416 Old Yeller (1957)
## 57709 Mary Poppins (1964)
## 57865 Alice in Wonderland (1951)
## 57957 William Shakespeare's Romeo and Juliet (1996)
## 58147 E.T. the Extra-Terrestrial (1982)
## 58401 Bob Roberts (1992)
## 58466 Transformers: The Movie, The (1986)
## 58545 To Kill a Mockingbird (1962)
## 58860 Day the Earth Stood Still, The (1951)
## 58954 Duck Soup (1933)
## 59227 Fantasia (1940)
## 59408 Heathers (1989)
## 59648 Butch Cassidy and the Sundance Kid (1969)
## 59829 American Werewolf in London, An (1981)
## 60035 Birds, The (1963)
## 60206 Body Snatcher, The (1945)
## 60262 Carrie (1976)
## 60664 Grease (1978)
## 60924 Jackie Chan's First Strike (1996)
## 61225 Crossing Guard, The (1995)
## 61262 Smoke (1995)
## 61363 Like Water For Chocolate (Como agua para chocolate) (1992)
## 61488 Secret of Roan Inish, The (1994)
## 61548 Vanya on 42nd Street (1994)
## 61668 Red Rock West (1992)
## 61710 Bronx Tale, A (1993)
## 61764 Rudy (1993)
## 61834 Short Cuts (1993)
## 62053 Courage Under Fire (1996)
## 62549 Dr. Strangelove or: How I Learned to Stop Worrying and Love the Bomb (1963)
## 63341 Vertigo (1958)
## 63522 North by Northwest (1959)
## 63752 Some Like It Hot (1959)
## 63911 Casablanca (1942)
## 64123 Maltese Falcon, The (1941)
## 64255 My Fair Lady (1964)
## 64670 Adventures of Robin Hood, The (1938)
## 64734 East of Eden (1955)
## 65013 It's a Wonderful Life (1946)
## 65196 Bringing Up Baby (1938)
## 65500 Dumbo (1941)
## 65605 Bananas (1971)
## 65651 Candidate, The (1972)
## 65716 Bonnie and Clyde (1967)
## 65895 Rebel Without a Cause (1955)
## 65989 Streetcar Named Desire, A (1951)
## 66312 My Left Foot (1989)
## 66429 Magnificent Seven, The (1954)
## 66767 Third Man, The (1949)
## 66872 Annie Hall (1977)
## 67386 Miller's Crossing (1990)
## 67678 Deer Hunter, The (1978)
## 68268 Gandhi (1982)
## 68439 Killing Fields, The (1984)
## 68737 Shine (1996)
## 69267 Things to Do in Denver when You're Dead (1995)
## 69410 Broken Arrow (1996)
## 69658 Rob Roy (1995)
## 69764 Die Hard: With a Vengeance (1995)
## 69965 Walk in the Clouds, A (1995)
## 70041 Waterworld (1995)
## 70173 Heavenly Creatures (1994)
## 70257 Interview with the Vampire (1994)
## 70615 Clear and Present Danger (1994)
## 70850 Speed (1994)
## 71135 Another Stakeout (1993)
## 71163 Blown Away (1994)
## 71430 Demolition Man (1993)
## 71659 Piano, The (1993)
## 71793 Romeo Is Bleeding (1993)
## 72041 Beauty and the Beast (1991)
## 72197 Wild Bunch, The (1969)
## 72299 Primal Fear (1996)
## 72978 Rear Window (1954)
## 73221 Meet Me in St. Louis (1944)
## 73733 Night of the Living Dead (1968)
## 73837 Extreme Measures (1996)
## 74143 Robin Hood: Prince of Thieves (1991)
## 74251 Sleepers (1996)
## 74394 Victor/Victoria (1982)
## 74610 Sophie's Choice (1982)
## 74796 Escape from New York (1981)
## 74868 Howling, The (1981)
## 74905 Return of Martin Guerre, The (Retour de Martin Guerre, Le) (1982)
## 75124 Grifters, The (1990)
## 75259 Once Upon a Time in the West (1969)
## 75311 Ran (1985)
## 75438 Once Upon a Time in America (1984)
## 75594 Glory (1989)
## 75813 Touch of Evil (1958)
## 75884 Chinatown (1974)
## 76058 Stand by Me (1986)
## 76292 Manchurian Candidate, The (1962)
## 76413 Pump Up the Volume (1990)
## 76627 Fried Green Tomatoes (1991)
## 76937 Being There (1979)
## 77103 Alien 3 (1992)
## 77646 Volcano (1997)
## 77835 Conan the Barbarian (1981)
## 78135 In the Line of Fire (1993)
## 78307 Executive Decision (1996)
## 78427 Perfect World, A (1993)
## 79016 Casino (1995)
## 79159 City Hall (1996)
## 79532 Singin' in the Rain (1952)
## 79734 Sex, Lies, and Videotape (1989)
## 79936 Better Off Dead... (1985)
## 80009 Tin Men (1987)
## 80158 To Die For (1995)
## 80424 First Knight (1995)
## 80653 Circle of Friends (1995)
## 80875 Nell (1994)
## 81041 Dave (1993)
## 81564 Pretty Woman (1990)
## 81885 Ransom (1996)
## 82247 Real Genius (1985)
## 82371 Benny & Joon (1993)
## 82524 Saint, The (1997)
## 82987 Tomorrow Never Dies (1997)
## 83549 Nick of Time (1995)
## 83884 Boomerang (1992)
## 84037 Devil in a Blue Dress (1995)
## 84340 Drop Zone (1994)
## 84385 Dumb & Dumber (1994)
## 84457 French Kiss (1995)
## 84651 Swimming with Sharks (1995)
## 85093 Jimmy Hollywood (1994)
## 85228 Rising Sun (1993)
## 85271 Shadow, The (1994)
## 85430 One Fine Day (1996)
## 85629 Space Jam (1996)
## 85813 Great White Hype, The (1996)
## 86141 Escape from L.A. (1996)
## 86512 Shaggy Dog, The (1959)
## 86633 That Thing You Do! (1996)
## 86872 Days of Thunder (1990)
## 87029 Night on Earth (1991)
## 87261 Michael (1996)
## 87412 Vegas Vacation (1997)
## 87734 Excess Baggage (1997)
## 88375 Scream 2 (1997)
## 89124 White Squall (1996)
## 89571 Island of Dr. Moreau, The (1996)
## 89651 Funeral, The (1996)
## 89855 Murder in the First (1995)
## 89938 With Honors (1994)
## 89985 What's Love Got to Do with It (1993)
## 90031 Killing Zoe (1994)
## 90498 Before Sunrise (1995)
## 90547 Nobody's Fool (1994)
## 91123 Substitute, The (1996)
## 92021 2 Days in the Valley (1996)
## 92376 Con Air (1997)
## 92491 Trees Lounge (1996)
## 92530 Tie Me Up! Tie Me Down! (1990)
## 93317 Forget Paris (1995)
## 93370 Just Cause (1995)
## 93410 Paper, The (1994)
## 93478 Malice (1993)
## 93663 She's the One (1996)
## 93927 Pallbearer, The (1996)
## 94874 Flirting With Disaster (1996)
## 94943 Six Degrees of Separation (1993)
## 95318 Some Kind of Wonderful (1987)
## 95528 Feeling Minnesota (1996)
## 95627 Doors, The (1991)
## 95866 My Family (1995)
## 96066 Palookaville (1996)
## 96719 Kiss of Death (1995)
## 96734 Mixed Nuts (1994)
## 96861 Assassins (1995)
## 96946 Higher Learning (1995)
## 97066 Night Falls on Manhattan (1997)
## 97114 Under Siege 2: Dark Territory (1995)
## 97152 Poison Ivy II (1995)
## 97382 Blink (1994)
## 97521 Nothing to Lose (1994)
## 97564 Clockers (1995)
## 97812 Shall We Dance? (1937)
## 97917 Band Wagon, The (1953)
## 97987 Waiting to Exhale (1995)
## 98121 Midnight Dancers (Sibak) (1994)
## 98561 My Crazy Life (Mi vida loca) (1993)
## 137 Toy Story (1995)
## 1128 Twelve Monkeys (1995)
## 1929 Richard III (1995)
## 3469 Muppet Treasure Island (1996)
## 4056 Rumble in the Bronx (1995)
## 6576 Star Wars (1977)
## 10764 Fugitive, The (1993)
## 12847 Welcome to the Dollhouse (1995)
## 14542 Fargo (1996)
## 15061 Sgt. Bilko (1996)
## 15332 Mystery Science Theater 3000: The Movie (1996)
## 15539 Truth About Cats & Dogs, The (1996)
## 16076 Rock, The (1996)
## 16426 Twister (1996)
## 16660 Striptease (1996)
## 16840 Independence Day (ID4) (1996)
## 17164 Cable Guy, The (1996)
## 17274 Frighteners, The (1996)
## 17620 Phenomenon (1996)
## 17998 Godfather, The (1972)
## 20614 Long Kiss Goodnight, The (1996)
## 20780 Ghost and the Darkness, The (1996)
## 21148 Willy Wonka and the Chocolate Factory (1971)
## 26316 Return of the Jedi (1983)
## 34024 Star Trek: First Contact (1996)
## 36221 Mars Attacks! (1996)
## 36533 Jerry Maguire (1996)
## 37254 Beavis and Butt-head Do America (1996)
## 37857 Devil's Own, The (1997)
## 38064 Chasing Amy (1997)
## 38195 Grosse Pointe Blank (1997)
## 38354 Austin Powers: International Man of Mystery (1997)
## 38502 Fifth Element, The (1997)
## 38732 Lost World: Jurassic Park, The (1997)
## 38884 Batman & Robin (1997)
## 38978 My Best Friend's Wedding (1997)
## 39204 Men in Black (1997)
## 39588 Contact (1997)
## 40132 Event Horizon (1997)
## 40373 Mimic (1997)
## 40827 Full Monty, The (1997)
## 41226 Starship Troopers (1997)
## 41643 Heat (1995)
## 42362 Leaving Las Vegas (1995)
## 42847 River Wild, The (1994)
## 43018 Time to Kill, A (1996)
## 43860 English Patient, The (1996)
## 44416 Scream (1996)
## 45141 Absolute Power (1997)
## 45382 Donnie Brasco (1997)
## 45646 Liar Liar (1997)
## 45997 Breakdown (1997)
## 46170 Face/Off (1997)
## 46325 Hoodlum (1997)
## 46504 Air Force One (1997)
## 46877 In & Out (1997)
## 47717 Devil's Advocate, The (1997)
## 48323 Titanic (1997)
## 49662 Murder at 1600 (1997)
## 49886 Dante's Peak (1997)
## 50098 Lost Highway (1997)
## 50226 Crash (1996)
## 50535 Cop Land (1997)
## 50746 Conspiracy Theory (1997)
## 51072 Edge, The (1997)
## 51195 Kiss the Girls (1997)
## 51369 Game, The (1997)
## 51564 U Turn (1997)
## 51892 Boogie Nights (1997)
## 52045 Man Who Knew Too Little, The (1997)
## 52119 Alien: Resurrection (1997)
## 52367 Jackie Brown (1997)
## 52490 Wag the Dog (1997)
## 52631 Fallen (1998)
## 52748 Wedding Singer, The (1998)
## 52803 Sphere (1998)
## 53234 Spawn (1997)
## 53423 Sudden Death (1995)
## 56337 Mission: Impossible (1996)
## 56584 Thinner (1996)
## 56889 Kingpin (1996)
## 57065 Nutty Professor, The (1996)
## 57282 Tales from the Crypt Presents: Bordello of Blood (1996)
## 60925 Jackie Chan's First Strike (1996)
## 62054 Courage Under Fire (1996)
## 62260 Dragonheart (1996)
## 62767 Trainspotting (1996)
## 62990 First Wives Club, The (1996)
## 63912 Casablanca (1942)
## 66131 People vs. Larry Flynt, The (1996)
## 67055 Boot, Das (1981)
## 67552 Great Escape, The (1963)
## 68888 Addicted to Love (1997)
## 68988 Anastasia (1997)
## 69053 Mouse Hunt (1997)
## 69268 Things to Do in Denver when You're Dead (1995)
## 69411 Broken Arrow (1996)
## 69595 Young Poisoner's Handbook, The (1995)
## 72708 Eraser (1996)
## 72979 Rear Window (1954)
## 73838 Extreme Measures (1996)
## 77527 Crucible, The (1996)
## 77647 Volcano (1997)
## 77966 I Know What You Did Last Summer (1997)
## 78596 Jackal, The (1997)
## 81886 Ransom (1996)
## 82084 Crow: City of Angels, The (1996)
## 82525 Saint, The (1997)
## 82765 MatchMaker, The (1997)
## 82988 Tomorrow Never Dies (1997)
## 83120 Replacement Killers, The (1998)
## 85749 Mulholland Falls (1996)
## 85872 Arrival, The (1996)
## 85958 Phantom, The (1996)
## 86030 Daylight (1996)
## 86094 Fled (1996)
## 86142 Escape from L.A. (1996)
## 86392 Last Man Standing (1996)
## 87473 Love Jones (1997)
## 87685 Money Talks (1997)
## 87838 Peacemaker, The (1997)
## 88376 Scream 2 (1997)
## 88631 Big Lebowski, The (1998)
## 89252 Down Periscope (1996)
## 89349 Craft, The (1996)
## 89501 Chain Reaction (1996)
## 89572 Island of Dr. Moreau, The (1996)
## 91191 Trigger Effect, The (1996)
## 91356 Turbulence (1997)
## 91813 Waiting for Guffman (1996)
## 92022 2 Days in the Valley (1996)
## 92120 Private Parts (1997)
## 92202 Anaconda (1997)
## 92250 Romy and Michele's High School Reunion (1997)
## 92377 Con Air (1997)
## 92841 Grumpier Old Men (1995)
## 93549 Multiplicity (1996)
## 94196 Bottle Rocket (1996)
## 94515 Joe's Apartment (1996)
## 94550 Curdled (1996)
## 94636 Double Team (1997)
## 94657 Speed 2: Cruise Control (1997)
## 95529 Feeling Minnesota (1996)
## 95590 Get on the Bus (1996)
## 96067 Palookaville (1996)
## 96594 Cemetery Man (Dellamorte Dellamore) (1994)
## 97354 Gridlock'd (1997)
## 97442 Gone Fishin' (1997)
## 138 Toy Story (1995)
## 731 Get Shorty (1995)
## 1129 Twelve Monkeys (1995)
## 2072 Seven (Se7en) (1995)
## 3613 Braveheart (1995)
## 4274 Birdcage, The (1996)
## 5544 Strange Days (1995)
## 5744 Clerks (1994)
## 5857 Disclosure (1994)
## 6111 Ed Wood (1994)
## 6577 Star Wars (1977)
## 7095 Madness of King George, The (1994)
## 7195 Natural Born Killers (1994)
## 7669 Pulp Fiction (1994)
## 8248 Three Colors: Blue (1993)
## 8880 What's Eating Gilbert Grape (1993)
## 9156 Ace Ventura: Pet Detective (1994)
## 9264 Crow, The (1994)
## 9466 Forrest Gump (1994)
## 9763 Four Weddings and a Funeral (1994)
## 9993 Lion King, The (1994)
## 10186 Mask, The (1994)
## 10316 Maverick (1994)
## 10765 Fugitive, The (1993)
## 11253 Jurassic Park (1993)
## 11482 Much Ado About Nothing (1993)
## 11615 Robert A. Heinlein's The Puppet Masters (1994)
## 11732 Remains of the Day, The (1993)
## 12035 Sleepless in Seattle (1993)
## 12269 Blade Runner (1982)
## 12600 Nightmare Before Christmas, The (1993)
## 12957 Home Alone (1990)
## 13111 Aladdin (1992)
## 13362 Terminator 2: Judgment Day (1991)
## 13639 Dances with Wolves (1990)
## 13951 Silence of the Lambs, The (1991)
## 14262 Snow White and the Seven Dwarfs (1937)
## 14543 Fargo (1996)
## 14984 Aristocats, The (1970)
## 15062 Sgt. Bilko (1996)
## 15333 Mystery Science Theater 3000: The Movie (1996)
## 15825 Haunted World of Edward D. Wood Jr., The (1995)
## 16427 Twister (1996)
## 16841 Independence Day (ID4) (1996)
## 17621 Phenomenon (1996)
## 18678 Wizard of Oz, The (1939)
## 18902 Gone with the Wind (1939)
## 19078 Citizen Kane (1941)
## 19642 Big Night (1996)
## 19975 Bedknobs and Broomsticks (1971)
## 20079 Sound of Music, The (1965)
## 20307 Die Hard (1988)
## 21149 Willy Wonka and the Chocolate Factory (1971)
## 21533 Fish Called Wanda, A (1988)
## 21753 Monty Python's Life of Brian (1979)
## 21906 Dirty Dancing (1987)
## 22160 Platoon (1986)
## 22272 Weekend at Bernie's (1989)
## 22337 Basic Instinct (1992)
## 22545 Top Gun (1986)
## 22735 On Golden Pond (1981)
## 22941 Abyss, The (1989)
## 23326 Monty Python and the Holy Grail (1974)
## 23966 Empire Strikes Back, The (1980)
## 24322 Princess Bride, The (1987)
## 24674 Raiders of the Lost Ark (1981)
## 26317 Return of the Jedi (1983)
## 26981 Alien (1979)
## 27614 Blues Brothers, The (1980)
## 28054 Full Metal Jacket (1987)
## 28275 Henry V (1989)
## 28449 Amadeus (1984)
## 28987 Sting, The (1973)
## 29531 Dead Poets Society (1989)
## 30619 Groundhog Day (1993)
## 31096 Back to the Future (1985)
## 31657 Young Frankenstein (1974)
## 31861 This Is Spinal Tap (1984)
## 32088 Indiana Jones and the Last Crusade (1989)
## 32652 Room with a View, A (1986)
## 32928 Field of Dreams (1989)
## 33169 When Harry Met Sally... (1989)
## 33401 Bram Stoker's Dracula (1992)
## 33536 Cape Fear (1991)
## 34025 Star Trek: First Contact (1996)
## 34612 Die Hard 2 (1990)
## 34779 Star Trek VI: The Undiscovered Country (1991)
## 34961 Star Trek: The Wrath of Khan (1982)
## 35186 Star Trek III: The Search for Spock (1984)
## 35368 Star Trek IV: The Voyage Home (1986)
## 35675 Young Guns (1988)
## 36222 Mars Attacks! (1996)
## 36534 Jerry Maguire (1996)
## 36876 Raising Arizona (1987)
## 37404 Last of the Mohicans, The (1992)
## 40518 Hunt for Red October, The (1990)
## 45046 Fierce Creatures (1997)
## 49032 Schindler's List (1993)
## 53013 One Flew Over the Cuckoo's Nest (1975)
## 53901 Bridges of Madison County, The (1995)
## 54116 Miracle on 34th Street (1994)
## 54270 Star Trek: Generations (1994)
## 54380 Muriel's Wedding (1994)
## 54482 Adventures of Priscilla, Queen of the Desert, The (1994)
## 54719 True Lies (1994)
## 54896 Addams Family Values (1993)
## 55060 Black Beauty (1994)
## 55430 Robin Hood: Men in Tights (1993)
## 55699 Brady Bunch Movie, The (1995)
## 55802 Ghost (1990)
## 55979 Batman (1989)
## 56151 Pinocchio (1940)
## 56338 Mission: Impossible (1996)
## 57197 Very Brady Sequel, A (1996)
## 57330 My Favorite Year (1982)
## 57417 Old Yeller (1957)
## 57481 Parent Trap, The (1961)
## 57710 Mary Poppins (1964)
## 57866 Alice in Wonderland (1951)
## 57958 William Shakespeare's Romeo and Juliet (1996)
## 58148 E.T. the Extra-Terrestrial (1982)
## 58546 To Kill a Mockingbird (1962)
## 59064 Highlander (1986)
## 59649 Butch Cassidy and the Sundance Kid (1969)
## 60470 Star Trek: The Motion Picture (1979)
## 60575 Star Trek V: The Final Frontier (1989)
## 60665 Grease (1978)
## 61263 Smoke (1995)
## 61589 Jungle Book, The (1994)
## 61912 Tombstone (1993)
## 63913 Casablanca (1942)
## 64256 My Fair Lady (1964)
## 64790 Thin Man, The (1934)
## 65014 It's a Wonderful Life (1946)
## 65197 Bringing Up Baby (1938)
## 65291 African Queen, The (1951)
## 65717 Bonnie and Clyde (1967)
## 66567 Lawrence of Arabia (1962)
## 66768 Third Man, The (1949)
## 68269 Gandhi (1982)
## 69412 Broken Arrow (1996)
## 70258 Interview with the Vampire (1994)
## 70392 Mary Shelley's Frankenstein (1994)
## 71089 Wyatt Earp (1994)
## 71660 Piano, The (1993)
## 72042 Beauty and the Beast (1991)
## 72891 American in Paris, An (1951)
## 74023 Three Caballeros, The (1945)
## 74395 Victor/Victoria (1982)
## 74507 Crying Game, The (1992)
## 75125 Grifters, The (1990)
## 75373 Quiet Man, The (1952)
## 76059 Stand by Me (1986)
## 76628 Fried Green Tomatoes (1991)
## 79480 House of the Spirits, The (1993)
## 79533 Singin' in the Rain (1952)
## 80425 First Knight (1995)
## 80560 Nine Months (1995)
## 80758 Immortal Beloved (1994)
## 80876 Nell (1994)
## 81257 Philadelphia (1993)
## 81376 Shadowlands (1993)
## 81447 Sirens (1994)
## 81498 Threesome (1994)
## 81565 Pretty Woman (1990)
## 81700 Jane Eyre (1996)
## 82085 Crow: City of Angels, The (1996)
## 82372 Benny & Joon (1993)
## 84701 Tommy Boy (1995)
## 84863 It Could Happen to You (1994)
## 85229 Rising Sun (1993)
## 85326 Andre (1994)
## 86513 Shaggy Dog, The (1959)
## 89939 With Honors (1994)
## 90161 Fox and the Hound, The (1981)
## 90380 Indian in the Cupboard, The (1995)
## 90693 Orlando (1993)
## 90797 Funny Face (1957)
## 90821 Affair to Remember, An (1957)
## 91679 Stuart Saves His Family (1995)
## 92842 Grumpier Old Men (1995)
## 93212 Hamlet (1996)
## 93284 Two if by Sea (1996)
## 93751 Ghost and Mrs. Muir, The (1947)
## 95204 Twelfth Night (1996)
## 95561 Escape to Witch Mountain (1975)
## 95628 Doors, The (1991)
## 96187 Spanking the Monkey (1994)
## 96418 Young Guns II (1990)
## 96975 When a Man Loves a Woman (1994)
## 97906 Love Affair (1994)
## 98402 M. Butterfly (1993)
## 98720 Bye Bye, Love (1995)
## 98784 Madame Butterfly (1995)
## 98851 Little Princess, The (1939)
## 98984 Gold Diggers: The Secret of Bear Mountain (1995)
## 139 Toy Story (1995)
## 1130 Twelve Monkeys (1995)
## 1702 Dead Man Walking (1995)
## 1930 Richard III (1995)
## 2073 Seven (Se7en) (1995)
## 2560 Mighty Aphrodite (1995)
## 2735 Postino, Il (1994)
## 2959 Mr. Holland's Opus (1995)
## 3313 Antonia's Line (1995)
## 3387 Angels and Insects (1995)
## 3614 Braveheart (1995)
## 3871 Taxi Driver (1976)
## 4057 Rumble in the Bronx (1995)
## 5209 Crumb (1994)
## 5987 Eat Drink Man Woman (1994)
## 6242 Hoop Dreams (1994)
## 6578 Star Wars (1977)
## 7443 Professional, The (1994)
## 7670 Pulp Fiction (1994)
## 8312 Three Colors: White (1994)
## 10766 Fugitive, The (1993)
## 11483 Much Ado About Nothing (1993)
## 12270 Blade Runner (1982)
## 13363 Terminator 2: Judgment Day (1991)
## 13952 Silence of the Lambs, The (1991)
## 14544 Fargo (1996)
## 15540 Truth About Cats & Dogs, The (1996)
## 15773 Wallace & Gromit: The Best of Aardman Animation (1996)
## 16077 Rock, The (1996)
## 16842 Independence Day (ID4) (1996)
## 17413 Lone Star (1996)
## 17622 Phenomenon (1996)
## 17999 Godfather, The (1972)
## 19079 Citizen Kane (1941)
## 19643 Big Night (1996)
## 20308 Die Hard (1988)
## 20938 Swingers (1996)
## 21150 Willy Wonka and the Chocolate Factory (1971)
## 21534 Fish Called Wanda, A (1988)
## 23967 Empire Strikes Back, The (1980)
## 25786 Clockwork Orange, A (1971)
## 26008 Apocalypse Now (1979)
## 26318 Return of the Jedi (1983)
## 27615 Blues Brothers, The (1980)
## 27854 Godfather: Part II, The (1974)
## 28450 Amadeus (1984)
## 28988 Sting, The (1973)
## 29985 Nikita (La Femme Nikita) (1990)
## 30119 Bridge on the River Kwai, The (1957)
## 31097 Back to the Future (1985)
## 31862 This Is Spinal Tap (1984)
## 32089 Indiana Jones and the Last Crusade (1989)
## 32384 M*A*S*H (1970)
## 33863 Breaking the Waves (1996)
## 34026 Star Trek: First Contact (1996)
## 34962 Star Trek: The Wrath of Khan (1982)
## 36535 Jerry Maguire (1996)
## 36877 Raising Arizona (1987)
## 37255 Beavis and Butt-head Do America (1996)
## 37531 Kolya (1996)
## 37752 Smilla's Sense of Snow (1997)
## 38065 Chasing Amy (1997)
## 38196 Grosse Pointe Blank (1997)
## 38503 Fifth Element, The (1997)
## 38654 Shall We Dance? (1996)
## 38979 My Best Friend's Wedding (1997)
## 39107 When the Cats Away (Chacun cherche son chat) (1996)
## 39205 Men in Black (1997)
## 39589 Contact (1997)
## 39984 George of the Jungle (1997)
## 40828 Full Monty, The (1997)
## 41447 Good Will Hunting (1997)
## 41861 Sabrina (1995)
## 42066 Sense and Sensibility (1995)
## 42363 Leaving Las Vegas (1995)
## 42580 Restoration (1995)
## 42700 Once Upon a Time... When We Were Colored (1995)
## 42848 River Wild, The (1994)
## 43019 Time to Kill, A (1996)
## 43415 Tin Cup (1996)
## 43601 Secrets & Lies (1996)
## 43861 English Patient, The (1996)
## 44215 Marvin's Room (1996)
## 44820 Evita (1996)
## 45258 Rosewood (1997)
## 45383 Donnie Brasco (1997)
## 45647 Liar Liar (1997)
## 46073 Ulee's Gold (1997)
## 46171 Face/Off (1997)
## 46878 In & Out (1997)
## 47379 Fly Away Home (1996)
## 47895 Deceiver (1997)
## 48324 Titanic (1997)
## 48619 Apt Pupil (1998)
## 53014 One Flew Over the Cuckoo's Nest (1975)
## 58547 To Kill a Mockingbird (1962)
## 58861 Day the Earth Stood Still, The (1951)
## 59650 Butch Cassidy and the Sundance Kid (1969)
## 60926 Jackie Chan's First Strike (1996)
## 61364 Like Water For Chocolate (Como agua para chocolate) (1992)
## 61835 Short Cuts (1993)
## 62768 Trainspotting (1996)
## 63523 North by Northwest (1959)
## 63753 Some Like It Hot (1959)
## 63914 Casablanca (1942)
## 64124 Maltese Falcon, The (1941)
## 64257 My Fair Lady (1964)
## 65292 African Queen, The (1951)
## 65718 Bonnie and Clyde (1967)
## 66132 People vs. Larry Flynt, The (1996)
## 66430 Magnificent Seven, The (1954)
## 66873 Annie Hall (1977)
## 67056 Boot, Das (1981)
## 67679 Deer Hunter, The (1978)
## 67850 Cool Hand Luke (1967)
## 68440 Killing Fields, The (1984)
## 69269 Things to Do in Denver when You're Dead (1995)
## 74252 Sleepers (1996)
## 74611 Sophie's Choice (1982)
## 75749 Rosencrantz and Guildenstern Are Dead (1990)
## 75885 Chinatown (1974)
## 76499 Arsenic and Old Lace (1944)
## 76938 Being There (1979)
## 78308 Executive Decision (1996)
## 78545 Leave It to Beaver (1997)
## 79160 City Hall (1996)
## 79534 Singin' in the Rain (1952)
## 82845 Amistad (1997)
## 85431 One Fine Day (1996)
## 86634 That Thing You Do! (1996)
## 86765 To Gillian on Her 37th Birthday (1996)
## 86967 Diva (1981)
## 88512 Postman, The (1997)
## 89058 Raise the Red Lantern (1991)
## 90233 Booty Call (1997)
## 90347 Georgia (1995)
## 90694 Orlando (1993)
## 90751 Some Folks Call It a Sling Blade (1993)
## 91814 Waiting for Guffman (1996)
## 91903 Stealing Beauty (1996)
## 94332 Shallow Grave (1994)
## 95798 When We Were Kings (1996)
## 96040 Love! Valour! Compassion! (1997)
## 97416 A Chef in Love (1996)
## 97772 Before and After (1996)
## 140 Toy Story (1995)
## 732 Get Shorty (1995)
## 1131 Twelve Monkeys (1995)
## 1453 Babe (1995)
## 2074 Seven (Se7en) (1995)
## 2312 Usual Suspects, The (1995)
## 2561 Mighty Aphrodite (1995)
## 3225 From Dusk Till Dawn (1996)
## 3388 Angels and Insects (1995)
## 3615 Braveheart (1995)
## 4058 Rumble in the Bronx (1995)
## 4275 Birdcage, The (1996)
## 4560 Bad Boys (1995)
## 4688 Apollo 13 (1995)
## 5074 Crimson Tide (1995)
## 5210 Crumb (1994)
## 5363 Doom Generation, The (1995)
## 5745 Clerks (1994)
## 6112 Ed Wood (1994)
## 6579 Star Wars (1977)
## 7196 Natural Born Killers (1994)
## 7444 Professional, The (1994)
## 7671 Pulp Fiction (1994)
## 7948 Priest (1994)
## 9467 Forrest Gump (1994)
## 9764 Four Weddings and a Funeral (1994)
## 10317 Maverick (1994)
## 10767 Fugitive, The (1993)
## 11484 Much Ado About Nothing (1993)
## 11733 Remains of the Day, The (1993)
## 12271 Blade Runner (1982)
## 12489 So I Married an Axe Murderer (1993)
## 12738 True Romance (1993)
## 13112 Aladdin (1992)
## 13640 Dances with Wolves (1990)
## 13953 Silence of the Lambs, The (1991)
## 14545 Fargo (1996)
## 14985 Aristocats, The (1970)
## 15248 Kids in the Hall: Brain Candy (1996)
## 15334 Mystery Science Theater 3000: The Movie (1996)
## 15541 Truth About Cats & Dogs, The (1996)
## 15774 Wallace & Gromit: The Best of Aardman Animation (1996)
## 15881 Cold Comfort Farm (1995)
## 16078 Rock, The (1996)
## 16428 Twister (1996)
## 17414 Lone Star (1996)
## 18313 Supercop (1992)
## 18399 Bound (1996)
## 18903 Gone with the Wind (1939)
## 19303 2001: A Space Odyssey (1968)
## 19644 Big Night (1996)
## 20080 Sound of Music, The (1965)
## 20309 Die Hard (1988)
## 20615 Long Kiss Goodnight, The (1996)
## 20781 Ghost and the Darkness, The (1996)
## 21151 Willy Wonka and the Chocolate Factory (1971)
## 21535 Fish Called Wanda, A (1988)
## 21754 Monty Python's Life of Brian (1979)
## 22028 Reservoir Dogs (1992)
## 22161 Platoon (1986)
## 22436 Glengarry Glen Ross (1992)
## 23327 Monty Python and the Holy Grail (1974)
## 24323 Princess Bride, The (1987)
## 24675 Raiders of the Lost Ark (1981)
## 25045 Brazil (1985)
## 25265 Aliens (1986)
## 26319 Return of the Jedi (1983)
## 26741 GoodFellas (1990)
## 26982 Alien (1979)
## 27380 Psycho (1960)
## 28451 Amadeus (1984)
## 28989 Sting, The (1973)
## 29246 Terminator, The (1984)
## 29532 Dead Poets Society (1989)
## 29770 Graduate, The (1967)
## 29986 Nikita (La Femme Nikita) (1990)
## 30299 Shining, The (1980)
## 30474 Evil Dead II (1987)
## 30620 Groundhog Day (1993)
## 31098 Back to the Future (1985)
## 31658 Young Frankenstein (1974)
## 31863 This Is Spinal Tap (1984)
## 32090 Indiana Jones and the Last Crusade (1989)
## 32385 M*A*S*H (1970)
## 32653 Room with a View, A (1986)
## 32929 Field of Dreams (1989)
## 33170 When Harry Met Sally... (1989)
## 33537 Cape Fear (1991)
## 34027 Star Trek: First Contact (1996)
## 34320 Sling Blade (1996)
## 34963 Star Trek: The Wrath of Khan (1982)
## 35369 Star Trek IV: The Voyage Home (1986)
## 35544 Batman Returns (1992)
## 35782 Under Siege (1992)
## 35957 Jaws (1975)
## 36223 Mars Attacks! (1996)
## 36536 Jerry Maguire (1996)
## 36878 Raising Arizona (1987)
## 37647 Jungle2Jungle (1997)
## 37858 Devil's Own, The (1997)
## 38197 Grosse Pointe Blank (1997)
## 38355 Austin Powers: International Man of Mystery (1997)
## 38504 Fifth Element, The (1997)
## 39206 Men in Black (1997)
## 39590 Contact (1997)
## 40519 Hunt for Red October, The (1990)
## 40715 unknown
## 40829 Full Monty, The (1997)
## 41227 Starship Troopers (1997)
## 41448 Good Will Hunting (1997)
## 41644 Heat (1995)
## 42067 Sense and Sensibility (1995)
## 42581 Restoration (1995)
## 43020 Time to Kill, A (1996)
## 43228 Emma (1996)
## 43416 Tin Cup (1996)
## 43862 English Patient, The (1996)
## 44417 Scream (1996)
## 45384 Donnie Brasco (1997)
## 45648 Liar Liar (1997)
## 46172 Face/Off (1997)
## 46505 Air Force One (1997)
## 46879 In & Out (1997)
## 47126 L.A. Confidential (1997)
## 47718 Devil's Advocate, The (1997)
## 50358 G.I. Jane (1997)
## 51722 Bean (1997)
## 52491 Wag the Dog (1997)
## 53015 One Flew Over the Cuckoo's Nest (1975)
## 53636 Clueless (1995)
## 57711 Mary Poppins (1964)
## 58149 E.T. the Extra-Terrestrial (1982)
## 58955 Duck Soup (1933)
## 59228 Fantasia (1940)
## 59651 Butch Cassidy and the Sundance Kid (1969)
## 60036 Birds, The (1963)
## 60263 Carrie (1976)
## 60375 Omen, The (1976)
## 60927 Jackie Chan's First Strike (1996)
## 61590 Jungle Book, The (1994)
## 62055 Courage Under Fire (1996)
## 62550 Dr. Strangelove or: How I Learned to Stop Worrying and Love the Bomb (1963)
## 62769 Trainspotting (1996)
## 63342 Vertigo (1958)
## 63524 North by Northwest (1959)
## 64258 My Fair Lady (1964)
## 65293 African Queen, The (1951)
## 66133 People vs. Larry Flynt, The (1996)
## 66874 Annie Hall (1977)
## 67057 Boot, Das (1981)
## 68270 Gandhi (1982)
## 68549 My Life as a Dog (Mitt liv som hund) (1985)
## 68889 Addicted to Love (1997)
## 69413 Broken Arrow (1996)
## 71222 Boxing Helena (1993)
## 71661 Piano, The (1993)
## 72043 Beauty and the Beast (1991)
## 72564 Hunchback of Notre Dame, The (1996)
## 72980 Rear Window (1954)
## 74059 Sword in the Stone, The (1963)
## 74253 Sleepers (1996)
## 74396 Victor/Victoria (1982)
## 75750 Rosencrantz and Guildenstern Are Dead (1990)
## 76500 Arsenic and Old Lace (1944)
## 77648 Volcano (1997)
## 78480 McHale's Navy (1997)
## 78710 Seven Years in Tibet (1997)
## 78883 American President, The (1995)
## 79306 Little Women (1994)
## 79535 Singin' in the Rain (1952)
## 80237 Home for the Holidays (1995)
## 80654 Circle of Friends (1995)
## 81377 Shadowlands (1993)
## 81887 Ransom (1996)
## 82248 Real Genius (1985)
## 82526 Saint, The (1997)
## 82846 Amistad (1997)
## 82989 Tomorrow Never Dies (1997)
## 83121 Replacement Killers, The (1998)
## 87158 My Fellow Americans (1996)
## 88884 City of Lost Children, The (1995)
## 90162 Fox and the Hound, The (1981)
## 91301 Shadow Conspiracy (1997)
## 91815 Waiting for Guffman (1996)
## 92251 Romy and Michele's High School Reunion (1997)
## 92378 Con Air (1997)
## 94333 Shallow Grave (1994)
## 95080 Death and the Maiden (1994)
## 95673 Ghosts of Mississippi (1996)
## 96862 Assassins (1995)
## 97886 Indian Summer (1996)
## 141 Toy Story (1995)
## 1454 Babe (1995)
## 1703 Dead Man Walking (1995)
## 3616 Braveheart (1995)
## 3872 Taxi Driver (1976)
## 4689 Apollo 13 (1995)
## 6580 Star Wars (1977)
## 8020 Quiz Show (1994)
## 9468 Forrest Gump (1994)
## 9994 Lion King, The (1994)
## 10768 Fugitive, The (1993)
## 12036 Sleepless in Seattle (1993)
## 12601 Nightmare Before Christmas, The (1993)
## 13641 Dances with Wolves (1990)
## 13954 Silence of the Lambs, The (1991)
## 14263 Snow White and the Seven Dwarfs (1937)
## 16429 Twister (1996)
## 16843 Independence Day (ID4) (1996)
## 17623 Phenomenon (1996)
## 18000 Godfather, The (1972)
## 18679 Wizard of Oz, The (1939)
## 18904 Gone with the Wind (1939)
## 19080 Citizen Kane (1941)
## 20081 Sound of Music, The (1965)
## 20310 Die Hard (1988)
## 21152 Willy Wonka and the Chocolate Factory (1971)
## 21397 Sleeper (1973)
## 21536 Fish Called Wanda, A (1988)
## 23328 Monty Python and the Holy Grail (1974)
## 23968 Empire Strikes Back, The (1980)
## 24676 Raiders of the Lost Ark (1981)
## 25633 12 Angry Men (1957)
## 26320 Return of the Jedi (1983)
## 26983 Alien (1979)
## 27381 Psycho (1960)
## 27616 Blues Brothers, The (1980)
## 27855 Godfather: Part II, The (1974)
## 28802 Right Stuff, The (1983)
## 28990 Sting, The (1973)
## 29247 Terminator, The (1984)
## 29533 Dead Poets Society (1989)
## 29771 Graduate, The (1967)
## 30120 Bridge on the River Kwai, The (1957)
## 30300 Shining, The (1980)
## 30621 Groundhog Day (1993)
## 30869 Unforgiven (1992)
## 31099 Back to the Future (1985)
## 31379 Patton (1970)
## 31659 Young Frankenstein (1974)
## 32091 Indiana Jones and the Last Crusade (1989)
## 32386 M*A*S*H (1970)
## 32654 Room with a View, A (1986)
## 32930 Field of Dreams (1989)
## 36537 Jerry Maguire (1996)
## 38733 Lost World: Jurassic Park, The (1997)
## 39207 Men in Black (1997)
## 40233 Air Bud (1997)
## 40520 Hunt for Red October, The (1990)
## 41862 Sabrina (1995)
## 42068 Sense and Sensibility (1995)
## 42364 Leaving Las Vegas (1995)
## 42849 River Wild, The (1994)
## 43021 Time to Kill, A (1996)
## 43417 Tin Cup (1996)
## 43863 English Patient, The (1996)
## 45649 Liar Liar (1997)
## 48079 Wings of the Dove, The (1997)
## 48877 In the Name of the Father (1993)
## 49033 Schindler's List (1993)
## 51370 Game, The (1997)
## 52867 Client, The (1994)
## 53016 One Flew Over the Cuckoo's Nest (1975)
## 55271 Mrs. Doubtfire (1993)
## 55803 Ghost (1990)
## 57575 Cinderella (1950)
## 57712 Mary Poppins (1964)
## 58150 E.T. the Extra-Terrestrial (1982)
## 58548 To Kill a Mockingbird (1962)
## 58956 Duck Soup (1933)
## 59229 Fantasia (1940)
## 59652 Butch Cassidy and the Sundance Kid (1969)
## 61591 Jungle Book, The (1994)
## 62056 Courage Under Fire (1996)
## 62407 James and the Giant Peach (1996)
## 62551 Dr. Strangelove or: How I Learned to Stop Worrying and Love the Bomb (1963)
## 63128 Matilda (1996)
## 63343 Vertigo (1958)
## 63754 Some Like It Hot (1959)
## 63915 Casablanca (1942)
## 64125 Maltese Falcon, The (1941)
## 64259 My Fair Lady (1964)
## 64372 Sabrina (1954)
## 65015 It's a Wonderful Life (1946)
## 65294 African Queen, The (1951)
## 65606 Bananas (1971)
## 65652 Candidate, The (1972)
## 65719 Bonnie and Clyde (1967)
## 65990 Streetcar Named Desire, A (1951)
## 66568 Lawrence of Arabia (1962)
## 66875 Annie Hall (1977)
## 67851 Cool Hand Luke (1967)
## 68117 Ben-Hur (1959)
## 68271 Gandhi (1982)
## 68640 Man Who Would Be King, The (1975)
## 69414 Broken Arrow (1996)
## 69659 Rob Roy (1995)
## 72044 Beauty and the Beast (1991)
## 72565 Hunchback of Notre Dame, The (1996)
## 72981 Rear Window (1954)
## 73151 It Happened One Night (1934)
## 74060 Sword in the Stone, The (1963)
## 75595 Glory (1989)
## 75751 Rosencrantz and Guildenstern Are Dead (1990)
## 76629 Fried Green Tomatoes (1991)
## 77836 Conan the Barbarian (1981)
## 79536 Singin' in the Rain (1952)
## 81888 Ransom (1996)
## 85630 Space Jam (1996)
## 86482 Pollyanna (1960)
## 86635 That Thing You Do! (1996)
## 87159 My Fellow Americans (1996)
## 87262 Michael (1996)
## 90163 Fox and the Hound, The (1981)
## 90381 Indian in the Cupboard, The (1995)
## 91579 Hercules (1997)
## 95799 When We Were Kings (1996)
## 98174 Dingo (1992)
## 142 Toy Story (1995)
## 733 Get Shorty (1995)
## 1132 Twelve Monkeys (1995)
## 1931 Richard III (1995)
## 2313 Usual Suspects, The (1995)
## 2562 Mighty Aphrodite (1995)
## 2736 Postino, Il (1994)
## 3226 From Dusk Till Dawn (1996)
## 3314 Antonia's Line (1995)
## 3389 Angels and Insects (1995)
## 3873 Taxi Driver (1976)
## 4059 Rumble in the Bronx (1995)
## 4276 Birdcage, The (1996)
## 4487 Brothers McMullen, The (1995)
## 4690 Apollo 13 (1995)
## 5211 Crumb (1994)
## 5988 Eat Drink Man Woman (1994)
## 6113 Ed Wood (1994)
## 6243 Hoop Dreams (1994)
## 6345 I.Q. (1994)
## 6581 Star Wars (1977)
## 7096 Madness of King George, The (1994)
## 7445 Professional, The (1994)
## 7672 Pulp Fiction (1994)
## 8021 Quiz Show (1994)
## 8174 Three Colors: Red (1994)
## 8249 Three Colors: Blue (1993)
## 8313 Three Colors: White (1994)
## 9157 Ace Ventura: Pet Detective (1994)
## 9765 Four Weddings and a Funeral (1994)
## 9995 Lion King, The (1994)
## 10187 Mask, The (1994)
## 10318 Maverick (1994)
## 10526 Firm, The (1993)
## 11097 Hudsucker Proxy, The (1994)
## 11485 Much Ado About Nothing (1993)
## 11734 Remains of the Day, The (1993)
## 12037 Sleepless in Seattle (1993)
## 12272 Blade Runner (1982)
## 12602 Nightmare Before Christmas, The (1993)
## 12848 Welcome to the Dollhouse (1995)
## 12958 Home Alone (1990)
## 13113 Aladdin (1992)
## 13642 Dances with Wolves (1990)
## 13955 Silence of the Lambs, The (1991)
## 14264 Snow White and the Seven Dwarfs (1937)
## 14546 Fargo (1996)
## 14915 Heavy Metal (1981)
## 15542 Truth About Cats & Dogs, The (1996)
## 15775 Wallace & Gromit: The Best of Aardman Animation (1996)
## 15826 Haunted World of Edward D. Wood Jr., The (1995)
## 16430 Twister (1996)
## 18001 Godfather, The (1972)
## 18400 Bound (1996)
## 19081 Citizen Kane (1941)
## 19304 2001: A Space Odyssey (1968)
## 19508 Mr. Smith Goes to Washington (1939)
## 19645 Big Night (1996)
## 20082 Sound of Music, The (1965)
## 20311 Die Hard (1988)
## 20939 Swingers (1996)
## 21153 Willy Wonka and the Chocolate Factory (1971)
## 21398 Sleeper (1973)
## 21537 Fish Called Wanda, A (1988)
## 21755 Monty Python's Life of Brian (1979)
## 23067 Jean de Florette (1986)
## 23129 Manon of the Spring (Manon des sources) (1986)
## 23193 Private Benjamin (1980)
## 23329 Monty Python and the Holy Grail (1974)
## 23590 Wrong Trousers, The (1993)
## 23704 Cinema Paradiso (1988)
## 23813 Delicatessen (1991)
## 24324 Princess Bride, The (1987)
## 24677 Raiders of the Lost Ark (1981)
## 25046 Brazil (1985)
## 25266 Aliens (1986)
## 25787 Clockwork Orange, A (1971)
## 26321 Return of the Jedi (1983)
## 26742 GoodFellas (1990)
## 27382 Psycho (1960)
## 27617 Blues Brothers, The (1980)
## 28276 Henry V (1989)
## 28452 Amadeus (1984)
## 28991 Sting, The (1973)
## 29772 Graduate, The (1967)
## 29987 Nikita (La Femme Nikita) (1990)
## 30622 Groundhog Day (1993)
## 31100 Back to the Future (1985)
## 31545 Cyrano de Bergerac (1990)
## 31660 Young Frankenstein (1974)
## 31864 This Is Spinal Tap (1984)
## 32092 Indiana Jones and the Last Crusade (1989)
## 32387 M*A*S*H (1970)
## 32554 Unbearable Lightness of Being, The (1988)
## 32655 Room with a View, A (1986)
## 33171 When Harry Met Sally... (1989)
## 34028 Star Trek: First Contact (1996)
## 34964 Star Trek: The Wrath of Khan (1982)
## 35187 Star Trek III: The Search for Spock (1984)
## 36224 Mars Attacks! (1996)
## 36538 Jerry Maguire (1996)
## 36879 Raising Arizona (1987)
## 37092 Sneakers (1992)
## 37256 Beavis and Butt-head Do America (1996)
## 37405 Last of the Mohicans, The (1992)
## 37753 Smilla's Sense of Snow (1997)
## 38198 Grosse Pointe Blank (1997)
## 38356 Austin Powers: International Man of Mystery (1997)
## 38655 Shall We Dance? (1996)
## 38980 My Best Friend's Wedding (1997)
## 39208 Men in Black (1997)
## 39985 George of the Jungle (1997)
## 40374 Mimic (1997)
## 41073 Gattaca (1997)
## 41228 Starship Troopers (1997)
## 41863 Sabrina (1995)
## 42069 Sense and Sensibility (1995)
## 42365 Leaving Las Vegas (1995)
## 42649 Bed of Roses (1996)
## 43229 Emma (1996)
## 43602 Secrets & Lies (1996)
## 43864 English Patient, The (1996)
## 44418 Scream (1996)
## 44821 Evita (1996)
## 45650 Liar Liar (1997)
## 46074 Ulee's Gold (1997)
## 46173 Face/Off (1997)
## 46506 Air Force One (1997)
## 47127 L.A. Confidential (1997)
## 47509 Ice Storm, The (1997)
## 48080 Wings of the Dove, The (1997)
## 48325 Titanic (1997)
## 49034 Schindler's List (1993)
## 49294 Everyone Says I Love You (1996)
## 51371 Game, The (1997)
## 52120 Alien: Resurrection (1997)
## 52282 Deconstructing Harry (1997)
## 52368 Jackie Brown (1997)
## 52492 Wag the Dog (1997)
## 52749 Wedding Singer, The (1998)
## 53637 Clueless (1995)
## 54117 Miracle on 34th Street (1994)
## 54381 Muriel's Wedding (1994)
## 54614 Naked Gun 33 1/3: The Final Insult (1994)
## 54980 Age of Innocence, The (1993)
## 55272 Mrs. Doubtfire (1993)
## 55492 Serial Mom (1994)
## 55584 Three Musketeers, The (1993)
## 55804 Ghost (1990)
## 56694 Close Shave, A (1995)
## 57576 Cinderella (1950)
## 58151 E.T. the Extra-Terrestrial (1982)
## 59230 Fantasia (1940)
## 59409 Heathers (1989)
## 59653 Butch Cassidy and the Sundance Kid (1969)
## 61264 Smoke (1995)
## 61365 Like Water For Chocolate (Como agua para chocolate) (1992)
## 62408 James and the Giant Peach (1996)
## 62552 Dr. Strangelove or: How I Learned to Stop Worrying and Love the Bomb (1963)
## 62770 Trainspotting (1996)
## 63221 Philadelphia Story, The (1940)
## 63344 Vertigo (1958)
## 63525 North by Northwest (1959)
## 63664 Apartment, The (1960)
## 63755 Some Like It Hot (1959)
## 63916 Casablanca (1942)
## 64126 Maltese Falcon, The (1941)
## 64260 My Fair Lady (1964)
## 64433 Roman Holiday (1953)
## 64500 Sunset Blvd. (1950)
## 65016 It's a Wonderful Life (1946)
## 65295 African Queen, The (1951)
## 65501 Dumbo (1941)
## 65607 Bananas (1971)
## 65653 Candidate, The (1972)
## 66134 People vs. Larry Flynt, The (1996)
## 66313 My Left Foot (1989)
## 66431 Magnificent Seven, The (1954)
## 66569 Lawrence of Arabia (1962)
## 66706 Wings of Desire (1987)
## 66769 Third Man, The (1949)
## 66876 Annie Hall (1977)
## 67058 Boot, Das (1981)
## 67222 Local Hero (1983)
## 67290 Manhattan (1979)
## 67779 Down by Law (1986)
## 68550 My Life as a Dog (Mitt liv som hund) (1985)
## 68738 Shine (1996)
## 68989 Anastasia (1997)
## 69230 Miserables, Les (1995)
## 69415 Broken Arrow (1996)
## 69966 Walk in the Clouds, A (1995)
## 71383 Coneheads (1993)
## 71662 Piano, The (1993)
## 72045 Beauty and the Beast (1991)
## 72709 Eraser (1996)
## 72892 American in Paris, An (1951)
## 72982 Rear Window (1954)
## 73262 All About Eve (1950)
## 73320 Rebecca (1940)
## 73671 39 Steps, The (1935)
## 74727 Microcosmos: Le peuple de l'herbe (1996)
## 75001 Cook the Thief His Wife & Her Lover, The (1989)
## 75071 Paths of Glory (1957)
## 75126 Grifters, The (1990)
## 75230 Paris Is Burning (1990)
## 75312 Ran (1985)
## 75752 Rosencrantz and Guildenstern Are Dead (1990)
## 76060 Stand by Me (1986)
## 76849 Somewhere in Time (1980)
## 78884 American President, The (1995)
## 79415 Barcelona (1994)
## 79937 Better Off Dead... (1985)
## 80159 To Die For (1995)
## 80655 Circle of Friends (1995)
## 80759 Immortal Beloved (1994)
## 80819 Junior (1994)
## 80933 Queen Margot (Reine Margot, La) (1994)
## 81042 Dave (1993)
## 81177 Go Fish (1994)
## 81566 Pretty Woman (1990)
## 81889 Ransom (1996)
## 82249 Real Genius (1985)
## 82373 Benny & Joon (1993)
## 82766 MatchMaker, The (1997)
## 83122 Replacement Killers, The (1998)
## 83155 Burnt By the Sun (1994)
## 84276 Don Juan DeMarco (1995)
## 84577 Only You (1994)
## 84784 Bullets Over Broadway (1994)
## 85307 Thirty-Two Short Films About Glenn Gould (1993)
## 85364 Celluloid Closet, The (1995)
## 85631 Space Jam (1996)
## 86814 Looking for Richard (1996)
## 86968 Diva (1981)
## 87030 Night on Earth (1991)
## 88204 Tango Lesson, The (1997)
## 88377 Scream 2 (1997)
## 88815 Primary Colors (1998)
## 88832 Lost in Space (1998)
## 88885 City of Lost Children, The (1995)
## 88971 Farewell My Concubine (1993)
## 89746 Brassed Off (1996)
## 90348 Georgia (1995)
## 90477 Unzipped (1995)
## 90499 Before Sunrise (1995)
## 90611 Dazed and Confused (1993)
## 90726 Ruby in Paradise (1993)
## 90798 Funny Face (1957)
## 90947 Hear My Song (1991)
## 90960 Mediterraneo (1991)
## 91696 Cabin Boy (1994)
## 91764 Double vie de Veronique, La (Double Life of Veronique, The) (1991)
## 91790 Until the End of the World (Bis ans Ende der Welt) (1991)
## 92531 Tie Me Up! Tie Me Down! (1990)
## 92598 Gaslight (1944)
## 92630 8 1/2 (1963)
## 93126 Drop Dead Fred (1991)
## 93213 Hamlet (1996)
## 93550 Multiplicity (1996)
## 93752 Ghost and Mrs. Muir, The (1947)
## 93913 Cronos (1992)
## 94231 Star Maker, The (Uomo delle stelle, L') (1995)
## 94334 Shallow Grave (1994)
## 94398 Reality Bites (1994)
## 95010 Trust (1990)
## 95319 Some Kind of Wonderful (1987)
## 95530 Feeling Minnesota (1996)
## 95780 War Room, The (1993)
## 96808 In the Realm of the Senses (Ai no corrida) (1976)
## 97032 King of the Hill (1993)
## 97067 Night Falls on Manhattan (1997)
## 97094 Awfully Big Adventure, An (1995)
## 97468 Trial and Error (1997)
## 97935 'Til There Was You (1997)
## 98079 Metisse (Cafe au Lait) (1993)
## 98278 Love and Other Catastrophes (1996)
## 98997 Nelly & Monsieur Arnaud (1995)
## 99000 Three Lives and Only One Death (1996)
## 14547 Fargo (1996)
## 37648 Jungle2Jungle (1997)
## 39209 Men in Black (1997)
## 40234 Air Bud (1997)
## 40375 Mimic (1997)
## 44419 Scream (1996)
## 45651 Liar Liar (1997)
## 46507 Air Force One (1997)
## 49663 Murder at 1600 (1997)
## 50747 Conspiracy Theory (1997)
## 56798 Jack (1996)
## 61046 Beverly Hills Ninja (1997)
## 78481 McHale's Navy (1997)
## 86242 Bulletproof (1996)
## 87474 Love Jones (1997)
## 87686 Money Talks (1997)
## 90234 Booty Call (1997)
## 92121 Private Parts (1997)
## 94801 Thin Line Between Love and Hate, A (1996)
## 143 Toy Story (1995)
## 490 GoldenEye (1995)
## 613 Four Rooms (1995)
## 734 Get Shorty (1995)
## 1133 Twelve Monkeys (1995)
## 1455 Babe (1995)
## 1704 Dead Man Walking (1995)
## 2075 Seven (Se7en) (1995)
## 2314 Usual Suspects, The (1995)
## 2960 Mr. Holland's Opus (1995)
## 3227 From Dusk Till Dawn (1996)
## 3470 Muppet Treasure Island (1996)
## 3617 Braveheart (1995)
## 4060 Rumble in the Bronx (1995)
## 4277 Birdcage, The (1996)
## 4691 Apollo 13 (1995)
## 4911 Batman Forever (1995)
## 5075 Crimson Tide (1995)
## 5297 Desperado (1995)
## 5545 Strange Days (1995)
## 5674 Billy Madison (1995)
## 5746 Clerks (1994)
## 5858 Disclosure (1994)
## 6114 Ed Wood (1994)
## 6582 Star Wars (1977)
## 7019 Legends of the Fall (1994)
## 7197 Natural Born Killers (1994)
## 7321 Outbreak (1995)
## 7673 Pulp Fiction (1994)
## 8022 Quiz Show (1994)
## 8395 Stargate (1994)
## 8664 Shawshank Redemption, The (1994)
## 9009 While You Were Sleeping (1995)
## 9158 Ace Ventura: Pet Detective (1994)
## 9265 Crow, The (1994)
## 9469 Forrest Gump (1994)
## 9996 Lion King, The (1994)
## 10319 Maverick (1994)
## 10436 Carlito's Way (1993)
## 10527 Firm, The (1993)
## 10769 Fugitive, The (1993)
## 11015 Hot Shots! Part Deux (1993)
## 11098 Hudsucker Proxy, The (1994)
## 11254 Jurassic Park (1993)
## 12038 Sleepless in Seattle (1993)
## 12273 Blade Runner (1982)
## 12490 So I Married an Axe Murderer (1993)
## 12603 Nightmare Before Christmas, The (1993)
## 12959 Home Alone (1990)
## 13114 Aladdin (1992)
## 13364 Terminator 2: Judgment Day (1991)
## 13643 Dances with Wolves (1990)
## 13956 Silence of the Lambs, The (1991)
## 14265 Snow White and the Seven Dwarfs (1937)
## 14548 Fargo (1996)
## 15063 Sgt. Bilko (1996)
## 15335 Mystery Science Theater 3000: The Movie (1996)
## 15543 Truth About Cats & Dogs, The (1996)
## 16079 Rock, The (1996)
## 16431 Twister (1996)
## 16661 Striptease (1996)
## 16844 Independence Day (ID4) (1996)
## 17165 Cable Guy, The (1996)
## 17275 Frighteners, The (1996)
## 18002 Godfather, The (1972)
## 18314 Supercop (1992)
## 18680 Wizard of Oz, The (1939)
## 18905 Gone with the Wind (1939)
## 19764 D3: The Mighty Ducks (1996)
## 19976 Bedknobs and Broomsticks (1971)
## 20083 Sound of Music, The (1965)
## 20312 Die Hard (1988)
## 20501 Lawnmower Man, The (1992)
## 20940 Swingers (1996)
## 21154 Willy Wonka and the Chocolate Factory (1971)
## 21399 Sleeper (1973)
## 21538 Fish Called Wanda, A (1988)
## 21756 Monty Python's Life of Brian (1979)
## 21907 Dirty Dancing (1987)
## 22029 Reservoir Dogs (1992)
## 22162 Platoon (1986)
## 22338 Basic Instinct (1992)
## 22437 Glengarry Glen Ross (1992)
## 22546 Top Gun (1986)
## 22736 On Golden Pond (1981)
## 22829 Return of the Pink Panther, The (1974)
## 22942 Abyss, The (1989)
## 23330 Monty Python and the Holy Grail (1974)
## 23969 Empire Strikes Back, The (1980)
## 24325 Princess Bride, The (1987)
## 24678 Raiders of the Lost Ark (1981)
## 25267 Aliens (1986)
## 25788 Clockwork Orange, A (1971)
## 26009 Apocalypse Now (1979)
## 26322 Return of the Jedi (1983)
## 26743 GoodFellas (1990)
## 26984 Alien (1979)
## 27221 Army of Darkness (1993)
## 27618 Blues Brothers, The (1980)
## 27856 Godfather: Part II, The (1974)
## 28453 Amadeus (1984)
## 28803 Right Stuff, The (1983)
## 28992 Sting, The (1973)
## 29248 Terminator, The (1984)
## 29534 Dead Poets Society (1989)
## 29773 Graduate, The (1967)
## 30121 Bridge on the River Kwai, The (1957)
## 30475 Evil Dead II (1987)
## 30623 Groundhog Day (1993)
## 30870 Unforgiven (1992)
## 31101 Back to the Future (1985)
## 31380 Patton (1970)
## 32093 Indiana Jones and the Last Crusade (1989)
## 32931 Field of Dreams (1989)
## 33172 When Harry Met Sally... (1989)
## 33402 Bram Stoker's Dracula (1992)
## 33538 Cape Fear (1991)
## 33691 Nightmare on Elm Street, A (1984)
## 34029 Star Trek: First Contact (1996)
## 34613 Die Hard 2 (1990)
## 34780 Star Trek VI: The Undiscovered Country (1991)
## 34965 Star Trek: The Wrath of Khan (1982)
## 35188 Star Trek III: The Search for Spock (1984)
## 35370 Star Trek IV: The Voyage Home (1986)
## 35545 Batman Returns (1992)
## 35676 Young Guns (1988)
## 35783 Under Siege (1992)
## 36225 Mars Attacks! (1996)
## 36539 Jerry Maguire (1996)
## 37093 Sneakers (1992)
## 37257 Beavis and Butt-head Do America (1996)
## 37406 Last of the Mohicans, The (1992)
## 38357 Austin Powers: International Man of Mystery (1997)
## 38505 Fifth Element, The (1997)
## 38734 Lost World: Jurassic Park, The (1997)
## 39591 Contact (1997)
## 40521 Hunt for Red October, The (1990)
## 40830 Full Monty, The (1997)
## 41229 Starship Troopers (1997)
## 41645 Heat (1995)
## 42366 Leaving Las Vegas (1995)
## 42850 River Wild, The (1994)
## 43022 Time to Kill, A (1996)
## 43418 Tin Cup (1996)
## 44420 Scream (1996)
## 45652 Liar Liar (1997)
## 46326 Hoodlum (1997)
## 46508 Air Force One (1997)
## 49035 Schindler's List (1993)
## 49887 Dante's Peak (1997)
## 51372 Game, The (1997)
## 51565 U Turn (1997)
## 51893 Boogie Nights (1997)
## 53017 One Flew Over the Cuckoo's Nest (1975)
## 53424 Sudden Death (1995)
## 53638 Clueless (1995)
## 53993 Judge Dredd (1995)
## 54271 Star Trek: Generations (1994)
## 54615 Naked Gun 33 1/3: The Final Insult (1994)
## 54720 True Lies (1994)
## 54981 Age of Innocence, The (1993)
## 55273 Mrs. Doubtfire (1993)
## 55431 Robin Hood: Men in Tights (1993)
## 55700 Brady Bunch Movie, The (1995)
## 55805 Ghost (1990)
## 55980 Batman (1989)
## 56152 Pinocchio (1940)
## 56339 Mission: Impossible (1996)
## 56635 Spy Hard (1996)
## 56799 Jack (1996)
## 56890 Kingpin (1996)
## 57066 Nutty Professor, The (1996)
## 57198 Very Brady Sequel, A (1996)
## 57577 Cinderella (1950)
## 57713 Mary Poppins (1964)
## 57867 Alice in Wonderland (1951)
## 58152 E.T. the Extra-Terrestrial (1982)
## 58402 Bob Roberts (1992)
## 58467 Transformers: The Movie, The (1986)
## 58549 To Kill a Mockingbird (1962)
## 58862 Day the Earth Stood Still, The (1951)
## 59065 Highlander (1986)
## 60037 Birds, The (1963)
## 60264 Carrie (1976)
## 60666 Grease (1978)
## 60928 Jackie Chan's First Strike (1996)
## 61047 Beverly Hills Ninja (1997)
## 61366 Like Water For Chocolate (Como agua para chocolate) (1992)
## 61592 Jungle Book, The (1994)
## 61913 Tombstone (1993)
## 62553 Dr. Strangelove or: How I Learned to Stop Worrying and Love the Bomb (1963)
## 63665 Apartment, The (1960)
## 63917 Casablanca (1942)
## 65017 It's a Wonderful Life (1946)
## 65502 Dumbo (1941)
## 65608 Bananas (1971)
## 65654 Candidate, The (1972)
## 66570 Lawrence of Arabia (1962)
## 66877 Annie Hall (1977)
## 67059 Boot, Das (1981)
## 67465 Treasure of the Sierra Madre, The (1948)
## 67680 Deer Hunter, The (1978)
## 67852 Cool Hand Luke (1967)
## 68272 Gandhi (1982)
## 69416 Broken Arrow (1996)
## 69765 Die Hard: With a Vengeance (1995)
## 69918 Species (1995)
## 70042 Waterworld (1995)
## 70259 Interview with the Vampire (1994)
## 70453 Quick and the Dead, The (1995)
## 70616 Clear and Present Danger (1994)
## 70851 Speed (1994)
## 71301 Cliffhanger (1993)
## 71663 Piano, The (1993)
## 72046 Beauty and the Beast (1991)
## 72710 Eraser (1996)
## 73152 It Happened One Night (1934)
## 73263 All About Eve (1950)
## 73321 Rebecca (1940)
## 73477 Gigi (1958)
## 74508 Crying Game, The (1992)
## 74797 Escape from New York (1981)
## 75596 Glory (1989)
## 76061 Stand by Me (1986)
## 76414 Pump Up the Volume (1990)
## 76630 Fried Green Tomatoes (1991)
## 77104 Alien 3 (1992)
## 77342 Cape Fear (1962)
## 77649 Volcano (1997)
## 78136 In the Line of Fire (1993)
## 78309 Executive Decision (1996)
## 78428 Perfect World, A (1993)
## 78885 American President, The (1995)
## 79017 Casino (1995)
## 79416 Barcelona (1994)
## 79938 Better Off Dead... (1985)
## 80381 Canadian Bacon (1994)
## 80504 Mallrats (1995)
## 81043 Dave (1993)
## 81258 Philadelphia (1993)
## 81448 Sirens (1994)
## 81567 Pretty Woman (1990)
## 81890 Ransom (1996)
## 82086 Crow: City of Angels, The (1996)
## 82250 Real Genius (1985)
## 83253 Jumanji (1995)
## 83367 Father of the Bride Part II (1995)
## 83468 Lawnmower Man 2: Beyond Cyberspace (1996)
## 83739 Happy Gilmore (1996)
## 84089 Johnny Mnemonic (1995)
## 84131 Kids (1995)
## 84702 Tommy Boy (1995)
## 84964 Timecop (1994)
## 85054 Hard Target (1993)
## 85632 Space Jam (1996)
## 85814 Great White Hype, The (1996)
## 86143 Escape from L.A. (1996)
## 86873 Days of Thunder (1990)
## 87160 My Fellow Americans (1996)
## 87263 Michael (1996)
## 87413 Vegas Vacation (1997)
## 90612 Dazed and Confused (1993)
## 92122 Private Parts (1997)
## 92203 Anaconda (1997)
## 92379 Con Air (1997)
## 92843 Grumpier Old Men (1995)
## 93075 Cool Runnings (1993)
## 93839 Dracula: Dead and Loving It (1995)
## 94399 Reality Bites (1994)
## 94735 Pete's Dragon (1977)
## 95151 Cobb (1994)
## 95629 Doors, The (1991)
## 97115 Under Siege 2: Dark Territory (1995)
## 97165 Ready to Wear (Pret-A-Porter) (1994)
## 97755 Out to Sea (1997)
## 37859 Devil's Own, The (1997)
## 39592 Contact (1997)
## 40686 Kull the Conqueror (1997)
## 41074 Gattaca (1997)
## 41230 Starship Troopers (1997)
## 44822 Evita (1996)
## 45653 Liar Liar (1997)
## 46327 Hoodlum (1997)
## 46880 In & Out (1997)
## 47719 Devil's Advocate, The (1997)
## 47896 Deceiver (1997)
## 49664 Murder at 1600 (1997)
## 49888 Dante's Peak (1997)
## 50748 Conspiracy Theory (1997)
## 51373 Game, The (1997)
## 53235 Spawn (1997)
## 82527 Saint, The (1997)
## 87839 Peacemaker, The (1997)
## 91397 Beautician and the Beast, The (1997)
## 144 Toy Story (1995)
## 491 GoldenEye (1995)
## 614 Four Rooms (1995)
## 735 Get Shorty (1995)
## 910 Copycat (1995)
## 1134 Twelve Monkeys (1995)
## 1456 Babe (1995)
## 1705 Dead Man Walking (1995)
## 2076 Seven (Se7en) (1995)
## 2315 Usual Suspects, The (1995)
## 2563 Mighty Aphrodite (1995)
## 2961 Mr. Holland's Opus (1995)
## 3228 From Dusk Till Dawn (1996)
## 3471 Muppet Treasure Island (1996)
## 3618 Braveheart (1995)
## 3874 Taxi Driver (1976)
## 4061 Rumble in the Bronx (1995)
## 4278 Birdcage, The (1996)
## 4488 Brothers McMullen, The (1995)
## 4692 Apollo 13 (1995)
## 4912 Batman Forever (1995)
## 5076 Crimson Tide (1995)
## 5298 Desperado (1995)
## 5434 Net, The (1995)
## 5675 Billy Madison (1995)
## 5747 Clerks (1994)
## 5859 Disclosure (1994)
## 5912 Dolores Claiborne (1994)
## 6053 Exotica (1994)
## 6115 Ed Wood (1994)
## 6346 I.Q. (1994)
## 6583 Star Wars (1977)
## 7198 Natural Born Killers (1994)
## 7322 Outbreak (1995)
## 7446 Professional, The (1994)
## 7674 Pulp Fiction (1994)
## 8396 Stargate (1994)
## 8504 Santa Clause, The (1994)
## 8665 Shawshank Redemption, The (1994)
## 8881 What's Eating Gilbert Grape (1993)
## 9159 Ace Ventura: Pet Detective (1994)
## 9266 Crow, The (1994)
## 9470 Forrest Gump (1994)
## 9766 Four Weddings and a Funeral (1994)
## 9997 Lion King, The (1994)
## 10188 Mask, The (1994)
## 10320 Maverick (1994)
## 10528 Firm, The (1993)
## 10640 Free Willy (1993)
## 10770 Fugitive, The (1993)
## 11016 Hot Shots! Part Deux (1993)
## 11099 Hudsucker Proxy, The (1994)
## 11255 Jurassic Park (1993)
## 11486 Much Ado About Nothing (1993)
## 11641 Ref, The (1994)
## 11876 Searching for Bobby Fischer (1993)
## 12039 Sleepless in Seattle (1993)
## 12491 So I Married an Axe Murderer (1993)
## 12604 Nightmare Before Christmas, The (1993)
## 12739 True Romance (1993)
## 12849 Welcome to the Dollhouse (1995)
## 12960 Home Alone (1990)
## 13115 Aladdin (1992)
## 13365 Terminator 2: Judgment Day (1991)
## 13644 Dances with Wolves (1990)
## 13957 Silence of the Lambs, The (1991)
## 14266 Snow White and the Seven Dwarfs (1937)
## 14549 Fargo (1996)
## 15137 Diabolique (1996)
## 15336 Mystery Science Theater 3000: The Movie (1996)
## 15544 Truth About Cats & Dogs, The (1996)
## 15882 Cold Comfort Farm (1995)
## 16080 Rock, The (1996)
## 16432 Twister (1996)
## 16662 Striptease (1996)
## 16845 Independence Day (ID4) (1996)
## 17166 Cable Guy, The (1996)
## 17276 Frighteners, The (1996)
## 17415 Lone Star (1996)
## 17624 Phenomenon (1996)
## 18003 Godfather, The (1972)
## 18315 Supercop (1992)
## 18401 Bound (1996)
## 18681 Wizard of Oz, The (1939)
## 19082 Citizen Kane (1941)
## 19646 Big Night (1996)
## 19791 Love Bug, The (1969)
## 19907 20,000 Leagues Under the Sea (1954)
## 20084 Sound of Music, The (1965)
## 20313 Die Hard (1988)
## 20502 Lawnmower Man, The (1992)
## 20616 Long Kiss Goodnight, The (1996)
## 20941 Swingers (1996)
## 21155 Willy Wonka and the Chocolate Factory (1971)
## 21400 Sleeper (1973)
## 21539 Fish Called Wanda, A (1988)
## 21908 Dirty Dancing (1987)
## 22030 Reservoir Dogs (1992)
## 22273 Weekend at Bernie's (1989)
## 22339 Basic Instinct (1992)
## 22438 Glengarry Glen Ross (1992)
## 22547 Top Gun (1986)
## 22943 Abyss, The (1989)
## 23194 Private Benjamin (1980)
## 23331 Monty Python and the Holy Grail (1974)
## 23705 Cinema Paradiso (1988)
## 23814 Delicatessen (1991)
## 23970 Empire Strikes Back, The (1980)
## 24326 Princess Bride, The (1987)
## 24679 Raiders of the Lost Ark (1981)
## 25268 Aliens (1986)
## 25789 Clockwork Orange, A (1971)
## 26323 Return of the Jedi (1983)
## 26744 GoodFellas (1990)
## 26985 Alien (1979)
## 27222 Army of Darkness (1993)
## 27383 Psycho (1960)
## 27619 Blues Brothers, The (1980)
## 27857 Godfather: Part II, The (1974)
## 28454 Amadeus (1984)
## 28993 Sting, The (1973)
## 29249 Terminator, The (1984)
## 29988 Nikita (La Femme Nikita) (1990)
## 30301 Shining, The (1980)
## 30476 Evil Dead II (1987)
## 30624 Groundhog Day (1993)
## 30871 Unforgiven (1992)
## 31102 Back to the Future (1985)
## 31661 Young Frankenstein (1974)
## 31865 This Is Spinal Tap (1984)
## 32094 Indiana Jones and the Last Crusade (1989)
## 32932 Field of Dreams (1989)
## 33173 When Harry Met Sally... (1989)
## 33539 Cape Fear (1991)
## 33692 Nightmare on Elm Street, A (1984)
## 33864 Breaking the Waves (1996)
## 34030 Star Trek: First Contact (1996)
## 34321 Sling Blade (1996)
## 34614 Die Hard 2 (1990)
## 34781 Star Trek VI: The Undiscovered Country (1991)
## 34966 Star Trek: The Wrath of Khan (1982)
## 35189 Star Trek III: The Search for Spock (1984)
## 35371 Star Trek IV: The Voyage Home (1986)
## 35546 Batman Returns (1992)
## 35677 Young Guns (1988)
## 35784 Under Siege (1992)
## 35958 Jaws (1975)
## 36226 Mars Attacks! (1996)
## 36383 Citizen Ruth (1996)
## 36540 Jerry Maguire (1996)
## 36880 Raising Arizona (1987)
## 37094 Sneakers (1992)
## 37258 Beavis and Butt-head Do America (1996)
## 37407 Last of the Mohicans, The (1992)
## 37860 Devil's Own, The (1997)
## 38066 Chasing Amy (1997)
## 38199 Grosse Pointe Blank (1997)
## 38358 Austin Powers: International Man of Mystery (1997)
## 38506 Fifth Element, The (1997)
## 38656 Shall We Dance? (1996)
## 38735 Lost World: Jurassic Park, The (1997)
## 38981 My Best Friend's Wedding (1997)
## 39210 Men in Black (1997)
## 39593 Contact (1997)
## 39986 George of the Jungle (1997)
## 40133 Event Horizon (1997)
## 40290 In the Company of Men (1997)
## 40376 Mimic (1997)
## 40831 Full Monty, The (1997)
## 41075 Gattaca (1997)
## 41231 Starship Troopers (1997)
## 41646 Heat (1995)
## 42367 Leaving Las Vegas (1995)
## 42582 Restoration (1995)
## 42851 River Wild, The (1994)
## 43023 Time to Kill, A (1996)
## 43230 Emma (1996)
## 43419 Tin Cup (1996)
## 43865 English Patient, The (1996)
## 44216 Marvin's Room (1996)
## 44421 Scream (1996)
## 44823 Evita (1996)
## 45047 Fierce Creatures (1997)
## 45142 Absolute Power (1997)
## 45385 Donnie Brasco (1997)
## 45654 Liar Liar (1997)
## 46174 Face/Off (1997)
## 46509 Air Force One (1997)
## 47128 L.A. Confidential (1997)
## 49036 Schindler's List (1993)
## 49295 Everyone Says I Love You (1996)
## 49486 Mother (1996)
## 49889 Dante's Peak (1997)
## 50099 Lost Highway (1997)
## 50227 Crash (1996)
## 50359 G.I. Jane (1997)
## 50536 Cop Land (1997)
## 50749 Conspiracy Theory (1997)
## 51007 187 (1997)
## 51374 Game, The (1997)
## 51566 U Turn (1997)
## 51894 Boogie Nights (1997)
## 53018 One Flew Over the Cuckoo's Nest (1975)
## 53236 Spawn (1997)
## 53425 Sudden Death (1995)
## 53469 Ace Ventura: When Nature Calls (1995)
## 53552 Dangerous Minds (1995)
## 53639 Clueless (1995)
## 53769 Bio-Dome (1996)
## 53804 Black Sheep (1996)
## 53994 Judge Dredd (1995)
## 54038 Showgirls (1995)
## 54061 Houseguest (1994)
## 54208 Tales From the Crypt Presents: Demon Knight (1995)
## 54382 Muriel's Wedding (1994)
## 54483 Adventures of Priscilla, Queen of the Desert, The (1994)
## 54616 Naked Gun 33 1/3: The Final Insult (1994)
## 54721 True Lies (1994)
## 54897 Addams Family Values (1993)
## 54982 Age of Innocence, The (1993)
## 55030 Beverly Hills Cop III (1994)
## 55081 Fear of a Black Hat (1993)
## 55104 Last Action Hero (1993)
## 55274 Mrs. Doubtfire (1993)
## 55432 Robin Hood: Men in Tights (1993)
## 55493 Serial Mom (1994)
## 55532 Striking Distance (1993)
## 55546 Super Mario Bros. (1993)
## 55701 Brady Bunch Movie, The (1995)
## 55806 Ghost (1990)
## 55981 Batman (1989)
## 56153 Pinocchio (1940)
## 56340 Mission: Impossible (1996)
## 56695 Close Shave, A (1995)
## 56891 Kingpin (1996)
## 57067 Nutty Professor, The (1996)
## 57199 Very Brady Sequel, A (1996)
## 57283 Tales from the Crypt Presents: Bordello of Blood (1996)
## 57418 Old Yeller (1957)
## 57578 Cinderella (1950)
## 57714 Mary Poppins (1964)
## 57868 Alice in Wonderland (1951)
## 57959 William Shakespeare's Romeo and Juliet (1996)
## 58153 E.T. the Extra-Terrestrial (1982)
## 58403 Bob Roberts (1992)
## 58468 Transformers: The Movie, The (1986)
## 58550 To Kill a Mockingbird (1962)
## 58957 Duck Soup (1933)
## 59231 Fantasia (1940)
## 59410 Heathers (1989)
## 59654 Butch Cassidy and the Sundance Kid (1969)
## 59830 American Werewolf in London, An (1981)
## 60038 Birds, The (1963)
## 60471 Star Trek: The Motion Picture (1979)
## 60576 Star Trek V: The Final Frontier (1989)
## 60667 Grease (1978)
## 60802 Jaws 2 (1978)
## 60929 Jackie Chan's First Strike (1996)
## 61131 Nixon (1995)
## 61226 Crossing Guard, The (1995)
## 61265 Smoke (1995)
## 61367 Like Water For Chocolate (Como agua para chocolate) (1992)
## 61914 Tombstone (1993)
## 62409 James and the Giant Peach (1996)
## 62554 Dr. Strangelove or: How I Learned to Stop Worrying and Love the Bomb (1963)
## 62771 Trainspotting (1996)
## 62991 First Wives Club, The (1996)
## 63129 Matilda (1996)
## 63345 Vertigo (1958)
## 63526 North by Northwest (1959)
## 63756 Some Like It Hot (1959)
## 63918 Casablanca (1942)
## 64127 Maltese Falcon, The (1941)
## 64671 Adventures of Robin Hood, The (1938)
## 65503 Dumbo (1941)
## 65609 Bananas (1971)
## 65896 Rebel Without a Cause (1955)
## 65991 Streetcar Named Desire, A (1951)
## 66135 People vs. Larry Flynt, The (1996)
## 66878 Annie Hall (1977)
## 67291 Manhattan (1979)
## 67387 Miller's Crossing (1990)
## 68033 Big Sleep, The (1946)
## 68739 Shine (1996)
## 68890 Addicted to Love (1997)
## 69096 Money Train (1995)
## 69138 Mortal Kombat (1995)
## 69187 Pocahontas (1995)
## 69270 Things to Do in Denver when You're Dead (1995)
## 69319 Vampire in Brooklyn (1995)
## 69417 Broken Arrow (1996)
## 69660 Rob Roy (1995)
## 69766 Die Hard: With a Vengeance (1995)
## 69888 Lord of Illusions (1995)
## 69919 Species (1995)
## 70043 Waterworld (1995)
## 70174 Heavenly Creatures (1994)
## 70260 Interview with the Vampire (1994)
## 70454 Quick and the Dead, The (1995)
## 70528 Tales from the Hood (1995)
## 70852 Speed (1994)
## 71029 Wolf (1994)
## 71223 Boxing Helena (1993)
## 71245 City Slickers II: The Legend of Curly's Gold (1994)
## 71302 Cliffhanger (1993)
## 71384 Coneheads (1993)
## 71431 Demolition Man (1993)
## 71664 Piano, The (1993)
## 71794 Romeo Is Bleeding (1993)
## 71945 Terminal Velocity (1994)
## 72047 Beauty and the Beast (1991)
## 72300 Primal Fear (1996)
## 72471 Fan, The (1996)
## 72566 Hunchback of Notre Dame, The (1996)
## 72711 Eraser (1996)
## 72983 Rear Window (1954)
## 73672 39 Steps, The (1935)
## 73734 Night of the Living Dead (1968)
## 73839 Extreme Measures (1996)
## 74144 Robin Hood: Prince of Thieves (1991)
## 74509 Crying Game, The (1992)
## 74728 Microcosmos: Le peuple de l'herbe (1996)
## 74798 Escape from New York (1981)
## 75496 Seventh Seal, The (Sjunde inseglet, Det) (1957)
## 75597 Glory (1989)
## 75814 Touch of Evil (1958)
## 75886 Chinatown (1974)
## 76062 Stand by Me (1986)
## 76415 Pump Up the Volume (1990)
## 77105 Alien 3 (1992)
## 77343 Cape Fear (1962)
## 77650 Volcano (1997)
## 77837 Conan the Barbarian (1981)
## 78310 Executive Decision (1996)
## 78482 McHale's Navy (1997)
## 78886 American President, The (1995)
## 79018 Casino (1995)
## 79235 Basketball Diaries, The (1995)
## 79378 Miami Rhapsody (1995)
## 79537 Singin' in the Rain (1952)
## 79834 Strictly Ballroom (1992)
## 80160 To Die For (1995)
## 80238 Home for the Holidays (1995)
## 80426 First Knight (1995)
## 80505 Mallrats (1995)
## 80561 Nine Months (1995)
## 80716 Exit to Eden (1994)
## 80877 Nell (1994)
## 81194 Made in America (1993)
## 81259 Philadelphia (1993)
## 81499 Threesome (1994)
## 81568 Pretty Woman (1990)
## 81771 Last Supper, The (1995)
## 81891 Ransom (1996)
## 82138 Michael Collins (1996)
## 82251 Real Genius (1985)
## 82528 Saint, The (1997)
## 83254 Jumanji (1995)
## 83483 Fair Game (1995)
## 83616 Beautiful Girls (1996)
## 83740 Happy Gilmore (1996)
## 83885 Boomerang (1992)
## 84172 Mute Witness (1994)
## 84277 Don Juan DeMarco (1995)
## 84341 Drop Zone (1994)
## 84386 Dumb & Dumber (1994)
## 84538 Milk Money (1994)
## 84578 Only You (1994)
## 84703 Tommy Boy (1995)
## 84785 Bullets Over Broadway (1994)
## 85013 In the Mouth of Madness (1995)
## 85030 Air Up There, The (1994)
## 85106 Manhattan Murder Mystery (1993)
## 85195 Program, The (1993)
## 85230 Rising Sun (1993)
## 85365 Celluloid Closet, The (1995)
## 85432 One Fine Day (1996)
## 85633 Space Jam (1996)
## 85815 Great White Hype, The (1996)
## 85873 Arrival, The (1996)
## 86095 Fled (1996)
## 86144 Escape from L.A. (1996)
## 86243 Bulletproof (1996)
## 86393 Last Man Standing (1996)
## 86483 Pollyanna (1960)
## 86550 Freeway (1996)
## 86636 That Thing You Do! (1996)
## 86815 Looking for Richard (1996)
## 86874 Days of Thunder (1990)
## 87264 Michael (1996)
## 87341 Whole Wide World, The (1996)
## 87359 Fools Rush In (1997)
## 87414 Vegas Vacation (1997)
## 87475 Love Jones (1997)
## 87520 Picture Perfect (1997)
## 87633 She's So Lovely (1997)
## 88886 City of Lost Children, The (1995)
## 89253 Down Periscope (1996)
## 89350 Craft, The (1996)
## 89856 Murder in the First (1995)
## 89905 Airheads (1994)
## 90032 Killing Zoe (1994)
## 90235 Booty Call (1997)
## 90423 Blue in the Face (1995)
## 90459 Unstrung Heroes (1995)
## 90548 Nobody's Fool (1994)
## 90669 Naked (1993)
## 91192 Trigger Effect, The (1996)
## 91580 Hercules (1997)
## 91680 Stuart Saves His Family (1995)
## 91697 Cabin Boy (1994)
## 91816 Waiting for Guffman (1996)
## 92023 2 Days in the Valley (1996)
## 92123 Private Parts (1997)
## 92204 Anaconda (1997)
## 92252 Romy and Michele's High School Reunion (1997)
## 92380 Con Air (1997)
## 92631 8 1/2 (1963)
## 92700 Fathers' Day (1997)
## 93035 Quest, The (1996)
## 93151 Grease 2 (1982)
## 93214 Hamlet (1996)
## 93285 Two if by Sea (1996)
## 93318 Forget Paris (1995)
## 93411 Paper, The (1994)
## 93479 Malice (1993)
## 93551 Multiplicity (1996)
## 93664 She's the One (1996)
## 93840 Dracula: Dead and Loving It (1995)
## 94289 Party Girl (1995)
## 94335 Shallow Grave (1994)
## 94609 It's My Party (1995)
## 94637 Double Team (1997)
## 94658 Speed 2: Cruise Control (1997)
## 94696 Sliver (1993)
## 94765 Dear God (1996)
## 94822 High School High (1996)
## 94846 Hate (Haine, La) (1995)
## 94875 Flirting With Disaster (1996)
## 95081 Death and the Maiden (1994)
## 95109 Tank Girl (1995)
## 95269 Up in Smoke (1978)
## 95630 Doors, The (1991)
## 95800 When We Were Kings (1996)
## 95852 Blue Chips (1994)
## 95965 Backbeat (1993)
## 96003 Relic, The (1997)
## 96041 Love! Valour! Compassion! (1997)
## 96290 Major Payne (1994)
## 96337 Cops and Robbersons (1994)
## 96398 Switchblade Sisters (1975)
## 96419 Young Guns II (1990)
## 96595 Cemetery Man (Dellamorte Dellamore) (1994)
## 96735 Mixed Nuts (1994)
## 96755 Virtuosity (1995)
## 96823 Barb Wire (1996)
## 96863 Assassins (1995)
## 96898 Friday (1995)
## 96947 Higher Learning (1995)
## 97013 Judgment Night (1993)
## 97037 Scout, The (1994)
## 97068 Night Falls on Manhattan (1997)
## 97116 Under Siege 2: Dark Territory (1995)
## 97166 Ready to Wear (Pret-A-Porter) (1994)
## 97205 Madonna: Truth or Dare (1991)
## 97254 Cutthroat Island (1995)
## 97469 Trial and Error (1997)
## 97565 Clockers (1995)
## 97612 Life with Mikey (1993)
## 97634 Color of Night (1994)
## 97813 Shall We Dance? (1937)
## 97955 Getaway, The (1994)
## 98037 Inventing the Abbotts (1997)
## 98127 American Buffalo (1996)
## 98148 Larger Than Life (1996)
## 98449 Specialist, The (1994)
## 98486 Barbarella (1968)
## 98594 Grace of My Heart (1996)
## 99001 Babysitter, The (1995)
## 99004 Getting Even with Dad (1994)
## 99009 Mad Dog Time (1996)
## 99010 Children of the Revolution (1996)
## 15545 Truth About Cats & Dogs, The (1996)
## 36541 Jerry Maguire (1996)
## 37649 Jungle2Jungle (1997)
## 39987 George of the Jungle (1997)
## 41232 Starship Troopers (1997)
## 41864 Sabrina (1995)
## 42070 Sense and Sensibility (1995)
## 42650 Bed of Roses (1996)
## 43866 English Patient, The (1996)
## 44422 Scream (1996)
## 45655 Liar Liar (1997)
## 46175 Face/Off (1997)
## 46510 Air Force One (1997)
## 47954 Rainmaker, The (1997)
## 48326 Titanic (1997)
## 49665 Murder at 1600 (1997)
## 49890 Dante's Peak (1997)
## 50750 Conspiracy Theory (1997)
## 52121 Alien: Resurrection (1997)
## 77914 Wishmaster (1997)
## 77967 I Know What You Did Last Summer (1997)
## 81892 Ransom (1996)
## 83741 Happy Gilmore (1996)
## 87840 Peacemaker, The (1997)
## 88318 For Richer or Poorer (1997)
## 88378 Scream 2 (1997)
## 145 Toy Story (1995)
## 492 GoldenEye (1995)
## 1135 Twelve Monkeys (1995)
## 2077 Seven (Se7en) (1995)
## 2316 Usual Suspects, The (1995)
## 2564 Mighty Aphrodite (1995)
## 2737 Postino, Il (1994)
## 2962 Mr. Holland's Opus (1995)
## 3169 French Twist (Gazon maudit) (1995)
## 5299 Desperado (1995)
## 5748 Clerks (1994)
## 5989 Eat Drink Man Woman (1994)
## 6244 Hoop Dreams (1994)
## 6347 I.Q. (1994)
## 6584 Star Wars (1977)
## 7097 Madness of King George, The (1994)
## 7675 Pulp Fiction (1994)
## 8175 Three Colors: Red (1994)
## 8250 Three Colors: Blue (1993)
## 8314 Three Colors: White (1994)
## 8666 Shawshank Redemption, The (1994)
## 9010 While You Were Sleeping (1995)
## 9471 Forrest Gump (1994)
## 9767 Four Weddings and a Funeral (1994)
## 9998 Lion King, The (1994)
## 10437 Carlito's Way (1993)
## 10771 Fugitive, The (1993)
## 11100 Hudsucker Proxy, The (1994)
## 11487 Much Ado About Nothing (1993)
## 11735 Remains of the Day, The (1993)
## 11877 Searching for Bobby Fischer (1993)
## 12040 Sleepless in Seattle (1993)
## 12274 Blade Runner (1982)
## 12605 Nightmare Before Christmas, The (1993)
## 13366 Terminator 2: Judgment Day (1991)
## 13645 Dances with Wolves (1990)
## 13958 Silence of the Lambs, The (1991)
## 14550 Fargo (1996)
## 16081 Rock, The (1996)
## 16846 Independence Day (ID4) (1996)
## 18004 Godfather, The (1972)
## 18402 Bound (1996)
## 18536 Breakfast at Tiffany's (1961)
## 19083 Citizen Kane (1941)
## 19305 2001: A Space Odyssey (1968)
## 20085 Sound of Music, The (1965)
## 20314 Die Hard (1988)
## 21156 Willy Wonka and the Chocolate Factory (1971)
## 21540 Fish Called Wanda, A (1988)
## 21757 Monty Python's Life of Brian (1979)
## 22031 Reservoir Dogs (1992)
## 22439 Glengarry Glen Ross (1992)
## 22830 Return of the Pink Panther, The (1974)
## 23068 Jean de Florette (1986)
## 23130 Manon of the Spring (Manon des sources) (1986)
## 23332 Monty Python and the Holy Grail (1974)
## 23591 Wrong Trousers, The (1993)
## 23706 Cinema Paradiso (1988)
## 23815 Delicatessen (1991)
## 23971 Empire Strikes Back, The (1980)
## 24327 Princess Bride, The (1987)
## 24680 Raiders of the Lost Ark (1981)
## 25047 Brazil (1985)
## 25269 Aliens (1986)
## 25634 12 Angry Men (1957)
## 25790 Clockwork Orange, A (1971)
## 26010 Apocalypse Now (1979)
## 26324 Return of the Jedi (1983)
## 26986 Alien (1979)
## 27223 Army of Darkness (1993)
## 27620 Blues Brothers, The (1980)
## 27858 Godfather: Part II, The (1974)
## 28055 Full Metal Jacket (1987)
## 28196 Grand Day Out, A (1992)
## 28277 Henry V (1989)
## 28455 Amadeus (1984)
## 28672 Raging Bull (1980)
## 29250 Terminator, The (1984)
## 29535 Dead Poets Society (1989)
## 29774 Graduate, The (1967)
## 29989 Nikita (La Femme Nikita) (1990)
## 30122 Bridge on the River Kwai, The (1957)
## 30302 Shining, The (1980)
## 30477 Evil Dead II (1987)
## 30625 Groundhog Day (1993)
## 30872 Unforgiven (1992)
## 31103 Back to the Future (1985)
## 31546 Cyrano de Bergerac (1990)
## 31866 This Is Spinal Tap (1984)
## 32095 Indiana Jones and the Last Crusade (1989)
## 32555 Unbearable Lightness of Being, The (1988)
## 32782 Pink Floyd - The Wall (1982)
## 32933 Field of Dreams (1989)
## 33174 When Harry Met Sally... (1989)
## 34031 Star Trek: First Contact (1996)
## 34322 Sling Blade (1996)
## 34967 Star Trek: The Wrath of Khan (1982)
## 36542 Jerry Maguire (1996)
## 36881 Raising Arizona (1987)
## 37095 Sneakers (1992)
## 37532 Kolya (1996)
## 37861 Devil's Own, The (1997)
## 38067 Chasing Amy (1997)
## 38359 Austin Powers: International Man of Mystery (1997)
## 38657 Shall We Dance? (1996)
## 39211 Men in Black (1997)
## 39594 Contact (1997)
## 40832 Full Monty, The (1997)
## 41449 Good Will Hunting (1997)
## 42071 Sense and Sensibility (1995)
## 43024 Time to Kill, A (1996)
## 43603 Secrets & Lies (1996)
## 43867 English Patient, The (1996)
## 44217 Marvin's Room (1996)
## 44824 Evita (1996)
## 46176 Face/Off (1997)
## 46511 Air Force One (1997)
## 47129 L.A. Confidential (1997)
## 47510 Ice Storm, The (1997)
## 48081 Wings of the Dove, The (1997)
## 48620 Apt Pupil (1998)
## 48878 In the Name of the Father (1993)
## 49037 Schindler's List (1993)
## 50360 G.I. Jane (1997)
## 50537 Cop Land (1997)
## 51723 Bean (1997)
## 52493 Wag the Dog (1997)
## 53019 One Flew Over the Cuckoo's Nest (1975)
## 54484 Adventures of Priscilla, Queen of the Desert, The (1994)
## 54722 True Lies (1994)
## 55982 Batman (1989)
## 56341 Mission: Impossible (1996)
## 56696 Close Shave, A (1995)
## 58154 E.T. the Extra-Terrestrial (1982)
## 58404 Bob Roberts (1992)
## 58551 To Kill a Mockingbird (1962)
## 58744 Harold and Maude (1971)
## 59066 Highlander (1986)
## 59411 Heathers (1989)
## 60668 Grease (1978)
## 61368 Like Water For Chocolate (Como agua para chocolate) (1992)
## 61549 Vanya on 42nd Street (1994)
## 61836 Short Cuts (1993)
## 62057 Courage Under Fire (1996)
## 62555 Dr. Strangelove or: How I Learned to Stop Worrying and Love the Bomb (1963)
## 62772 Trainspotting (1996)
## 63222 Philadelphia Story, The (1940)
## 63346 Vertigo (1958)
## 63527 North by Northwest (1959)
## 63757 Some Like It Hot (1959)
## 63919 Casablanca (1942)
## 64128 Maltese Falcon, The (1941)
## 64261 My Fair Lady (1964)
## 64373 Sabrina (1954)
## 65822 Dial M for Murder (1954)
## 66571 Lawrence of Arabia (1962)
## 66707 Wings of Desire (1987)
## 68273 Gandhi (1982)
## 68441 Killing Fields, The (1984)
## 68551 My Life as a Dog (Mitt liv som hund) (1985)
## 68641 Man Who Would Be King, The (1975)
## 69767 Die Hard: With a Vengeance (1995)
## 70137 Farinelli: il castrato (1994)
## 70617 Clear and Present Danger (1994)
## 71665 Piano, The (1993)
## 72712 Eraser (1996)
## 72893 American in Paris, An (1951)
## 73478 Gigi (1958)
## 74254 Sleepers (1996)
## 74510 Crying Game, The (1992)
## 74906 Return of Martin Guerre, The (Retour de Martin Guerre, Le) (1982)
## 75497 Seventh Seal, The (Sjunde inseglet, Det) (1957)
## 75887 Chinatown (1974)
## 76063 Stand by Me (1986)
## 76631 Fried Green Tomatoes (1991)
## 76939 Being There (1979)
## 77035 Paris, Texas (1984)
## 77838 Conan the Barbarian (1981)
## 78137 In the Line of Fire (1993)
## 78429 Perfect World, A (1993)
## 78711 Seven Years in Tibet (1997)
## 79735 Sex, Lies, and Videotape (1989)
## 79835 Strictly Ballroom (1992)
## 80064 Othello (1995)
## 80878 Nell (1994)
## 81178 Go Fish (1994)
## 81260 Philadelphia (1993)
## 82529 Saint, The (1997)
## 82767 MatchMaker, The (1997)
## 82990 Tomorrow Never Dies (1997)
## 84038 Devil in a Blue Dress (1995)
## 84278 Don Juan DeMarco (1995)
## 84786 Bullets Over Broadway (1994)
## 84843 Crooklyn (1994)
## 85145 Menace II Society (1993)
## 86637 That Thing You Do! (1996)
## 87031 Night on Earth (1991)
## 87116 Garden of Finzi-Contini, The (Giardino dei Finzi-Contini, Il) (1970)
## 88686 Ma vie en rose (My Life in Pink) (1997)
## 88972 Farewell My Concubine (1993)
## 89059 Raise the Red Lantern (1991)
## 89940 With Honors (1994)
## 90033 Killing Zoe (1994)
## 90207 Big Blue, The (Grand bleu, Le) (1988)
## 90670 Naked (1993)
## 90695 Orlando (1993)
## 90752 Some Folks Call It a Sling Blade (1993)
## 90961 Mediterraneo (1991)
## 92329 Shiloh (1997)
## 92532 Tie Me Up! Tie Me Down! (1990)
## 94336 Shallow Grave (1994)
## 94400 Reality Bites (1994)
## 94944 Six Degrees of Separation (1993)
## 95025 C'est arrive pres de chez vous (1992)
## 97814 Shall We Dance? (1937)
## 98487 Barbarella (1968)
## 98774 Beat the Devil (1954)
## 98931 Colonel Chabert, Le (1994)
## 99015 World of Apu, The (Apur Sansar) (1959)
## 99021 Sprung (1997)
## 2565 Mighty Aphrodite (1995)
## 2738 Postino, Il (1994)
## 3315 Antonia's Line (1995)
## 4279 Birdcage, The (1996)
## 14551 Fargo (1996)
## 15546 Truth About Cats & Dogs, The (1996)
## 15883 Cold Comfort Farm (1995)
## 20942 Swingers (1996)
## 36227 Mars Attacks! (1996)
## 37533 Kolya (1996)
## 39212 Men in Black (1997)
## 39595 Contact (1997)
## 40833 Full Monty, The (1997)
## 42072 Sense and Sensibility (1995)
## 43231 Emma (1996)
## 43604 Secrets & Lies (1996)
## 43868 English Patient, The (1996)
## 44218 Marvin's Room (1996)
## 44825 Evita (1996)
## 47601 Mrs. Brown (Her Majesty, Mrs. Brown) (1997)
## 49296 Everyone Says I Love You (1996)
## 49487 Mother (1996)
## 62992 First Wives Club, The (1996)
## 81772 Last Supper, The (1995)
## 82139 Michael Collins (1996)
## 83368 Father of the Bride Part II (1995)
## 87161 My Fellow Americans (1996)
## 91904 Stealing Beauty (1996)
## 92844 Grumpier Old Men (1995)
## 97417 A Chef in Love (1996)
## 99024 Dream With the Fishes (1997)
## 146 Toy Story (1995)
## 3472 Muppet Treasure Island (1996)
## 3619 Braveheart (1995)
## 4062 Rumble in the Bronx (1995)
## 4693 Apollo 13 (1995)
## 6585 Star Wars (1977)
## 7676 Pulp Fiction (1994)
## 8397 Stargate (1994)
## 8667 Shawshank Redemption, The (1994)
## 9768 Four Weddings and a Funeral (1994)
## 9999 Lion King, The (1994)
## 10189 Mask, The (1994)
## 11101 Hudsucker Proxy, The (1994)
## 11256 Jurassic Park (1993)
## 11488 Much Ado About Nothing (1993)
## 12275 Blade Runner (1982)
## 12606 Nightmare Before Christmas, The (1993)
## 12961 Home Alone (1990)
## 14267 Snow White and the Seven Dwarfs (1937)
## 14552 Fargo (1996)
## 14916 Heavy Metal (1981)
## 15337 Mystery Science Theater 3000: The Movie (1996)
## 15776 Wallace & Gromit: The Best of Aardman Animation (1996)
## 16847 Independence Day (ID4) (1996)
## 18682 Wizard of Oz, The (1939)
## 19306 2001: A Space Odyssey (1968)
## 20086 Sound of Music, The (1965)
## 20503 Lawnmower Man, The (1992)
## 21541 Fish Called Wanda, A (1988)
## 21758 Monty Python's Life of Brian (1979)
## 22548 Top Gun (1986)
## 22831 Return of the Pink Panther, The (1974)
## 22944 Abyss, The (1989)
## 23333 Monty Python and the Holy Grail (1974)
## 23592 Wrong Trousers, The (1993)
## 23972 Empire Strikes Back, The (1980)
## 24328 Princess Bride, The (1987)
## 24681 Raiders of the Lost Ark (1981)
## 25048 Brazil (1985)
## 25635 12 Angry Men (1957)
## 26325 Return of the Jedi (1983)
## 26987 Alien (1979)
## 27384 Psycho (1960)
## 27621 Blues Brothers, The (1980)
## 28197 Grand Day Out, A (1992)
## 28804 Right Stuff, The (1983)
## 29251 Terminator, The (1984)
## 29536 Dead Poets Society (1989)
## 29775 Graduate, The (1967)
## 30303 Shining, The (1980)
## 31104 Back to the Future (1985)
## 31867 This Is Spinal Tap (1984)
## 32096 Indiana Jones and the Last Crusade (1989)
## 32783 Pink Floyd - The Wall (1982)
## 32934 Field of Dreams (1989)
## 34032 Star Trek: First Contact (1996)
## 34782 Star Trek VI: The Undiscovered Country (1991)
## 34968 Star Trek: The Wrath of Khan (1982)
## 35190 Star Trek III: The Search for Spock (1984)
## 35372 Star Trek IV: The Voyage Home (1986)
## 37096 Sneakers (1992)
## 39213 Men in Black (1997)
## 39596 Contact (1997)
## 40522 Hunt for Red October, The (1990)
## 40834 Full Monty, The (1997)
## 43869 English Patient, The (1996)
## 48327 Titanic (1997)
## 54272 Star Trek: Generations (1994)
## 55275 Mrs. Doubtfire (1993)
## 55433 Robin Hood: Men in Tights (1993)
## 55702 Brady Bunch Movie, The (1995)
## 55807 Ghost (1990)
## 55983 Batman (1989)
## 56697 Close Shave, A (1995)
## 57715 Mary Poppins (1964)
## 58155 E.T. the Extra-Terrestrial (1982)
## 58552 To Kill a Mockingbird (1962)
## 58745 Harold and Maude (1971)
## 59067 Highlander (1986)
## 59412 Heathers (1989)
## 60472 Star Trek: The Motion Picture (1979)
## 60577 Star Trek V: The Final Frontier (1989)
## 61369 Like Water For Chocolate (Como agua para chocolate) (1992)
## 61489 Secret of Roan Inish, The (1994)
## 62261 Dragonheart (1996)
## 62556 Dr. Strangelove or: How I Learned to Stop Worrying and Love the Bomb (1963)
## 63920 Casablanca (1942)
## 65823 Dial M for Murder (1954)
## 66314 My Left Foot (1989)
## 66572 Lawrence of Arabia (1962)
## 67060 Boot, Das (1981)
## 68274 Gandhi (1982)
## 68552 My Life as a Dog (Mitt liv som hund) (1985)
## 71534 Englishman Who Went Up a Hill, But Came Down a Mountain, The (1995)
## 72048 Beauty and the Beast (1991)
## 74511 Crying Game, The (1992)
## 74729 Microcosmos: Le peuple de l'herbe (1996)
## 76064 Stand by Me (1986)
## 76632 Fried Green Tomatoes (1991)
## 78483 McHale's Navy (1997)
## 79736 Sex, Lies, and Videotape (1989)
## 81378 Shadowlands (1993)
## 81569 Pretty Woman (1990)
## 82252 Real Genius (1985)
## 86145 Escape from L.A. (1996)
## 90288 How to Make an American Quilt (1995)
## 92671 Fast, Cheap & Out of Control (1997)
## 92845 Grumpier Old Men (1995)
## 94131 Koyaanisqatsi (1983)
## 95110 Tank Girl (1995)
## 95764 Road to Wellville, The (1994)
## 98488 Barbarella (1968)
## 147 Toy Story (1995)
## 736 Get Shorty (1995)
## 911 Copycat (1995)
## 1136 Twelve Monkeys (1995)
## 1457 Babe (1995)
## 1706 Dead Man Walking (1995)
## 2078 Seven (Se7en) (1995)
## 2317 Usual Suspects, The (1995)
## 2963 Mr. Holland's Opus (1995)
## 3229 From Dusk Till Dawn (1996)
## 3316 Antonia's Line (1995)
## 3473 Muppet Treasure Island (1996)
## 3620 Braveheart (1995)
## 3875 Taxi Driver (1976)
## 4063 Rumble in the Bronx (1995)
## 4280 Birdcage, The (1996)
## 4694 Apollo 13 (1995)
## 4998 Belle de jour (1967)
## 5077 Crimson Tide (1995)
## 5212 Crumb (1994)
## 5749 Clerks (1994)
## 5913 Dolores Claiborne (1994)
## 5990 Eat Drink Man Woman (1994)
## 6116 Ed Wood (1994)
## 6245 Hoop Dreams (1994)
## 6348 I.Q. (1994)
## 6586 Star Wars (1977)
## 7323 Outbreak (1995)
## 7447 Professional, The (1994)
## 7677 Pulp Fiction (1994)
## 8023 Quiz Show (1994)
## 8176 Three Colors: Red (1994)
## 8251 Three Colors: Blue (1993)
## 8315 Three Colors: White (1994)
## 8668 Shawshank Redemption, The (1994)
## 8882 What's Eating Gilbert Grape (1993)
## 9011 While You Were Sleeping (1995)
## 9267 Crow, The (1994)
## 9472 Forrest Gump (1994)
## 9769 Four Weddings and a Funeral (1994)
## 10000 Lion King, The (1994)
## 10190 Mask, The (1994)
## 10321 Maverick (1994)
## 10411 Faster Pussycat! Kill! Kill! (1965)
## 10529 Firm, The (1993)
## 10772 Fugitive, The (1993)
## 11102 Hudsucker Proxy, The (1994)
## 11257 Jurassic Park (1993)
## 11642 Ref, The (1994)
## 11878 Searching for Bobby Fischer (1993)
## 12041 Sleepless in Seattle (1993)
## 12276 Blade Runner (1982)
## 12607 Nightmare Before Christmas, The (1993)
## 12740 True Romance (1993)
## 13116 Aladdin (1992)
## 13367 Terminator 2: Judgment Day (1991)
## 13646 Dances with Wolves (1990)
## 13959 Silence of the Lambs, The (1991)
## 14268 Snow White and the Seven Dwarfs (1937)
## 14553 Fargo (1996)
## 15200 Moll Flanders (1996)
## 15338 Mystery Science Theater 3000: The Movie (1996)
## 15884 Cold Comfort Farm (1995)
## 16082 Rock, The (1996)
## 16433 Twister (1996)
## 16848 Independence Day (ID4) (1996)
## 17167 Cable Guy, The (1996)
## 17277 Frighteners, The (1996)
## 17416 Lone Star (1996)
## 18005 Godfather, The (1972)
## 18403 Bound (1996)
## 18537 Breakfast at Tiffany's (1961)
## 18683 Wizard of Oz, The (1939)
## 18906 Gone with the Wind (1939)
## 19084 Citizen Kane (1941)
## 19307 2001: A Space Odyssey (1968)
## 19792 Love Bug, The (1969)
## 19908 20,000 Leagues Under the Sea (1954)
## 20087 Sound of Music, The (1965)
## 20315 Die Hard (1988)
## 20617 Long Kiss Goodnight, The (1996)
## 20782 Ghost and the Darkness, The (1996)
## 21157 Willy Wonka and the Chocolate Factory (1971)
## 21401 Sleeper (1973)
## 21542 Fish Called Wanda, A (1988)
## 21759 Monty Python's Life of Brian (1979)
## 22032 Reservoir Dogs (1992)
## 22163 Platoon (1986)
## 22440 Glengarry Glen Ross (1992)
## 22549 Top Gun (1986)
## 22737 On Golden Pond (1981)
## 22832 Return of the Pink Panther, The (1974)
## 22945 Abyss, The (1989)
## 23069 Jean de Florette (1986)
## 23131 Manon of the Spring (Manon des sources) (1986)
## 23334 Monty Python and the Holy Grail (1974)
## 23593 Wrong Trousers, The (1993)
## 23707 Cinema Paradiso (1988)
## 23816 Delicatessen (1991)
## 23973 Empire Strikes Back, The (1980)
## 24682 Raiders of the Lost Ark (1981)
## 25049 Brazil (1985)
## 25270 Aliens (1986)
## 25498 Good, The Bad and The Ugly, The (1966)
## 25636 12 Angry Men (1957)
## 25791 Clockwork Orange, A (1971)
## 26011 Apocalypse Now (1979)
## 26326 Return of the Jedi (1983)
## 26745 GoodFellas (1990)
## 26988 Alien (1979)
## 27224 Army of Darkness (1993)
## 27385 Psycho (1960)
## 27622 Blues Brothers, The (1980)
## 27859 Godfather: Part II, The (1974)
## 28456 Amadeus (1984)
## 28673 Raging Bull (1980)
## 28805 Right Stuff, The (1983)
## 28994 Sting, The (1973)
## 29252 Terminator, The (1984)
## 29537 Dead Poets Society (1989)
## 29776 Graduate, The (1967)
## 29990 Nikita (La Femme Nikita) (1990)
## 30123 Bridge on the River Kwai, The (1957)
## 30304 Shining, The (1980)
## 30478 Evil Dead II (1987)
## 30626 Groundhog Day (1993)
## 30873 Unforgiven (1992)
## 31105 Back to the Future (1985)
## 31381 Patton (1970)
## 31662 Young Frankenstein (1974)
## 31868 This Is Spinal Tap (1984)
## 32097 Indiana Jones and the Last Crusade (1989)
## 32388 M*A*S*H (1970)
## 32656 Room with a View, A (1986)
## 32784 Pink Floyd - The Wall (1982)
## 32935 Field of Dreams (1989)
## 33175 When Harry Met Sally... (1989)
## 33540 Cape Fear (1991)
## 33693 Nightmare on Elm Street, A (1984)
## 34323 Sling Blade (1996)
## 34615 Die Hard 2 (1990)
## 35373 Star Trek IV: The Voyage Home (1986)
## 35547 Batman Returns (1992)
## 35785 Under Siege (1992)
## 35959 Jaws (1975)
## 36228 Mars Attacks! (1996)
## 36543 Jerry Maguire (1996)
## 36882 Raising Arizona (1987)
## 37097 Sneakers (1992)
## 37408 Last of the Mohicans, The (1992)
## 38200 Grosse Pointe Blank (1997)
## 38885 Batman & Robin (1997)
## 38982 My Best Friend's Wedding (1997)
## 39214 Men in Black (1997)
## 39988 George of the Jungle (1997)
## 40377 Mimic (1997)
## 40523 Hunt for Red October, The (1990)
## 41647 Heat (1995)
## 41865 Sabrina (1995)
## 42073 Sense and Sensibility (1995)
## 42368 Leaving Las Vegas (1995)
## 43232 Emma (1996)
## 43420 Tin Cup (1996)
## 43605 Secrets & Lies (1996)
## 44423 Scream (1996)
## 45143 Absolute Power (1997)
## 45386 Donnie Brasco (1997)
## 45656 Liar Liar (1997)
## 45998 Breakdown (1997)
## 46177 Face/Off (1997)
## 47897 Deceiver (1997)
## 48328 Titanic (1997)
## 49038 Schindler's List (1993)
## 49297 Everyone Says I Love You (1996)
## 49488 Mother (1996)
## 49666 Murder at 1600 (1997)
## 52868 Client, The (1994)
## 53020 One Flew Over the Cuckoo's Nest (1975)
## 53504 Powder (1995)
## 53640 Clueless (1995)
## 53902 Bridges of Madison County, The (1995)
## 54118 Miracle on 34th Street (1994)
## 54485 Adventures of Priscilla, Queen of the Desert, The (1994)
## 54723 True Lies (1994)
## 55168 Man Without a Face, The (1993)
## 55276 Mrs. Doubtfire (1993)
## 55494 Serial Mom (1994)
## 55808 Ghost (1990)
## 55984 Batman (1989)
## 56154 Pinocchio (1940)
## 56698 Close Shave, A (1995)
## 56892 Kingpin (1996)
## 57068 Nutty Professor, The (1996)
## 57482 Parent Trap, The (1961)
## 57716 Mary Poppins (1964)
## 57869 Alice in Wonderland (1951)
## 58156 E.T. the Extra-Terrestrial (1982)
## 58405 Bob Roberts (1992)
## 58553 To Kill a Mockingbird (1962)
## 58746 Harold and Maude (1971)
## 58863 Day the Earth Stood Still, The (1951)
## 58958 Duck Soup (1933)
## 59232 Fantasia (1940)
## 59413 Heathers (1989)
## 59538 Forbidden Planet (1956)
## 59655 Butch Cassidy and the Sundance Kid (1969)
## 59831 American Werewolf in London, An (1981)
## 60039 Birds, The (1963)
## 60265 Carrie (1976)
## 60376 Omen, The (1976)
## 60473 Star Trek: The Motion Picture (1979)
## 60803 Jaws 2 (1978)
## 60930 Jackie Chan's First Strike (1996)
## 61266 Smoke (1995)
## 61490 Secret of Roan Inish, The (1994)
## 61669 Red Rock West (1992)
## 61711 Bronx Tale, A (1993)
## 61837 Short Cuts (1993)
## 62058 Courage Under Fire (1996)
## 62262 Dragonheart (1996)
## 62410 James and the Giant Peach (1996)
## 62773 Trainspotting (1996)
## 63130 Matilda (1996)
## 63347 Vertigo (1958)
## 63528 North by Northwest (1959)
## 63666 Apartment, The (1960)
## 63758 Some Like It Hot (1959)
## 63921 Casablanca (1942)
## 64129 Maltese Falcon, The (1941)
## 64262 My Fair Lady (1964)
## 64374 Sabrina (1954)
## 64434 Roman Holiday (1953)
## 64501 Sunset Blvd. (1950)
## 64611 To Catch a Thief (1955)
## 64735 East of Eden (1955)
## 64791 Thin Man, The (1934)
## 64847 His Girl Friday (1940)
## 64909 Around the World in 80 Days (1956)
## 65018 It's a Wonderful Life (1946)
## 65296 African Queen, The (1951)
## 65420 Cat on a Hot Tin Roof (1958)
## 65504 Dumbo (1941)
## 65610 Bananas (1971)
## 65720 Bonnie and Clyde (1967)
## 65824 Dial M for Murder (1954)
## 65897 Rebel Without a Cause (1955)
## 65992 Streetcar Named Desire, A (1951)
## 66315 My Left Foot (1989)
## 66432 Magnificent Seven, The (1954)
## 66573 Lawrence of Arabia (1962)
## 66708 Wings of Desire (1987)
## 66770 Third Man, The (1949)
## 66879 Annie Hall (1977)
## 67061 Boot, Das (1981)
## 67223 Local Hero (1983)
## 67292 Manhattan (1979)
## 67466 Treasure of the Sierra Madre, The (1948)
## 67553 Great Escape, The (1963)
## 67681 Deer Hunter, The (1978)
## 67780 Down by Law (1986)
## 67853 Cool Hand Luke (1967)
## 68034 Big Sleep, The (1946)
## 68118 Ben-Hur (1959)
## 68442 Killing Fields, The (1984)
## 68642 Man Who Would Be King, The (1975)
## 68740 Shine (1996)
## 68950 My Own Private Idaho (1991)
## 69418 Broken Arrow (1996)
## 69768 Die Hard: With a Vengeance (1995)
## 70175 Heavenly Creatures (1994)
## 70261 Interview with the Vampire (1994)
## 70618 Clear and Present Danger (1994)
## 70755 Wes Craven's New Nightmare (1994)
## 70853 Speed (1994)
## 71030 Wolf (1994)
## 71432 Demolition Man (1993)
## 71504 Fatal Instinct (1993)
## 71568 Kalifornia (1993)
## 71666 Piano, The (1993)
## 71795 Romeo Is Bleeding (1993)
## 71833 Secret Garden, The (1993)
## 72049 Beauty and the Beast (1991)
## 72198 Wild Bunch, The (1969)
## 72301 Primal Fear (1996)
## 72713 Eraser (1996)
## 72894 American in Paris, An (1951)
## 72984 Rear Window (1954)
## 73222 Meet Me in St. Louis (1944)
## 73322 Rebecca (1940)
## 73424 Father of the Bride (1950)
## 73479 Gigi (1958)
## 73514 Laura (1944)
## 73587 My Man Godfrey (1936)
## 73623 Giant (1956)
## 73673 39 Steps, The (1935)
## 73735 Night of the Living Dead (1968)
## 73807 Picnic (1955)
## 74255 Sleepers (1996)
## 74397 Victor/Victoria (1982)
## 74612 Sophie's Choice (1982)
## 74667 Christmas Carol, A (1938)
## 74730 Microcosmos: Le peuple de l'herbe (1996)
## 74869 Howling, The (1981)
## 75002 Cook the Thief His Wife & Her Lover, The (1989)
## 75072 Paths of Glory (1957)
## 75127 Grifters, The (1990)
## 75260 Once Upon a Time in the West (1969)
## 75374 Quiet Man, The (1952)
## 75439 Once Upon a Time in America (1984)
## 75815 Touch of Evil (1958)
## 75888 Chinatown (1974)
## 76065 Stand by Me (1986)
## 76228 M (1931)
## 76293 Manchurian Candidate, The (1962)
## 76501 Arsenic and Old Lace (1944)
## 76633 Fried Green Tomatoes (1991)
## 76762 High Noon (1952)
## 76940 Being There (1979)
## 77036 Paris, Texas (1984)
## 77106 Alien 3 (1992)
## 77219 Bride of Frankenstein (1935)
## 77344 Cape Fear (1962)
## 77465 Nosferatu (Nosferatu, eine Symphonie des Grauens) (1922)
## 77651 Volcano (1997)
## 77839 Conan the Barbarian (1981)
## 78138 In the Line of Fire (1993)
## 78430 Perfect World, A (1993)
## 78887 American President, The (1995)
## 79019 Casino (1995)
## 79307 Little Women (1994)
## 79538 Singin' in the Rain (1952)
## 79737 Sex, Lies, and Videotape (1989)
## 79836 Strictly Ballroom (1992)
## 80010 Tin Men (1987)
## 80161 To Die For (1995)
## 80879 Nell (1994)
## 81044 Dave (1993)
## 81379 Shadowlands (1993)
## 81570 Pretty Woman (1990)
## 81773 Last Supper, The (1995)
## 81893 Ransom (1996)
## 82253 Real Genius (1985)
## 82374 Benny & Joon (1993)
## 83255 Jumanji (1995)
## 84039 Devil in a Blue Dress (1995)
## 84279 Don Juan DeMarco (1995)
## 84787 Bullets Over Broadway (1994)
## 85055 Hard Target (1993)
## 85107 Manhattan Murder Mystery (1993)
## 85146 Menace II Society (1993)
## 85308 Thirty-Two Short Films About Glenn Gould (1993)
## 85715 Faces (1968)
## 85816 Great White Hype, The (1996)
## 85874 Arrival, The (1996)
## 85959 Phantom, The (1996)
## 86484 Pollyanna (1960)
## 86514 Shaggy Dog, The (1959)
## 86853 Murder, My Sweet (1944)
## 86930 Braindead (1992)
## 87032 Night on Earth (1991)
## 87117 Garden of Finzi-Contini, The (Giardino dei Finzi-Contini, Il) (1970)
## 88973 Farewell My Concubine (1993)
## 89351 Craft, The (1996)
## 89986 What's Love Got to Do with It (1993)
## 90109 Charade (1963)
## 90613 Dazed and Confused (1993)
## 90727 Ruby in Paradise (1993)
## 90799 Funny Face (1957)
## 90822 Affair to Remember, An (1957)
## 90854 Inspector General, The (1949)
## 91791 Until the End of the World (Bis ans Ende der Welt) (1991)
## 92565 Die xue shuang xiong (Killer, The) (1989)
## 92632 8 1/2 (1963)
## 92846 Grumpier Old Men (1995)
## 93448 Fearless (1993)
## 93480 Malice (1993)
## 93552 Multiplicity (1996)
## 94132 Koyaanisqatsi (1983)
## 94337 Shallow Grave (1994)
## 94401 Reality Bites (1994)
## 95270 Up in Smoke (1978)
## 95384 Umbrellas of Cherbourg, The (Parapluies de Cherbourg, Les) (1964)
## 95428 Old Man and the Sea, The (1958)
## 95631 Doors, The (1991)
## 95765 Road to Wellville, The (1994)
## 95867 My Family (1995)
## 95984 Alphaville (1965)
## 96175 Fresh (1994)
## 96550 Family Thing, A (1996)
## 96786 Blue Sky (1994)
## 97425 Contempt (Mepris, Le) (1963)
## 97815 Shall We Dance? (1937)
## 98423 Withnail and I (1987)
## 98489 Barbarella (1968)
## 98562 My Crazy Life (Mi vida loca) (1993)
## 98775 Beat the Devil (1954)
## 99031 Wings of Courage (1995)
## 37534 Kolya (1996)
## 39597 Contact (1997)
## 43870 English Patient, The (1996)
## 46512 Air Force One (1997)
## 47380 Fly Away Home (1996)
## 47602 Mrs. Brown (Her Majesty, Mrs. Brown) (1997)
## 49298 Everyone Says I Love You (1996)
## 50100 Lost Highway (1997)
## 50361 G.I. Jane (1997)
## 51073 Edge, The (1997)
## 51375 Game, The (1997)
## 51567 U Turn (1997)
## 78712 Seven Years in Tibet (1997)
## 87841 Peacemaker, The (1997)
## 89817 Smile Like Yours, A (1997)
## 91468 Cats Don't Dance (1997)
## 92750 Fire Down Below (1997)
## 97887 Indian Summer (1996)
## 98346 Stag (1997)
## 2739 Postino, Il (1994)
## 4064 Rumble in the Bronx (1995)
## 6587 Star Wars (1977)
## 15885 Cold Comfort Farm (1995)
## 26327 Return of the Jedi (1983)
## 34033 Star Trek: First Contact (1996)
## 38658 Shall We Dance? (1996)
## 39215 Men in Black (1997)
## 39598 Contact (1997)
## 41866 Sabrina (1995)
## 42074 Sense and Sensibility (1995)
## 45657 Liar Liar (1997)
## 47381 Fly Away Home (1996)
## 68933 Ponette (1996)
## 81701 Jane Eyre (1996)
## 82530 Saint, The (1997)
## 86216 Bogus (1996)
## 86638 That Thing You Do! (1996)
## 92672 Fast, Cheap & Out of Control (1997)
## 95801 When We Were Kings (1996)
## 98317 Tetsuo II: Body Hammer (1992)
## 148 Toy Story (1995)
## 912 Copycat (1995)
## 1458 Babe (1995)
## 1707 Dead Man Walking (1995)
## 2318 Usual Suspects, The (1995)
## 2964 Mr. Holland's Opus (1995)
## 3621 Braveheart (1995)
## 3876 Taxi Driver (1976)
## 4695 Apollo 13 (1995)
## 5078 Crimson Tide (1995)
## 5435 Net, The (1995)
## 5546 Strange Days (1995)
## 5676 Billy Madison (1995)
## 5860 Disclosure (1994)
## 5914 Dolores Claiborne (1994)
## 6117 Ed Wood (1994)
## 6588 Star Wars (1977)
## 7020 Legends of the Fall (1994)
## 7324 Outbreak (1995)
## 7678 Pulp Fiction (1994)
## 8024 Quiz Show (1994)
## 8398 Stargate (1994)
## 8505 Santa Clause, The (1994)
## 8669 Shawshank Redemption, The (1994)
## 9012 While You Were Sleeping (1995)
## 9268 Crow, The (1994)
## 9473 Forrest Gump (1994)
## 9770 Four Weddings and a Funeral (1994)
## 10001 Lion King, The (1994)
## 10191 Mask, The (1994)
## 10322 Maverick (1994)
## 10438 Carlito's Way (1993)
## 10530 Firm, The (1993)
## 10773 Fugitive, The (1993)
## 11103 Hudsucker Proxy, The (1994)
## 11258 Jurassic Park (1993)
## 11489 Much Ado About Nothing (1993)
## 11736 Remains of the Day, The (1993)
## 12042 Sleepless in Seattle (1993)
## 12277 Blade Runner (1982)
## 12608 Nightmare Before Christmas, The (1993)
## 12962 Home Alone (1990)
## 13368 Terminator 2: Judgment Day (1991)
## 13647 Dances with Wolves (1990)
## 13960 Silence of the Lambs, The (1991)
## 14269 Snow White and the Seven Dwarfs (1937)
## 14554 Fargo (1996)
## 14917 Heavy Metal (1981)
## 16083 Rock, The (1996)
## 16434 Twister (1996)
## 16849 Independence Day (ID4) (1996)
## 17625 Phenomenon (1996)
## 18006 Godfather, The (1972)
## 18538 Breakfast at Tiffany's (1961)
## 18684 Wizard of Oz, The (1939)
## 18907 Gone with the Wind (1939)
## 19085 Citizen Kane (1941)
## 19308 2001: A Space Odyssey (1968)
## 19509 Mr. Smith Goes to Washington (1939)
## 19909 20,000 Leagues Under the Sea (1954)
## 20088 Sound of Music, The (1965)
## 22550 Top Gun (1986)
## 23335 Monty Python and the Holy Grail (1974)
## 23708 Cinema Paradiso (1988)
## 23974 Empire Strikes Back, The (1980)
## 24329 Princess Bride, The (1987)
## 24683 Raiders of the Lost Ark (1981)
## 25271 Aliens (1986)
## 25499 Good, The Bad and The Ugly, The (1966)
## 25637 12 Angry Men (1957)
## 25792 Clockwork Orange, A (1971)
## 26012 Apocalypse Now (1979)
## 26328 Return of the Jedi (1983)
## 26989 Alien (1979)
## 27386 Psycho (1960)
## 27623 Blues Brothers, The (1980)
## 27860 Godfather: Part II, The (1974)
## 28056 Full Metal Jacket (1987)
## 28457 Amadeus (1984)
## 28674 Raging Bull (1980)
## 28806 Right Stuff, The (1983)
## 28995 Sting, The (1973)
## 29253 Terminator, The (1984)
## 29538 Dead Poets Society (1989)
## 29777 Graduate, The (1967)
## 29991 Nikita (La Femme Nikita) (1990)
## 30124 Bridge on the River Kwai, The (1957)
## 30305 Shining, The (1980)
## 30627 Groundhog Day (1993)
## 30874 Unforgiven (1992)
## 31106 Back to the Future (1985)
## 31382 Patton (1970)
## 31663 Young Frankenstein (1974)
## 31869 This Is Spinal Tap (1984)
## 32098 Indiana Jones and the Last Crusade (1989)
## 32389 M*A*S*H (1970)
## 32556 Unbearable Lightness of Being, The (1988)
## 32657 Room with a View, A (1986)
## 32936 Field of Dreams (1989)
## 33176 When Harry Met Sally... (1989)
## 33541 Cape Fear (1991)
## 34034 Star Trek: First Contact (1996)
## 34616 Die Hard 2 (1990)
## 34783 Star Trek VI: The Undiscovered Country (1991)
## 34969 Star Trek: The Wrath of Khan (1982)
## 35191 Star Trek III: The Search for Spock (1984)
## 35374 Star Trek IV: The Voyage Home (1986)
## 35548 Batman Returns (1992)
## 35678 Young Guns (1988)
## 35786 Under Siege (1992)
## 35960 Jaws (1975)
## 36883 Raising Arizona (1987)
## 37098 Sneakers (1992)
## 37409 Last of the Mohicans, The (1992)
## 39599 Contact (1997)
## 40524 Hunt for Red October, The (1990)
## 42075 Sense and Sensibility (1995)
## 42369 Leaving Las Vegas (1995)
## 43025 Time to Kill, A (1996)
## 45658 Liar Liar (1997)
## 46513 Air Force One (1997)
## 47603 Mrs. Brown (Her Majesty, Mrs. Brown) (1997)
## 47955 Rainmaker, The (1997)
## 48621 Apt Pupil (1998)
## 49039 Schindler's List (1993)
## 49489 Mother (1996)
## 49667 Murder at 1600 (1997)
## 49891 Dante's Peak (1997)
## 50362 G.I. Jane (1997)
## 50971 Desperate Measures (1998)
## 52869 Client, The (1994)
## 53021 One Flew Over the Cuckoo's Nest (1975)
## 53505 Powder (1995)
## 53553 Dangerous Minds (1995)
## 53641 Clueless (1995)
## 53903 Bridges of Madison County, The (1995)
## 54119 Miracle on 34th Street (1994)
## 54273 Star Trek: Generations (1994)
## 54724 True Lies (1994)
## 54898 Addams Family Values (1993)
## 54983 Age of Innocence, The (1993)
## 55169 Man Without a Face, The (1993)
## 55277 Mrs. Doubtfire (1993)
## 55585 Three Musketeers, The (1993)
## 55809 Ghost (1990)
## 55985 Batman (1989)
## 56155 Pinocchio (1940)
## 57380 Apple Dumpling Gang, The (1975)
## 57419 Old Yeller (1957)
## 57483 Parent Trap, The (1961)
## 57579 Cinderella (1950)
## 57717 Mary Poppins (1964)
## 57870 Alice in Wonderland (1951)
## 58157 E.T. the Extra-Terrestrial (1982)
## 58406 Bob Roberts (1992)
## 58747 Harold and Maude (1971)
## 59068 Highlander (1986)
## 59233 Fantasia (1940)
## 59414 Heathers (1989)
## 59832 American Werewolf in London, An (1981)
## 60040 Birds, The (1963)
## 60162 Blob, The (1958)
## 60377 Omen, The (1976)
## 60474 Star Trek: The Motion Picture (1979)
## 60669 Grease (1978)
## 61593 Jungle Book, The (1994)
## 61765 Rudy (1993)
## 61838 Short Cuts (1993)
## 61915 Tombstone (1993)
## 62059 Courage Under Fire (1996)
## 63348 Vertigo (1958)
## 63529 North by Northwest (1959)
## 63759 Some Like It Hot (1959)
## 63922 Casablanca (1942)
## 64130 Maltese Falcon, The (1941)
## 64263 My Fair Lady (1964)
## 64435 Roman Holiday (1953)
## 64672 Adventures of Robin Hood, The (1938)
## 64792 Thin Man, The (1934)
## 64848 His Girl Friday (1940)
## 64910 Around the World in 80 Days (1956)
## 65019 It's a Wonderful Life (1946)
## 65297 African Queen, The (1951)
## 65421 Cat on a Hot Tin Roof (1958)
## 65505 Dumbo (1941)
## 65721 Bonnie and Clyde (1967)
## 65825 Dial M for Murder (1954)
## 66316 My Left Foot (1989)
## 66433 Magnificent Seven, The (1954)
## 66574 Lawrence of Arabia (1962)
## 67062 Boot, Das (1981)
## 67388 Miller's Crossing (1990)
## 67467 Treasure of the Sierra Madre, The (1948)
## 67554 Great Escape, The (1963)
## 67682 Deer Hunter, The (1978)
## 67854 Cool Hand Luke (1967)
## 68119 Ben-Hur (1959)
## 68275 Gandhi (1982)
## 68443 Killing Fields, The (1984)
## 68643 Man Who Would Be King, The (1975)
## 69054 Mouse Hunt (1997)
## 69661 Rob Roy (1995)
## 69769 Die Hard: With a Vengeance (1995)
## 69967 Walk in the Clouds, A (1995)
## 70262 Interview with the Vampire (1994)
## 70455 Quick and the Dead, The (1995)
## 70619 Clear and Present Danger (1994)
## 70854 Speed (1994)
## 71090 Wyatt Earp (1994)
## 71303 Cliffhanger (1993)
## 71433 Demolition Man (1993)
## 71569 Kalifornia (1993)
## 71834 Secret Garden, The (1993)
## 72050 Beauty and the Beast (1991)
## 72427 True Crime (1995)
## 73153 It Happened One Night (1934)
## 73624 Giant (1956)
## 73929 Davy Crockett, King of the Wild Frontier (1955)
## 73951 Swiss Family Robinson (1960)
## 73985 Angels in the Outfield (1994)
## 74145 Robin Hood: Prince of Thieves (1991)
## 74454 Great Race, The (1965)
## 74948 Tin Drum, The (Blechtrommel, Die) (1979)
## 75128 Grifters, The (1990)
## 75231 Paris Is Burning (1990)
## 75375 Quiet Man, The (1952)
## 75498 Seventh Seal, The (Sjunde inseglet, Det) (1957)
## 75598 Glory (1989)
## 75889 Chinatown (1974)
## 76066 Stand by Me (1986)
## 76634 Fried Green Tomatoes (1991)
## 76763 High Noon (1952)
## 76850 Somewhere in Time (1980)
## 77220 Bride of Frankenstein (1935)
## 77840 Conan the Barbarian (1981)
## 78139 In the Line of Fire (1993)
## 78888 American President, The (1995)
## 79308 Little Women (1994)
## 79379 Miami Rhapsody (1995)
## 79417 Barcelona (1994)
## 79539 Singin' in the Rain (1952)
## 79738 Sex, Lies, and Videotape (1989)
## 80162 To Die For (1995)
## 80239 Home for the Holidays (1995)
## 80427 First Knight (1995)
## 80611 Boys on the Side (1995)
## 80656 Circle of Friends (1995)
## 80729 Fluke (1995)
## 80880 Nell (1994)
## 81045 Dave (1993)
## 81261 Philadelphia (1993)
## 81571 Pretty Woman (1990)
## 82375 Benny & Joon (1993)
## 82531 Saint, The (1997)
## 82847 Amistad (1997)
## 82991 Tomorrow Never Dies (1997)
## 83186 Red Corner (1997)
## 83256 Jumanji (1995)
## 83550 Nick of Time (1995)
## 83940 Casper (1995)
## 84222 Something to Talk About (1995)
## 84280 Don Juan DeMarco (1995)
## 84458 French Kiss (1995)
## 84539 Milk Money (1994)
## 84579 Only You (1994)
## 84864 It Could Happen to You (1994)
## 84926 Speechless (1994)
## 86639 That Thing You Do! (1996)
## 86875 Days of Thunder (1990)
## 88974 Farewell My Concubine (1993)
## 89857 Murder in the First (1995)
## 89941 With Honors (1994)
## 89987 What's Love Got to Do with It (1993)
## 90070 Renaissance Man (1994)
## 90164 Fox and the Hound, The (1981)
## 90382 Indian in the Cupboard, The (1995)
## 90800 Funny Face (1957)
## 90823 Affair to Remember, An (1957)
## 90841 Little Lord Fauntleroy (1936)
## 93076 Cool Runnings (1993)
## 93319 Forget Paris (1995)
## 93371 Just Cause (1995)
## 93481 Malice (1993)
## 93753 Ghost and Mrs. Muir, The (1947)
## 94783 Live Nude Girls (1995)
## 95227 Mark of Zorro, The (1940)
## 95320 Some Kind of Wonderful (1987)
## 96864 Assassins (1995)
## 96976 When a Man Loves a Woman (1994)
## 97014 Judgment Night (1993)
## 97206 Madonna: Truth or Dare (1991)
## 97907 Love Affair (1994)
## 98895 Reckless (1995)
## 149 Toy Story (1995)
## 737 Get Shorty (1995)
## 1459 Babe (1995)
## 1932 Richard III (1995)
## 2740 Postino, Il (1994)
## 3877 Taxi Driver (1976)
## 4696 Apollo 13 (1995)
## 6589 Star Wars (1977)
## 7098 Madness of King George, The (1994)
## 7949 Priest (1994)
## 9474 Forrest Gump (1994)
## 9771 Four Weddings and a Funeral (1994)
## 10002 Lion King, The (1994)
## 11490 Much Ado About Nothing (1993)
## 12278 Blade Runner (1982)
## 12609 Nightmare Before Christmas, The (1993)
## 13369 Terminator 2: Judgment Day (1991)
## 13648 Dances with Wolves (1990)
## 13961 Silence of the Lambs, The (1991)
## 14555 Fargo (1996)
## 15777 Wallace & Gromit: The Best of Aardman Animation (1996)
## 16850 Independence Day (ID4) (1996)
## 17417 Lone Star (1996)
## 18539 Breakfast at Tiffany's (1961)
## 18685 Wizard of Oz, The (1939)
## 18908 Gone with the Wind (1939)
## 19086 Citizen Kane (1941)
## 19510 Mr. Smith Goes to Washington (1939)
## 19647 Big Night (1996)
## 20089 Sound of Music, The (1965)
## 20316 Die Hard (1988)
## 21158 Willy Wonka and the Chocolate Factory (1971)
## 21402 Sleeper (1973)
## 21543 Fish Called Wanda, A (1988)
## 21760 Monty Python's Life of Brian (1979)
## 22033 Reservoir Dogs (1992)
## 22164 Platoon (1986)
## 23070 Jean de Florette (1986)
## 23132 Manon of the Spring (Manon des sources) (1986)
## 23594 Wrong Trousers, The (1993)
## 23709 Cinema Paradiso (1988)
## 23975 Empire Strikes Back, The (1980)
## 24330 Princess Bride, The (1987)
## 24684 Raiders of the Lost Ark (1981)
## 25050 Brazil (1985)
## 25272 Aliens (1986)
## 25500 Good, The Bad and The Ugly, The (1966)
## 25638 12 Angry Men (1957)
## 25793 Clockwork Orange, A (1971)
## 26013 Apocalypse Now (1979)
## 26329 Return of the Jedi (1983)
## 26990 Alien (1979)
## 27387 Psycho (1960)
## 27624 Blues Brothers, The (1980)
## 27861 Godfather: Part II, The (1974)
## 28057 Full Metal Jacket (1987)
## 28198 Grand Day Out, A (1992)
## 28278 Henry V (1989)
## 28458 Amadeus (1984)
## 28996 Sting, The (1973)
## 29254 Terminator, The (1984)
## 29778 Graduate, The (1967)
## 30125 Bridge on the River Kwai, The (1957)
## 31107 Back to the Future (1985)
## 31383 Patton (1970)
## 31491 Akira (1988)
## 31547 Cyrano de Bergerac (1990)
## 31664 Young Frankenstein (1974)
## 31870 This Is Spinal Tap (1984)
## 32390 M*A*S*H (1970)
## 32658 Room with a View, A (1986)
## 32785 Pink Floyd - The Wall (1982)
## 34035 Star Trek: First Contact (1996)
## 34324 Sling Blade (1996)
## 34970 Star Trek: The Wrath of Khan (1982)
## 35961 Jaws (1975)
## 36884 Raising Arizona (1987)
## 37410 Last of the Mohicans, The (1992)
## 40525 Hunt for Red October, The (1990)
## 40835 Full Monty, The (1997)
## 42076 Sense and Sensibility (1995)
## 42370 Leaving Las Vegas (1995)
## 53022 One Flew Over the Cuckoo's Nest (1975)
## 53961 Jeffrey (1995)
## 54486 Adventures of Priscilla, Queen of the Desert, The (1994)
## 56699 Close Shave, A (1995)
## 57331 My Favorite Year (1982)
## 57718 Mary Poppins (1964)
## 58554 To Kill a Mockingbird (1962)
## 58748 Harold and Maude (1971)
## 58864 Day the Earth Stood Still, The (1951)
## 58959 Duck Soup (1933)
## 59234 Fantasia (1940)
## 59539 Forbidden Planet (1956)
## 59656 Butch Cassidy and the Sundance Kid (1969)
## 60041 Birds, The (1963)
## 61196 Cry, the Beloved Country (1995)
## 61491 Secret of Roan Inish, The (1994)
## 62557 Dr. Strangelove or: How I Learned to Stop Worrying and Love the Bomb (1963)
## 63223 Philadelphia Story, The (1940)
## 63349 Vertigo (1958)
## 63530 North by Northwest (1959)
## 63667 Apartment, The (1960)
## 63760 Some Like It Hot (1959)
## 63923 Casablanca (1942)
## 64131 Maltese Falcon, The (1941)
## 64264 My Fair Lady (1964)
## 64375 Sabrina (1954)
## 64436 Roman Holiday (1953)
## 64502 Sunset Blvd. (1950)
## 64560 Notorious (1946)
## 64612 To Catch a Thief (1955)
## 64673 Adventures of Robin Hood, The (1938)
## 64793 Thin Man, The (1934)
## 64849 His Girl Friday (1940)
## 64911 Around the World in 80 Days (1956)
## 65020 It's a Wonderful Life (1946)
## 65298 African Queen, The (1951)
## 65422 Cat on a Hot Tin Roof (1958)
## 65655 Candidate, The (1972)
## 65826 Dial M for Murder (1954)
## 65898 Rebel Without a Cause (1955)
## 65993 Streetcar Named Desire, A (1951)
## 66317 My Left Foot (1989)
## 66434 Magnificent Seven, The (1954)
## 66575 Lawrence of Arabia (1962)
## 66709 Wings of Desire (1987)
## 66771 Third Man, The (1949)
## 66880 Annie Hall (1977)
## 67063 Boot, Das (1981)
## 67224 Local Hero (1983)
## 67468 Treasure of the Sierra Madre, The (1948)
## 67555 Great Escape, The (1963)
## 67683 Deer Hunter, The (1978)
## 67981 Great Dictator, The (1940)
## 68035 Big Sleep, The (1946)
## 68120 Ben-Hur (1959)
## 68444 Killing Fields, The (1984)
## 68553 My Life as a Dog (Mitt liv som hund) (1985)
## 68644 Man Who Would Be King, The (1975)
## 68741 Shine (1996)
## 68951 My Own Private Idaho (1991)
## 69231 Miserables, Les (1995)
## 70138 Farinelli: il castrato (1994)
## 71192 Body Snatchers (1993)
## 71835 Secret Garden, The (1993)
## 71972 Hour of the Pig, The (1993)
## 72051 Beauty and the Beast (1991)
## 72199 Wild Bunch, The (1969)
## 72437 Stalingrad (1993)
## 72567 Hunchback of Notre Dame, The (1996)
## 72858 For Whom the Bell Tolls (1943)
## 72895 American in Paris, An (1951)
## 72985 Rear Window (1954)
## 73154 It Happened One Night (1934)
## 73264 All About Eve (1950)
## 73323 Rebecca (1940)
## 73382 Spellbound (1945)
## 73425 Father of the Bride (1950)
## 73480 Gigi (1958)
## 73515 Laura (1944)
## 73559 Lost Horizon (1937)
## rating
## 1 5
## 453 3
## 584 4
## 674 3
## 883 3
## 969 5
## 995 4
## 1387 1
## 1606 5
## 1905 3
## 1994 2
## 2230 5
## 2497 5
## 2681 5
## 2864 5
## 3157 5
## 3196 3
## 3288 4
## 3298 5
## 3367 4
## 3439 1
## 3523 4
## 3820 4
## 4002 3
## 4176 4
## 4469 3
## 4542 2
## 4599 4
## 4875 1
## 4989 3
## 5026 3
## 5180 5
## 5261 4
## 5358 2
## 5365 1
## 5376 2
## 5389 2
## 5397 3
## 5517 4
## 5604 3
## 5661 2
## 5698 5
## 5846 4
## 5886 5
## 5965 5
## 6045 4
## 6072 4
## 6205 5
## 6322 3
## 6403 5
## 6986 4
## 7067 4
## 7158 3
## 7286 3
## 7390 5
## 7539 4
## 7933 5
## 7973 4
## 8148 5
## 8231 5
## 8295 4
## 8354 3
## 8481 2
## 8563 5
## 8846 4
## 8961 4
## 9123 3
## 9226 4
## 9360 3
## 9681 3
## 9932 3
## 10152 4
## 10281 3
## 10409 1
## 10416 4
## 10421 4
## 10475 4
## 10626 1
## 10659 4
## 10995 4
## 11063 5
## 11173 5
## 11434 3
## 11610 4
## 11628 3
## 11686 5
## 11836 5
## 11974 4
## 12187 5
## 12462 4
## 12557 5
## 12700 3
## 12804 5
## 12916 2
## 13053 4
## 13272 5
## 13567 3
## 13823 4
## 14213 3
## 14385 5
## 14893 2
## 14966 2
## 15020 1
## 15035 1
## 15040 2
## 15114 4
## 15185 4
## 15227 5
## 15292 5
## 15422 1
## 15453 5
## 15725 1
## 15745 5
## 15754 5
## 15821 5
## 15836 3
## 15961 3
## 16339 3
## 16632 5
## 16636 1
## 16703 4
## 17132 3
## 17238 4
## 17353 5
## 17540 3
## 17784 2
## 17881 5
## 18294 4
## 18359 5
## 18488 3
## 18511 1
## 18606 4
## 18852 4
## 19023 4
## 19221 4
## 19480 3
## 19585 5
## 19756 1
## 19775 3
## 19825 1
## 19886 3
## 19958 2
## 20015 1
## 20237 4
## 20480 2
## 20545 4
## 20555 3
## 20740 2
## 20868 2
## 20891 5
## 21048 4
## 21374 5
## 21456 3
## 21703 5
## 21877 2
## 21975 4
## 22123 4
## 22250 3
## 22310 3
## 22411 4
## 22480 4
## 22700 4
## 22806 4
## 22898 3
## 23049 5
## 23113 5
## 23171 2
## 23238 5
## 23554 5
## 23672 5
## 23793 5
## 23858 5
## 24225 5
## 24549 5
## 24969 5
## 25177 5
## 25461 5
## 25598 5
## 25723 3
## 25944 3
## 26165 5
## 26672 4
## 26898 5
## 27189 4
## 27305 4
## 27544 4
## 27795 4
## 28004 3
## 28174 3
## 28240 5
## 28364 5
## 28640 4
## 28756 4
## 28913 4
## 29154 5
## 29455 5
## 29706 5
## 29945 5
## 30072 4
## 30237 3
## 30443 3
## 30532 5
## 30812 4
## 30994 5
## 31344 3
## 31480 4
## 31530 5
## 31596 5
## 31796 4
## 31987 4
## 32318 3
## 32524 4
## 32616 2
## 32750 4
## 32864 3
## 33076 5
## 33366 3
## 33486 3
## 33657 1
## 33768 3
## 33834 5
## 33908 4
## 34273 5
## 34409 5
## 34453 2
## 34562 3
## 34728 4
## 34889 5
## 35133 4
## 35304 4
## 35503 1
## 35645 3
## 35746 2
## 35870 4
## 36150 5
## 36367 4
## 36412 2
## 36796 4
## 37052 4
## 37202 3
## 37358 4
## 37486 5
## 37603 1
## 37735 2
## 37783 2
## 38023 5
## 38147 1
## 38152 4
## 38312 4
## 38442 4
## 38639 4
## 38685 2
## 38843 5
## 38869 1
## 38931 2
## 39103 4
## 39119 4
## 39422 5
## 39931 1
## 40093 1
## 40220 1
## 40263 3
## 40329 1
## 40348 2
## 40449 4
## 40676 1
## 40711 4
## 40720 5
## 41035 5
## 41171 2
## 41382 3
## 2 4
## 1906 2
## 2498 4
## 2682 4
## 3299 3
## 4177 4
## 6404 5
## 14386 5
## 15454 4
## 17882 5
## 36413 4
## 37487 5
## 38640 5
## 38932 4
## 39120 4
## 39423 3
## 40721 4
## 41383 5
## 41580 4
## 41803 3
## 41993 5
## 42261 4
## 42559 4
## 42630 3
## 42690 4
## 42718 3
## 42803 3
## 42949 4
## 43181 5
## 43358 4
## 43551 5
## 43713 4
## 44194 3
## 44272 3
## 44750 3
## 45009 3
## 45105 3
## 45232 4
## 45346 4
## 45493 1
## 45978 4
## 46055 3
## 46061 4
## 46111 3
## 46305 4
## 46378 4
## 46809 4
## 47039 5
## 47336 4
## 47485 3
## 47572 4
## 47668 3
## 47856 3
## 47886 1
## 47914 4
## 48059 5
## 48134 3
## 48214 5
## 48564 1
## 48569 1
## 48729 5
## 26166 4
## 37784 1
## 39424 2
## 40094 4
## 40349 2
## 41172 3
## 41384 2
## 44273 2
## 45494 2
## 46306 3
## 46379 2
## 47040 2
## 47669 3
## 48841 2
## 48943 4
## 49241 2
## 49409 5
## 49429 5
## 49598 3
## 49816 2
## 50056 2
## 50181 1
## 50309 2
## 50484 4
## 50659 5
## 50954 4
## 50999 2
## 51040 4
## 51153 1
## 51296 2
## 51547 3
## 51611 1
## 51632 1
## 51675 1
## 51693 2
## 51784 3
## 51831 5
## 52020 1
## 52031 4
## 52083 3
## 52207 4
## 52262 3
## 52327 5
## 52453 5
## 52590 3
## 52621 3
## 52662 3
## 52682 2
## 52708 1
## 52722 3
## 52794 3
## 1995 4
## 6405 5
## 31988 3
## 39425 5
## 40095 4
## 40350 3
## 41173 4
## 44274 4
## 45495 5
## 46380 5
## 46810 5
## 50057 5
## 50485 5
## 50660 3
## 50955 5
## 52723 5
## 52835 3
## 52932 4
## 53196 2
## 53339 5
## 53357 5
## 53367 5
## 53377 5
## 3 4
## 454 3
## 3197 4
## 3440 3
## 4003 4
## 4178 3
## 4876 4
## 5605 4
## 5699 5
## 6406 4
## 8355 4
## 8482 1
## 8962 1
## 9361 1
## 9682 4
## 10660 3
## 10996 2
## 12188 5
## 12463 3
## 12917 3
## 13054 4
## 13824 3
## 14214 3
## 14387 5
## 14894 5
## 14967 3
## 15041 3
## 15293 5
## 15423 1
## 16704 4
## 19222 4
## 19776 3
## 20016 3
## 20238 3
## 20481 1
## 21049 3
## 21457 5
## 21704 3
## 22701 1
## 22807 5
## 23172 2
## 23239 3
## 23555 5
## 23859 5
## 24226 4
## 24550 5
## 25178 3
## 26167 5
## 26899 4
## 27306 3
## 27545 5
## 28175 5
## 28914 4
## 30238 2
## 30995 4
## 31597 4
## 31797 5
## 31989 3
## 32319 4
## 32751 3
## 33077 1
## 33658 3
## 33909 4
## 34454 2
## 34563 3
## 34729 4
## 34890 5
## 35134 2
## 35305 3
## 35504 2
## 35747 4
## 35871 2
## 36151 4
## 37053 4
## 37359 1
## 37604 1
## 38443 3
## 39121 5
## 39932 1
## 40712 4
## 53405 3
## 53452 1
## 53489 1
## 53537 3
## 53584 3
## 53754 1
## 53785 1
## 53840 1
## 53879 1
## 53946 3
## 53980 3
## 54019 3
## 54030 3
## 54053 2
## 54077 1
## 54090 1
## 54191 3
## 54234 3
## 54350 1
## 54450 5
## 54561 3
## 54592 3
## 54661 4
## 54869 2
## 54956 3
## 55021 2
## 55049 1
## 55076 5
## 55086 4
## 55145 2
## 55213 2
## 55405 2
## 55417 2
## 55473 5
## 55527 2
## 55539 2
## 55565 3
## 55654 1
## 55672 5
## 55748 1
## 55918 3
## 56119 2
## 56220 3
## 56564 1
## 56613 3
## 56656 5
## 56768 2
## 56838 1
## 57000 1
## 57163 3
## 57256 3
## 57311 3
## 57373 1
## 57398 1
## 57462 3
## 57535 3
## 57664 3
## 57842 3
## 57923 1
## 58029 4
## 58055 4
## 58355 1
## 58374 2
## 58459 3
## 58491 3
## 58710 5
## 58831 3
## 58928 5
## 59021 3
## 59174 4
## 59348 5
## 59519 5
## 59586 4
## 59802 5
## 59901 1
## 59906 1
## 59912 1
## 59917 1
## 59931 1
## 59984 1
## 59988 4
## 60150 2
## 60196 3
## 60218 4
## 60227 3
## 60348 2
## 60433 2
## 60550 1
## 60613 1
## 60783 1
## 60849 1
## 60865 1
## 60881 4
## 61026 1
## 61074 1
## 4 4
## 996 2
## 1388 4
## 1607 4
## 2231 4
## 2499 2
## 2683 5
## 2865 3
## 3300 4
## 3441 3
## 3524 3
## 3821 4
## 4600 2
## 5181 4
## 6073 3
## 6407 4
## 7540 4
## 8149 5
## 8564 4
## 9362 3
## 9683 3
## 9933 4
## 10661 3
## 11064 4
## 11687 3
## 11837 4
## 12189 4
## 13055 2
## 13825 5
## 14388 5
## 15455 2
## 15962 2
## 17354 5
## 17541 3
## 17883 5
## 18512 5
## 18607 5
## 18853 4
## 19024 5
## 19223 5
## 19481 5
## 19586 5
## 20017 2
## 21050 3
## 21458 4
## 21705 3
## 21976 3
## 23050 5
## 23114 4
## 23240 4
## 23556 4
## 23673 4
## 24227 5
## 24551 4
## 24970 4
## 25462 4
## 25599 4
## 25945 4
## 26673 4
## 26900 4
## 27307 5
## 27546 4
## 27796 4
## 28005 3
## 28176 3
## 28365 4
## 28641 4
## 28757 3
## 28915 4
## 29155 4
## 29707 5
## 30073 4
## 30239 3
## 30533 3
## 30813 3
## 30996 3
## 31345 3
## 31598 4
## 31798 4
## 32320 5
## 32617 4
## 33078 5
## 33835 4
## 34274 4
## 36414 2
## 36797 5
## 37488 4
## 38024 3
## 38153 3
## 39122 2
## 39426 2
## 39933 1
## 40221 3
## 40722 4
## 41385 4
## 41804 4
## 41994 4
## 42262 2
## 43359 2
## 43552 3
## 43714 2
## 45347 3
## 45496 2
## 46062 3
## 46112 3
## 46811 2
## 47041 4
## 47337 4
## 47573 4
## 47857 3
## 47887 2
## 47915 2
## 48842 3
## 48944 4
## 49430 3
## 51832 2
## 52933 4
## 53585 2
## 56221 1
## 56657 4
## 56839 4
## 57665 4
## 58056 3
## 58375 3
## 58492 4
## 59175 4
## 59587 4
## 61101 1
## 61191 2
## 61215 2
## 61243 4
## 61317 5
## 61465 4
## 61536 2
## 61563 1
## 61648 4
## 61700 4
## 61748 3
## 61812 5
## 61879 3
## 61987 2
## 62208 1
## 62366 2
## 62492 5
## 62686 5
## 62936 1
## 63096 1
## 63191 4
## 63295 5
## 63474 4
## 63653 5
## 63716 4
## 63844 5
## 64087 5
## 64225 5
## 64350 4
## 64414 5
## 64482 5
## 64547 5
## 64599 5
## 64649 4
## 64716 5
## 64775 5
## 64835 4
## 64891 4
## 64950 4
## 65181 4
## 65249 4
## 65401 4
## 65463 5
## 65586 4
## 65643 3
## 65682 3
## 65804 4
## 65872 4
## 65962 4
## 66060 3
## 66275 4
## 66396 4
## 66517 5
## 66690 4
## 66747 4
## 66819 5
## 66999 4
## 67200 4
## 67263 4
## 67354 3
## 67443 5
## 67523 4
## 67647 4
## 67767 5
## 67802 5
## 67966 3
## 68012 5
## 68085 3
## 68209 4
## 68404 4
## 68525 4
## 68618 4
## 68698 4
## 68827 3
## 68849 4
## 68864 4
## 68877 2
## 68931 4
## 68941 4
## 68971 2
## 69037 2
## 675 5
## 997 5
## 1389 5
## 1608 5
## 1907 4
## 1996 3
## 2232 5
## 3525 5
## 3822 3
## 4179 3
## 4543 4
## 4601 5
## 4877 3
## 5027 4
## 5182 4
## 5518 5
## 5887 5
## 6074 5
## 6408 5
## 6987 2
## 7068 4
## 7159 5
## 7287 3
## 7541 5
## 8356 3
## 8565 5
## 9227 4
## 9363 5
## 9684 1
## 9934 5
## 10153 5
## 10282 3
## 10476 5
## 10627 3
## 10662 4
## 10997 4
## 11065 5
## 11174 3
## 11688 4
## 12190 5
## 12464 3
## 12558 3
## 12701 5
## 12805 5
## 13273 5
## 13568 5
## 13826 4
## 14215 5
## 14389 5
## 14895 5
## 15115 4
## 16340 2
## 16705 5
## 17542 4
## 17785 3
## 17884 5
## 18513 5
## 18608 5
## 18854 5
## 19025 4
## 19224 5
## 19482 5
## 19777 3
## 19826 5
## 19887 5
## 19959 3
## 20018 3
## 20239 5
## 20482 1
## 21051 4
## 21375 4
## 21459 5
## 21706 5
## 21977 5
## 22124 5
## 22481 3
## 22702 5
## 22808 4
## 22899 5
## 23115 3
## 23241 5
## 23794 3
## 23860 4
## 24228 5
## 24552 5
## 24971 5
## 25179 3
## 25463 4
## 25600 4
## 25724 5
## 25946 5
## 26168 3
## 26674 4
## 26901 4
## 27308 5
## 27547 4
## 27797 4
## 28006 5
## 28241 5
## 28366 5
## 28642 4
## 28758 5
## 28916 5
## 29156 5
## 29456 5
## 29708 4
## 29946 3
## 30074 5
## 30240 5
## 30444 2
## 30534 3
## 30814 5
## 30997 5
## 31346 5
## 31531 4
## 31599 5
## 31990 4
## 32321 5
## 32525 1
## 32618 3
## 32752 5
## 32865 4
## 33079 4
## 33367 4
## 33659 1
## 34275 5
## 34564 5
## 34730 3
## 34891 4
## 35135 3
## 35306 3
## 35505 3
## 35646 3
## 35872 5
## 36415 5
## 36798 5
## 37360 4
## 39427 4
## 39934 3
## 40096 1
## 40351 4
## 40450 5
## 40677 4
## 40723 3
## 41581 3
## 41995 4
## 42804 3
## 43553 5
## 43715 4
## 44275 4
## 45497 1
## 46381 4
## 47670 5
## 47888 3
## 48843 4
## 48945 5
## 50058 1
## 51548 5
## 52021 3
## 52836 4
## 52934 5
## 53490 4
## 53586 5
## 54091 5
## 54192 4
## 54235 4
## 54451 4
## 54593 3
## 54662 5
## 54870 4
## 54957 3
## 55050 4
## 55087 3
## 55214 4
## 55474 4
## 55566 4
## 55673 4
## 55749 5
## 55919 4
## 56120 5
## 56222 3
## 57374 2
## 57399 5
## 57463 3
## 57536 4
## 57666 3
## 57843 5
## 57924 3
## 58057 5
## 58493 5
## 58711 5
## 58832 5
## 58929 3
## 59022 4
## 59176 4
## 59349 5
## 59520 4
## 59588 5
## 59803 5
## 59918 1
## 59932 2
## 59989 5
## 60151 5
## 60219 2
## 60228 5
## 60349 3
## 60434 3
## 60551 4
## 60614 5
## 60784 5
## 60882 4
## 61244 4
## 61466 4
## 61564 4
## 61880 3
## 61988 4
## 62209 2
## 62493 5
## 63296 4
## 63475 4
## 63654 5
## 63717 3
## 63845 4
## 64088 5
## 64226 5
## 64415 3
## 64483 4
## 64548 3
## 64650 5
## 64717 5
## 64892 5
## 64951 5
## 65182 4
## 65250 5
## 65402 4
## 65464 5
## 65587 5
## 65644 4
## 65683 5
## 65805 3
## 65873 5
## 65963 5
## 66276 5
## 66397 5
## 66518 5
## 66748 4
## 66820 2
## 67000 3
## 67444 4
## 67524 5
## 67648 5
## 67803 4
## 68086 5
## 68210 5
## 68405 5
## 68526 2
## 68619 5
## 68942 3
## 69081 3
## 69124 2
## 69173 4
## 69224 3
## 69245 3
## 69316 2
## 69328 4
## 69582 3
## 69623 5
## 69635 4
## 69727 4
## 69878 1
## 69902 4
## 69947 3
## 70010 3
## 70112 4
## 70122 3
## 70134 4
## 70151 4
## 70221 5
## 70358 3
## 70380 4
## 70439 5
## 70487 2
## 70516 3
## 70543 4
## 70565 4
## 70744 1
## 70779 5
## 71009 4
## 71076 3
## 71126 3
## 71154 3
## 71183 5
## 71216 5
## 71231 3
## 71275 5
## 71368 2
## 71409 3
## 71501 4
## 71520 3
## 71552 5
## 71611 5
## 71779 2
## 71816 4
## 71895 4
## 71934 3
## 71968 4
## 71982 4
## 72184 5
## 72227 2
## 72245 3
## 72423 5
## 72432 5
## 72444 3
## 72449 2
## 72513 5
## 72640 3
## 72846 3
## 72850 1
## 72851 4
## 72853 5
## 72873 3
## 72923 4
## 73132 3
## 73213 4
## 73244 3
## 73310 3
## 73376 4
## 73406 3
## 73466 5
## 73507 3
## 73547 5
## 73581 4
## 73608 5
## 73659 4
## 73718 4
## 73782 5
## 73800 4
## 73818 3
## 73882 4
## 73925 5
## 73936 4
## 73975 3
## 74014 4
## 74036 3
## 74118 5
## 74122 3
## 74197 3
## 74366 3
## 74443 5
## 74474 4
## 74593 5
## 74651 5
## 74720 5
## 74744 3
## 74767 4
## 74858 4
## 74896 4
## 74940 5
## 74980 3
## 75062 5
## 75095 3
## 75184 4
## 75188 5
## 75223 4
## 75250 5
## 75288 5
## 75358 5
## 75425 5
## 75475 3
## 75547 5
## 75718 3
## 75808 4
## 75842 5
## 75989 5
## 76216 3
## 76260 4
## 76391 3
## 76470 5
## 76585 5
## 76738 5
## 76826 3
## 76908 5
## 77024 3
## 77070 4
## 77170 4
## 77175 5
## 77187 4
## 77193 1
## 77206 5
## 77252 1
## 77317 3
## 77403 2
## 77451 5
## 77505 3
## 77582 3
## 77583 3
## 77802 5
## 77909 1
## 77936 2
## 78036 4
## 998 3
## 1997 3
## 3526 5
## 6409 5
## 7391 5
## 7542 5
## 10663 4
## 11175 5
## 12191 4
## 13274 3
## 17885 5
## 20240 5
## 23861 5
## 24553 5
## 25180 5
## 25464 4
## 26169 4
## 26675 5
## 26902 5
## 27798 4
## 28007 5
## 28242 4
## 29157 5
## 31991 4
## 33910 5
## 34731 4
## 34892 5
## 35136 5
## 35748 4
## 37361 4
## 37605 2
## 39428 5
## 39935 1
## 40097 3
## 41582 3
## 45498 3
## 46812 4
## 51633 3
## 51694 4
## 52022 2
## 53197 2
## 54663 1
## 55920 4
## 59023 2
## 59589 5
## 61075 1
## 66398 4
## 66519 5
## 67355 4
## 69728 3
## 70566 3
## 70780 4
## 75548 5
## 78085 4
## 78254 4
## 78411 3
## 78461 1
## 78530 1
## 78574 4
## 970 5
## 999 4
## 6410 5
## 30445 5
## 37489 4
## 42263 4
## 43716 5
## 45499 4
## 46113 5
## 51833 4
## 53880 5
## 54664 5
## 55750 4
## 63297 4
## 63846 5
## 64416 5
## 65964 4
## 67649 4
## 68211 3
## 73660 4
## 78661 1
## 78816 5
## 5 4
## 676 4
## 1000 4
## 1609 4
## 1998 4
## 2233 5
## 2500 3
## 3158 4
## 3527 5
## 3823 5
## 5183 4
## 5262 4
## 5606 4
## 6206 4
## 6411 5
## 7543 5
## 8150 4
## 8232 3
## 8566 4
## 9364 4
## 9685 4
## 11176 4
## 11629 4
## 12806 4
## 13827 4
## 14216 5
## 14390 5
## 15837 4
## 17355 5
## 17886 5
## 18360 4
## 18609 5
## 18855 5
## 19026 5
## 19225 5
## 19587 4
## 20241 4
## 21460 4
## 21878 4
## 21978 4
## 22125 5
## 22412 4
## 22482 4
## 22703 4
## 22900 4
## 23242 4
## 23674 4
## 24554 4
## 24972 3
## 25181 4
## 25601 5
## 25725 5
## 25947 5
## 26676 5
## 26903 5
## 27309 5
## 27548 4
## 28367 5
## 28643 4
## 28917 4
## 29158 4
## 29709 5
## 29947 3
## 30075 4
## 30241 5
## 30815 4
## 31347 5
## 32322 5
## 33080 4
## 33487 4
## 33836 4
## 34276 5
## 35307 4
## 35873 4
## 36799 4
## 37785 4
## 40724 4
## 41583 4
## 41805 4
## 41996 4
## 42264 4
## 43182 4
## 43554 5
## 43717 4
## 44751 4
## 45500 3
## 47042 4
## 49242 3
## 49431 4
## 51297 4
## 51549 4
## 51834 4
## 52935 5
## 53587 4
## 53881 4
## 54665 4
## 56121 4
## 57312 4
## 57537 4
## 57844 4
## 58930 3
## 59177 4
## 59590 5
## 60229 4
## 61245 3
## 61318 3
## 61467 4
## 61701 4
## 61881 4
## 62494 4
## 62687 4
## 63192 5
## 63298 5
## 63476 5
## 63718 4
## 63847 5
## 64089 5
## 64351 4
## 64484 5
## 64549 4
## 64776 4
## 64893 4
## 64952 5
## 65183 4
## 65251 5
## 65403 4
## 65588 4
## 65684 5
## 65806 4
## 66277 4
## 66399 5
## 66520 4
## 66749 4
## 67356 4
## 67445 5
## 67650 4
## 68013 5
## 68212 4
## 68527 3
## 68620 4
## 68699 5
## 70152 4
## 71612 4
## 71983 4
## 72185 5
## 72874 5
## 72924 5
## 73133 4
## 73245 5
## 73467 4
## 73508 5
## 73661 4
## 73783 5
## 74367 4
## 75549 4
## 75719 3
## 75843 5
## 75990 5
## 76217 5
## 76261 4
## 76909 3
## 77025 4
## 78412 4
## 78832 4
## 78996 4
## 79087 5
## 79131 3
## 79144 4
## 79223 3
## 79263 4
## 79273 4
## 79375 4
## 79390 4
## 79400 3
## 79453 5
## 79472 3
## 79496 4
## 79633 4
## 79639 5
## 79709 4
## 79810 4
## 79914 4
## 79993 4
## 79994 4
## 1390 4
## 1610 5
## 1999 2
## 2234 2
## 2866 5
## 3528 4
## 4004 3
## 4180 3
## 4602 5
## 4878 3
## 5398 3
## 5519 3
## 5607 3
## 5700 3
## 6075 4
## 6988 4
## 7069 3
## 7288 3
## 7544 4
## 7934 2
## 7974 3
## 9365 3
## 9686 4
## 10664 4
## 11435 5
## 11689 4
## 11975 3
## 12465 2
## 12918 3
## 13569 4
## 13828 2
## 14391 4
## 15186 4
## 15294 3
## 15424 3
## 15456 4
## 16637 2
## 16706 3
## 17239 3
## 17543 4
## 19226 4
## 23243 3
## 24229 5
## 24973 3
## 25182 3
## 25948 2
## 27310 4
## 28243 3
## 28368 4
## 28918 4
## 29457 5
## 30816 4
## 30998 3
## 31600 4
## 32323 3
## 32619 4
## 32866 3
## 33081 3
## 33911 3
## 34732 3
## 34893 3
## 35137 4
## 35308 4
## 36416 4
## 36800 3
## 37054 4
## 37362 4
## 39429 5
## 39936 3
## 40098 1
## 41806 3
## 42560 5
## 43718 5
## 45010 3
## 45106 4
## 46382 3
## 46813 4
## 48135 4
## 48844 4
## 48946 5
## 50059 1
## 51154 5
## 52622 4
## 52837 4
## 52936 5
## 53491 3
## 53588 3
## 53841 3
## 53947 4
## 54452 3
## 54562 2
## 54871 3
## 55215 4
## 55418 2
## 55567 3
## 55674 3
## 55751 4
## 56223 3
## 57313 3
## 58058 5
## 58376 4
## 58494 4
## 58712 4
## 58833 5
## 58931 3
## 59024 2
## 59350 4
## 59521 4
## 59591 4
## 60435 3
## 60615 2
## 60883 3
## 65685 3
## 66061 4
## 67264 2
## 67651 2
## 67967 4
## 68087 3
## 68213 4
## 69246 4
## 69636 4
## 70153 3
## 70381 2
## 71184 3
## 71369 3
## 71521 5
## 72641 2
## 72925 4
## 75251 3
## 75720 4
## 75844 3
## 76471 5
## 76586 3
## 76827 3
## 76910 4
## 78662 4
## 78833 4
## 79274 4
## 79640 5
## 79915 2
## 80045 5
## 80117 4
## 80130 3
## 80217 3
## 80275 2
## 80357 5
## 80373 3
## 80402 1
## 80488 3
## 80542 3
## 80600 5
## 80634 3
## 80710 3
## 80726 3
## 80740 3
## 80803 3
## 80848 4
## 80929 3
## 80953 4
## 80992 3
## 81172 4
## 81187 3
## 81214 3
## 81351 4
## 81429 4
## 81488 3
## 81519 3
## 81683 4
## 81746 5
## 81804 3
## 82071 2
## 82110 4
## 82202 5
## 82218 4
## 82337 3
## 82439 1
## 82755 5
## 82806 5
## 82930 2
## 83110 4
## 677 5
## 2867 5
## 4603 5
## 6412 4
## 9366 5
## 9935 4
## 11177 4
## 11976 5
## 13275 4
## 13570 5
## 13829 5
## 17887 4
## 18610 5
## 18856 4
## 20019 5
## 22126 5
## 22311 4
## 22483 5
## 23244 4
## 23675 4
## 23862 4
## 24555 5
## 28369 5
## 29159 4
## 29458 5
## 30242 1
## 30535 4
## 30817 3
## 30999 5
## 32867 4
## 33082 5
## 34894 4
## 36801 5
## 37490 5
## 42265 4
## 42950 5
## 46383 4
## 48947 5
## 50661 4
## 54351 4
## 55146 4
## 55752 5
## 57400 3
## 61989 5
## 63477 4
## 72246 5
## 78086 5
## 79710 3
## 81215 5
## 83149 5
## 83173 4
## 6 3
## 455 3
## 678 5
## 884 1
## 1001 2
## 1391 4
## 1611 3
## 2000 1
## 2235 5
## 2501 5
## 2684 4
## 3198 1
## 3442 3
## 3529 4
## 3824 5
## 4005 1
## 4181 1
## 4544 3
## 4604 5
## 4879 2
## 5184 4
## 5263 5
## 5390 1
## 5399 3
## 5520 3
## 5608 2
## 5701 4
## 5966 3
## 6207 5
## 6323 4
## 6413 5
## 6989 3
## 7160 1
## 7545 5
## 7975 4
## 8151 4
## 8233 4
## 8296 4
## 8357 5
## 8567 5
## 8963 3
## 9124 1
## 9228 3
## 9367 4
## 9687 3
## 9936 4
## 10154 4
## 10283 3
## 10628 1
## 10665 3
## 11178 2
## 11436 2
## 11690 1
## 11838 5
## 11977 4
## 12192 4
## 12466 3
## 12559 2
## 12702 3
## 12919 3
## 13056 5
## 13276 4
## 13571 4
## 13830 4
## 14217 4
## 14392 5
## 15295 4
## 15425 3
## 15457 5
## 15838 5
## 15963 3
## 16341 4
## 16707 5
## 17356 5
## 17888 5
## 18295 1
## 18611 4
## 19227 5
## 19588 5
## 19757 1
## 19888 2
## 20020 1
## 20242 4
## 20483 2
## 20556 3
## 20892 5
## 21376 5
## 21461 4
## 21707 5
## 21879 2
## 22127 3
## 22251 1
## 22413 4
## 22484 5
## 22809 3
## 22901 3
## 23051 3
## 23116 5
## 23173 4
## 23245 4
## 23676 5
## 23863 5
## 24230 2
## 24556 4
## 24974 4
## 25183 3
## 25465 5
## 25602 4
## 25726 2
## 25949 5
## 26170 5
## 26677 5
## 26904 4
## 27190 1
## 27311 3
## 27549 4
## 27799 5
## 28008 4
## 28244 4
## 28370 3
## 28759 5
## 28919 5
## 29160 3
## 29459 4
## 29710 4
## 29948 3
## 30076 5
## 30243 3
## 30446 1
## 30536 5
## 31000 5
## 31348 2
## 31601 5
## 31799 3
## 31992 3
## 32324 4
## 32526 5
## 32868 5
## 33083 3
## 33368 1
## 33488 1
## 33660 1
## 33912 3
## 34277 5
## 34410 4
## 34455 2
## 34565 4
## 34733 5
## 34895 4
## 35138 4
## 35309 3
## 35506 3
## 35647 3
## 35749 4
## 35874 5
## 36152 2
## 36417 5
## 36802 3
## 37055 4
## 37363 3
## 37491 2
## 37606 3
## 39430 4
## 40099 1
## 40222 1
## 40264 4
## 40330 5
## 40352 4
## 40451 4
## 40725 2
## 41036 4
## 41174 1
## 41386 4
## 41584 3
## 41807 3
## 41997 3
## 42266 5
## 42691 5
## 42719 4
## 42805 3
## 43555 5
## 43719 3
## 44195 1
## 44276 1
## 44752 2
## 45011 4
## 45233 5
## 45501 2
## 46307 3
## 46384 1
## 46814 1
## 47043 5
## 47486 4
## 47574 3
## 47671 2
## 47858 3
## 47916 4
## 48060 3
## 48136 1
## 48215 4
## 48565 1
## 48570 5
## 48730 5
## 48845 5
## 48948 3
## 49243 4
## 49410 1
## 49432 2
## 49599 3
## 49817 3
## 50310 3
## 50486 3
## 50662 3
## 50956 2
## 51041 3
## 51155 3
## 51298 3
## 51550 1
## 51634 2
## 51695 1
## 51785 3
## 51835 2
## 52023 2
## 52032 4
## 52084 1
## 52208 2
## 52263 4
## 52328 4
## 52454 5
## 52591 1
## 52623 2
## 52663 1
## 52709 4
## 52724 2
## 52795 3
## 52937 3
## 53198 3
## 53358 4
## 53378 4
## 53406 3
## 53589 3
## 53842 1
## 53882 3
## 54078 1
## 54193 1
## 54453 1
## 54594 2
## 54666 3
## 54958 3
## 55088 3
## 55216 3
## 55406 2
## 55475 3
## 55540 2
## 55655 4
## 55675 1
## 55753 4
## 55921 2
## 56122 5
## 56224 2
## 56565 1
## 56769 3
## 56840 1
## 57001 2
## 57257 1
## 57314 5
## 57401 3
## 57464 2
## 57538 2
## 57667 3
## 57845 4
## 57925 2
## 58059 5
## 58356 1
## 58495 5
## 58713 5
## 58834 5
## 58932 5
## 59025 1
## 59178 4
## 59351 4
## 59592 5
## 59804 2
## 59902 1
## 59907 1
## 59913 1
## 59919 1
## 59933 1
## 59985 1
## 59990 4
## 60152 4
## 60197 4
## 60220 1
## 60230 2
## 60350 1
## 60436 4
## 60552 3
## 60616 1
## 60785 3
## 60850 2
## 60884 3
## 61076 1
## 61319 5
## 61468 5
## 61702 5
## 61990 1
## 62210 5
## 62367 4
## 62495 4
## 62688 3
## 62937 2
## 63097 4
## 63193 4
## 63478 3
## 63655 3
## 63719 5
## 63848 5
## 64090 5
## 64227 1
## 64485 3
## 64651 4
## 64718 5
## 64777 5
## 64836 4
## 65184 5
## 65252 4
## 65465 5
## 65589 5
## 65686 5
## 65807 3
## 65874 5
## 65965 1
## 66062 3
## 66278 5
## 66400 5
## 66521 5
## 66821 5
## 67001 2
## 67201 5
## 67265 5
## 67357 4
## 67446 5
## 67525 4
## 67768 5
## 67804 4
## 67968 4
## 68014 5
## 68088 3
## 68214 5
## 68528 4
## 68621 5
## 68700 3
## 68972 1
## 69038 1
## 69082 3
## 69125 1
## 69329 3
## 69583 1
## 69624 3
## 69637 4
## 69729 4
## 69879 1
## 69948 2
## 70011 2
## 70154 1
## 70222 1
## 70382 1
## 70488 1
## 70517 1
## 70544 1
## 70567 5
## 70745 1
## 70781 3
## 71010 2
## 71077 5
## 71155 2
## 71185 3
## 71276 3
## 71410 3
## 71896 4
## 71935 3
## 71984 4
## 72186 3
## 72228 2
## 72514 3
## 72642 3
## 72854 4
## 72875 4
## 72926 4
## 73134 5
## 73246 4
## 73468 2
## 73548 4
## 73582 4
## 73609 4
## 73662 4
## 73784 3
## 73819 3
## 73926 4
## 74015 5
## 74037 2
## 74368 1
## 74444 2
## 74475 3
## 74594 3
## 74745 1
## 74768 2
## 74859 2
## 74897 3
## 74941 3
## 75252 4
## 75289 5
## 75476 2
## 75550 5
## 75721 5
## 75845 5
## 75991 5
## 76218 5
## 76262 4
## 76472 3
## 76739 5
## 76828 5
## 76911 5
## 77071 2
## 77176 1
## 77188 1
## 77194 1
## 77207 3
## 77253 1
## 77318 3
## 77404 3
## 77452 5
## 77584 3
## 77803 4
## 77937 1
## 78037 1
## 78087 5
## 78255 5
## 78413 5
## 78462 1
## 78531 1
## 78575 2
## 78663 3
## 78817 4
## 78834 4
## 79088 4
## 79497 5
## 79634 1
## 79811 4
## 79995 4
## 80218 4
## 80403 4
## 80543 3
## 80993 5
## 81173 5
## 81216 3
## 81352 4
## 81430 4
## 81520 4
## 81684 1
## 82219 3
## 82338 4
## 82440 4
## 82756 3
## 82807 5
## 82931 5
## 83111 1
## 83174 4
## 83230 3
## 83326 2
## 83454 3
## 83458 1
## 83479 2
## 83490 1
## 83536 4
## 83580 5
## 83695 1
## 83844 2
## 83873 2
## 83905 4
## 83914 1
## 83925 4
## 83977 3
## 84019 4
## 84076 3
## 84117 1
## 84166 1
## 84183 1
## 84215 4
## 84241 2
## 84250 1
## 84254 3
## 84330 3
## 84361 1
## 84430 3
## 84514 3
## 84524 3
## 84561 1
## 84563 3
## 84602 3
## 84616 3
## 84629 1
## 84632 5
## 84679 2
## 84745 5
## 84755 5
## 84841 5
## 84851 4
## 84897 2
## 84918 3
## 84954 5
## 84985 2
## 84994 4
## 84999 1
## 85025 3
## 85041 2
## 85081 3
## 85090 2
## 85098 4
## 85125 5
## 85175 1
## 85184 2
## 85215 4
## 85258 5
## 85303 5
## 85321 2
## 85339 1
## 85395 5
## 85396 4
## 85508 1
## 85529 1
## 85532 3
## 85557 1
## 85597 4
## 85690 3
## 85712 3
## 85716 5
## 85798 3
## 85847 1
## 85930 5
## 86010 3
## 86067 1
## 86080 3
## 86114 1
## 86115 3
## 86206 4
## 86228 2
## 86277 1
## 86302 3
## 86317 2
## 86343 4
## 86368 1
## 86372 1
## 86376 3
## 86429 1
## 86477 2
## 86504 5
## 86534 1
## 86576 3
## 86752 2
## 86796 4
## 86851 5
## 86860 1
## 86913 4
## 86917 5
## 86921 1
## 86922 1
## 86936 1
## 86952 4
## 87018 5
## 87054 3
## 87055 1
## 87058 1
## 87073 1
## 87089 3
## 87092 3
## 87110 4
## 87134 4
## 87220 3
## 87339 5
## 87345 5
## 87350 3
## 87374 3
## 87383 2
## 87458 3
## 87500 1
## 87581 5
## 87620 1
## 87673 2
## 87720 2
## 87772 1
## 87805 2
## 87941 3
## 88000 3
## 88034 3
## 88047 2
## 88054 1
## 88067 5
## 88120 5
## 88184 2
## 88199 3
## 88212 1
## 88255 1
## 88261 3
## 88314 3
## 88328 1
## 88347 1
## 88453 5
## 88497 1
## 88499 1
## 88557 1
## 88566 5
## 88608 1
## 88620 3
## 88662 3
## 88680 1
## 88700 2
## 88727 3
## 88748 1
## 88750 1
## 88770 5
## 88783 2
## 88787 2
## 88791 2
## 88800 1
## 88802 2
## 88813 5
## 88826 4
## 88844 4
## 88851 3
## 1002 5
## 1612 4
## 2236 5
## 2502 4
## 2685 3
## 2868 4
## 3289 3
## 3301 5
## 3530 3
## 3825 5
## 4182 2
## 5185 5
## 5702 4
## 6414 5
## 7546 5
## 9688 1
## 11066 5
## 12807 3
## 13277 4
## 13831 3
## 14393 5
## 15458 3
## 15839 5
## 16708 3
## 17357 5
## 17889 2
## 21052 5
## 23246 4
## 23864 5
## 24231 4
## 24557 5
## 24975 5
## 25184 1
## 26171 5
## 27550 4
## 28371 4
## 29161 5
## 30537 3
## 31001 5
## 31993 5
## 32325 4
## 32620 5
## 33913 4
## 36803 5
## 37203 5
## 37492 4
## 40452 3
## 40726 4
## 41998 4
## 42267 4
## 43183 4
## 43556 5
## 44277 4
## 47044 5
## 48216 2
## 49244 1
## 52938 2
## 54454 5
## 56658 5
## 58496 5
## 58714 4
## 58933 5
## 60885 4
## 62368 5
## 62496 4
## 62689 3
## 63098 4
## 64719 4
## 65253 5
## 65966 4
## 66279 5
## 66822 4
## 67266 4
## 67447 5
## 67805 4
## 67969 5
## 68015 5
## 68622 5
## 71985 4
## 72515 3
## 72927 4
## 74198 5
## 75846 4
## 75992 5
## 76912 5
## 79812 5
## 80219 5
## 82808 3
## 83581 3
## 84756 5
## 85340 2
## 85598 3
## 86577 3
## 88859 4
## 88955 4
## 88960 5
## 89006 4
## 89040 5
## 7 1
## 1003 1
## 1613 4
## 2503 1
## 2686 4
## 2869 4
## 3290 1
## 3368 3
## 4183 3
## 6415 5
## 15459 4
## 16342 1
## 16709 3
## 17544 5
## 17890 2
## 19589 4
## 20741 3
## 26172 5
## 33769 4
## 33914 3
## 34456 3
## 36153 1
## 36418 3
## 37607 1
## 37736 2
## 38154 1
## 38313 1
## 38641 2
## 38686 2
## 38933 5
## 39123 4
## 39431 3
## 40727 5
## 41808 4
## 41999 4
## 42631 1
## 42720 3
## 42951 3
## 43184 4
## 43557 4
## 43720 2
## 44753 3
## 45107 3
## 45234 5
## 46063 3
## 46385 4
## 46815 4
## 47045 4
## 47575 5
## 47672 1
## 47859 5
## 47917 4
## 49600 3
## 49818 1
## 50663 3
## 51042 3
## 51299 1
## 56225 2
## 56770 3
## 57002 2
## 60886 1
## 61102 5
## 61192 5
## 61991 4
## 62211 3
## 62369 1
## 62938 4
## 66063 2
## 69330 2
## 72247 2
## 73883 4
## 77506 4
## 77585 1
## 78256 4
## 78664 4
## 79145 2
## 81805 2
## 82111 4
## 82441 3
## 82757 1
## 83175 5
## 85397 1
## 85717 2
## 86578 2
## 87135 4
## 87221 4
## 87806 3
## 88200 3
## 89098 3
## 89183 2
## 89217 1
## 89318 4
## 89324 1
## 89428 1
## 89468 2
## 89548 1
## 89605 1
## 89645 1
## 89666 4
## 89734 3
## 89741 5
## 89773 4
## 89810 3
## 8 5
## 679 5
## 1004 5
## 1392 5
## 1614 5
## 2001 5
## 2237 5
## 2870 5
## 3531 5
## 4545 2
## 4605 5
## 5028 5
## 5264 2
## 5521 5
## 6990 4
## 7392 5
## 7547 5
## 7976 4
## 8568 5
## 8964 4
## 9368 5
## 9689 4
## 9937 5
## 10422 5
## 10666 5
## 11839 4
## 12193 2
## 12703 4
## 13057 5
## 13278 5
## 13832 5
## 14218 5
## 14394 5
## 15296 4
## 17545 3
## 17891 5
## 19027 4
## 19228 4
## 20021 5
## 20243 5
## 21053 5
## 21377 4
## 21880 3
## 21979 4
## 22252 4
## 22414 4
## 22485 5
## 22902 5
## 23247 4
## 23865 5
## 24558 5
## 25603 5
## 25950 5
## 26678 5
## 26905 5
## 28372 5
## 28920 5
## 29162 5
## 29711 5
## 30077 5
## 30244 5
## 30538 5
## 31002 5
## 31602 5
## 31800 5
## 33084 5
## 34734 5
## 34896 5
## 35310 5
## 35750 5
## 35875 5
## 36419 5
## 37204 4
## 41585 5
## 42952 5
## 43360 1
## 43721 2
## 44278 3
## 45502 4
## 46386 5
## 47046 5
## 48949 5
## 49433 3
## 52939 5
## 53590 3
## 54667 5
## 56123 5
## 56841 5
## 57539 5
## 58060 5
## 58497 5
## 59991 5
## 60231 5
## 60351 5
## 61703 5
## 61813 3
## 61992 3
## 62939 3
## 63299 5
## 63479 5
## 63720 5
## 64953 5
## 65254 5
## 65590 4
## 65687 5
## 66280 2
## 66401 4
## 68701 5
## 69331 4
## 70518 1
## 71780 4
## 72248 4
## 72876 5
## 72928 5
## 73247 4
## 74369 4
## 75096 5
## 75847 5
## 75993 5
## 76263 5
## 76740 4
## 78088 5
## 78835 4
## 78997 4
## 79498 5
## 80994 5
## 81217 3
## 83537 2
## 84020 3
## 85322 2
## 89835 4
## 89895 2
## 89927 1
## 89973 4
## 90018 3
## 90058 1
## 90101 4
## 90141 5
## 90202 4
## 90219 3
## 9 4
## 1005 4
## 1615 3
## 2504 3
## 14395 4
## 15460 3
## 15964 3
## 17546 1
## 17786 4
## 19590 4
## 20893 5
## 21054 4
## 33837 2
## 33915 3
## 36420 2
## 37608 1
## 37786 2
## 40728 4
## 42268 4
## 43722 3
## 45503 4
## 49819 1
## 61993 2
## 62690 4
## 66064 3
## 74199 1
## 82112 3
## 88860 4
## 10 5
## 680 3
## 971 5
## 1393 5
## 1616 5
## 2238 5
## 2505 5
## 2687 5
## 2871 4
## 3302 3
## 3532 5
## 3826 4
## 4184 3
## 4470 4
## 4606 3
## 5186 2
## 5703 3
## 5967 5
## 6076 3
## 6208 4
## 6416 4
## 7070 5
## 7548 5
## 7935 4
## 7977 4
## 8152 4
## 8234 4
## 8297 4
## 8569 5
## 8847 5
## 8965 3
## 9369 3
## 9690 4
## 9938 4
## 10155 3
## 10667 4
## 11067 3
## 11179 3
## 11437 5
## 11691 4
## 11978 3
## 12194 3
## 12560 3
## 12920 3
## 13058 4
## 13572 4
## 13833 5
## 14219 5
## 14396 5
## 15461 3
## 15746 5
## 15840 5
## 17547 3
## 17787 5
## 17892 5
## 18514 4
## 18612 5
## 18857 5
## 19028 5
## 19229 3
## 19483 5
## 19591 5
## 19960 4
## 20022 4
## 21055 3
## 21378 3
## 21462 4
## 21708 4
## 22128 3
## 22704 4
## 23052 4
## 23117 4
## 23248 3
## 23557 5
## 23677 5
## 23866 3
## 24559 4
## 24976 4
## 25466 3
## 25604 3
## 25727 4
## 25951 4
## 26173 3
## 26679 4
## 27312 3
## 27551 4
## 27800 5
## 28009 3
## 28177 5
## 28245 4
## 28373 4
## 28760 5
## 28921 3
## 29163 3
## 29460 3
## 29712 4
## 29949 3
## 30078 3
## 30245 3
## 30539 3
## 31003 3
## 31603 4
## 31801 4
## 31994 5
## 32326 5
## 32527 5
## 32621 5
## 32753 4
## 32869 3
## 33085 4
## 33838 5
## 34278 5
## 34411 5
## 35876 3
## 36368 3
## 36421 3
## 36804 5
## 37364 3
## 37493 5
## 40729 5
## 42000 5
## 42269 5
## 43185 5
## 43361 3
## 43558 5
## 43723 5
## 44196 4
## 48846 5
## 48950 5
## 49245 4
## 52940 4
## 53591 4
## 54092 3
## 54352 4
## 54455 3
## 54872 2
## 54959 4
## 55147 3
## 55217 3
## 55754 3
## 55922 3
## 56124 4
## 56659 5
## 57003 3
## 57315 4
## 57402 5
## 57540 3
## 57668 3
## 58061 5
## 58377 3
## 58498 5
## 58715 3
## 58934 4
## 59179 4
## 59522 3
## 59593 4
## 59992 3
## 60617 3
## 61246 4
## 61320 3
## 61469 4
## 62497 4
## 62940 3
## 63194 5
## 63300 4
## 63480 4
## 63721 5
## 63849 4
## 64228 5
## 64352 3
## 64417 4
## 64486 3
## 64550 4
## 64720 4
## 64778 5
## 64837 3
## 64954 5
## 65185 4
## 65255 4
## 65688 5
## 66281 4
## 66402 4
## 66691 5
## 66750 4
## 66823 5
## 67002 5
## 67202 5
## 67267 2
## 67448 4
## 67526 4
## 67806 4
## 67970 4
## 68089 4
## 68215 4
## 68406 4
## 68529 5
## 68623 4
## 69638 4
## 71613 5
## 71986 4
## 72877 3
## 72929 3
## 73135 5
## 73311 3
## 73407 4
## 73469 4
## 73549 4
## 73583 5
## 73610 4
## 74123 3
## 74370 3
## 74445 3
## 74476 5
## 74652 5
## 74942 4
## 75290 4
## 75426 3
## 75848 4
## 76473 4
## 76587 5
## 76913 4
## 78836 3
## 79275 5
## 79401 3
## 79473 3
## 79499 3
## 79641 3
## 79711 3
## 79813 5
## 80118 4
## 80220 5
## 80635 4
## 80849 3
## 80995 3
## 81218 4
## 81353 4
## 81431 3
## 81521 3
## 82339 3
## 83150 4
## 83582 3
## 84216 3
## 84255 2
## 84431 3
## 84757 5
## 84852 3
## 85099 4
## 86579 3
## 87019 5
## 87111 3
## 88961 5
## 89041 5
## 90267 3
## 90338 3
## 90368 3
## 90407 2
## 90452 3
## 90474 3
## 90485 4
## 90534 5
## 90580 3
## 90582 5
## 90596 3
## 90660 4
## 90685 3
## 90719 4
## 90742 5
## 90783 3
## 90792 4
## 90813 2
## 90839 3
## 90851 3
## 90869 3
## 90944 3
## 90952 4
## 90986 3
## 91014 3
## 681 4
## 1394 5
## 21463 4
## 30447 3
## 30540 4
## 31995 3
## 32327 4
## 39432 4
## 44279 3
## 45504 3
## 47918 4
## 48217 2
## 49246 4
## 50182 4
## 54456 3
## 59594 5
## 75994 3
## 78837 3
## 88121 4
## 11 3
## 2002 2
## 2872 4
## 3533 5
## 6417 3
## 9370 1
## 11180 4
## 11840 5
## 12921 2
## 13059 3
## 13834 3
## 16343 4
## 16710 3
## 20023 3
## 20244 2
## 20742 5
## 21056 3
## 23867 3
## 24560 4
## 25185 2
## 26174 4
## 27552 3
## 28922 3
## 31004 3
## 31604 2
## 31996 4
## 37609 4
## 38687 4
## 41809 4
## 44280 1
## 49820 4
## 52941 1
## 54093 3
## 56226 3
## 58062 2
## 64955 5
## 65256 3
## 70782 4
## 71987 4
## 72643 3
## 74653 4
## 77586 4
## 81806 4
## 83696 1
## 85599 2
## 87222 1
## 89549 1
## 89667 4
## 12 5
## 885 2
## 1006 5
## 1617 5
## 2873 4
## 3199 4
## 6418 3
## 7161 4
## 7549 5
## 13835 5
## 14397 5
## 15021 1
## 15116 2
## 16344 1
## 16711 1
## 17240 4
## 17893 5
## 18361 4
## 20484 1
## 20743 1
## 22903 5
## 27191 4
## 27313 5
## 30246 5
## 30448 5
## 33369 3
## 33489 4
## 33661 5
## 33916 2
## 35877 5
## 37205 4
## 37494 3
## 37610 2
## 37737 4
## 37787 1
## 39433 4
## 39937 2
## 40100 2
## 40223 1
## 40265 4
## 40331 1
## 40353 3
## 41586 4
## 42806 2
## 43724 3
## 44281 3
## 44754 3
## 45108 3
## 45235 3
## 45505 3
## 45979 3
## 46114 5
## 46308 1
## 46387 3
## 46816 4
## 49247 2
## 49411 3
## 49434 3
## 49601 3
## 49821 2
## 50060 4
## 50183 4
## 50311 5
## 50487 3
## 50664 3
## 51000 4
## 53199 3
## 53843 1
## 54194 3
## 55476 2
## 56566 1
## 56660 5
## 57258 2
## 58357 1
## 59805 4
## 59903 1
## 59908 1
## 59914 1
## 59920 1
## 59934 3
## 59993 4
## 60153 3
## 60198 3
## 60232 5
## 60352 4
## 60786 4
## 60851 2
## 61077 1
## 62370 3
## 69584 2
## 69880 3
## 70155 5
## 70223 1
## 70383 1
## 70489 2
## 70519 3
## 70545 3
## 70746 2
## 71011 3
## 71186 2
## 72229 1
## 72249 3
## 72450 3
## 72516 3
## 73820 2
## 74200 3
## 74746 4
## 74860 4
## 76219 5
## 77072 3
## 77189 1
## 77195 1
## 77208 5
## 77254 3
## 77405 2
## 77453 5
## 77587 2
## 78463 2
## 78532 1
## 79146 2
## 79635 2
## 80276 1
## 81747 3
## 81807 3
## 82442 1
## 83459 1
## 83491 1
## 83915 1
## 83978 1
## 84167 3
## 84184 2
## 85000 1
## 85509 1
## 85530 3
## 85600 3
## 86278 1
## 86373 1
## 86535 4
## 86923 5
## 86937 5
## 87056 1
## 87059 2
## 87074 2
## 87459 2
## 87501 2
## 87582 2
## 87621 4
## 87674 2
## 87721 2
## 87773 2
## 89184 2
## 89325 3
## 89469 1
## 89550 2
## 90220 1
## 91018 3
## 91050 3
## 91094 1
## 91106 2
## 91155 1
## 91182 2
## 91217 2
## 91239 2
## 91247 1
## 91267 2
## 91282 1
## 91326 2
## 91348 1
## 91371 3
## 91375 1
## 91461 3
## 91493 2
## 91526 2
## 91551 2
## 91555 4
## 91621 2
## 91628 2
## 456 2
## 682 5
## 3200 4
## 3443 4
## 4006 5
## 4880 1
## 6419 5
## 7162 3
## 8358 4
## 9229 4
## 10668 4
## 10998 4
## 11630 5
## 12195 5
## 12922 3
## 13279 5
## 15042 1
## 15297 4
## 15426 1
## 15965 4
## 16345 4
## 16712 3
## 17894 5
## 18296 5
## 20245 5
## 21464 5
## 21709 4
## 22486 4
## 22810 1
## 23174 3
## 23249 5
## 23868 4
## 24232 5
## 24561 5
## 24977 4
## 25186 5
## 26175 5
## 27192 5
## 27553 5
## 27801 5
## 28923 5
## 29164 4
## 30449 4
## 30541 5
## 31005 5
## 31605 5
## 31802 4
## 31997 3
## 32328 3
## 33086 4
## 33917 4
## 34566 4
## 34735 4
## 34897 4
## 35139 2
## 35311 4
## 35507 2
## 35751 3
## 36805 5
## 37365 3
## 38444 5
## 39434 5
## 40453 3
## 45012 5
## 45506 1
## 53200 5
## 53592 1
## 54054 3
## 54079 1
## 54595 3
## 54668 4
## 54873 3
## 55218 4
## 55568 4
## 55923 5
## 56227 1
## 56614 3
## 57004 1
## 58935 4
## 59026 4
## 59352 3
## 59595 5
## 60437 1
## 60618 4
## 60887 5
## 61027 1
## 65591 4
## 66403 5
## 66522 4
## 67003 5
## 67807 5
## 68090 4
## 69332 3
## 69730 5
## 70012 1
## 70568 3
## 70783 4
## 74769 3
## 75359 4
## 75551 4
## 77073 1
## 78038 1
## 78089 3
## 78464 1
## 78533 1
## 78838 4
## 79996 4
## 80954 3
## 80996 4
## 84362 1
## 84746 1
## 84758 4
## 86377 4
## 87093 1
## 87384 3
## 87774 1
## 89218 1
## 89606 1
## 90221 1
## 91376 1
## 91659 1
## 91673 1
## 91689 1
## 91705 4
## 91715 3
## 91725 1
## 91742 1
## 13 5
## 1007 4
## 1395 4
## 2506 4
## 2688 4
## 3303 4
## 4607 3
## 5187 3
## 6420 4
## 7393 4
## 7550 4
## 8153 4
## 8359 3
## 9691 2
## 9939 3
## 10284 3
## 10669 4
## 11181 3
## 11438 4
## 11979 3
## 12196 5
## 12467 2
## 12561 4
## 13060 4
## 13280 4
## 13836 5
## 14220 4
## 14398 5
## 14968 3
## 15298 3
## 15841 5
## 17358 5
## 18515 4
## 18613 4
## 18858 4
## 19029 4
## 20024 3
## 20246 3
## 20485 3
## 21057 3
## 21465 4
## 21710 3
## 21881 3
## 21980 3
## 22487 2
## 22705 3
## 23678 4
## 23795 5
## 23869 4
## 24233 5
## 24562 4
## 24978 5
## 25187 3
## 25467 4
## 26176 4
## 26906 3
## 27314 4
## 28010 3
## 28178 5
## 28374 3
## 28924 4
## 29165 4
## 29461 2
## 30542 3
## 30818 4
## 31006 3
## 31803 5
## 32329 4
## 32622 3
## 32754 3
## 32870 2
## 33087 4
## 33370 2
## 33662 1
## 33918 4
## 34412 5
## 34736 3
## 34898 4
## 35140 3
## 35312 4
## 35878 2
## 36154 1
## 36806 5
## 38445 4
## 39124 3
## 39435 5
## 40730 5
## 42001 5
## 43186 4
## 45507 1
## 48571 3
## 49822 2
## 52942 3
## 53593 4
## 54236 5
## 54353 4
## 54669 4
## 54874 4
## 54960 3
## 56125 4
## 56228 4
## 56661 5
## 57316 3
## 57541 4
## 57669 3
## 57926 5
## 58063 3
## 58499 5
## 59180 4
## 59353 5
## 60438 2
## 60619 2
## 61470 4
## 62212 2
## 63301 5
## 63850 4
## 65689 4
## 66523 5
## 66692 5
## 67203 4
## 67358 5
## 67769 4
## 68091 3
## 68216 4
## 68407 4
## 68624 4
## 69126 4
## 69333 3
## 69639 3
## 71988 4
## 72644 3
## 72930 4
## 74371 4
## 75097 3
## 75722 4
## 75995 3
## 76829 3
## 77804 3
## 79089 4
## 79500 4
## 79916 4
## 80046 4
## 81522 2
## 82340 3
## 84363 1
## 87020 4
## 88861 5
## 90686 5
## 91750 3
## 91759 3
## 91781 3
## 1008 4
## 1396 5
## 1618 5
## 2003 5
## 2239 5
## 4185 4
## 5662 5
## 7394 5
## 7551 4
## 7978 3
## 8570 5
## 9371 5
## 9940 5
## 10670 4
## 12704 5
## 13573 4
## 13837 5
## 14399 5
## 15299 3
## 15966 4
## 17895 5
## 18362 3
## 18614 3
## 21058 5
## 21466 4
## 24234 5
## 25188 5
## 25605 5
## 25952 5
## 28375 5
## 30247 5
## 33088 4
## 34279 5
## 36422 4
## 36807 5
## 38314 4
## 39436 4
## 42002 5
## 42270 5
## 43725 5
## 44282 3
## 44755 3
## 45508 3
## 46388 4
## 48951 5
## 50061 5
## 52943 5
## 53201 3
## 53594 2
## 53948 4
## 55755 4
## 57927 5
## 58500 5
## 62691 4
## 63099 5
## 64353 3
## 66065 4
## 67359 4
## 71614 4
## 75996 5
## 76830 5
## 79276 3
## 80741 3
## 80850 5
## 81808 4
## 83697 5
## 88862 3
## 91804 5
## 14 5
## 1009 4
## 1397 4
## 2507 4
## 3827 4
## 4186 5
## 6421 5
## 10671 4
## 11182 4
## 11692 4
## 13838 5
## 15755 5
## 15842 4
## 16713 4
## 17548 5
## 17896 3
## 18516 4
## 18859 3
## 19030 4
## 19230 3
## 19889 4
## 20025 3
## 21059 4
## 23558 5
## 24235 4
## 24563 5
## 25189 4
## 25468 3
## 26177 5
## 26907 4
## 27554 4
## 28179 5
## 29166 4
## 29713 3
## 31007 5
## 31606 4
## 33919 4
## 34899 4
## 36808 4
## 37056 4
## 39125 4
## 39437 5
## 40454 4
## 40731 4
## 42003 4
## 52944 4
## 56126 3
## 56662 5
## 57670 4
## 58501 4
## 58936 4
## 59181 2
## 60888 4
## 61471 4
## 62498 4
## 63100 4
## 63195 5
## 63302 5
## 63481 4
## 64894 4
## 65257 4
## 65466 3
## 67527 3
## 68217 4
## 70784 4
## 73136 4
## 73550 4
## 73663 5
## 74654 4
## 75997 4
## 76264 4
## 78839 4
## 80851 4
## 81809 4
## 86344 4
## 89429 4
## 90852 4
## 90870 3
## 15 3
## 1010 3
## 1619 4
## 2508 3
## 2689 3
## 2874 4
## 4007 3
## 4187 3
## 6422 4
## 14400 5
## 15300 3
## 15462 3
## 15843 2
## 15967 3
## 16346 3
## 16714 3
## 17133 1
## 17549 4
## 17788 4
## 17897 5
## 18363 4
## 20744 3
## 20894 3
## 21060 3
## 26178 4
## 33920 3
## 36155 2
## 36423 3
## 37206 3
## 38025 4
## 38155 3
## 38315 2
## 38446 3
## 38688 3
## 38934 3
## 39126 3
## 39438 3
## 40732 4
## 41175 3
## 41810 3
## 42271 4
## 42953 4
## 43187 3
## 43362 3
## 43726 3
## 44283 4
## 45109 3
## 45236 3
## 45348 3
## 45509 3
## 46115 3
## 46389 4
## 47047 5
## 47338 4
## 48218 5
## 48572 3
## 48731 3
## 49435 3
## 49602 3
## 49823 2
## 50665 2
## 51300 3
## 52085 3
## 53786 2
## 56229 2
## 56842 2
## 57259 2
## 60889 3
## 61028 1
## 61103 3
## 61994 2
## 62692 3
## 62941 3
## 66066 3
## 67004 4
## 69334 2
## 72250 3
## 72645 2
## 74201 3
## 77588 2
## 78039 3
## 78257 3
## 81810 3
## 82443 1
## 82809 4
## 82932 4
## 83492 1
## 85398 2
## 86116 2
## 86378 2
## 86430 2
## 86580 3
## 87136 2
## 87385 2
## 89219 2
## 89470 2
## 89742 4
## 91183 3
## 91851 3
## 91888 2
## 91952 2
## 91996 3
## 92089 4
## 92189 1
## 92227 3
## 92325 3
## 92337 3
## 1620 4
## 6423 3
## 14401 5
## 16347 3
## 16715 4
## 17241 5
## 20745 3
## 37738 3
## 38026 4
## 42807 3
## 43727 3
## 44284 3
## 45980 3
## 46116 4
## 50184 2
## 53844 4
## 62693 2
## 66067 3
## 67005 4
## 72517 2
## 81811 3
## 89185 3
## 89471 2
## 91156 2
## 92474 4
## 886 3
## 1011 5
## 2004 4
## 2240 4
## 4608 4
## 5029 4
## 6424 4
## 7552 5
## 9692 4
## 10672 4
## 12197 4
## 13061 3
## 13281 5
## 13839 5
## 14402 5
## 15968 4
## 20026 4
## 20486 3
## 21467 3
## 22904 4
## 24236 3
## 24564 5
## 25190 5
## 27193 4
## 27315 5
## 29167 4
## 29462 4
## 30248 2
## 30450 3
## 31804 4
## 33371 3
## 33490 3
## 33663 5
## 33921 5
## 34280 5
## 34737 4
## 34900 5
## 35141 2
## 35313 4
## 35879 4
## 39439 5
## 41176 4
## 42954 4
## 43728 3
## 44285 5
## 45510 3
## 49603 2
## 49824 3
## 51156 2
## 54237 4
## 58064 2
## 58835 5
## 59523 4
## 59806 5
## 59935 2
## 59994 4
## 60154 3
## 60233 3
## 60353 4
## 60439 2
## 60553 1
## 63303 4
## 63482 5
## 68530 4
## 70747 4
## 70785 4
## 71187 4
## 71989 3
## 72931 3
## 73408 3
## 75253 4
## 77074 3
## 77255 3
## 77589 2
## 83493 3
## 85001 4
## 87060 3
## 88348 4
## 2241 5
## 10673 4
## 13840 4
## 25953 4
## 26680 4
## 28180 4
## 37788 3
## 39938 4
## 40354 3
## 40733 4
## 41037 4
## 43729 5
## 45511 4
## 46390 3
## 47048 4
## 47576 4
## 48137 4
## 50312 2
## 51157 4
## 52086 3
## 53202 2
## 63483 4
## 69039 2
## 76265 4
## 76741 5
## 77590 3
## 78576 2
## 82444 2
## 87583 4
## 87807 3
## 92524 4
## 92556 4
## 457 3
## 1012 4
## 4609 4
## 4881 3
## 6425 3
## 9372 5
## 11183 4
## 19231 5
## 22488 4
## 22905 4
## 23870 4
## 24565 5
## 26179 4
## 35508 2
## 37495 5
## 38689 3
## 38935 4
## 39127 4
## 39440 5
## 39939 4
## 43730 5
## 44756 2
## 45512 4
## 46817 4
## 47339 4
## 48219 5
## 48573 4
## 49248 4
## 49436 4
## 55924 2
## 59596 5
## 68702 5
## 68973 4
## 69040 3
## 77591 2
## 78040 3
## 78534 3
## 82933 3
## 84364 4
## 87502 1
## 88262 4
## 91805 5
## 92190 3
## 5188 5
## 10674 2
## 17359 4
## 19232 4
## 19484 5
## 21468 4
## 24979 5
## 28644 4
## 40266 5
## 41177 4
## 46309 4
## 47049 4
## 47577 3
## 49249 4
## 49437 4
## 50666 2
## 51836 3
## 64091 5
## 64600 4
## 64779 5
## 65258 4
## 65690 5
## 66824 5
## 67449 4
## 73509 4
## 77938 2
## 79501 5
## 85304 4
## 87622 4
## 88068 2
## 92557 5
## 92587 3
## 92622 3
## 92660 5
## 1013 4
## 1621 3
## 6426 4
## 14403 3
## 15463 3
## 15969 3
## 16348 3
## 17134 2
## 21061 3
## 26180 4
## 33922 3
## 36156 3
## 37207 2
## 37789 2
## 38027 4
## 38156 4
## 38316 4
## 38447 4
## 39128 4
## 39940 2
## 41178 3
## 42272 4
## 44286 4
## 45013 3
## 45513 3
## 46117 5
## 47673 2
## 48220 4
## 56230 4
## 56663 3
## 60890 2
## 62694 5
## 66068 4
## 72251 3
## 74202 4
## 81812 3
## 87223 3
## 92090 4
## 92338 1
## 92692 3
## 37790 3
## 39441 4
## 40101 4
## 41179 4
## 44287 4
## 45237 4
## 45514 3
## 46391 4
## 47674 3
## 48221 5
## 49825 4
## 50667 4
## 50957 4
## 51301 4
## 51786 3
## 52087 4
## 77592 4
## 77939 4
## 82934 4
## 87460 3
## 87808 3
## 87942 3
## 88349 3
## 37496 5
## 37791 4
## 39941 2
## 43731 5
## 44288 2
## 44757 1
## 45238 5
## 45515 1
## 46310 5
## 47919 4
## 48138 4
## 50062 5
## 50958 5
## 51158 5
## 78665 4
## 88500 5
## 88558 5
## 91494 5
## 91527 4
## 92723 5
## 37497 2
## 37611 2
## 39442 2
## 39942 4
## 40224 3
## 40355 2
## 40678 3
## 46392 5
## 49438 3
## 49604 3
## 50313 3
## 50488 3
## 50668 3
## 51159 4
## 51302 4
## 53203 1
## 77593 3
## 82445 4
## 87675 2
## 87722 2
## 87809 4
## 89774 4
## 92738 3
## 40225 5
## 40734 3
## 44289 4
## 44758 2
## 47675 4
## 47920 4
## 49250 2
## 51303 4
## 51787 5
## 53204 5
## 77940 1
## 82446 4
## 87503 3
## 87623 3
## 87775 5
## 88001 5
## 88035 5
## 88055 5
## 92782 5
## 1014 4
## 2005 4
## 3534 5
## 4008 4
## 4546 4
## 6427 5
## 7395 3
## 7553 5
## 8360 5
## 9230 5
## 10675 4
## 11184 1
## 12198 4
## 12705 4
## 13282 4
## 15970 4
## 16349 2
## 16716 2
## 17898 4
## 20557 3
## 22489 5
## 23871 4
## 24566 5
## 25191 4
## 26908 4
## 29168 5
## 31998 4
## 33923 3
## 34567 5
## 35314 4
## 35509 2
## 35752 4
## 40455 4
## 41587 3
## 44290 4
## 53407 3
## 54670 4
## 55925 5
## 56231 4
## 62213 2
## 69083 2
## 69335 3
## 69731 4
## 70569 4
## 70786 3
## 71411 3
## 72646 5
## 77075 3
## 78258 3
## 85848 2
## 86011 3
## 86117 2
## 86229 4
## 86431 3
## 89472 3
## 90222 4
## 92786 3
## 16 5
## 3535 5
## 4610 4
## 5366 5
## 9125 4
## 9373 5
## 9693 5
## 9941 5
## 10629 5
## 10676 3
## 11185 5
## 11611 5
## 11980 5
## 12923 5
## 13062 5
## 13574 5
## 14221 5
## 15043 3
## 15726 5
## 16350 5
## 17135 1
## 17899 2
## 18860 2
## 19778 2
## 19827 5
## 20247 5
## 20487 1
## 21469 5
## 21882 5
## 22490 5
## 22706 5
## 27316 2
## 28011 2
## 29169 1
## 30249 5
## 30543 2
## 32330 1
## 33089 5
## 33491 3
## 34457 5
## 34568 1
## 35880 5
## 37612 3
## 38148 5
## 38690 5
## 39129 1
## 39943 3
## 44291 5
## 45516 5
## 48222 5
## 48952 3
## 50314 5
## 50669 4
## 52838 2
## 54563 2
## 54596 5
## 55051 5
## 55148 5
## 55219 5
## 55419 3
## 55656 1
## 55676 3
## 55756 5
## 55926 1
## 56127 5
## 56232 5
## 56567 2
## 56771 5
## 56843 3
## 57005 3
## 57260 1
## 57542 5
## 57671 5
## 57846 5
## 58065 5
## 58358 3
## 59182 1
## 59354 5
## 60155 1
## 60199 2
## 60234 5
## 60554 1
## 60620 5
## 60787 5
## 61565 5
## 65467 5
## 66069 2
## 68092 1
## 69732 2
## 71188 1
## 71990 5
## 72230 1
## 73719 3
## 74124 5
## 74861 2
## 77256 3
## 77319 5
## 77594 5
## 77805 5
## 77910 5
## 80277 1
## 80404 5
## 81813 5
## 83460 1
## 83926 5
## 84365 4
## 86369 2
## 88827 5
## 89896 1
## 92228 5
## 92339 5
## 92789 5
## 92937 1
## 92951 5
## 92971 5
## 92978 4
## 92994 5
## 93026 1
## 93053 5
## 93121 4
## 93145 4
## 39443 4
## 40735 4
## 41038 4
## 41387 2
## 44292 5
## 45517 4
## 46393 3
## 46818 3
## 47050 5
## 47578 3
## 47676 2
## 48223 4
## 48574 4
## 49251 4
## 51304 4
## 51788 3
## 52264 3
## 52455 4
## 52683 5
## 82447 5
## 88567 3
## 89775 5
## 37498 4
## 37613 2
## 37792 3
## 39444 3
## 39944 2
## 40736 1
## 41039 3
## 41180 2
## 41388 2
## 43732 2
## 45518 4
## 46394 3
## 47051 3
## 47487 4
## 47921 3
## 48732 3
## 49439 4
## 50670 3
## 51305 4
## 51676 4
## 51837 2
## 52088 1
## 52265 4
## 52329 2
## 52456 2
## 53205 3
## 82810 3
## 83176 4
## 87676 3
## 87810 2
## 87943 3
## 88454 4
## 93169 1
## 17 4
## 4611 4
## 5030 3
## 6428 5
## 7554 4
## 7979 3
## 9374 4
## 13283 4
## 13575 3
## 13841 4
## 14404 4
## 19233 4
## 21379 4
## 21470 4
## 21981 4
## 23250 5
## 23679 4
## 24237 4
## 24567 4
## 24980 5
## 25954 5
## 26181 4
## 28012 4
## 28376 4
## 28925 3
## 29170 4
## 29463 3
## 30544 2
## 31349 4
## 31805 4
## 33090 3
## 36809 5
## 40456 3
## 42273 2
## 43733 4
## 44759 2
## 48224 3
## 48953 4
## 52945 4
## 57317 4
## 58066 2
## 58937 5
## 59597 3
## 62499 5
## 64354 4
## 66825 4
## 67204 5
## 67360 3
## 82220 3
## 82935 4
## 90871 4
## 93186 3
## 18 5
## 458 5
## 2242 4
## 2875 4
## 4188 3
## 4612 5
## 5400 3
## 5847 2
## 5888 3
## 6209 5
## 6429 5
## 7289 4
## 7980 5
## 8483 4
## 8571 5
## 8966 4
## 9375 4
## 9694 3
## 9942 4
## 10156 3
## 10285 4
## 10477 5
## 10677 5
## 11186 4
## 11439 4
## 11693 3
## 11841 4
## 11981 5
## 13063 5
## 13284 5
## 13576 3
## 13842 4
## 14222 5
## 14969 5
## 15022 3
## 15464 1
## 16351 4
## 16717 4
## 17550 4
## 18517 2
## 18615 5
## 19234 4
## 19485 4
## 19890 3
## 19961 4
## 20027 4
## 21062 4
## 22491 4
## 23251 3
## 23872 5
## 24238 5
## 24568 5
## 24981 2
## 25192 3
## 26182 5
## 26909 4
## 27317 4
## 28926 5
## 29171 5
## 29464 5
## 30545 5
## 30819 4
## 31008 5
## 31999 5
## 32331 4
## 32871 5
## 33091 5
## 33664 1
## 33924 4
## 34738 4
## 34901 4
## 35142 4
## 35315 5
## 35881 4
## 36424 4
## 37057 5
## 40457 3
## 41588 3
## 41811 5
## 42274 1
## 42721 4
## 42808 3
## 42955 4
## 43188 3
## 43363 3
## 45014 3
## 45519 4
## 48954 5
## 52946 5
## 53595 2
## 53787 4
## 53883 4
## 54238 4
## 54671 5
## 54961 3
## 55757 5
## 55927 3
## 56128 5
## 56233 4
## 56772 3
## 56844 3
## 57006 4
## 57261 1
## 57543 5
## 57672 5
## 58067 5
## 58502 4
## 58716 3
## 59183 3
## 59355 2
## 59995 3
## 60621 2
## 61029 3
## 61321 2
## 61704 3
## 61749 4
## 61814 4
## 61995 4
## 63304 4
## 64652 3
## 64956 5
## 65468 5
## 65875 3
## 67652 2
## 67808 5
## 69336 3
## 70224 2
## 70570 5
## 70787 4
## 71615 3
## 71991 5
## 72252 4
## 72451 1
## 72932 4
## 73248 3
## 74038 3
## 74125 2
## 75998 3
## 76392 2
## 76588 3
## 77806 2
## 78090 4
## 78259 4
## 78840 4
## 80405 4
## 80852 3
## 80997 5
## 81219 4
## 81354 5
## 81814 4
## 82221 3
## 83231 4
## 83327 5
## 84432 4
## 84564 4
## 84853 3
## 85931 3
## 86279 1
## 86581 5
## 87224 4
## 89099 3
## 89186 4
## 89220 3
## 89668 4
## 89836 4
## 89928 4
## 90453 2
## 90872 5
## 91107 2
## 91706 4
## 92790 4
## 93276 3
## 93301 4
## 93363 3
## 93391 2
## 93399 4
## 93439 2
## 93464 3
## 93510 4
## 93644 1
## 93717 3
## 93742 3
## 93785 4
## 19 5
## 585 2
## 683 4
## 887 4
## 1015 4
## 1398 4
## 1622 4
## 2006 5
## 2243 5
## 2690 2
## 2876 5
## 3201 3
## 4189 5
## 4471 5
## 4613 4
## 5609 3
## 6077 1
## 6324 4
## 6430 4
## 6991 1
## 7071 4
## 7290 3
## 7555 5
## 7981 3
## 8484 3
## 8572 5
## 8967 4
## 9376 4
## 9695 4
## 9943 4
## 10286 4
## 10478 3
## 10678 4
## 11187 4
## 11694 4
## 11982 5
## 12562 3
## 13064 4
## 13577 5
## 13843 5
## 14405 4
## 14970 4
## 15465 4
## 15756 5
## 15971 4
## 16352 4
## 16638 4
## 16718 4
## 17136 2
## 17242 1
## 17360 4
## 17900 4
## 18518 3
## 18861 4
## 19592 4
## 19828 4
## 20028 4
## 20248 4
## 21063 4
## 21471 5
## 21883 4
## 22492 4
## 23252 4
## 23559 5
## 23873 4
## 24239 5
## 24569 4
## 24982 2
## 26183 4
## 27555 3
## 28181 5
## 28377 5
## 29465 4
## 30546 5
## 30820 4
## 31009 4
## 31607 5
## 32000 5
## 32332 4
## 32872 5
## 33092 5
## 33372 2
## 33925 4
## 34458 2
## 34569 3
## 35510 4
## 36157 3
## 36425 4
## 36810 2
## 37366 4
## 38157 4
## 38448 2
## 38691 4
## 38870 3
## 39130 4
## 39445 5
## 40737 5
## 41181 3
## 41389 5
## 41812 5
## 42004 4
## 42275 4
## 42561 1
## 42632 3
## 42722 3
## 43189 2
## 43364 5
## 43559 4
## 43734 4
## 44760 4
## 45015 4
## 45110 3
## 45520 5
## 46118 4
## 46395 5
## 46819 5
## 47052 4
## 48139 4
## 48225 5
## 48575 4
## 48733 5
## 48847 2
## 48955 5
## 49440 3
## 49826 3
## 50671 4
## 51635 4
## 52457 3
## 52725 4
## 53596 4
## 53884 4
## 54457 5
## 54672 5
## 55220 4
## 55758 4
## 55928 4
## 56234 4
## 56664 5
## 56773 3
## 57007 3
## 57544 4
## 57928 3
## 58068 4
## 59184 3
## 61996 3
## 62371 3
## 63305 4
## 63722 4
## 64355 4
## 64653 4
## 64957 5
## 65259 5
## 65469 4
## 67205 5
## 68703 4
## 69041 3
## 69174 3
## 69337 4
## 69733 3
## 69949 4
## 70225 1
## 70571 3
## 70788 4
## 71522 3
## 71553 3
## 71992 4
## 72253 5
## 72518 3
## 72647 3
## 74039 4
## 74203 3
## 74477 2
## 75360 5
## 76589 4
## 78091 4
## 78414 3
## 78841 5
## 79277 4
## 79502 4
## 80636 4
## 80853 4
## 80955 4
## 80998 4
## 81220 4
## 81815 5
## 82341 4
## 82936 2
## 83232 3
## 83328 3
## 84256 5
## 84433 3
## 84565 3
## 84759 1
## 85399 4
## 85601 2
## 86582 5
## 86797 5
## 87225 4
## 87811 4
## 88263 3
## 89221 2
## 89551 1
## 89837 3
## 90059 2
## 90142 4
## 90339 3
## 90369 3
## 90535 1
## 90814 4
## 90873 5
## 91556 3
## 92693 3
## 93054 4
## 93511 3
## 93645 3
## 93826 1
## 93851 3
## 93875 3
## 93898 2
## 93908 3
## 93918 2
## 20 4
## 888 4
## 1016 5
## 1623 5
## 2007 3
## 2877 4
## 3444 2
## 3536 4
## 4009 3
## 4190 2
## 5031 4
## 6431 5
## 7396 4
## 7556 2
## 8573 5
## 9126 3
## 9377 4
## 9944 3
## 11068 4
## 11188 4
## 11842 5
## 11983 2
## 12199 5
## 12468 2
## 12563 2
## 13065 4
## 13285 4
## 13578 2
## 13844 2
## 14223 4
## 14406 5
## 14971 2
## 15117 2
## 15301 3
## 16353 3
## 16639 4
## 16719 4
## 17243 4
## 18616 4
## 18862 4
## 19235 5
## 20029 4
## 20249 4
## 20558 4
## 20746 4
## 21064 4
## 21472 4
## 21884 3
## 22129 4
## 22312 3
## 22493 4
## 22811 4
## 22906 4
## 23253 5
## 23874 4
## 24240 5
## 24570 5
## 24983 4
## 25193 5
## 26184 4
## 26910 4
## 27318 4
## 28246 5
## 28378 4
## 28761 3
## 28927 5
## 29172 5
## 29466 4
## 29714 4
## 29950 4
## 30250 4
## 30451 2
## 30547 4
## 31010 4
## 31608 4
## 31806 5
## 32333 4
## 32755 5
## 33093 1
## 33926 4
## 34739 4
## 34902 5
## 35143 3
## 35316 2
## 35511 2
## 36426 3
## 36811 4
## 37208 4
## 37793 4
## 38317 4
## 38449 5
## 38692 2
## 39131 4
## 39446 4
## 40102 4
## 41813 4
## 45521 4
## 46119 2
## 47677 4
## 48226 4
## 48848 4
## 48956 5
## 50672 4
## 52947 4
## 54094 3
## 54239 4
## 54673 3
## 56235 3
## 57164 1
## 57673 4
## 58069 4
## 58503 3
## 58836 4
## 59185 5
## 59356 4
## 59524 4
## 59996 5
## 60235 4
## 60354 2
## 60440 5
## 60555 2
## 61882 3
## 62500 4
## 63484 4
## 64958 4
## 65967 3
## 67528 5
## 67809 4
## 68625 5
## 69175 3
## 69950 3
## 71993 4
## 72254 4
## 72933 4
## 74040 3
## 74478 1
## 74655 3
## 74770 4
## 75189 3
## 75999 3
## 76590 5
## 77076 1
## 77595 3
## 78842 3
## 80278 3
## 81432 1
## 83233 3
## 83329 3
## 87386 3
## 90143 3
## 93940 4
## 21 5
## 1017 3
## 2509 5
## 2878 4
## 3445 3
## 4010 3
## 4191 4
## 6432 5
## 14407 5
## 15228 4
## 15302 5
## 15466 4
## 16354 4
## 16720 4
## 17901 5
## 21065 2
## 26185 4
## 34459 4
## 36427 4
## 39132 5
## 42276 5
## 42633 3
## 42956 4
## 43365 4
## 44293 3
## 57008 3
## 62214 3
## 62372 3
## 62942 3
## 72519 3
## 72648 3
## 81816 4
## 83330 2
## 83583 4
## 83698 2
## 83845 4
## 85602 4
## 85718 4
## 85932 3
## 86583 4
## 89222 3
## 89669 2
## 90408 4
## 91557 4
## 91726 3
## 93955 2
## 93990 3
## 94029 2
## 1018 4
## 6433 4
## 12808 4
## 14408 4
## 17551 4
## 17902 5
## 21066 4
## 26186 4
## 37794 3
## 40267 5
## 43735 5
## 44294 2
## 45522 2
## 46396 3
## 47488 5
## 47678 3
## 48227 5
## 50489 4
## 50673 4
## 51160 4
## 51306 5
## 68974 3
## 78666 5
## 82448 5
## 88771 5
## 92724 5
## 94058 5
## 39447 4
## 40268 5
## 40738 4
## 43736 3
## 44295 2
## 44761 4
## 45239 4
## 46820 4
## 47053 5
## 47340 3
## 47489 5
## 47579 4
## 47679 4
## 49441 4
## 49605 2
## 49827 2
## 50063 3
## 50490 4
## 51838 5
## 78041 3
## 87584 3
## 91629 3
## 92661 3
## 4614 2
## 6434 4
## 7557 3
## 9945 3
## 13845 5
## 18617 5
## 19486 4
## 23680 4
## 23875 5
## 24571 5
## 26187 5
## 26911 5
## 27319 4
## 27802 5
## 28379 5
## 28762 2
## 28928 4
## 29173 5
## 30548 4
## 31807 5
## 32001 3
## 32873 4
## 34903 3
## 37614 3
## 39945 4
## 40679 3
## 40739 1
## 43737 3
## 44762 1
## 45523 3
## 47054 4
## 47580 4
## 47860 5
## 47889 3
## 49828 3
## 52948 5
## 58070 4
## 58378 3
## 58504 4
## 58717 4
## 59357 3
## 63306 4
## 63485 4
## 63851 5
## 64959 5
## 66524 5
## 67450 3
## 67770 2
## 67810 5
## 67971 3
## 68218 4
## 68408 5
## 68531 4
## 72934 4
## 73409 4
## 75291 4
## 75477 3
## 75849 5
## 76220 4
## 76742 5
## 78667 4
## 91377 2
## 94070 3
## 94111 4
## 94115 2
## 22 2
## 459 1
## 586 3
## 684 2
## 1019 4
## 1399 3
## 1908 3
## 2008 3
## 2244 4
## 2510 3
## 3202 2
## 4192 2
## 5401 1
## 5522 2
## 5610 1
## 5704 4
## 6078 5
## 6325 2
## 6435 1
## 7072 2
## 7163 4
## 7291 2
## 7397 4
## 7558 5
## 7936 4
## 8361 2
## 9231 1
## 9696 2
## 9946 3
## 10157 2
## 10479 1
## 10999 1
## 11189 1
## 11631 3
## 12469 1
## 12564 5
## 12809 5
## 13066 2
## 13286 1
## 13846 4
## 14224 4
## 14409 4
## 14896 3
## 14972 2
## 15229 2
## 15467 2
## 15844 4
## 15972 1
## 16721 1
## 17137 2
## 17244 1
## 18364 2
## 20030 3
## 20488 1
## 20559 1
## 20747 1
## 21067 5
## 21711 5
## 22313 2
## 22494 1
## 23254 5
## 23796 4
## 23876 1
## 24241 3
## 24572 1
## 24984 5
## 25728 5
## 26188 1
## 26681 3
## 27320 5
## 30251 3
## 30549 3
## 31011 1
## 31609 4
## 31808 5
## 32623 3
## 33373 3
## 33492 2
## 33665 1
## 34460 2
## 35512 3
## 36158 2
## 36812 4
## 37058 2
## 37209 3
## 39104 4
## 39448 2
## 40269 5
## 41040 2
## 43190 3
## 44197 4
## 44763 4
## 45016 2
## 45524 1
## 46311 2
## 46397 1
## 46821 3
## 47055 4
## 48140 3
## 48228 3
## 49412 5
## 50064 4
## 50185 3
## 50674 2
## 51551 4
## 52089 2
## 52330 4
## 52458 3
## 53206 1
## 53597 3
## 53788 1
## 53949 4
## 54458 2
## 54674 1
## 54875 4
## 55477 4
## 55677 2
## 55929 3
## 56129 3
## 56568 2
## 57262 1
## 57545 3
## 57674 4
## 57847 4
## 58071 2
## 58718 5
## 59186 5
## 59358 5
## 60891 1
## 61322 2
## 61566 3
## 62373 3
## 62695 4
## 62943 1
## 63101 2
## 65470 3
## 66070 3
## 66826 4
## 67361 4
## 68704 3
## 69176 2
## 69338 1
## 69585 5
## 70135 3
## 70226 2
## 70384 2
## 71012 3
## 71370 1
## 71554 3
## 71781 4
## 71994 4
## 72231 1
## 72445 3
## 74041 3
## 74126 2
## 74204 4
## 74981 1
## 75723 5
## 76266 5
## 78843 1
## 79132 3
## 79264 2
## 79402 3
## 80047 3
## 80131 3
## 80279 2
## 80489 2
## 80711 2
## 80999 3
## 81433 1
## 81489 3
## 81748 4
## 83461 1
## 84185 2
## 84633 4
## 85341 3
## 85603 1
## 85691 1
## 87776 2
## 88681 2
## 88863 5
## 89223 1
## 89326 2
## 89552 2
## 90144 2
## 90597 2
## 91630 3
## 91674 1
## 91690 2
## 91889 3
## 92475 3
## 92525 2
## 92623 5
## 92791 2
## 93122 2
## 94168 2
## 94184 3
## 94228 3
## 94240 3
## 94258 3
## 94285 3
## 94301 1
## 94308 5
## 94374 2
## 94451 2
## 94458 2
## 94470 4
## 94478 1
## 94500 1
## 94545 4
## 94547 3
## 94555 3
## 94563 2
## 1624 4
## 2879 2
## 14410 2
## 17245 4
## 17361 1
## 17552 2
## 38028 3
## 38844 5
## 42277 2
## 43738 2
## 44296 4
## 49252 5
## 50065 5
## 50186 1
## 50491 3
## 62696 5
## 66071 5
## 69247 4
## 69586 4
## 85719 3
## 91852 5
## 91953 5
## 94569 5
## 6436 5
## 8574 4
## 11440 5
## 18618 4
## 19031 2
## 19487 4
## 20250 5
## 20748 3
## 23877 5
## 24242 5
## 26189 5
## 26682 3
## 27194 3
## 30821 4
## 32002 4
## 63307 3
## 64229 1
## 64960 4
## 72935 3
## 76000 3
## 77807 3
## 78844 3
## 79503 1
## 1020 5
## 2511 5
## 2880 5
## 3304 5
## 3537 5
## 4193 5
## 12810 4
## 13067 4
## 14411 4
## 15187 4
## 15468 4
## 15845 4
## 15973 4
## 16722 4
## 17789 5
## 21068 5
## 28380 5
## 31012 4
## 36159 2
## 36428 4
## 38450 3
## 39133 3
## 39449 5
## 42005 4
## 42562 5
## 42723 3
## 42957 4
## 43560 5
## 44198 5
## 44297 3
## 47056 4
## 48957 5
## 51307 4
## 56236 4
## 58505 5
## 61472 5
## 61997 4
## 62374 4
## 62697 4
## 65260 5
## 68219 5
## 68705 5
## 71995 4
## 76267 5
## 81749 4
## 81817 4
## 82449 4
## 83584 3
## 85400 4
## 86584 5
## 87137 3
## 88864 5
## 91890 5
## 91997 4
## 94590 4
## 94601 4
## 1021 3
## 2881 5
## 4011 3
## 4194 4
## 6437 4
## 8575 5
## 13287 4
## 14412 5
## 16355 4
## 16723 4
## 21069 4
## 21982 4
## 24573 5
## 26190 4
## 30079 5
## 34904 3
## 38451 2
## 39134 4
## 39450 4
## 42809 4
## 43366 2
## 69339 4
## 70789 4
## 74205 5
## 82450 2
## 86585 3
## 89100 3
## 94622 4
## 23 4
## 1022 4
## 4012 1
## 4195 4
## 6438 5
## 14413 5
## 15118 3
## 15974 5
## 16356 4
## 16724 4
## 17903 4
## 20560 5
## 20749 3
## 21070 2
## 26191 5
## 36429 4
## 37210 4
## 37795 4
## 38452 4
## 38693 3
## 38936 3
## 39135 4
## 39451 4
## 40103 4
## 41390 5
## 41589 4
## 42278 5
## 44298 4
## 45111 1
## 45981 3
## 46120 4
## 47057 4
## 47680 4
## 48229 4
## 50187 3
## 50492 5
## 50675 4
## 51308 5
## 51696 3
## 51839 4
## 52331 4
## 56237 4
## 56569 2
## 57009 5
## 61998 4
## 62698 5
## 69340 3
## 72452 3
## 72649 2
## 74721 1
## 77507 5
## 78260 3
## 81750 5
## 81818 5
## 82451 5
## 85604 3
## 85720 2
## 86012 3
## 86081 2
## 87387 5
## 89473 1
## 92091 2
## 92340 4
## 94632 3
## 1023 3
## 3538 5
## 6439 4
## 7559 4
## 10679 5
## 12200 5
## 15975 3
## 16357 5
## 16725 3
## 20251 5
## 24574 4
## 26192 4
## 38871 2
## 39136 3
## 41590 5
## 56238 1
## 72650 2
## 77596 3
## 78261 1
## 92341 1
## 94645 1
## 24 4
## 1024 5
## 2009 4
## 3539 5
## 4196 4
## 4615 5
## 4882 3
## 5032 4
## 5402 2
## 5705 4
## 5889 4
## 6440 5
## 6992 3
## 7164 3
## 7560 5
## 8362 5
## 8485 3
## 8576 5
## 8968 3
## 9127 2
## 9232 3
## 9378 4
## 9697 4
## 9947 4
## 10287 4
## 10480 3
## 10630 3
## 10680 4
## 11190 4
## 11843 4
## 11984 1
## 12201 4
## 12470 2
## 12565 4
## 12924 4
## 13068 4
## 13288 5
## 13579 3
## 13847 4
## 15469 2
## 15757 4
## 15976 5
## 16358 4
## 16726 5
## 17138 2
## 20031 3
## 20252 5
## 21071 4
## 21473 4
## 21712 2
## 22253 3
## 22495 4
## 22907 4
## 23175 3
## 23255 2
## 23560 4
## 23878 5
## 24243 4
## 24575 5
## 25194 5
## 25729 3
## 26193 5
## 26912 5
## 27195 4
## 27556 3
## 28182 4
## 28381 4
## 28763 5
## 28929 5
## 29174 5
## 29467 2
## 30252 4
## 30452 4
## 30550 4
## 31013 5
## 32003 5
## 32874 5
## 33094 4
## 33666 5
## 33927 5
## 34461 2
## 34570 4
## 34740 3
## 34905 3
## 35144 3
## 35317 5
## 35513 3
## 35648 4
## 35753 1
## 35882 4
## 36160 1
## 36430 5
## 36813 5
## 37059 4
## 39452 4
## 40458 4
## 42724 4
## 42810 2
## 45525 4
## 45982 3
## 46121 4
## 46398 4
## 49829 3
## 53755 3
## 53950 3
## 53981 4
## 54055 3
## 54564 2
## 54675 4
## 54876 3
## 55089 3
## 55149 4
## 55221 4
## 55420 3
## 55569 4
## 55759 5
## 55930 4
## 56239 4
## 56665 4
## 56845 4
## 57929 4
## 58072 5
## 58460 4
## 59187 5
## 59359 4
## 59598 3
## 59936 4
## 59997 4
## 60236 4
## 60441 5
## 60556 3
## 60622 3
## 62375 2
## 63852 4
## 65471 3
## 67811 4
## 69341 3
## 69734 4
## 70013 4
## 70227 4
## 70790 4
## 71232 3
## 71412 3
## 71897 3
## 71996 4
## 72520 4
## 72651 3
## 73976 3
## 74771 4
## 76001 4
## 77597 4
## 78845 4
## 80132 1
## 80406 3
## 80804 3
## 81000 4
## 81221 2
## 81490 3
## 82222 4
## 82342 4
## 82452 4
## 83234 3
## 83538 3
## 83979 4
## 84257 4
## 84434 4
## 84854 3
## 84955 4
## 85401 4
## 85605 3
## 86861 2
## 87094 3
## 87351 3
## 87388 2
## 89474 3
## 90145 4
## 90874 3
## 91558 3
## 92792 4
## 93055 4
## 93123 2
## 93512 4
## 93919 3
## 94375 3
## 94683 3
## 94720 2
## 94763 3
## 25 5
## 1025 4
## 1400 4
## 2010 3
## 2882 4
## 4013 3
## 4616 4
## 5706 5
## 6441 5
## 7561 3
## 8577 5
## 10681 5
## 14414 5
## 15044 3
## 15303 4
## 15470 4
## 15977 4
## 16727 4
## 17553 3
## 17790 3
## 20253 3
## 21072 3
## 23256 3
## 24244 5
## 26194 5
## 28930 4
## 29175 3
## 30080 5
## 31014 4
## 33928 5
## 34462 3
## 36431 4
## 37211 2
## 37615 3
## 37796 4
## 38158 5
## 38318 5
## 38453 3
## 38694 2
## 39137 5
## 39453 5
## 40356 2
## 41182 3
## 42811 4
## 42958 5
## 43367 3
## 44299 4
## 45526 4
## 45983 5
## 46122 3
## 47341 5
## 48958 5
## 49442 4
## 49830 3
## 56240 4
## 56774 4
## 56846 3
## 57010 4
## 57675 3
## 61030 3
## 61999 4
## 62215 1
## 62376 3
## 62699 2
## 62944 3
## 63102 4
## 64961 4
## 69342 4
## 71997 4
## 72652 3
## 77598 3
## 77941 3
## 79917 3
## 80280 4
## 82113 5
## 82453 4
## 83331 3
## 83494 2
## 83699 5
## 85606 3
## 85849 1
## 85933 2
## 86118 1
## 86230 4
## 86536 2
## 86586 4
## 87138 3
## 87226 3
## 87389 3
## 89224 3
## 89475 2
## 89607 3
## 91051 3
## 91378 4
## 91727 1
## 91998 3
## 92342 4
## 92793 3
## 93513 4
## 93956 3
## 94286 3
## 94309 3
## 94775 3
## 94798 2
## 94810 2
## 94839 3
## 26 5
## 1026 5
## 1401 4
## 1625 4
## 2011 5
## 2245 5
## 2512 3
## 3369 1
## 4197 4
## 5189 5
## 5707 4
## 5968 5
## 6442 4
## 7562 5
## 8298 5
## 8578 5
## 9379 1
## 9698 4
## 12202 3
## 13848 4
## 14415 5
## 15304 4
## 15471 4
## 15846 5
## 16640 2
## 16728 2
## 17246 4
## 17362 5
## 17904 4
## 19032 5
## 19236 4
## 19593 5
## 20254 4
## 20895 4
## 21073 3
## 21474 5
## 21983 5
## 23257 5
## 23561 4
## 23797 5
## 23879 5
## 24245 5
## 24576 4
## 24985 5
## 25195 4
## 26195 3
## 26683 4
## 27321 2
## 28183 3
## 28382 5
## 28764 3
## 28931 3
## 29176 4
## 29951 3
## 30081 4
## 30253 3
## 30822 5
## 31015 4
## 31809 5
## 32004 4
## 32624 5
## 32756 2
## 33095 3
## 33929 4
## 34281 5
## 34906 5
## 36432 4
## 36814 5
## 37212 4
## 38029 5
## 38159 4
## 38319 4
## 38937 4
## 39138 5
## 40740 4
## 41391 5
## 42006 5
## 43191 1
## 43368 4
## 46399 4
## 47922 4
## 48061 4
## 48230 5
## 48959 3
## 51840 4
## 52459 3
## 52726 3
## 53598 5
## 54354 4
## 56241 2
## 56666 5
## 58379 5
## 59360 5
## 61323 4
## 61473 3
## 62501 4
## 62700 5
## 63486 3
## 63853 5
## 64601 4
## 64654 4
## 64962 2
## 65186 2
## 65472 2
## 66525 5
## 66693 3
## 66827 5
## 69343 2
## 70156 5
## 70791 4
## 71817 5
## 72936 5
## 74982 5
## 75224 5
## 75552 4
## 75724 5
## 75850 5
## 76002 5
## 76914 2
## 78092 4
## 78846 2
## 79814 5
## 80930 5
## 81001 3
## 81751 2
## 84168 4
## 85342 5
## 85721 1
## 86914 5
## 89042 5
## 90340 1
## 90486 4
## 90661 4
## 91782 2
## 91853 1
## 92092 4
## 92558 4
## 93646 1
## 94071 1
## 94241 2
## 94259 4
## 94570 4
## 94646 1
## 94842 5
## 94860 4
## 94902 2
## 94915 2
## 94923 5
## 94997 1
## 95004 5
## 95023 2
## 95027 2
## 95045 4
## 27 2
## 587 4
## 685 4
## 1027 4
## 1626 4
## 1909 4
## 2012 5
## 2246 5
## 2513 5
## 2691 5
## 2883 5
## 3291 4
## 3540 4
## 3828 5
## 4014 4
## 4198 4
## 4617 5
## 4990 5
## 5190 4
## 5265 3
## 5523 4
## 5708 5
## 5890 4
## 5969 5
## 6079 5
## 6210 5
## 6443 5
## 6993 5
## 7073 4
## 7165 5
## 7292 4
## 7398 5
## 7563 5
## 7982 4
## 8154 5
## 8235 5
## 8299 4
## 8579 5
## 8848 4
## 9233 2
## 9380 5
## 9699 3
## 9948 3
## 10288 4
## 10481 4
## 10682 5
## 11069 4
## 11191 5
## 11441 4
## 11695 3
## 11844 4
## 12203 5
## 12471 2
## 12566 4
## 12706 5
## 13069 2
## 13289 5
## 13580 5
## 13849 5
## 14225 4
## 14416 5
## 14897 5
## 14973 2
## 15119 4
## 15305 4
## 15472 4
## 15847 4
## 16359 5
## 16729 4
## 17247 3
## 17554 3
## 17791 5
## 17905 5
## 18365 5
## 18519 4
## 18619 5
## 18863 3
## 19033 5
## 19237 5
## 19488 3
## 19594 5
## 19829 1
## 19891 4
## 19962 1
## 20032 1
## 20561 5
## 20750 3
## 20869 4
## 21074 5
## 22496 3
## 23258 5
## 23562 4
## 23681 4
## 23880 5
## 24246 5
## 24577 5
## 24986 4
## 25196 5
## 25469 4
## 25730 5
## 25955 4
## 26196 5
## 26684 5
## 26913 5
## 27196 4
## 27322 5
## 27557 5
## 27803 5
## 28013 4
## 28247 5
## 28383 4
## 28765 4
## 28932 3
## 29177 5
## 29468 5
## 29715 5
## 29952 5
## 30082 4
## 30254 5
## 30453 4
## 30551 4
## 30823 4
## 31016 5
## 31350 3
## 31610 5
## 31810 5
## 32005 4
## 32334 5
## 32528 4
## 32875 5
## 33096 4
## 33493 5
## 33667 5
## 33770 2
## 34571 4
## 34741 3
## 34907 4
## 35145 3
## 35318 4
## 35649 3
## 35883 5
## 36161 1
## 36433 3
## 36815 5
## 37213 2
## 37367 4
## 37616 1
## 39454 3
## 40459 4
## 41591 2
## 41814 1
## 42279 5
## 42563 4
## 43369 2
## 43561 4
## 43739 3
## 44199 5
## 44300 5
## 45017 3
## 48231 5
## 48960 5
## 49443 4
## 49831 4
## 52949 5
## 53599 4
## 53789 2
## 53885 4
## 54240 3
## 54355 5
## 54459 4
## 54676 4
## 54962 3
## 55150 2
## 55222 2
## 55760 4
## 55931 5
## 56130 3
## 56242 3
## 56847 3
## 57403 3
## 57546 2
## 57676 2
## 57930 5
## 58073 5
## 58380 4
## 58506 5
## 58719 5
## 58837 4
## 58938 5
## 59027 4
## 59188 4
## 59361 5
## 59525 4
## 59599 5
## 59807 5
## 59998 5
## 60237 5
## 60355 4
## 60623 5
## 61104 4
## 61324 5
## 61567 2
## 61649 4
## 61750 3
## 61883 3
## 62216 3
## 62377 3
## 62502 5
## 62945 2
## 63103 3
## 63308 5
## 63487 5
## 63854 5
## 64092 4
## 64230 2
## 64487 3
## 64551 4
## 64602 4
## 64655 4
## 64721 4
## 64963 4
## 65261 5
## 65473 1
## 65645 4
## 65691 5
## 65808 4
## 65876 5
## 65968 4
## 66072 5
## 66404 4
## 66526 5
## 66751 4
## 66828 5
## 67006 4
## 67206 4
## 67268 5
## 67451 4
## 67653 5
## 67812 4
## 67972 3
## 68016 3
## 68093 4
## 68220 5
## 68409 4
## 68532 4
## 69587 3
## 69640 4
## 69735 5
## 70228 5
## 70440 4
## 70520 2
## 70572 4
## 70748 4
## 70792 5
## 71013 4
## 71078 4
## 71555 5
## 71616 4
## 71782 5
## 71818 4
## 71998 2
## 72255 4
## 72453 3
## 72653 2
## 72878 2
## 72937 5
## 73137 3
## 73249 4
## 73377 4
## 73410 2
## 73470 4
## 73510 3
## 73551 3
## 73664 4
## 73720 5
## 73801 4
## 73884 4
## 73937 4
## 74042 3
## 74656 3
## 74983 5
## 75098 5
## 75190 4
## 75292 5
## 75427 4
## 75478 5
## 75553 5
## 75851 4
## 76003 5
## 76268 4
## 76393 4
## 76474 3
## 76591 4
## 76831 3
## 76915 4
## 77026 4
## 77257 5
## 77320 5
## 77454 5
## 77808 4
## 78093 3
## 78465 1
## 78847 3
## 79278 4
## 79403 5
## 79504 4
## 79642 3
## 79712 4
## 79815 5
## 79918 3
## 80048 5
## 80133 5
## 80281 2
## 80637 5
## 80742 2
## 80854 4
## 81002 3
## 81222 5
## 81355 5
## 81523 4
## 81752 4
## 81819 3
## 82223 5
## 82343 4
## 83235 4
## 83332 2
## 83495 2
## 83585 4
## 83846 4
## 84021 4
## 84186 2
## 84435 4
## 84634 4
## 84760 4
## 85722 5
## 85850 4
## 86587 5
## 86753 4
## 86953 4
## 87227 3
## 87390 2
## 88568 4
## 88865 4
## 89225 1
## 89327 4
## 89430 2
## 89553 2
## 90146 1
## 90370 3
## 90454 5
## 90598 4
## 90743 5
## 90875 3
## 90987 4
## 91019 3
## 91052 4
## 91760 5
## 91891 4
## 92624 4
## 92794 1
## 93514 2
## 93647 4
## 93743 2
## 94116 5
## 94376 4
## 94776 5
## 94924 5
## 95049 4
## 95067 3
## 95072 3
## 95100 4
## 95141 5
## 95148 3
## 95163 4
## 95185 5
## 95195 3
## 95224 3
## 95237 4
## 95256 2
## 95303 4
## 95362 1
## 1028 5
## 1402 3
## 1627 5
## 2247 4
## 2514 4
## 2884 4
## 3446 3
## 3829 4
## 4618 5
## 4991 5
## 6080 4
## 6444 5
## 7564 4
## 8155 5
## 8236 5
## 8300 4
## 8580 4
## 9381 4
## 9700 4
## 9949 3
## 10289 4
## 10482 4
## 10683 4
## 11192 3
## 11985 4
## 12204 5
## 13070 4
## 13290 4
## 13581 3
## 13850 4
## 16730 4
## 18297 3
## 18520 4
## 18620 4
## 18864 4
## 19034 4
## 19238 5
## 19489 4
## 19758 2
## 19892 3
## 20033 3
## 20255 4
## 21075 5
## 21380 4
## 21475 3
## 22415 4
## 22497 4
## 22707 4
## 22812 4
## 23118 4
## 23259 5
## 23881 4
## 24247 4
## 24578 4
## 24987 5
## 25197 4
## 25606 5
## 25731 4
## 25956 4
## 26197 4
## 26914 5
## 27323 4
## 27558 4
## 28933 4
## 29178 4
## 29716 4
## 30083 5
## 30255 4
## 31017 4
## 31351 4
## 31532 3
## 31611 5
## 31811 5
## 32006 4
## 32335 4
## 32529 5
## 32876 4
## 33097 4
## 33494 4
## 33930 4
## 34463 3
## 34742 4
## 34908 4
## 35146 4
## 35319 4
## 35884 4
## 36434 4
## 40460 5
## 41392 4
## 42007 4
## 43740 5
## 50493 4
## 52950 4
## 53538 4
## 54095 4
## 54677 4
## 55223 4
## 55932 3
## 56131 3
## 56243 4
## 57011 3
## 57404 4
## 57465 4
## 57547 3
## 57677 3
## 57848 4
## 58074 4
## 58507 5
## 58838 5
## 58939 5
## 59362 4
## 59526 5
## 59600 4
## 59999 4
## 60200 5
## 62503 5
## 63196 3
## 63309 5
## 63488 4
## 63723 4
## 63855 5
## 64093 5
## 64231 4
## 64552 5
## 64603 4
## 64656 4
## 64722 5
## 64780 5
## 64838 4
## 64895 3
## 64964 4
## 65262 5
## 65404 3
## 65474 3
## 65592 4
## 65809 4
## 65877 5
## 65969 4
## 66073 4
## 66405 5
## 66527 4
## 66752 5
## 66829 4
## 67007 5
## 67269 4
## 67452 4
## 67813 4
## 67973 4
## 68017 5
## 68410 4
## 68533 4
## 69344 4
## 70157 4
## 71617 4
## 72424 4
## 72433 5
## 72855 4
## 72879 4
## 72938 5
## 73138 4
## 73214 3
## 73250 4
## 73378 5
## 73411 3
## 73584 4
## 73665 5
## 73721 3
## 73785 4
## 73802 3
## 74372 3
## 74657 4
## 74862 4
## 74898 5
## 75063 5
## 75479 4
## 75852 4
## 76221 4
## 76475 4
## 76592 4
## 76743 4
## 77077 4
## 77209 4
## 77321 4
## 77455 4
## 78094 4
## 79279 4
## 79505 4
## 79713 4
## 80855 4
## 81223 5
## 81356 5
## 82203 5
## 82937 2
## 83236 4
## 84995 4
## 85259 4
## 86303 4
## 86478 4
## 92588 4
## 92625 5
## 93744 3
## 93991 4
## 95379 3
## 95400 5
## 95401 4
## 95404 4
## 95416 4
## 95420 4
## 37617 2
## 39455 4
## 40741 3
## 41183 1
## 45527 2
## 46400 5
## 46822 1
## 47342 4
## 47923 4
## 49832 3
## 50494 2
## 50676 5
## 51043 2
## 51309 3
## 52033 2
## 52460 5
## 77599 3
## 78668 2
## 82454 2
## 82938 3
## 95452 4
## 28 2
## 588 3
## 686 4
## 1029 4
## 1403 5
## 1628 4
## 2248 4
## 2515 4
## 2692 4
## 2885 2
## 3370 4
## 3447 3
## 3541 4
## 4015 4
## 4619 3
## 5266 1
## 5891 3
## 6081 4
## 6445 5
## 7166 2
## 7399 5
## 7565 5
## 8156 4
## 8363 3
## 8581 4
## 8849 4
## 9234 1
## 9382 4
## 9701 3
## 9950 4
## 10158 3
## 10423 4
## 10631 2
## 11070 4
## 11193 4
## 11442 5
## 11696 2
## 12205 5
## 12567 4
## 13291 4
## 13582 2
## 13851 4
## 14417 4
## 15473 3
## 15758 4
## 15848 3
## 15978 4
## 16360 2
## 16731 4
## 17555 4
## 17906 4
## 18298 2
## 18366 3
## 18621 5
## 19035 4
## 19239 4
## 19759 1
## 20256 3
## 20562 3
## 21076 5
## 21476 4
## 21885 1
## 22130 3
## 22314 3
## 22708 4
## 22908 5
## 23176 2
## 23260 5
## 23682 3
## 23798 4
## 23882 5
## 24248 5
## 24579 4
## 25198 5
## 25732 4
## 25957 4
## 26198 4
## 26685 5
## 26915 4
## 28014 3
## 28248 5
## 28384 5
## 29179 5
## 29469 4
## 30084 4
## 31018 3
## 31533 3
## 31812 4
## 32007 4
## 32625 4
## 32877 3
## 33098 4
## 33374 2
## 33931 5
## 34464 3
## 34743 1
## 34909 3
## 35147 3
## 35320 2
## 35650 3
## 36162 4
## 36435 3
## 36816 5
## 37368 1
## 37797 2
## 38320 2
## 38454 5
## 38695 3
## 39139 2
## 39456 5
## 41041 2
## 41184 1
## 41592 4
## 42008 4
## 42280 5
## 42812 3
## 43192 4
## 43562 4
## 43741 3
## 44301 2
## 45018 3
## 45528 1
## 46123 4
## 47058 3
## 47581 4
## 48961 5
## 50677 3
## 52951 4
## 53492 2
## 54241 5
## 54460 3
## 54963 2
## 55678 3
## 55761 3
## 55933 4
## 56244 3
## 57931 5
## 58075 3
## 59028 2
## 59363 5
## 59808 3
## 60000 3
## 60356 2
## 60624 3
## 60892 3
## 61325 2
## 61474 4
## 61537 4
## 61650 3
## 62217 2
## 62378 4
## 62504 4
## 62701 4
## 63856 4
## 65263 4
## 66074 4
## 66282 4
## 66528 4
## 66694 4
## 66830 3
## 67654 5
## 68221 4
## 68411 5
## 69127 3
## 69345 4
## 70014 1
## 70229 3
## 70793 3
## 71014 1
## 71618 4
## 72654 2
## 73215 3
## 75554 4
## 75725 4
## 76004 3
## 76593 4
## 77027 4
## 77078 2
## 77322 2
## 77508 3
## 78262 2
## 79224 4
## 79280 4
## 79404 2
## 79474 2
## 79714 3
## 79919 3
## 79997 4
## 80134 2
## 80221 4
## 80601 2
## 80856 3
## 81524 2
## 81820 2
## 82114 3
## 82344 3
## 83700 1
## 84187 1
## 85402 3
## 86013 2
## 86588 3
## 87021 4
## 87228 2
## 87624 4
## 88962 2
## 89101 1
## 89554 1
## 90268 4
## 90409 3
## 90487 4
## 90599 4
## 91892 4
## 92093 3
## 92343 4
## 92526 3
## 92795 1
## 93992 1
## 94310 4
## 94377 4
## 94471 3
## 94721 3
## 95050 1
## 95257 3
## 95463 2
## 95476 5
## 95504 4
## 95505 3
## 95518 2
## 95550 4
## 95580 2
## 95618 2
## 95664 3
## 29 3
## 589 2
## 972 3
## 1910 4
## 2516 4
## 2693 4
## 2886 3
## 3371 3
## 4199 4
## 6446 4
## 10684 3
## 14418 5
## 15120 2
## 15230 2
## 15306 4
## 15474 3
## 15849 5
## 16732 1
## 17792 3
## 19595 4
## 20896 4
## 26199 3
## 33932 3
## 34413 4
## 34465 2
## 36436 3
## 37499 3
## 38030 3
## 38455 5
## 38642 4
## 38938 4
## 39140 3
## 39457 3
## 39946 3
## 40270 4
## 40742 3
## 42281 4
## 42564 4
## 42959 1
## 43193 4
## 43370 3
## 43563 3
## 43742 4
## 44200 3
## 44302 3
## 44764 2
## 45529 2
## 46401 4
## 46823 5
## 47059 3
## 47582 3
## 49444 3
## 49606 2
## 49833 1
## 50188 2
## 50678 2
## 51310 4
## 56245 4
## 56667 4
## 57165 3
## 62379 2
## 62702 4
## 63489 3
## 66075 4
## 69346 2
## 72256 3
## 72521 2
## 77509 3
## 77600 2
## 80049 3
## 81753 3
## 82455 4
## 83586 3
## 85343 5
## 86068 1
## 86432 1
## 89102 3
## 89431 3
## 90223 3
## 90410 3
## 91184 3
## 91559 2
## 91806 5
## 91854 3
## 91893 4
## 91954 3
## 91999 1
## 92094 3
## 92796 3
## 94185 3
## 95693 5
## 95722 2
## 30 4
## 460 3
## 687 3
## 1030 4
## 1404 4
## 1629 4
## 1911 5
## 2013 4
## 2249 5
## 3203 3
## 3542 4
## 4620 4
## 5033 4
## 5191 1
## 5403 3
## 6211 5
## 6447 5
## 7074 3
## 7566 5
## 7983 3
## 8364 2
## 8582 4
## 9383 4
## 9702 5
## 9951 3
## 10159 4
## 10483 3
## 10685 4
## 11071 4
## 11194 3
## 11443 3
## 11845 4
## 12206 3
## 12568 4
## 12811 2
## 13071 4
## 13292 4
## 13583 3
## 13852 4
## 14419 4
## 14898 2
## 15475 4
## 16733 2
## 17556 2
## 17907 5
## 18622 4
## 19240 4
## 19893 4
## 20034 4
## 20257 3
## 21077 3
## 21477 3
## 21713 4
## 21984 4
## 22131 4
## 22416 4
## 22498 3
## 22709 3
## 23261 5
## 23883 4
## 24249 5
## 24580 5
## 24988 5
## 25199 4
## 25733 5
## 26200 4
## 26686 4
## 26916 5
## 27197 4
## 27324 4
## 27559 4
## 27804 5
## 28015 4
## 28249 4
## 28385 4
## 28934 5
## 29180 5
## 29470 4
## 29717 3
## 30085 4
## 30552 4
## 30824 4
## 31813 5
## 32008 3
## 32336 4
## 32530 3
## 32757 3
## 32878 5
## 33099 4
## 33375 2
## 33495 1
## 33933 4
## 34744 3
## 34910 4
## 35148 4
## 35321 5
## 35514 3
## 35651 2
## 35885 4
## 36163 4
## 36437 4
## 36817 4
## 37060 3
## 37214 1
## 37369 3
## 39458 3
## 40461 4
## 40743 5
## 41185 3
## 41593 2
## 42009 4
## 43371 4
## 44303 4
## 46402 3
## 47924 4
## 48062 2
## 48232 4
## 48962 4
## 50315 3
## 51311 3
## 51841 4
## 52461 3
## 52839 3
## 53600 4
## 54356 4
## 54597 2
## 54678 4
## 55052 4
## 55151 3
## 55934 4
## 56246 3
## 57678 2
## 57849 3
## 58076 4
## 58381 4
## 58839 4
## 59029 4
## 59364 2
## 59527 4
## 59601 4
## 59809 5
## 60238 4
## 60625 2
## 61475 4
## 62703 5
## 62946 1
## 63490 3
## 64965 5
## 65646 4
## 66283 3
## 66529 4
## 67008 5
## 67207 5
## 67529 5
## 68222 4
## 68706 3
## 69042 1
## 69347 3
## 70230 3
## 70573 3
## 70794 4
## 71015 3
## 71619 4
## 71999 4
## 72257 4
## 72939 3
## 74043 3
## 74658 5
## 74772 4
## 75480 3
## 75555 4
## 75726 2
## 76005 4
## 76832 4
## 76916 3
## 77809 3
## 78095 4
## 78998 3
## 79506 5
## 80358 4
## 80956 3
## 81003 4
## 81357 4
## 82224 5
## 82456 1
## 82939 2
## 83927 2
## 84258 5
## 86798 3
## 87812 3
## 88501 2
## 88866 4
## 90600 4
## 90876 3
## 94072 3
## 94117 1
## 95551 4
## 95727 1
## 95760 1
## 95777 5
## 31 3
## 1031 1
## 1630 5
## 2887 5
## 4200 4
## 4621 4
## 6082 2
## 6212 5
## 6448 5
## 7567 3
## 8486 2
## 8583 5
## 8850 3
## 8969 3
## 9384 3
## 9703 1
## 10290 4
## 10484 5
## 11846 5
## 11986 4
## 13584 5
## 13853 4
## 14420 3
## 15476 4
## 16734 4
## 17557 4
## 19241 4
## 23262 4
## 24250 3
## 25607 5
## 25734 3
## 27325 4
## 28386 4
## 28935 4
## 29471 5
## 29718 5
## 30553 4
## 32009 4
## 32337 4
## 32879 5
## 33100 4
## 36438 4
## 36818 3
## 37061 5
## 38939 3
## 39459 3
## 45530 4
## 48963 5
## 50679 4
## 52840 5
## 53493 3
## 54096 5
## 55152 5
## 55224 4
## 55762 4
## 58077 5
## 58508 5
## 58840 4
## 59602 4
## 62000 4
## 62947 3
## 66530 4
## 66831 4
## 68094 4
## 68707 4
## 71620 3
## 75556 4
## 76006 4
## 76594 5
## 76744 4
## 77510 5
## 81224 4
## 81358 4
## 84259 4
## 85126 4
## 90536 4
## 93302 3
## 93400 3
## 95477 4
## 95786 4
## 32 3
## 1032 3
## 1631 4
## 2888 3
## 3448 1
## 4016 3
## 6449 5
## 15979 3
## 16735 3
## 17908 4
## 26201 5
## 36439 4
## 38160 4
## 38321 4
## 39141 3
## 39460 4
## 42725 4
## 42813 4
## 42960 3
## 43372 3
## 43743 1
## 44304 4
## 45531 4
## 45984 3
## 46124 4
## 46403 5
## 56247 3
## 62001 5
## 62704 2
## 66076 4
## 68878 4
## 72655 3
## 81754 4
## 81821 5
## 83701 4
## 85851 3
## 87723 1
## 92344 3
## 33 3
## 1033 5
## 4017 4
## 4201 4
## 8584 5
## 15045 4
## 15980 5
## 16736 4
## 17139 3
## 17248 4
## 17558 4
## 20563 3
## 21078 4
## 36164 3
## 37215 5
## 41594 4
## 42282 4
## 56248 5
## 57166 1
## 62218 4
## 69348 3
## 82072 4
## 83333 3
## 86014 3
## 86231 4
## 87391 3
## 93515 3
## 93827 3
## 94777 5
## 94811 4
## 1034 3
## 1632 4
## 4202 4
## 6450 5
## 15477 3
## 15981 4
## 16361 2
## 16737 1
## 17559 1
## 17909 4
## 25608 5
## 26202 5
## 36440 5
## 37798 3
## 39461 5
## 42010 5
## 42283 5
## 42961 1
## 43744 5
## 44305 4
## 56249 3
## 56775 3
## 57012 1
## 61105 1
## 62002 3
## 62705 5
## 72522 2
## 80050 2
## 81822 1
## 83702 1
## 89226 1
## 92797 4
## 93516 1
## 94647 1
## 1035 5
## 1633 4
## 2250 5
## 5709 5
## 6213 5
## 6451 5
## 7568 5
## 10686 4
## 13854 5
## 14421 5
## 15307 3
## 15982 4
## 17249 4
## 17363 4
## 18367 3
## 20564 3
## 20897 5
## 21079 5
## 23884 5
## 24581 5
## 24989 3
## 26203 5
## 26687 4
## 29719 5
## 33934 3
## 35886 5
## 36165 3
## 36369 4
## 36441 3
## 37216 3
## 37799 1
## 38031 5
## 39105 5
## 39462 4
## 40462 4
## 41595 3
## 42962 3
## 44306 5
## 44765 4
## 45532 2
## 46125 4
## 46404 3
## 47060 4
## 47681 2
## 49445 4
## 51312 3
## 51552 3
## 58509 3
## 62706 3
## 66077 4
## 72258 3
## 74206 3
## 78577 3
## 81823 3
## 82457 2
## 83703 3
## 87813 1
## 88069 4
## 92345 3
## 92476 5
## 95581 5
## 95787 4
## 95830 5
## 95845 5
## 34 4
## 1405 4
## 2889 3
## 4018 4
## 4622 4
## 6214 4
## 6452 4
## 8487 3
## 9385 4
## 9952 3
## 10687 4
## 11195 4
## 11444 4
## 11987 4
## 12207 4
## 12569 3
## 12925 3
## 13072 4
## 13293 4
## 14226 4
## 14899 3
## 15308 3
## 16738 3
## 18299 4
## 18623 4
## 19242 4
## 19779 3
## 19963 3
## 20035 5
## 20898 3
## 21080 3
## 21381 4
## 22499 3
## 23263 4
## 23563 4
## 23885 5
## 24251 4
## 24582 5
## 24990 3
## 25200 4
## 26204 4
## 26917 4
## 27326 4
## 27560 4
## 28184 4
## 28387 3
## 28766 4
## 29720 4
## 30554 4
## 31019 3
## 31481 3
## 31612 4
## 32010 4
## 32338 3
## 32758 3
## 33376 4
## 33935 4
## 34466 3
## 34745 3
## 34911 5
## 35149 3
## 35322 4
## 35515 3
## 39142 4
## 40104 2
## 40357 4
## 40463 4
## 44766 3
## 46126 5
## 46405 4
## 48233 4
## 51697 2
## 52090 4
## 54242 3
## 54565 2
## 55225 4
## 55541 2
## 55570 4
## 55935 4
## 56132 4
## 56250 3
## 56668 4
## 57013 3
## 57466 3
## 57548 3
## 57679 5
## 58078 5
## 58841 3
## 59030 3
## 59189 3
## 60442 2
## 60557 1
## 60626 4
## 62219 3
## 62380 3
## 63724 4
## 63857 5
## 64966 4
## 65475 4
## 65970 4
## 66531 5
## 68223 4
## 68975 2
## 69177 2
## 69349 2
## 70015 3
## 70231 3
## 70795 3
## 71277 2
## 71819 3
## 72000 5
## 72523 3
## 72656 3
## 74044 3
## 76007 4
## 77601 3
## 78096 3
## 81525 2
## 82225 3
## 82940 4
## 83237 3
## 83587 3
## 85607 1
## 90147 3
## 91560 3
## 92952 2
## 93056 3
## 94118 4
## 95552 3
## 95848 3
## 95857 3
## 973 3
## 2694 5
## 6453 3
## 7075 4
## 7569 5
## 8585 4
## 8851 5
## 12208 5
## 13855 4
## 14422 4
## 19036 3
## 19243 4
## 21081 1
## 21478 4
## 21714 3
## 23264 5
## 24583 2
## 24991 4
## 25470 2
## 26205 3
## 29721 5
## 33936 3
## 38161 3
## 39143 5
## 42284 4
## 42963 3
## 43564 3
## 43745 4
## 44767 2
## 47061 3
## 52332 4
## 52952 5
## 58842 4
## 61326 5
## 62707 5
## 66832 4
## 82115 4
## 89043 5
## 35 4
## 461 3
## 889 4
## 1036 1
## 1634 5
## 2251 5
## 2890 5
## 3830 4
## 4203 5
## 4623 4
## 5404 3
## 5970 5
## 6215 4
## 6454 2
## 6994 4
## 7293 3
## 7570 5
## 7984 4
## 8586 5
## 9235 3
## 9386 4
## 9704 4
## 10485 4
## 10688 4
## 11072 3
## 11196 3
## 11847 4
## 12209 3
## 13294 5
## 13585 4
## 13856 5
## 14423 5
## 15121 4
## 15983 4
## 16362 3
## 16739 3
## 17364 4
## 17910 5
## 18368 4
## 19037 5
## 19244 4
## 20565 5
## 22500 5
## 23683 3
## 23886 1
## 24584 5
## 25201 2
## 25471 4
## 25958 4
## 26206 1
## 26688 5
## 27805 4
## 28016 4
## 28388 5
## 28936 4
## 29181 5
## 29472 4
## 29722 5
## 29953 5
## 30825 3
## 31020 4
## 32011 4
## 32531 5
## 32880 4
## 33771 3
## 33937 1
## 34572 4
## 34912 1
## 35150 1
## 35323 1
## 35754 4
## 35887 4
## 36442 3
## 37370 4
## 40464 4
## 41186 1
## 48964 5
## 52841 4
## 52953 4
## 54243 1
## 54461 4
## 55763 4
## 55936 3
## 56251 3
## 58079 5
## 58510 5
## 59603 5
## 60001 3
## 61247 3
## 61651 4
## 62003 4
## 62948 4
## 63310 4
## 63491 5
## 64094 4
## 64781 5
## 65692 4
## 66284 4
## 67009 4
## 67362 4
## 67530 5
## 67655 4
## 68018 4
## 68095 4
## 68224 4
## 68412 4
## 68626 4
## 69736 4
## 69951 5
## 70574 4
## 70796 4
## 71556 4
## 71621 4
## 72259 5
## 72940 4
## 74207 4
## 75099 4
## 75191 4
## 75293 1
## 75428 4
## 75853 4
## 76008 5
## 77028 3
## 77810 2
## 78097 4
## 78263 4
## 79281 3
## 79715 4
## 84022 4
## 84761 3
## 86537 4
## 87229 4
## 90988 4
## 93786 4
## 95101 3
## 95860 5
## 95881 4
## 36 2
## 1037 4
## 2252 5
## 4624 3
## 5192 4
## 6216 2
## 7571 4
## 8157 5
## 8587 5
## 11073 5
## 11197 2
## 12210 5
## 12926 1
## 13295 2
## 14424 4
## 17911 5
## 18369 4
## 19245 5
## 21382 3
## 21479 3
## 21715 5
## 21985 4
## 23799 5
## 24252 5
## 24992 5
## 25735 5
## 25959 4
## 26918 4
## 27806 5
## 28017 5
## 29473 4
## 29723 5
## 30555 2
## 31482 3
## 32626 4
## 38032 3
## 38940 2
## 40744 4
## 41187 2
## 41393 4
## 43565 4
## 43746 4
## 44307 3
## 44768 2
## 48965 4
## 52954 5
## 54462 4
## 59365 4
## 62505 5
## 62708 4
## 63311 5
## 63492 4
## 65971 3
## 66833 4
## 67363 5
## 72001 2
## 75481 3
## 76269 5
## 76595 4
## 78042 2
## 82458 2
## 88329 1
## 89044 3
## 94311 4
## 95890 4
## 1038 4
## 1635 4
## 2517 4
## 2891 4
## 14425 4
## 16740 4
## 17365 3
## 17793 3
## 18370 3
## 19596 3
## 20899 3
## 36443 4
## 37800 3
## 39463 4
## 41394 5
## 42285 4
## 43566 3
## 44308 3
## 45533 4
## 46406 3
## 46824 3
## 47062 4
## 47682 4
## 48234 5
## 48576 5
## 50066 3
## 50316 4
## 50680 4
## 51044 4
## 51313 4
## 51842 5
## 52664 3
## 52727 3
## 53207 2
## 66078 4
## 69043 3
## 78669 4
## 94571 3
## 37 4
## 2518 5
## 4204 5
## 7572 5
## 10689 5
## 14426 5
## 15231 4
## 15478 4
## 15759 4
## 15984 4
## 16363 3
## 16741 4
## 17250 3
## 17560 3
## 18371 3
## 19597 4
## 20566 3
## 21082 5
## 28250 5
## 29474 4
## 33772 1
## 33938 5
## 34467 2
## 36166 4
## 36444 2
## 37217 1
## 41188 5
## 41596 5
## 43373 2
## 44769 1
## 45019 4
## 45112 1
## 45534 3
## 46825 4
## 47343 2
## 49607 1
## 49834 2
## 56252 4
## 56669 4
## 56776 3
## 56848 5
## 57014 5
## 57263 2
## 58511 4
## 61216 5
## 62220 4
## 62381 3
## 62709 5
## 62949 1
## 63104 4
## 64967 5
## 66079 4
## 69350 3
## 72657 3
## 77602 3
## 78264 4
## 79147 4
## 81824 1
## 83334 2
## 85608 3
## 85799 1
## 85852 1
## 86119 3
## 86232 2
## 86589 3
## 87139 4
## 87230 2
## 89227 3
## 90411 5
## 91379 2
## 91728 1
## 92477 5
## 92798 4
## 93517 3
## 93648 4
## 93957 1
## 95916 4
## 95925 2
## 95932 1
## 974 5
## 1039 4
## 2253 3
## 3831 5
## 4019 2
## 5710 3
## 7573 5
## 8158 4
## 8237 4
## 8301 4
## 8588 5
## 9705 4
## 10486 2
## 12211 4
## 12707 4
## 12812 4
## 13296 5
## 13857 5
## 14427 5
## 16742 2
## 18372 3
## 19246 5
## 19598 5
## 20900 5
## 21986 3
## 23887 5
## 24993 4
## 26689 4
## 28645 5
## 29724 5
## 30256 5
## 30826 4
## 33101 4
## 34282 2
## 39464 3
## 40358 3
## 41042 3
## 42286 5
## 43747 5
## 44309 2
## 45349 4
## 48966 3
## 50067 4
## 50189 2
## 50495 3
## 51314 3
## 52091 3
## 53208 2
## 54679 2
## 57932 3
## 62506 5
## 66753 5
## 66834 4
## 67270 5
## 67364 3
## 68708 4
## 69588 2
## 71622 3
## 72941 3
## 74208 2
## 78670 2
## 83980 1
## 84118 3
## 85127 4
## 85305 4
## 86918 4
## 88867 3
## 90488 4
## 90662 3
## 91783 3
## 91807 4
## 92559 3
## 93649 2
## 94287 3
## 95478 5
## 95960 2
## 95979 5
## 95991 2
## 95994 3
## 95995 1
## 96020 4
## 96024 3
## 38 5
## 688 3
## 2892 2
## 3832 4
## 4205 2
## 4625 5
## 5034 3
## 5711 5
## 6455 4
## 7076 5
## 7574 4
## 9387 3
## 12212 5
## 12570 3
## 13297 3
## 13586 2
## 13858 4
## 14428 3
## 16743 2
## 17561 3
## 17912 2
## 18624 3
## 18865 2
## 19038 4
## 20258 3
## 21480 5
## 21716 5
## 21987 4
## 23265 4
## 23888 3
## 24253 5
## 24585 5
## 24994 4
## 25202 4
## 25736 5
## 26207 3
## 26919 5
## 28389 3
## 28646 3
## 29182 5
## 30086 5
## 30454 4
## 31814 4
## 32012 3
## 32881 2
## 33939 4
## 34913 3
## 36819 5
## 38033 5
## 38456 3
## 38696 1
## 40465 3
## 42287 2
## 52955 3
## 56253 3
## 59031 5
## 60893 3
## 62507 5
## 63858 4
## 64095 5
## 65264 5
## 66532 2
## 67365 4
## 67453 5
## 67814 5
## 68225 4
## 74773 2
## 75064 5
## 84260 2
## 86233 1
## 92799 1
## 4206 3
## 12813 4
## 36445 5
## 38941 4
## 39144 4
## 40745 3
## 44310 4
## 44770 4
## 45535 3
## 46127 3
## 46826 5
## 49835 1
## 50496 1
## 57015 4
## 57167 4
## 62950 3
## 85344 2
## 87392 3
## 87944 5
## 93518 1
## 96035 5
## 39 4
## 975 4
## 1040 5
## 1912 5
## 2519 3
## 3305 5
## 6456 4
## 12814 2
## 14429 5
## 15850 5
## 17366 5
## 19599 4
## 20901 3
## 33940 4
## 36370 5
## 38034 5
## 38643 5
## 39145 3
## 39465 5
## 40271 5
## 40746 5
## 42011 4
## 42288 3
## 43194 4
## 43567 5
## 43748 5
## 44311 3
## 45020 3
## 46827 3
## 47583 5
## 48063 4
## 48235 2
## 49253 4
## 50190 5
## 51315 2
## 51843 4
## 53845 2
## 66080 3
## 67010 5
## 71623 5
## 77511 3
## 78671 4
## 81685 4
## 83704 5
## 85345 5
## 88569 4
## 88621 3
## 88728 5
## 89776 2
## 91855 4
## 92478 3
## 92662 5
## 96061 2
## 5971 4
## 6457 3
## 7985 4
## 8589 5
## 10690 4
## 11697 5
## 11848 4
## 14430 5
## 21717 3
## 28937 3
## 30087 2
## 31352 5
## 31613 5
## 32627 3
## 32882 5
## 35888 3
## 36446 4
## 40105 1
## 40747 3
## 58080 3
## 61652 5
## 63859 5
## 66835 3
## 68709 4
## 71624 3
## 79282 3
## 88070 4
## 88122 4
## 40 4
## 590 4
## 1041 4
## 4207 5
## 5712 4
## 10691 5
## 12815 3
## 13859 5
## 14431 3
## 15479 3
## 15851 3
## 16364 2
## 16744 4
## 17367 3
## 20567 4
## 20902 3
## 21083 2
## 23564 4
## 27561 5
## 32013 4
## 33941 2
## 36447 4
## 40748 3
## 41597 4
## 41815 3
## 42012 4
## 42289 4
## 42726 4
## 42964 5
## 43195 4
## 43374 3
## 44312 3
## 44771 3
## 48967 5
## 56254 3
## 56849 4
## 57016 2
## 57168 1
## 59190 2
## 61031 1
## 62004 3
## 62710 5
## 62951 2
## 69248 2
## 72260 5
## 72454 4
## 72524 3
## 73821 3
## 80282 2
## 80727 4
## 81825 2
## 83335 1
## 85800 3
## 89228 3
## 89328 4
## 92800 1
## 93519 3
## 93958 3
## 41 4
## 591 2
## 1042 3
## 1406 4
## 1636 4
## 2014 4
## 2520 2
## 2695 4
## 2893 3
## 3449 1
## 3543 3
## 4208 2
## 4626 3
## 6458 5
## 7575 3
## 8590 5
## 9388 4
## 9706 4
## 9953 4
## 10291 4
## 10692 3
## 11074 3
## 11849 3
## 13587 4
## 14227 4
## 14432 5
## 15023 2
## 15309 1
## 15480 4
## 15727 1
## 16365 3
## 16745 4
## 17562 3
## 17913 2
## 18866 4
## 19039 4
## 19247 3
## 19830 3
## 20568 3
## 21084 2
## 23266 5
## 23565 4
## 23684 4
## 24586 5
## 24995 4
## 25609 4
## 26208 4
## 26920 3
## 27327 3
## 28390 4
## 28938 4
## 29725 4
## 30088 4
## 30556 4
## 31614 3
## 32339 4
## 32532 4
## 33102 4
## 33496 3
## 33773 2
## 33942 3
## 34468 3
## 34914 3
## 35324 2
## 35516 2
## 36167 1
## 36448 3
## 36820 3
## 37218 1
## 37371 3
## 40466 4
## 41816 3
## 42013 2
## 42290 4
## 42814 3
## 43196 2
## 43375 4
## 43749 4
## 44313 3
## 44772 1
## 45536 4
## 47344 3
## 47925 4
## 48968 4
## 50317 2
## 51698 1
## 52092 1
## 52956 4
## 53601 4
## 56255 3
## 56777 1
## 57017 3
## 57169 1
## 57264 1
## 57318 4
## 57549 4
## 58359 1
## 58940 5
## 59191 4
## 59604 5
## 60894 4
## 61032 1
## 61106 1
## 61327 4
## 62221 3
## 62382 2
## 62508 3
## 62711 1
## 62952 3
## 63105 3
## 63312 4
## 63493 4
## 63656 5
## 63725 4
## 63860 5
## 64096 4
## 64896 3
## 64968 4
## 65693 4
## 66081 2
## 66533 3
## 66754 4
## 66836 4
## 67366 4
## 67454 4
## 67531 3
## 67815 5
## 68226 3
## 68534 4
## 69044 3
## 69351 3
## 71625 4
## 72002 5
## 72525 3
## 72658 3
## 72942 5
## 74984 3
## 76270 4
## 76596 5
## 76745 4
## 77210 1
## 77603 1
## 79507 3
## 80283 1
## 81686 2
## 83336 1
## 84023 4
## 85609 3
## 85713 2
## 85934 3
## 86280 1
## 87231 3
## 88350 1
## 88868 3
## 90148 2
## 91729 1
## 92801 2
## 92995 1
## 93959 1
## 94073 3
## 94479 3
## 94925 4
## 95421 4
## 95464 1
## 95582 2
## 96074 1
## 96079 2
## 96104 2
## 42 4
## 462 4
## 689 2
## 2894 4
## 3544 5
## 4209 2
## 4627 4
## 5035 5
## 5367 1
## 5405 5
## 5848 4
## 6459 3
## 7576 1
## 8488 4
## 8591 5
## 8970 4
## 9389 4
## 9707 4
## 9954 3
## 10487 4
## 10632 2
## 10693 5
## 11198 5
## 11988 5
## 12927 4
## 13073 4
## 13588 4
## 15046 2
## 15122 4
## 15427 4
## 15481 3
## 15985 5
## 16366 3
## 16746 4
## 17140 1
## 17563 5
## 17914 4
## 19780 3
## 21085 3
## 22501 4
## 24587 5
## 26209 4
## 27562 4
## 28391 4
## 29475 5
## 31021 5
## 32014 5
## 32883 4
## 33103 4
## 34469 3
## 35755 4
## 35889 4
## 36168 1
## 37219 1
## 37618 3
## 37801 2
## 38162 3
## 38322 2
## 38697 4
## 38872 2
## 38942 5
## 39947 2
## 40467 5
## 41817 4
## 42815 5
## 45537 3
## 46128 4
## 46407 3
## 46828 2
## 49254 1
## 49608 3
## 49836 4
## 51699 4
## 52842 4
## 53453 1
## 53886 3
## 54680 4
## 55090 2
## 55226 5
## 56256 5
## 56570 2
## 56615 1
## 56778 4
## 57018 2
## 57170 1
## 57265 1
## 58081 4
## 60788 3
## 61568 4
## 61751 4
## 62005 3
## 62953 3
## 63106 2
## 63313 5
## 66082 2
## 68227 4
## 69225 2
## 69352 4
## 70575 4
## 70797 4
## 71233 4
## 71278 4
## 71523 4
## 71820 4
## 72261 4
## 72659 2
## 73412 4
## 73977 4
## 74479 2
## 74985 2
## 76597 4
## 76917 5
## 78098 4
## 78265 4
## 78848 4
## 79475 3
## 80284 4
## 80407 4
## 80544 4
## 80805 4
## 81004 4
## 81526 5
## 82459 2
## 82941 3
## 83238 5
## 83337 4
## 83928 4
## 84436 4
## 84525 4
## 84898 3
## 85610 2
## 86069 3
## 86207 3
## 86590 3
## 86754 3
## 87095 4
## 87140 4
## 87232 3
## 87393 2
## 88264 2
## 89432 3
## 89608 4
## 90060 3
## 91108 3
## 91561 2
## 92346 4
## 92802 4
## 93057 4
## 93303 4
## 93392 3
## 93520 2
## 93718 3
## 93993 3
## 94926 2
## 96110 2
## 43 2
## 690 3
## 1043 4
## 2254 5
## 2895 4
## 4210 3
## 5036 4
## 8592 5
## 9708 5
## 10694 4
## 11850 5
## 13074 4
## 13860 4
## 14433 4
## 15482 4
## 15986 4
## 16747 4
## 20751 4
## 21086 4
## 28939 5
## 30827 3
## 33943 4
## 34470 4
## 36449 4
## 37802 4
## 39466 4
## 40468 5
## 41598 4
## 41818 4
## 42291 4
## 42965 4
## 43376 3
## 43750 5
## 44773 5
## 45113 3
## 45538 3
## 46408 4
## 48849 3
## 48969 5
## 49609 3
## 54681 4
## 56257 3
## 56670 5
## 57019 2
## 61653 4
## 63107 4
## 64356 5
## 67816 4
## 68413 5
## 68535 5
## 69226 5
## 69353 3
## 72262 4
## 72660 3
## 74209 3
## 78266 3
## 81826 3
## 82116 4
## 82460 4
## 83338 3
## 85403 4
## 85723 3
## 87233 4
## 87814 4
## 92803 3
## 92996 4
## 93277 3
## 93521 2
## 1407 4
## 1637 4
## 1913 4
## 2521 3
## 2696 4
## 3833 4
## 4211 2
## 4547 4
## 4628 4
## 4992 3
## 5713 3
## 5972 3
## 6460 5
## 6995 2
## 7077 3
## 7167 3
## 7577 4
## 7937 5
## 7986 4
## 8593 5
## 8852 3
## 9390 4
## 9709 4
## 9955 4
## 10695 3
## 11199 3
## 11445 4
## 11698 4
## 11851 4
## 12213 4
## 12928 3
## 13075 4
## 13589 2
## 13861 4
## 14228 5
## 14434 3
## 15232 2
## 16748 2
## 17368 5
## 17915 5
## 18625 5
## 18867 4
## 19040 5
## 19248 5
## 19490 4
## 19894 3
## 20036 4
## 20903 3
## 21383 5
## 21481 3
## 21718 4
## 22132 3
## 22417 3
## 22502 4
## 22710 2
## 22813 3
## 23267 4
## 23685 4
## 23889 4
## 24254 3
## 24588 4
## 24996 4
## 25737 4
## 25960 4
## 26210 4
## 26690 4
## 27563 3
## 27807 5
## 28018 2
## 28251 4
## 28392 4
## 28647 4
## 28767 3
## 28940 4
## 29183 3
## 29476 4
## 29726 5
## 30089 5
## 30828 5
## 31022 4
## 31353 4
## 31615 5
## 31815 4
## 32015 3
## 32340 5
## 32533 2
## 32628 4
## 32884 4
## 33104 3
## 33839 2
## 33944 2
## 34915 3
## 35151 3
## 35325 3
## 35517 2
## 35652 3
## 35890 4
## 36450 3
## 36821 2
## 37372 3
## 38035 4
## 38457 3
## 39467 4
## 39948 2
## 40749 3
## 41043 3
## 41395 4
## 42014 3
## 42565 2
## 42816 3
## 42966 3
## 43197 3
## 43377 3
## 43751 4
## 44774 3
## 45114 3
## 46129 4
## 46409 3
## 46829 4
## 47926 3
## 48236 4
## 48734 3
## 48850 3
## 48970 4
## 49255 4
## 50191 2
## 50497 3
## 50681 3
## 51316 1
## 51844 3
## 52266 4
## 52957 4
## 53951 4
## 54097 4
## 54244 4
## 54463 4
## 54682 3
## 55053 3
## 55227 4
## 56133 3
## 56258 2
## 57171 3
## 57319 4
## 57405 3
## 57467 3
## 57550 3
## 57680 5
## 57850 4
## 58082 4
## 58382 4
## 58512 3
## 58720 5
## 59192 4
## 59366 3
## 59605 4
## 60002 4
## 60239 3
## 60443 4
## 60627 4
## 61107 3
## 61328 4
## 61538 5
## 61569 4
## 62509 5
## 62954 3
## 63197 4
## 63314 4
## 63494 4
## 63657 4
## 63726 4
## 63861 5
## 64232 5
## 64488 4
## 64723 4
## 64897 3
## 64969 4
## 65265 4
## 65405 4
## 65476 3
## 65593 4
## 65694 4
## 65878 4
## 65972 4
## 66083 2
## 66285 4
## 66406 4
## 66534 4
## 66695 3
## 66755 4
## 66837 5
## 67011 5
## 67208 4
## 67271 5
## 67455 4
## 67532 3
## 67656 3
## 67817 4
## 68096 4
## 68228 4
## 68414 4
## 68536 3
## 68627 3
## 68710 4
## 70576 3
## 70798 3
## 71626 4
## 72003 3
## 72187 3
## 72526 3
## 73139 4
## 73251 4
## 73471 3
## 73938 3
## 74373 3
## 74446 3
## 74480 4
## 74595 3
## 74943 3
## 75065 4
## 75100 4
## 75294 4
## 75854 4
## 76009 3
## 76271 4
## 76394 3
## 76476 4
## 76598 4
## 76746 4
## 76918 5
## 77029 4
## 78672 2
## 78849 3
## 79225 3
## 79405 2
## 79508 5
## 79643 4
## 79716 4
## 79816 5
## 79920 2
## 79998 3
## 80135 4
## 81005 3
## 81225 3
## 82204 3
## 82942 3
## 84515 2
## 84762 4
## 85346 4
## 85714 3
## 86479 3
## 86591 3
## 86954 3
## 88963 3
## 89045 4
## 89103 1
## 90489 4
## 90953 3
## 91283 2
## 91784 3
## 91894 2
## 91955 2
## 92527 4
## 92626 3
## 93187 4
## 94119 3
## 94260 4
## 94378 3
## 94452 3
## 94861 4
## 94927 4
## 95005 3
## 95164 2
## 95380 3
## 95506 4
## 95665 3
## 95694 4
## 95891 3
## 95961 4
## 96124 4
## 96136 3
## 96147 3
## 96169 4
## 96179 3
## 96206 3
## 96220 4
## 96235 4
## 96242 3
## 37500 4
## 39468 5
## 39949 4
## 40750 4
## 41044 5
## 43752 3
## 44314 3
## 44775 3
## 46410 3
## 47345 3
## 49256 3
## 50318 3
## 50498 4
## 50682 2
## 51700 1
## 78043 5
## 87461 3
## 87815 2
## 88185 4
## 88201 5
## 96250 5
## 96255 5
## 463 4
## 691 5
## 1044 4
## 1408 5
## 1638 4
## 2522 3
## 3450 3
## 3545 4
## 4212 4
## 4548 4
## 5267 3
## 5406 5
## 5524 3
## 5611 3
## 6083 3
## 6217 4
## 6326 5
## 6461 5
## 7400 4
## 7578 4
## 8365 5
## 8489 4
## 8594 5
## 8971 5
## 9128 4
## 9236 3
## 9710 5
## 10160 3
## 10292 3
## 10696 5
## 11000 4
## 11200 5
## 11852 4
## 11989 5
## 12214 4
## 12472 2
## 12929 4
## 13298 5
## 13590 5
## 14435 5
## 15483 4
## 16367 4
## 16641 2
## 16749 5
## 17916 4
## 18300 3
## 18626 5
## 19041 4
## 19249 5
## 20259 4
## 21384 4
## 21482 5
## 21719 4
## 22133 3
## 22254 3
## 22503 5
## 22814 4
## 23177 4
## 23890 5
## 24589 5
## 25472 5
## 25738 4
## 25961 4
## 26211 5
## 26691 4
## 26921 4
## 27564 5
## 28019 4
## 28648 3
## 28941 5
## 29184 5
## 29477 5
## 30090 5
## 30455 2
## 30557 5
## 31023 5
## 31616 5
## 31816 5
## 32016 5
## 32341 5
## 33105 5
## 33945 4
## 34916 5
## 35152 4
## 35326 5
## 35518 3
## 35653 3
## 35756 4
## 36169 3
## 36822 3
## 37062 4
## 38698 3
## 38873 4
## 41599 3
## 41819 4
## 42817 4
## 46064 3
## 46411 3
## 48971 4
## 49446 2
## 49837 3
## 53602 4
## 53952 3
## 54464 3
## 54598 4
## 54683 5
## 54877 2
## 55228 4
## 55478 1
## 55679 2
## 55937 3
## 56259 4
## 56779 3
## 56850 4
## 57020 4
## 57320 3
## 58083 3
## 58513 4
## 59367 3
## 59606 5
## 60444 3
## 60628 4
## 62222 4
## 62955 2
## 63108 3
## 64657 5
## 64970 5
## 65594 5
## 66407 5
## 66838 4
## 67012 4
## 67456 4
## 67657 3
## 67818 5
## 68879 4
## 69354 3
## 69737 4
## 70016 4
## 70577 5
## 70799 5
## 71079 3
## 71234 3
## 71279 3
## 71371 4
## 71413 3
## 71898 4
## 72847 2
## 74210 4
## 74374 4
## 75361 5
## 75557 4
## 76272 4
## 77811 3
## 78099 5
## 78267 3
## 78850 5
## 79406 3
## 79509 4
## 79817 3
## 80136 3
## 80545 4
## 80806 4
## 81006 4
## 83874 3
## 84217 2
## 84366 4
## 84437 5
## 84526 4
## 84635 3
## 84680 4
## 84747 2
## 84919 4
## 85026 3
## 85042 4
## 85091 3
## 85185 3
## 85260 3
## 85801 3
## 86592 4
## 86862 5
## 87234 4
## 87394 4
## 89229 4
## 90061 5
## 91660 3
## 91716 3
## 92347 4
## 92804 4
## 93304 4
## 93522 3
## 93719 3
## 94302 3
## 94379 3
## 94501 2
## 94648 3
## 95258 3
## 96277 1
## 96284 3
## 96303 3
## 96312 3
## 96322 3
## 96332 3
## 96345 3
## 96364 3
## 96374 4
## 96392 3
## 96395 2
## 96408 2
## 96452 5
## 96455 4
## 40226 5
## 43753 5
## 46412 3
## 46830 4
## 47063 3
## 47861 4
## 48064 5
## 48237 3
## 48577 4
## 49257 3
## 49447 1
## 50319 5
## 52728 5
## 78673 4
## 82811 2
## 87945 3
## 88071 5
## 88502 4
## 88682 5
## 96466 5
## 44 5
## 1045 5
## 2523 2
## 2697 4
## 2896 5
## 4213 5
## 4472 3
## 6327 4
## 6462 5
## 8972 3
## 11446 4
## 11699 5
## 11990 4
## 12816 2
## 14436 5
## 15188 5
## 15484 4
## 15987 5
## 16750 5
## 17917 5
## 19600 1
## 20904 5
## 21087 5
## 24255 5
## 26212 4
## 27808 5
## 29727 5
## 30558 3
## 32534 3
## 32629 4
## 33106 5
## 33840 1
## 33946 5
## 36170 5
## 36371 5
## 36451 4
## 37220 4
## 38036 5
## 39146 5
## 40751 5
## 42015 5
## 42566 4
## 43198 4
## 46831 5
## 49448 4
## 54357 4
## 54964 5
## 55764 4
## 56260 3
## 60629 3
## 62712 5
## 67272 5
## 79090 5
## 79407 5
## 79644 5
## 79818 3
## 80222 3
## 80638 4
## 80957 3
## 81007 5
## 81359 3
## 81434 1
## 81527 2
## 83588 3
## 85347 5
## 85404 4
## 86593 2
## 87625 3
## 87946 5
## 89743 5
## 90269 3
## 90412 2
## 93650 3
## 94380 5
## 95304 3
## 976 4
## 1409 5
## 1639 4
## 1914 5
## 2015 4
## 2255 5
## 2698 5
## 3204 4
## 3292 3
## 3306 3
## 3372 4
## 3546 4
## 3834 5
## 4214 5
## 4473 4
## 4993 5
## 5037 4
## 5268 4
## 5714 4
## 5973 3
## 7078 5
## 7579 5
## 7938 5
## 8159 5
## 8238 4
## 8595 4
## 8853 4
## 9391 1
## 9711 5
## 10697 4
## 11447 5
## 11700 5
## 12215 5
## 13299 4
## 13591 5
## 13862 5
## 14437 5
## 15988 3
## 17794 2
## 17918 4
## 18521 5
## 18627 5
## 18868 5
## 19042 5
## 19250 5
## 19491 5
## 19601 5
## 19895 5
## 20037 5
## 20752 2
## 20870 3
## 20905 3
## 21088 2
## 21483 5
## 21720 5
## 21886 5
## 21988 4
## 22711 5
## 23119 4
## 23686 5
## 23800 2
## 24590 5
## 24997 3
## 25473 5
## 25610 5
## 25739 5
## 25962 4
## 26692 3
## 27328 5
## 27809 4
## 28252 5
## 28393 5
## 28649 4
## 28768 4
## 28942 5
## 29478 4
## 29728 5
## 29954 5
## 30091 5
## 30559 3
## 30829 5
## 31617 3
## 31817 5
## 32342 5
## 32535 4
## 32630 5
## 32885 2
## 33107 5
## 33497 5
## 33774 4
## 33841 4
## 34283 4
## 35891 4
## 36452 4
## 37373 5
## 37501 4
## 37803 3
## 39469 3
## 39950 2
## 40752 5
## 41045 4
## 41396 5
## 41600 3
## 42016 5
## 42292 4
## 43568 5
## 43754 5
## 44201 4
## 44776 3
## 46413 3
## 46832 4
## 47064 5
## 47584 4
## 47683 5
## 47927 3
## 48065 4
## 48141 4
## 48238 5
## 48735 5
## 48851 4
## 48972 5
## 49610 4
## 49838 3
## 50683 3
## 51845 4
## 52462 4
## 52729 3
## 52843 4
## 52958 5
## 53603 4
## 54465 5
## 54684 4
## 54965 5
## 55765 5
## 57933 4
## 58084 5
## 58383 4
## 58514 5
## 58941 3
## 59368 3
## 59607 5
## 60003 4
## 60240 5
## 60866 2
## 61329 5
## 61539 5
## 62006 4
## 62510 5
## 62713 3
## 63198 5
## 63315 5
## 63495 5
## 63658 5
## 63727 5
## 63862 5
## 64233 5
## 64357 5
## 64489 5
## 64553 5
## 64604 5
## 64658 4
## 64782 5
## 64839 5
## 64971 4
## 65187 5
## 65266 5
## 65406 5
## 65477 5
## 65810 5
## 65879 5
## 65973 5
## 66286 5
## 66535 5
## 66696 4
## 66839 3
## 67013 5
## 67209 5
## 67273 3
## 67367 2
## 67457 5
## 67658 4
## 67819 4
## 68097 5
## 68229 5
## 68415 5
## 68537 5
## 68628 3
## 68711 4
## 69227 3
## 69589 3
## 69952 2
## 70800 5
## 72880 5
## 72943 5
## 73140 5
## 73252 5
## 73312 5
## 73413 5
## 73472 5
## 73511 5
## 73585 4
## 73611 4
## 73786 4
## 73803 5
## 74481 5
## 74596 5
## 74944 5
## 75192 5
## 75295 5
## 75362 4
## 75482 5
## 75558 5
## 75727 4
## 75855 5
## 76222 5
## 76273 5
## 76477 4
## 76599 4
## 76747 5
## 76833 5
## 77512 2
## 78100 3
## 78674 4
## 78851 4
## 78999 3
## 79283 4
## 79454 3
## 79510 5
## 79645 5
## 79717 5
## 79819 5
## 80051 4
## 80490 3
## 80931 5
## 81008 5
## 81528 5
## 82812 4
## 83151 4
## 83589 3
## 85306 4
## 85348 4
## 85692 3
## 86318 5
## 86345 5
## 86799 5
## 86955 5
## 87112 4
## 87626 1
## 87816 3
## 88202 3
## 88455 3
## 88570 4
## 88663 4
## 88683 3
## 88701 4
## 88729 2
## 89046 5
## 89974 4
## 90102 5
## 90475 4
## 90583 4
## 90720 2
## 90784 5
## 90793 5
## 90815 5
## 90954 4
## 90989 4
## 91495 3
## 91631 4
## 91761 2
## 92589 5
## 93188 5
## 93440 2
## 93651 4
## 94602 4
## 94843 4
## 94928 4
## 95073 3
## 95417 4
## 95583 3
## 95666 3
## 95695 2
## 96469 5
## 96482 4
## 96492 4
## 96523 5
## 96534 4
## 96537 4
## 96582 5
## 96589 5
## 96612 4
## 96619 5
## 96620 5
## 96628 5
## 96649 4
## 96667 3
## 96673 2
## 3547 5
## 4629 4
## 5038 5
## 6463 5
## 7580 1
## 8596 4
## 9392 5
## 10698 5
## 11201 5
## 13592 5
## 13863 5
## 14229 2
## 17919 5
## 18522 2
## 18628 3
## 19043 4
## 19251 4
## 19492 4
## 20038 4
## 22504 3
## 23891 4
## 24591 5
## 25203 5
## 26213 5
## 26693 4
## 26922 5
## 27810 5
## 28650 4
## 28769 3
## 29185 5
## 31024 4
## 31354 5
## 32017 5
## 32343 2
## 35327 4
## 35892 5
## 40359 4
## 40469 5
## 44777 4
## 45539 3
## 46414 4
## 48239 4
## 48973 5
## 49611 4
## 49839 2
## 50320 3
## 50499 4
## 50684 4
## 51045 5
## 51317 5
## 51701 4
## 52093 4
## 52665 4
## 52959 5
## 55054 2
## 57551 2
## 58085 5
## 58515 4
## 58843 4
## 59608 4
## 62511 3
## 63316 4
## 63496 4
## 63728 3
## 63863 4
## 64097 4
## 64898 4
## 65267 3
## 65478 2
## 65695 3
## 65974 4
## 66408 3
## 66536 5
## 67014 5
## 67533 4
## 68098 4
## 68230 4
## 68538 4
## 70801 2
## 72856 4
## 72944 5
## 73552 4
## 73612 4
## 73722 4
## 73804 3
## 75559 5
## 76274 4
## 76834 4
## 77942 2
## 78044 3
## 78578 5
## 81226 4
## 82461 2
## 82813 5
## 91380 2
## 93745 3
## 95422 1
## 96470 4
## 45 4
## 464 3
## 692 4
## 890 4
## 1046 4
## 1410 5
## 1640 4
## 2016 4
## 2256 5
## 2524 4
## 2897 3
## 3548 3
## 4020 3
## 4215 3
## 4630 3
## 4883 3
## 5039 4
## 5193 3
## 5407 3
## 5525 3
## 5612 3
## 5715 4
## 5849 3
## 5892 3
## 6046 4
## 6084 4
## 6218 4
## 6328 3
## 6464 5
## 6996 4
## 7168 3
## 7294 3
## 7401 3
## 7581 5
## 7987 4
## 8366 3
## 8490 3
## 8597 4
## 8854 4
## 8973 3
## 9129 3
## 9237 3
## 9393 5
## 9956 5
## 10161 3
## 10293 3
## 10488 3
## 10633 3
## 10699 4
## 11001 2
## 11075 3
## 11202 2
## 11632 3
## 11853 3
## 11991 3
## 12216 5
## 12571 3
## 12708 4
## 12817 4
## 12930 3
## 13076 3
## 13300 4
## 13864 5
## 14438 5
## 14900 2
## 14974 2
## 15123 3
## 15233 2
## 15310 3
## 15485 3
## 15822 3
## 15852 3
## 15989 4
## 16368 2
## 16642 2
## 16751 5
## 17141 3
## 17251 2
## 17369 4
## 17564 4
## 18373 4
## 18629 3
## 19044 4
## 19252 4
## 20039 3
## 20260 4
## 20489 2
## 20569 2
## 20753 2
## 20871 3
## 21484 4
## 21721 4
## 21887 2
## 21989 4
## 22134 4
## 22315 4
## 22418 4
## 22505 2
## 22909 4
## 23178 3
## 23268 4
## 23566 5
## 23801 4
## 23892 4
## 24256 3
## 24592 5
## 24998 4
## 25204 5
## 25740 5
## 25963 5
## 26214 4
## 26694 4
## 26923 4
## 27198 3
## 27565 4
## 28185 4
## 28253 4
## 28394 4
## 28770 4
## 29186 5
## 29479 4
## 29955 5
## 30092 3
## 30257 3
## 30456 3
## 30560 3
## 30830 4
## 31025 4
## 31618 4
## 31818 5
## 32018 4
## 32536 4
## 32759 4
## 32886 4
## 33108 3
## 33377 3
## 33498 4
## 33668 4
## 33775 1
## 33947 4
## 34284 5
## 34471 3
## 34573 3
## 34746 1
## 34917 4
## 35153 3
## 35328 3
## 35519 3
## 35757 3
## 35893 4
## 36171 3
## 36453 4
## 36823 5
## 37063 4
## 37221 2
## 37374 3
## 37619 1
## 37804 4
## 38037 4
## 38163 4
## 38323 3
## 38458 4
## 38699 4
## 39147 2
## 39470 4
## 40106 1
## 40470 4
## 41189 2
## 41601 4
## 41820 4
## 42293 5
## 42634 3
## 42818 3
## 42967 4
## 43378 2
## 44315 3
## 44778 3
## 45115 4
## 45540 3
## 45985 2
## 47346 4
## 47684 4
## 48240 5
## 48974 2
## 49612 3
## 50685 3
## 52844 3
## 53408 3
## 53454 3
## 53604 3
## 53756 1
## 53790 3
## 53846 1
## 54056 3
## 54466 4
## 54566 1
## 54685 4
## 54878 3
## 55229 3
## 55479 3
## 55680 3
## 55766 3
## 55938 4
## 56261 2
## 56571 2
## 56671 4
## 56780 3
## 56851 3
## 57021 4
## 57172 2
## 57552 3
## 57934 4
## 58086 3
## 58384 4
## 58721 4
## 59032 4
## 59193 3
## 59369 5
## 59810 4
## 60445 3
## 60558 2
## 60630 3
## 60789 2
## 60852 1
## 60895 2
## 61033 2
## 61476 4
## 61654 4
## 62007 4
## 62512 4
## 62714 5
## 62956 2
## 65479 2
## 65696 3
## 66084 5
## 67015 4
## 67368 5
## 67659 4
## 68231 3
## 68416 4
## 68712 4
## 69084 2
## 69355 2
## 69881 2
## 69903 3
## 70017 2
## 70158 3
## 70232 3
## 70385 3
## 70578 4
## 70802 3
## 71235 2
## 71280 2
## 71372 3
## 71557 4
## 71627 5
## 71783 3
## 71969 3
## 72263 4
## 72455 3
## 72527 2
## 72661 2
## 73822 4
## 73885 3
## 74127 3
## 74211 4
## 74482 4
## 74774 3
## 74986 5
## 75101 3
## 75560 4
## 76010 4
## 76395 3
## 76600 4
## 76919 4
## 77079 3
## 77258 3
## 77323 4
## 77406 4
## 77604 2
## 77812 4
## 78101 3
## 78268 3
## 78852 4
## 79408 3
## 79476 3
## 79646 4
## 79718 4
## 79820 2
## 79999 3
## 80137 4
## 80285 3
## 80408 3
## 80546 3
## 80712 3
## 80743 4
## 80807 3
## 80857 4
## 80958 4
## 81009 3
## 81227 3
## 81435 4
## 81529 2
## 81827 3
## 82073 2
## 82345 4
## 82462 3
## 83239 3
## 83339 3
## 83462 1
## 83539 2
## 83705 3
## 84077 1
## 84261 4
## 84367 3
## 84438 3
## 84527 3
## 84566 3
## 84636 5
## 84681 3
## 84855 3
## 85002 3
## 85043 2
## 85611 1
## 85724 4
## 85853 4
## 85935 2
## 86120 2
## 86281 1
## 86433 3
## 86594 3
## 86755 3
## 86956 5
## 89007 1
## 89187 3
## 89230 3
## 89329 3
## 89476 2
## 89555 1
## 89670 2
## 90203 4
## 90270 3
## 90490 4
## 90687 4
## 90744 5
## 91020 2
## 91109 2
## 91218 3
## 91284 2
## 91349 2
## 91562 4
## 91691 2
## 92000 3
## 92095 4
## 92229 3
## 92348 2
## 92528 4
## 92694 2
## 92805 2
## 92997 2
## 93146 2
## 93278 3
## 93305 3
## 93364 3
## 93465 3
## 93523 1
## 93720 1
## 93828 2
## 94312 5
## 94381 3
## 94502 3
## 94684 3
## 94812 2
## 95788 4
## 95996 2
## 96493 4
## 96692 3
## 96709 4
## 96729 1
## 96744 1
## 96782 3
## 96794 3
## 96800 2
## 96806 2
## 96815 2
## 96845 4
## 46 5
## 2699 4
## 2898 5
## 16369 3
## 16752 3
## 17565 1
## 21089 1
## 33948 4
## 36172 4
## 42017 4
## 42294 2
## 43199 4
## 57173 2
## 62957 4
## 63109 5
## 85405 4
## 85612 3
## 86595 4
## 87235 2
## 89671 3
## 47 4
## 693 4
## 1047 4
## 1411 5
## 1641 5
## 2017 5
## 2257 4
## 3205 2
## 3549 4
## 3835 5
## 4021 4
## 4216 3
## 4631 4
## 4884 2
## 5040 4
## 5194 5
## 5269 3
## 5359 1
## 5408 2
## 5526 3
## 5663 3
## 5716 4
## 5974 5
## 6085 5
## 6329 4
## 6465 5
## 6997 3
## 7079 5
## 7169 4
## 7295 4
## 7402 4
## 7582 5
## 7988 5
## 8302 5
## 8367 3
## 8491 3
## 8598 5
## 8974 2
## 9130 3
## 9238 4
## 9394 3
## 9712 4
## 9957 4
## 10162 3
## 10424 4
## 10489 3
## 10700 4
## 11002 2
## 11076 4
## 11203 4
## 11448 4
## 11701 5
## 11992 3
## 12217 3
## 12473 3
## 12572 5
## 12709 4
## 12818 4
## 12931 2
## 13301 3
## 13593 4
## 13865 4
## 14230 3
## 14439 5
## 14901 2
## 14975 3
## 15311 4
## 15486 4
## 16370 3
## 16753 2
## 17566 1
## 17920 5
## 18630 4
## 18869 4
## 19045 5
## 19253 4
## 19964 3
## 20040 4
## 20261 3
## 21090 5
## 21485 5
## 21722 5
## 21888 2
## 21990 5
## 22135 5
## 22316 3
## 22419 4
## 22506 3
## 22910 3
## 23269 5
## 23687 5
## 23893 4
## 24257 4
## 24593 4
## 24999 4
## 25205 4
## 25474 5
## 25741 5
## 25964 5
## 26215 4
## 26695 5
## 26924 5
## 27199 2
## 27329 5
## 27566 4
## 27811 4
## 28020 4
## 28254 5
## 28395 5
## 28651 4
## 28771 5
## 28943 4
## 29187 3
## 29480 4
## 30258 4
## 30457 4
## 30561 2
## 30831 5
## 31026 4
## 31483 4
## 31619 4
## 31819 5
## 32019 4
## 32344 5
## 32760 5
## 32887 4
## 33109 3
## 33378 4
## 33499 3
## 33669 4
## 33949 3
## 34285 5
## 34472 3
## 34574 2
## 34747 3
## 34918 4
## 35154 3
## 35329 2
## 35654 3
## 35758 3
## 35894 5
## 36173 4
## 36824 5
## 37375 4
## 37805 1
## 38038 4
## 38164 4
## 38459 4
## 39148 4
## 39471 5
## 40107 2
## 40471 4
## 41602 4
## 41821 4
## 42819 3
## 42968 3
## 43755 4
## 44316 3
## 45350 4
## 47065 4
## 48241 4
## 48852 5
## 48975 5
## 50686 3
## 51553 3
## 51702 4
## 52094 4
## 52333 4
## 52463 5
## 52796 2
## 52845 4
## 52960 5
## 53494 3
## 53539 3
## 53605 4
## 53757 2
## 53791 1
## 53953 4
## 54245 3
## 54358 4
## 54686 2
## 54879 4
## 55077 5
## 55091 3
## 55153 3
## 55230 3
## 55571 4
## 55681 4
## 55767 4
## 55939 3
## 56134 4
## 56262 3
## 56852 4
## 57022 3
## 57174 2
## 57468 3
## 57553 3
## 57681 3
## 57851 4
## 57935 4
## 58087 4
## 58385 5
## 58722 5
## 59033 4
## 59194 4
## 59370 4
## 59609 4
## 59811 5
## 60004 4
## 60241 4
## 60357 5
## 60631 4
## 60896 3
## 61108 4
## 61540 5
## 61570 5
## 61705 4
## 61815 4
## 61884 4
## 62008 4
## 62223 3
## 62513 5
## 62715 5
## 63110 2
## 63864 5
## 64098 5
## 64972 3
## 65480 4
## 65697 5
## 65880 5
## 66085 5
## 66287 5
## 66409 5
## 67369 5
## 68019 5
## 68232 5
## 68417 5
## 68943 4
## 69128 3
## 69249 3
## 69356 3
## 69641 5
## 69738 1
## 69953 3
## 70123 3
## 70233 4
## 70386 3
## 70441 3
## 70579 2
## 70803 3
## 71016 1
## 71156 3
## 71281 2
## 71558 4
## 71784 3
## 71821 4
## 71899 3
## 71936 1
## 71970 4
## 72004 4
## 72188 5
## 72662 2
## 72945 4
## 73723 4
## 73939 3
## 74016 2
## 74045 4
## 74128 3
## 74375 4
## 74483 5
## 74775 4
## 74863 3
## 75102 4
## 75193 5
## 75254 5
## 75296 5
## 75483 5
## 75561 5
## 75728 4
## 75856 5
## 76011 4
## 76275 5
## 76396 3
## 77080 3
## 77324 3
## 77407 3
## 77813 4
## 78102 4
## 78269 4
## 78415 4
## 78675 4
## 78853 4
## 79000 4
## 79148 4
## 79376 2
## 79455 3
## 79921 3
## 80138 4
## 80223 3
## 80409 1
## 80491 2
## 80547 2
## 80602 3
## 80744 5
## 80808 2
## 80959 3
## 81010 3
## 81228 5
## 81360 5
## 81436 4
## 81491 2
## 81530 2
## 81755 4
## 81828 3
## 82117 4
## 82226 4
## 82814 4
## 83706 3
## 83875 3
## 83929 3
## 84368 3
## 84528 2
## 84603 3
## 84637 4
## 84763 4
## 84956 2
## 85003 3
## 85128 4
## 85186 2
## 85216 2
## 85261 3
## 85349 5
## 85613 1
## 85725 3
## 85802 4
## 86082 2
## 87075 2
## 87141 2
## 88964 5
## 89047 5
## 89330 3
## 89477 2
## 89609 2
## 89838 4
## 89975 4
## 90019 3
## 90062 1
## 90149 3
## 90271 5
## 90371 3
## 90601 5
## 90688 4
## 90877 4
## 91563 4
## 91675 4
## 91751 3
## 91808 4
## 91895 4
## 91956 4
## 92001 4
## 92096 4
## 92230 4
## 92806 2
## 92979 2
## 93401 4
## 93441 4
## 93466 2
## 93652 4
## 93941 4
## 94120 4
## 94313 5
## 94382 2
## 94649 2
## 94722 3
## 94929 3
## 95102 4
## 95259 4
## 95305 4
## 95619 4
## 95761 2
## 95861 4
## 95962 4
## 96409 3
## 96590 3
## 96674 3
## 96730 2
## 96745 3
## 96783 5
## 96851 3
## 96890 4
## 96916 4
## 96936 3
## 96966 3
## 97005 3
## 97030 4
## 97034 3
## 97046 3
## 97060 4
## 48 5
## 465 2
## 592 1
## 1048 5
## 1412 5
## 2700 5
## 2899 4
## 3550 4
## 4022 3
## 4217 3
## 4474 3
## 4632 4
## 5041 4
## 5195 1
## 5270 3
## 5850 2
## 6219 4
## 6330 3
## 6466 5
## 6998 4
## 7080 4
## 7989 3
## 8368 4
## 8492 3
## 8599 5
## 8855 4
## 9131 2
## 9239 4
## 9395 5
## 9713 4
## 9958 5
## 10163 2
## 10294 4
## 10490 4
## 10634 3
## 10701 4
## 11204 3
## 11449 5
## 11993 4
## 12218 3
## 12474 2
## 12573 5
## 12932 5
## 13077 3
## 13302 4
## 13594 4
## 13866 4
## 14231 4
## 14902 1
## 14976 4
## 15428 2
## 15487 4
## 15990 4
## 16754 4
## 17921 4
## 18301 3
## 18631 3
## 18870 3
## 19254 3
## 19602 3
## 19781 4
## 19831 3
## 19896 4
## 19965 4
## 20041 4
## 20262 5
## 21091 4
## 21486 5
## 22507 3
## 23270 4
## 23688 5
## 23894 4
## 24258 5
## 24594 5
## 25000 5
## 25206 3
## 25475 3
## 25611 5
## 25742 3
## 25965 3
## 26216 4
## 26696 2
## 26925 5
## 27330 3
## 27567 5
## 28021 3
## 28255 4
## 28396 5
## 28772 3
## 28944 5
## 29188 5
## 29481 4
## 29729 4
## 29956 5
## 30093 5
## 30259 2
## 30562 4
## 30832 3
## 31027 5
## 31355 3
## 31534 5
## 31620 4
## 31820 4
## 32020 5
## 32345 3
## 32888 4
## 33110 5
## 33670 4
## 34575 4
## 34748 2
## 34919 4
## 35155 3
## 35655 4
## 35759 4
## 35895 2
## 36454 2
## 36825 5
## 37064 3
## 37376 3
## 38460 4
## 39149 5
## 40472 3
## 41822 4
## 42018 3
## 42969 4
## 43756 5
## 44779 2
## 45021 3
## 45541 2
## 50687 5
## 52846 4
## 52961 4
## 53540 4
## 53887 2
## 54098 4
## 54359 4
## 54687 4
## 54880 2
## 55055 4
## 55092 2
## 55154 3
## 55231 5
## 55421 3
## 55542 1
## 55572 4
## 55768 3
## 55940 1
## 56135 5
## 56263 3
## 57375 3
## 57406 4
## 57469 3
## 57682 4
## 57852 4
## 58030 2
## 58088 5
## 59034 3
## 59195 3
## 59371 4
## 59812 5
## 60005 3
## 60201 4
## 60242 2
## 60358 3
## 60446 3
## 60559 2
## 60632 3
## 61330 4
## 61477 5
## 61571 3
## 62009 5
## 62224 5
## 62383 4
## 62514 4
## 63865 3
## 64234 5
## 64659 4
## 64899 4
## 64973 4
## 65268 3
## 65811 3
## 65881 3
## 65975 4
## 66288 4
## 66410 4
## 66537 4
## 66840 2
## 67016 5
## 67370 4
## 67534 4
## 67820 4
## 68233 4
## 68828 4
## 69045 4
## 69178 2
## 69357 2
## 69739 4
## 69904 1
## 70018 3
## 70359 1
## 70580 2
## 70804 4
## 71189 1
## 71937 2
## 72005 3
## 72264 5
## 72528 2
## 72663 3
## 73940 4
## 73978 3
## 74046 4
## 74129 4
## 74484 4
## 74776 1
## 74987 3
## 75363 3
## 75429 4
## 75484 4
## 75562 5
## 76012 4
## 76276 5
## 76601 5
## 77081 2
## 77211 3
## 77408 2
## 77456 2
## 77814 2
## 78045 4
## 78854 4
## 79284 2
## 79511 5
## 79647 3
## 79719 2
## 80000 2
## 80139 1
## 80224 3
## 80410 2
## 80809 3
## 81361 4
## 81437 3
## 81531 3
## 81829 4
## 82346 5
## 83930 1
## 84331 3
## 84439 2
## 84617 2
## 84748 3
## 85406 3
## 86505 4
## 86957 3
## 87096 1
## 87777 1
## 88265 3
## 90150 3
## 90663 2
## 90853 5
## 90955 3
## 91095 2
## 92529 3
## 93524 3
## 94685 1
## 94723 3
## 94930 2
## 95225 4
## 95423 4
## 95553 3
## 96410 2
## 96675 4
## 96852 3
## 96917 1
## 96967 4
## 97006 2
## 97092 2
## 97100 3
## 97148 2
## 97161 1
## 97179 1
## 49 5
## 1049 5
## 1413 5
## 3836 5
## 5717 1
## 6467 5
## 7583 5
## 8600 5
## 10702 4
## 11450 3
## 11854 4
## 12219 5
## 12574 5
## 13303 4
## 13867 5
## 14440 5
## 17922 5
## 20263 4
## 21487 4
## 21991 4
## 23689 5
## 24259 3
## 24595 5
## 25207 4
## 26217 5
## 26697 4
## 26926 4
## 27331 5
## 27812 5
## 28256 4
## 28945 2
## 29189 5
## 29482 4
## 29957 5
## 30260 5
## 33111 4
## 35896 4
## 36826 4
## 40473 5
## 48976 5
## 58089 5
## 59610 3
## 60202 4
## 62515 4
## 63199 2
## 63317 4
## 63866 5
## 64099 5
## 64358 3
## 66841 4
## 67458 4
## 68020 2
## 75225 5
## 77325 4
## 95980 5
## 97201 5
## 50 4
## 1050 5
## 3837 5
## 4633 5
## 5196 5
## 6468 5
## 9396 5
## 10703 5
## 11205 4
## 11451 1
## 12220 5
## 13304 5
## 13595 5
## 13868 4
## 14441 2
## 15823 5
## 18632 5
## 18871 1
## 19255 5
## 21488 5
## 23271 4
## 23567 5
## 23895 4
## 24260 3
## 24596 4
## 25001 5
## 26927 5
## 27568 3
## 28186 4
## 28397 5
## 28652 1
## 28773 4
## 28946 3
## 29190 5
## 29730 3
## 30563 5
## 31028 5
## 31356 2
## 31621 5
## 33950 5
## 34920 5
## 52962 5
## 56672 5
## 58090 5
## 58723 4
## 58844 4
## 58942 5
## 59035 3
## 59196 4
## 59528 4
## 59611 4
## 61655 3
## 63729 5
## 64100 3
## 64974 2
## 68099 3
## 72946 4
## 76013 5
## 76748 5
## 76920 5
## 88869 5
## 95424 3
## 4218 5
## 6086 4
## 9714 3
## 11994 3
## 15853 5
## 21385 3
## 22815 3
## 23272 2
## 24261 1
## 28947 5
## 31821 2
## 32021 4
## 32346 4
## 49449 3
## 49613 3
## 58724 5
## 59612 5
## 65595 2
## 66842 5
## 67274 5
## 67821 5
## 74376 5
## 76014 3
## 76478 5
## 82205 3
## 89811 3
## 91381 1
## 51 4
## 593 3
## 694 5
## 1051 4
## 2018 5
## 2258 5
## 3551 5
## 4219 3
## 4634 3
## 6469 5
## 7584 5
## 8601 5
## 8975 3
## 9397 4
## 10704 4
## 12710 4
## 13869 5
## 14442 5
## 15047 2
## 15189 3
## 15488 1
## 15854 2
## 15991 5
## 16371 2
## 16643 2
## 16755 3
## 17252 3
## 17370 2
## 17567 4
## 20570 5
## 23273 5
## 23896 5
## 24262 4
## 24597 5
## 26218 5
## 26698 4
## 29483 4
## 30458 3
## 30833 4
## 31029 4
## 32022 5
## 35656 4
## 36455 5
## 36827 4
## 37222 4
## 37806 3
## 38039 3
## 38943 3
## 39472 5
## 40474 3
## 41603 5
## 41823 1
## 42019 1
## 42295 2
## 42970 3
## 44317 4
## 45022 4
## 45542 4
## 46415 4
## 47928 3
## 48142 2
## 48242 5
## 48578 4
## 49614 3
## 50321 3
## 50688 4
## 50959 4
## 51046 3
## 51161 3
## 51703 4
## 52034 1
## 52267 3
## 52334 4
## 52730 2
## 53209 2
## 53409 4
## 53606 4
## 53792 4
## 55769 4
## 55941 4
## 56264 4
## 56572 3
## 56781 2
## 56853 5
## 57266 3
## 57936 3
## 59372 4
## 61034 3
## 62010 4
## 62225 3
## 62384 4
## 62716 5
## 66086 4
## 69250 4
## 69358 4
## 72265 4
## 72456 4
## 72664 4
## 73823 4
## 74212 4
## 75563 5
## 77513 4
## 77605 2
## 77943 2
## 78270 3
## 79091 1
## 81756 3
## 81830 5
## 82463 4
## 82943 4
## 83590 2
## 83707 5
## 84369 5
## 84638 4
## 85407 2
## 86015 3
## 86083 4
## 86596 3
## 87395 2
## 87504 1
## 88351 3
## 89231 3
## 89556 2
## 90745 3
## 91053 3
## 91157 3
## 92349 5
## 93525 4
## 93653 4
## 93829 1
## 94186 4
## 94503 3
## 95306 4
## 95519 4
## 39473 4
## 40680 2
## 40753 4
## 41046 3
## 41190 3
## 41397 4
## 43757 3
## 44318 2
## 44780 3
## 45240 2
## 45543 4
## 46416 4
## 47066 4
## 47929 3
## 48243 5
## 48579 5
## 48736 5
## 49450 1
## 49840 3
## 50322 3
## 50689 4
## 51318 3
## 51846 3
## 52035 3
## 52209 4
## 52335 3
## 52464 4
## 52592 3
## 52731 2
## 52797 4
## 77606 3
## 78579 3
## 78676 4
## 78818 4
## 82815 4
## 82944 4
## 83112 4
## 87585 1
## 87817 4
## 87947 1
## 88056 2
## 88072 3
## 88123 2
## 88266 2
## 88352 2
## 88503 4
## 88571 4
## 88702 3
## 88751 1
## 91496 3
## 97218 3
## 97224 1
## 97232 4
## 97233 3
## 97234 3
## 97240 2
## 52 3
## 1052 3
## 4023 4
## 6470 4
## 15312 2
## 15489 2
## 15992 4
## 16372 3
## 16756 4
## 17142 1
## 17253 2
## 17568 4
## 20571 4
## 21092 3
## 26219 4
## 33951 3
## 34473 3
## 36456 5
## 38700 3
## 38944 4
## 39150 4
## 42635 2
## 42727 3
## 42820 2
## 42971 3
## 43379 4
## 44319 4
## 47347 3
## 53793 2
## 53847 2
## 56265 4
## 57023 2
## 57175 2
## 62011 3
## 62226 3
## 69359 4
## 72457 2
## 72529 3
## 72665 3
## 80286 3
## 81831 4
## 83340 3
## 83708 3
## 85408 3
## 85558 1
## 85614 3
## 85936 3
## 86084 3
## 86121 3
## 86379 3
## 86434 2
## 86597 3
## 86756 3
## 87236 4
## 89104 4
## 89232 3
## 89331 2
## 91054 2
## 91185 2
## 91896 2
## 92807 3
## 93027 2
## 93526 2
## 93787 2
## 93920 2
## 94778 1
## 95520 3
## 53 3
## 466 2
## 695 2
## 891 3
## 1053 2
## 2019 3
## 2525 3
## 4885 1
## 5409 2
## 6087 2
## 6331 2
## 6471 4
## 7170 2
## 7403 3
## 7585 3
## 8369 3
## 8976 3
## 9132 1
## 9240 2
## 9715 3
## 10164 3
## 10295 3
## 10705 2
## 11206 2
## 11452 3
## 11995 3
## 12221 4
## 12575 3
## 12933 2
## 13078 4
## 13305 3
## 13870 4
## 14232 2
## 14903 4
## 14977 3
## 15993 3
## 16373 3
## 16757 3
## 17923 2
## 20264 3
## 21489 2
## 21723 3
## 22508 2
## 22816 2
## 22911 3
## 23179 2
## 23274 3
## 23897 3
## 24263 3
## 24598 4
## 25002 4
## 25208 3
## 26220 2
## 26699 3
## 26928 4
## 27200 2
## 27332 3
## 27569 4
## 27813 3
## 28022 2
## 28948 3
## 29191 4
## 30261 3
## 30459 2
## 30564 4
## 31030 4
## 31622 4
## 32023 3
## 32347 3
## 33379 2
## 33500 3
## 33671 2
## 33952 3
## 34576 2
## 34749 4
## 34921 4
## 35156 3
## 35330 2
## 35520 2
## 35760 3
## 35897 3
## 36174 3
## 37065 3
## 37377 3
## 37807 3
## 38165 3
## 39474 4
## 40108 2
## 40360 2
## 40475 3
## 40754 2
## 41191 2
## 41398 3
## 41604 3
## 43758 3
## 44320 2
## 45544 2
## 46130 3
## 46417 3
## 46833 3
## 47067 3
## 47685 4
## 48244 3
## 48737 3
## 49258 4
## 49615 3
## 50323 3
## 50500 2
## 50690 2
## 51162 3
## 51554 2
## 51704 2
## 52624 3
## 53210 3
## 53410 2
## 53982 2
## 54599 2
## 54688 3
## 54881 2
## 55093 2
## 55232 3
## 55480 2
## 55573 2
## 55942 3
## 56266 2
## 56782 2
## 57024 2
## 57554 3
## 59036 3
## 59197 3
## 59613 3
## 59813 2
## 60006 3
## 60156 1
## 60203 2
## 60243 4
## 60359 3
## 60447 4
## 60560 1
## 62958 3
## 65481 2
## 65596 3
## 66411 4
## 66538 3
## 67017 1
## 67771 3
## 67974 3
## 68629 3
## 69129 2
## 69360 3
## 69625 2
## 69740 2
## 70019 2
## 70234 3
## 70546 2
## 70581 2
## 70805 2
## 71282 2
## 71373 3
## 71414 2
## 72006 4
## 72530 2
## 72666 3
## 73553 4
## 74047 3
## 74377 3
## 74747 2
## 74777 3
## 75485 3
## 75729 2
## 76015 3
## 76921 3
## 77082 1
## 77177 3
## 77212 3
## 77259 1
## 77457 3
## 78103 2
## 78271 3
## 78416 3
## 78580 3
## 80411 2
## 81011 3
## 81188 2
## 82227 2
## 82464 3
## 82945 3
## 83496 1
## 83931 2
## 84078 2
## 84262 3
## 84567 2
## 84764 3
## 84957 2
## 85217 3
## 85262 2
## 85726 3
## 86016 2
## 86122 2
## 86380 2
## 86435 2
## 87022 2
## 87237 2
## 87818 3
## 88267 2
## 89478 2
## 90204 3
## 91350 1
## 91564 2
## 92739 2
## 92953 1
## 93830 2
## 94459 2
## 97101 1
## 97248 2
## 97266 2
## 4024 4
## 6472 5
## 7586 5
## 9398 3
## 13306 4
## 13871 3
## 15994 4
## 16374 3
## 16758 3
## 17795 5
## 17924 4
## 20265 4
## 26221 4
## 31031 3
## 32348 3
## 33953 3
## 35898 3
## 38461 4
## 38701 2
## 38945 5
## 39151 3
## 45545 4
## 46418 3
## 46834 4
## 56267 3
## 62012 4
## 64418 4
## 68234 5
## 94650 1
## 594 3
## 1054 3
## 1642 2
## 1915 2
## 2526 3
## 2900 5
## 4220 3
## 6473 5
## 14443 4
## 15490 1
## 15995 2
## 16759 2
## 17143 3
## 17371 2
## 17796 4
## 17925 3
## 18489 1
## 20572 3
## 20906 5
## 26222 5
## 33954 3
## 36175 2
## 36457 3
## 37808 2
## 38040 3
## 38166 2
## 38324 3
## 38462 3
## 38946 1
## 39152 4
## 39475 3
## 40755 5
## 41047 4
## 41192 1
## 41399 4
## 41605 3
## 42296 4
## 42972 3
## 43200 4
## 43569 4
## 43759 1
## 44202 2
## 44321 2
## 44781 4
## 45023 4
## 45351 3
## 45546 3
## 46312 3
## 46419 3
## 46835 2
## 47068 5
## 47686 2
## 47930 2
## 48066 1
## 48143 3
## 48245 4
## 48738 4
## 50068 1
## 50192 1
## 50501 2
## 50691 3
## 51001 1
## 51047 3
## 51163 2
## 51319 2
## 51847 3
## 52036 3
## 52268 4
## 52336 3
## 52465 2
## 52732 3
## 56268 3
## 56616 2
## 57025 1
## 57176 3
## 61035 3
## 62013 3
## 62717 4
## 66087 2
## 68865 2
## 69251 3
## 69361 1
## 72266 4
## 74213 4
## 77607 2
## 80052 3
## 82118 1
## 82465 2
## 82816 5
## 82946 4
## 83341 2
## 85727 1
## 85854 1
## 86017 2
## 86381 1
## 86598 3
## 86800 2
## 87396 2
## 88353 2
## 89233 1
## 91285 1
## 91957 1
## 92002 3
## 92097 4
## 92350 1
## 92479 1
## 92808 2
## 95196 4
## 97061 3
## 97292 1
## 39476 5
## 40361 2
## 40756 4
## 41048 5
## 41193 2
## 41400 4
## 43760 4
## 44322 4
## 47069 5
## 47687 2
## 48246 5
## 50069 4
## 50502 4
## 51320 3
## 51848 3
## 52095 2
## 52466 3
## 78677 3
## 82466 2
## 82947 2
## 83113 3
## 87948 3
## 54 4
## 1414 4
## 1643 4
## 2259 4
## 2701 4
## 2901 3
## 3552 4
## 4221 4
## 4635 4
## 5975 3
## 6220 3
## 8160 4
## 8602 4
## 9399 4
## 9716 3
## 10491 4
## 11207 3
## 11702 3
## 11996 3
## 13596 5
## 14444 3
## 15190 4
## 22509 3
## 22712 5
## 23053 5
## 28398 5
## 28949 5
## 29484 5
## 32024 4
## 32349 4
## 32631 4
## 33112 5
## 34286 4
## 37739 4
## 41606 3
## 41824 3
## 42020 4
## 42728 2
## 43570 4
## 43761 4
## 48247 4
## 48977 5
## 59614 3
## 61478 3
## 64900 4
## 68100 4
## 70582 4
## 71628 4
## 71822 4
## 75297 3
## 76602 4
## 78104 4
## 78855 3
## 79285 4
## 79456 4
## 80001 3
## 81532 3
## 84263 4
## 86070 2
## 89048 4
## 90537 3
## 92809 3
## 95197 4
## 97298 4
## 39477 4
## 39951 2
## 40362 3
## 40757 5
## 41194 2
## 43762 2
## 44323 3
## 46420 1
## 47070 4
## 47490 4
## 48144 4
## 48248 2
## 49451 2
## 49616 1
## 49841 1
## 50193 3
## 50503 3
## 51321 3
## 51849 5
## 88622 5
## 97303 3
## 55 4
## 1055 5
## 1916 5
## 2527 3
## 2702 5
## 3451 3
## 6474 4
## 14445 4
## 16760 3
## 17372 4
## 17569 3
## 17926 4
## 19603 5
## 26223 3
## 33955 2
## 36458 3
## 38702 3
## 38947 2
## 42021 5
## 42821 4
## 42973 3
## 43380 3
## 45024 4
## 45547 4
## 47348 3
## 49259 5
## 56269 3
## 62014 2
## 67018 5
## 80359 4
## 81687 3
## 82467 3
## 89557 2
## 56 4
## 696 2
## 892 3
## 1056 4
## 1415 3
## 1644 3
## 2020 4
## 2260 4
## 2902 4
## 3206 4
## 3553 4
## 4222 4
## 4636 3
## 4886 3
## 5042 4
## 5718 1
## 6475 5
## 7171 4
## 7296 3
## 7404 2
## 7587 5
## 7990 4
## 8370 3
## 8493 3
## 8603 2
## 9133 5
## 9241 3
## 9400 4
## 9717 4
## 9959 4
## 10165 5
## 10492 4
## 10706 5
## 11077 2
## 11208 5
## 11997 4
## 12222 4
## 12475 3
## 12576 4
## 12934 4
## 13079 4
## 13307 5
## 13597 3
## 13872 4
## 14446 4
## 14904 1
## 15491 4
## 15996 5
## 16375 3
## 16761 5
## 17144 2
## 17570 5
## 17927 2
## 18523 1
## 20266 4
## 20573 4
## 21093 5
## 21724 2
## 21992 5
## 22136 4
## 22255 1
## 22317 4
## 22510 3
## 22713 2
## 22912 5
## 23275 3
## 23898 5
## 24264 5
## 24599 5
## 25003 1
## 25209 5
## 25476 4
## 25612 3
## 25743 4
## 25966 3
## 26224 5
## 26929 5
## 27570 3
## 28399 4
## 29192 5
## 29485 4
## 30262 2
## 30565 5
## 31032 4
## 31822 1
## 32025 5
## 32350 5
## 32761 1
## 32889 3
## 33113 3
## 33501 4
## 33956 4
## 34287 4
## 34577 5
## 34750 5
## 34922 5
## 35157 5
## 35331 5
## 35521 3
## 35761 4
## 35899 4
## 36459 4
## 36828 2
## 37066 4
## 37809 3
## 38167 2
## 38463 2
## 38703 5
## 39153 5
## 39478 5
## 40476 5
## 42636 3
## 42822 2
## 42974 3
## 44324 5
## 45116 3
## 45548 4
## 45986 4
## 48853 2
## 48978 4
## 49617 2
## 49842 3
## 51164 3
## 52847 4
## 52963 2
## 53211 2
## 53495 4
## 53607 3
## 53983 5
## 54246 5
## 54689 4
## 54882 1
## 55022 5
## 55094 2
## 55155 3
## 55233 4
## 55422 3
## 55770 4
## 55943 5
## 56270 5
## 56783 2
## 56854 1
## 57026 4
## 57267 3
## 58091 4
## 58386 2
## 59037 3
## 59937 2
## 60448 5
## 60633 5
## 60790 2
## 62227 2
## 62718 1
## 62959 3
## 66088 4
## 67535 5
## 68235 3
## 68713 4
## 69179 3
## 69317 2
## 69362 3
## 69741 5
## 69905 2
## 70235 3
## 70521 3
## 70583 4
## 70806 5
## 71157 3
## 71283 3
## 71823 2
## 72007 4
## 72458 3
## 72667 2
## 74130 5
## 74214 2
## 74485 3
## 74778 5
## 76016 3
## 77083 5
## 77260 2
## 77815 3
## 80140 2
## 80548 3
## 81012 3
## 81229 5
## 81533 4
## 81832 5
## 82468 3
## 83240 5
## 83591 3
## 83709 2
## 84682 2
## 84920 3
## 84958 3
## 85218 4
## 85263 3
## 85615 3
## 85728 3
## 85937 3
## 86123 2
## 86282 3
## 86599 4
## 86863 2
## 87238 4
## 87397 2
## 89105 3
## 89332 3
## 89479 3
## 89558 2
## 89897 3
## 90063 3
## 90272 3
## 91055 3
## 91351 2
## 92003 3
## 92098 4
## 92191 3
## 92231 4
## 92351 5
## 92695 2
## 92810 4
## 93058 2
## 93189 2
## 93994 4
## 94383 4
## 95620 4
## 95728 2
## 95997 4
## 96062 3
## 96746 3
## 97007 4
## 97102 3
## 97310 3
## 97346 2
## 467 3
## 2021 4
## 2261 4
## 3554 4
## 4637 4
## 4887 3
## 5043 3
## 5271 4
## 5410 3
## 5664 4
## 5851 3
## 7297 4
## 7405 3
## 7588 1
## 8494 3
## 8604 4
## 9134 3
## 9242 2
## 9401 4
## 10493 4
## 10707 4
## 11209 4
## 11998 4
## 12935 4
## 13308 4
## 22511 5
## 24265 1
## 27201 1
## 28023 4
## 29193 2
## 29486 4
## 30566 2
## 31033 3
## 32537 1
## 32890 3
## 34578 3
## 35332 3
## 35522 1
## 35657 3
## 35762 4
## 36829 3
## 37810 3
## 39479 4
## 41401 4
## 44325 4
## 45549 3
## 46421 3
## 46836 2
## 47688 4
## 48249 5
## 48580 4
## 50194 3
## 50324 4
## 50504 3
## 51165 3
## 51322 4
## 51705 1
## 51850 3
## 53455 3
## 53541 3
## 53608 3
## 54057 2
## 54600 2
## 54690 3
## 55234 3
## 55528 3
## 55682 3
## 55771 4
## 55944 3
## 57937 4
## 58092 4
## 60634 4
## 61752 3
## 69085 3
## 69742 3
## 70584 4
## 70807 3
## 71017 4
## 71236 3
## 71284 2
## 71415 3
## 71900 2
## 71938 3
## 75103 2
## 75564 4
## 76397 3
## 77944 4
## 78105 4
## 78535 1
## 78581 3
## 78856 4
## 80141 2
## 80549 3
## 81013 3
## 81189 2
## 81534 4
## 82469 3
## 82948 3
## 83480 3
## 83876 3
## 84332 3
## 84370 3
## 84529 3
## 84683 4
## 84749 2
## 84856 3
## 85044 3
## 85129 3
## 85187 2
## 86864 3
## 87505 2
## 88354 2
## 88703 3
## 89839 4
## 90064 3
## 90205 3
## 93899 2
## 94686 2
## 96304 2
## 96333 2
## 96411 4
## 96676 3
## 96747 3
## 96891 3
## 97008 2
## 97103 3
## 97149 3
## 97180 2
## 97365 2
## 97372 2
## 97378 3
## 97397 3
## 97409 3
## 37502 4
## 39480 4
## 40758 5
## 41402 3
## 43763 4
## 46837 4
## 47071 5
## 47349 4
## 47491 2
## 47689 2
## 48067 4
## 48250 4
## 48581 5
## 49452 3
## 50325 3
## 50692 4
## 51323 4
## 51851 4
## 52210 2
## 52733 4
## 88124 3
## 88456 2
## 92725 3
## 37811 4
## 39481 3
## 40759 3
## 41403 5
## 43764 4
## 44782 5
## 45550 3
## 46422 4
## 46838 3
## 47072 4
## 47585 5
## 47690 4
## 47931 4
## 48145 5
## 48251 5
## 48582 5
## 48739 5
## 49453 3
## 49618 4
## 49843 3
## 50195 1
## 50505 1
## 50693 4
## 51048 4
## 51166 4
## 51324 4
## 51789 4
## 52337 5
## 52467 1
## 52734 3
## 77608 3
## 78582 4
## 78678 4
## 82470 3
## 82817 4
## 82949 4
## 83177 4
## 87819 4
## 88125 5
## 88186 4
## 88256 3
## 88664 1
## 89777 4
## 91286 3
## 95046 4
## 1057 3
## 1645 3
## 6476 5
## 14447 4
## 15855 3
## 17373 3
## 17797 5
## 17928 4
## 33957 3
## 36460 3
## 37503 2
## 37812 3
## 38041 5
## 38948 5
## 39154 5
## 39482 5
## 40272 2
## 41607 4
## 42567 3
## 43765 4
## 44326 3
## 44783 2
## 45241 3
## 45551 4
## 46313 5
## 46423 3
## 49260 2
## 49454 3
## 49619 3
## 49844 4
## 50070 2
## 50196 4
## 50326 5
## 50506 5
## 50694 5
## 50960 3
## 51325 4
## 58360 1
## 66089 4
## 72459 5
## 77609 2
## 81833 3
## 87586 5
## 90224 3
## 91056 5
## 91096 5
## 91186 5
## 97415 5
## 97423 4
## 7589 3
## 12223 5
## 13309 3
## 13873 4
## 14448 5
## 19256 4
## 21490 3
## 21993 4
## 22137 2
## 23276 3
## 23802 4
## 23899 5
## 25004 5
## 25210 5
## 25744 5
## 25967 3
## 26700 3
## 26930 5
## 27571 3
## 28400 3
## 29194 4
## 29731 4
## 30263 3
## 31034 3
## 32026 3
## 34414 3
## 40760 4
## 48979 3
## 52964 4
## 62516 5
## 63730 4
## 63867 4
## 64235 3
## 64975 4
## 65812 3
## 65976 3
## 67536 3
## 67772 5
## 68236 3
## 73666 2
## 74988 2
## 75255 4
## 75857 3
## 76017 3
## 76479 4
## 77816 2
## 86958 3
## 95024 5
## 697 4
## 1058 5
## 1416 5
## 1646 5
## 2022 4
## 2262 5
## 2528 5
## 3373 3
## 3555 3
## 3838 5
## 5197 5
## 5272 4
## 6221 5
## 6477 5
## 7590 5
## 9402 1
## 10494 2
## 10708 4
## 11210 4
## 11453 3
## 12224 5
## 12711 4
## 12819 3
## 13310 3
## 13874 3
## 14449 5
## 15997 4
## 16762 3
## 17374 5
## 17929 5
## 19604 5
## 23900 4
## 24600 5
## 25211 5
## 25477 5
## 25613 5
## 26225 4
## 26931 5
## 27333 5
## 27814 5
## 28653 5
## 33502 3
## 34923 4
## 35158 3
## 35900 5
## 36461 2
## 37223 5
## 40477 2
## 40761 3
## 41608 4
## 42692 3
## 42975 4
## 43381 2
## 47073 4
## 47932 3
## 48854 5
## 52965 5
## 59038 4
## 60007 4
## 61331 4
## 61656 5
## 61885 2
## 62015 2
## 62719 5
## 63318 5
## 64976 1
## 66090 5
## 66539 5
## 68630 5
## 69228 2
## 70159 5
## 72531 1
## 74215 5
## 75104 5
## 75194 3
## 75858 5
## 76277 3
## 77326 3
## 78106 3
## 79149 4
## 81757 3
## 83592 4
## 83710 2
## 84119 4
## 86801 4
## 89008 3
## 90413 5
## 90878 1
## 91219 4
## 91856 5
## 94187 4
## 94314 5
## 1059 2
## 2023 5
## 3374 3
## 6088 3
## 6478 3
## 7591 5
## 8856 2
## 15856 3
## 17375 3
## 17930 5
## 19605 2
## 20490 2
## 25968 5
## 26226 4
## 27334 3
## 27815 5
## 28401 4
## 28774 4
## 29195 4
## 30094 4
## 30834 5
## 33842 4
## 38042 5
## 38168 3
## 38325 2
## 38464 4
## 38704 2
## 38845 3
## 38949 3
## 39155 3
## 39483 4
## 39952 4
## 40109 2
## 40273 3
## 40363 3
## 40762 3
## 41049 3
## 41195 4
## 41404 3
## 42022 2
## 43571 4
## 43766 3
## 44327 3
## 44784 4
## 45242 4
## 45552 2
## 45987 3
## 46065 3
## 46131 3
## 46314 3
## 46424 3
## 46839 3
## 47074 3
## 47350 2
## 47586 3
## 47691 3
## 47933 4
## 48068 3
## 48252 5
## 48583 3
## 49620 2
## 49845 3
## 50071 2
## 50197 3
## 50327 2
## 50695 3
## 51049 3
## 51167 3
## 51326 2
## 51852 3
## 52096 2
## 52211 5
## 52338 4
## 52468 2
## 52593 2
## 52625 3
## 52798 2
## 53212 2
## 55078 4
## 57938 3
## 63319 4
## 64101 4
## 66540 4
## 67019 4
## 67459 5
## 68714 2
## 68829 2
## 69046 2
## 71629 3
## 72532 5
## 72947 3
## 73141 3
## 73313 2
## 74989 3
## 75486 2
## 76018 4
## 76749 4
## 77610 3
## 78679 3
## 80932 4
## 82471 2
## 82818 4
## 82950 3
## 83463 1
## 83497 3
## 85130 4
## 86382 1
## 87462 3
## 87820 2
## 87949 3
## 88126 3
## 88187 2
## 88355 2
## 88457 2
## 88572 4
## 88623 2
## 88665 2
## 88704 2
## 88803 2
## 88828 2
## 89976 3
## 91565 2
## 92192 3
## 92352 2
## 92590 3
## 93190 4
## 94556 3
## 94651 2
## 95584 4
## 95789 4
## 96807 3
## 96846 3
## 96937 2
## 97062 2
## 97311 2
## 97432 2
## 97439 2
## 97450 2
## 97458 1
## 97461 2
## 57 4
## 1060 3
## 2024 5
## 2263 5
## 2903 5
## 4223 4
## 5273 4
## 6479 5
## 7592 5
## 13311 5
## 13875 4
## 15313 4
## 15998 5
## 16763 4
## 17145 2
## 18633 4
## 20042 1
## 20267 4
## 20907 4
## 21094 4
## 21994 4
## 22913 5
## 23277 5
## 23901 5
## 24266 5
## 24601 4
## 25212 5
## 25745 5
## 26227 5
## 27202 3
## 29196 5
## 32027 4
## 32762 5
## 33958 5
## 36462 4
## 37224 3
## 38326 4
## 38705 3
## 39156 5
## 39484 4
## 40478 4
## 41196 4
## 42976 5
## 44328 3
## 46132 5
## 47692 5
## 48253 5
## 51706 3
## 53213 4
## 53758 3
## 56271 5
## 56573 3
## 56855 3
## 57027 3
## 57939 5
## 58093 4
## 62720 5
## 69363 3
## 72008 3
## 72533 3
## 72668 4
## 74216 5
## 77611 4
## 81834 4
## 82074 1
## 82472 3
## 82951 5
## 83464 2
## 83711 5
## 84120 4
## 84639 4
## 86085 3
## 88073 5
## 88356 2
## 89333 3
## 89559 3
## 91110 3
## 92099 4
## 92232 3
## 92353 5
## 93527 2
## 93921 2
## 93960 3
## 94813 3
## 96111 3
## 893 2
## 1061 5
## 3207 3
## 3556 5
## 3839 5
## 5198 5
## 7172 5
## 7406 5
## 7593 5
## 10709 5
## 13876 5
## 14450 5
## 18634 4
## 19046 5
## 19257 5
## 21995 5
## 22914 5
## 23803 5
## 23902 5
## 24602 5
## 25005 5
## 25213 5
## 25746 5
## 25969 5
## 27203 5
## 27335 5
## 28024 5
## 28775 5
## 30264 5
## 30460 5
## 32028 5
## 33380 3
## 33503 5
## 34288 5
## 35901 5
## 39485 5
## 44329 5
## 48855 5
## 49413 5
## 50072 4
## 55481 5
## 57268 4
## 57940 4
## 58516 5
## 59373 5
## 59814 5
## 62517 5
## 62721 5
## 66091 4
## 66541 5
## 66756 5
## 68418 4
## 69590 5
## 69882 5
## 70160 5
## 70236 4
## 70522 1
## 72948 4
## 75066 5
## 75859 5
## 76019 5
## 77261 4
## 77458 5
## 84188 5
## 85004 4
## 85510 3
## 86538 5
## 86924 5
## 88870 5
## 90664 5
## 94504 4
## 1062 5
## 1647 4
## 2025 5
## 2264 3
## 3557 4
## 3840 3
## 4025 4
## 4224 5
## 4638 5
## 5044 5
## 5613 4
## 6480 5
## 7081 3
## 7298 4
## 7594 4
## 8605 4
## 9718 3
## 11211 2
## 11454 4
## 11703 4
## 11855 5
## 12225 4
## 12820 4
## 13312 5
## 14451 5
## 15048 2
## 15314 5
## 15492 5
## 15999 5
## 16764 4
## 17376 4
## 17571 5
## 18635 5
## 19606 5
## 20268 4
## 20574 4
## 21725 5
## 23278 5
## 23903 4
## 24603 4
## 26228 4
## 26701 4
## 28025 4
## 28776 4
## 28950 5
## 29487 5
## 30095 5
## 31035 4
## 31823 4
## 32029 5
## 32632 5
## 33959 5
## 34579 3
## 36176 5
## 36463 5
## 37813 4
## 38465 2
## 38706 3
## 38874 2
## 38950 3
## 39157 4
## 39486 2
## 39953 4
## 40763 3
## 41197 4
## 41405 5
## 41825 4
## 42023 5
## 42297 2
## 42568 4
## 42977 5
## 43767 5
## 44203 4
## 44330 4
## 45553 1
## 46133 4
## 46315 4
## 46425 5
## 46840 4
## 47934 5
## 48254 5
## 48584 5
## 48740 4
## 49621 4
## 49846 4
## 50696 4
## 50961 3
## 51168 4
## 51707 1
## 51853 4
## 52594 3
## 52735 5
## 54467 5
## 54691 5
## 55156 4
## 56272 4
## 56617 3
## 56856 1
## 57177 4
## 60449 5
## 60635 5
## 60897 4
## 61109 5
## 61193 4
## 62016 4
## 62228 4
## 62385 3
## 62722 4
## 64359 4
## 64724 5
## 65882 5
## 66542 5
## 68101 2
## 68944 5
## 69252 2
## 69364 4
## 69743 4
## 70442 4
## 70808 4
## 72267 4
## 72460 3
## 72669 4
## 73724 2
## 74217 4
## 76020 5
## 76398 5
## 78107 4
## 78272 4
## 78583 4
## 79226 5
## 79922 4
## 80225 5
## 80287 3
## 80360 5
## 80745 5
## 81758 4
## 81835 5
## 82952 3
## 83241 1
## 83593 4
## 85350 4
## 85729 3
## 85855 3
## 85938 4
## 86018 3
## 86086 5
## 86124 2
## 86600 4
## 87239 3
## 87821 5
## 88829 1
## 88845 4
## 89106 4
## 89480 3
## 89560 1
## 91111 3
## 91248 4
## 91352 3
## 91632 4
## 92354 5
## 93028 3
## 93831 4
## 94603 4
## 94931 5
## 95696 5
## 95963 5
## 96036 5
## 96125 5
## 96180 3
## 96538 4
## 96621 4
## 97312 3
## 97484 3
## 97488 5
## 97492 4
## 97496 3
## 97504 3
## 97519 3
## 97526 3
## 58 4
## 1648 4
## 2904 4
## 4225 5
## 6481 4
## 16000 3
## 16376 2
## 16765 4
## 17572 4
## 17931 4
## 20754 3
## 36464 3
## 37814 3
## 38707 3
## 39158 2
## 39487 5
## 42978 4
## 43768 5
## 56273 4
## 66092 2
## 67020 5
## 69365 2
## 81836 4
## 82119 4
## 86019 2
## 89107 4
## 59 4
## 1649 5
## 2026 2
## 2265 5
## 2703 5
## 4226 5
## 6482 5
## 7939 5
## 11455 4
## 11704 5
## 13877 5
## 14452 4
## 16001 1
## 16377 2
## 16766 2
## 17146 2
## 17377 5
## 17573 2
## 17798 3
## 17932 5
## 19258 5
## 19607 5
## 21996 4
## 23054 4
## 23904 5
## 24604 3
## 25970 3
## 26229 5
## 28654 4
## 29732 4
## 36177 1
## 36465 5
## 38327 1
## 38466 2
## 39159 5
## 42024 4
## 42298 3
## 42979 1
## 45117 3
## 45243 4
## 45554 4
## 46134 2
## 46426 3
## 48255 5
## 48585 4
## 48980 5
## 52469 3
## 52966 5
## 56274 2
## 57028 1
## 58517 4
## 58725 5
## 61110 1
## 62229 3
## 63320 5
## 66093 4
## 66289 5
## 66843 3
## 67021 4
## 69366 1
## 71630 2
## 72461 2
## 74218 3
## 74486 4
## 75195 4
## 80288 5
## 81362 5
## 81688 3
## 81837 5
## 82120 3
## 84765 3
## 89778 4
## 96494 4
## 97545 4
## 2027 1
## 4639 4
## 6047 5
## 7940 2
## 9403 2
## 9719 5
## 11456 5
## 11705 5
## 17933 5
## 19259 4
## 25006 5
## 25971 5
## 27816 4
## 28257 4
## 28402 5
## 28777 4
## 29733 5
## 32538 5
## 32763 2
## 32891 4
## 37067 4
## 40764 5
## 52967 3
## 54099 4
## 54468 3
## 54966 5
## 55945 4
## 58094 4
## 58518 3
## 58845 3
## 61541 5
## 61816 5
## 61886 3
## 66290 4
## 66412 4
## 66543 5
## 66757 4
## 67460 4
## 69954 3
## 71080 3
## 71631 5
## 76603 3
## 76750 4
## 77327 3
## 79286 5
## 79720 5
## 80142 5
## 80639 4
## 80746 4
## 81363 4
## 81438 4
## 84766 3
## 90538 4
## 93402 5
## 93442 4
## 94384 4
## 95165 5
## 95307 3
## 96148 4
## 97557 4
## 97590 2
## 1650 5
## 2529 3
## 2704 5
## 3558 4
## 3841 4
## 6483 3
## 8606 3
## 13878 4
## 14453 4
## 17934 5
## 18636 3
## 19047 4
## 19260 5
## 20043 5
## 23055 5
## 26702 4
## 27336 4
## 27817 4
## 28655 5
## 29734 5
## 37504 5
## 38951 1
## 42025 4
## 42299 4
## 43572 5
## 43769 5
## 44331 3
## 44785 1
## 45555 1
## 49261 4
## 49455 4
## 58519 3
## 59198 5
## 59615 5
## 61332 4
## 63321 4
## 63497 3
## 63731 4
## 63868 4
## 64236 5
## 64419 3
## 65698 5
## 66544 5
## 66844 5
## 67822 3
## 68715 3
## 73253 3
## 76278 4
## 79477 3
## 79648 5
## 81230 2
## 86802 4
## 90721 3
## 97600 2
## 60 3
## 1063 4
## 2028 5
## 4640 3
## 6484 3
## 10710 3
## 13313 4
## 13879 4
## 16002 3
## 20269 4
## 21726 5
## 22138 2
## 23120 5
## 23279 5
## 23905 3
## 24267 2
## 24605 3
## 29197 4
## 31824 3
## 34580 4
## 62518 3
## 64977 1
## 69744 4
## 73725 4
## 61 4
## 1417 4
## 3452 3
## 3559 5
## 4227 1
## 4641 4
## 5665 2
## 6332 3
## 6485 5
## 7595 1
## 8495 3
## 8607 5
## 8977 5
## 9135 5
## 9404 4
## 9720 3
## 10166 4
## 10296 5
## 10711 5
## 11003 4
## 11212 5
## 11457 4
## 11633 3
## 11856 5
## 11999 5
## 12476 5
## 12936 5
## 13080 5
## 13598 3
## 13880 5
## 15049 3
## 15315 3
## 15493 3
## 15857 4
## 16003 3
## 16644 1
## 17147 1
## 19048 5
## 19493 5
## 20044 5
## 20270 5
## 20908 1
## 21386 1
## 21491 2
## 22256 4
## 22817 5
## 23280 5
## 23906 5
## 24268 5
## 24606 5
## 25007 2
## 25214 5
## 26230 5
## 27572 3
## 28258 5
## 28403 5
## 28951 5
## 29198 5
## 29958 3
## 30461 3
## 30567 5
## 31036 5
## 31357 5
## 31623 3
## 31825 4
## 32030 5
## 32351 3
## 33114 3
## 33960 5
## 36178 2
## 36372 1
## 36830 3
## 37068 5
## 37620 2
## 39488 5
## 40765 1
## 41050 4
## 42026 5
## 43201 5
## 44786 5
## 45025 4
## 45556 4
## 46427 5
## 48981 5
## 49847 3
## 51854 1
## 52339 1
## 52968 3
## 53456 3
## 53609 4
## 53794 3
## 53954 1
## 54058 3
## 54469 1
## 54567 2
## 54601 3
## 54883 3
## 55023 2
## 55235 4
## 55423 3
## 55574 3
## 55683 4
## 56618 2
## 57029 3
## 57178 3
## 58520 4
## 58943 4
## 59529 4
## 59616 4
## 60636 4
## 60898 5
## 62519 3
## 62723 1
## 63200 4
## 63322 4
## 63732 1
## 63869 4
## 64237 5
## 64783 4
## 64978 5
## 65269 5
## 66094 1
## 66545 5
## 66758 4
## 67537 5
## 70809 5
## 71127 3
## 71374 2
## 71901 4
## 73667 3
## 75364 4
## 76279 3
## 76480 4
## 76922 3
## 78466 3
## 78857 3
## 79512 5
## 79821 3
## 79923 5
## 80550 3
## 80810 3
## 81014 4
## 81190 3
## 82228 3
## 82473 3
## 82953 5
## 83342 4
## 83712 3
## 84371 2
## 84440 3
## 84568 3
## 84684 4
## 84921 3
## 85027 3
## 85351 1
## 87142 3
## 88804 1
## 89234 3
## 89898 2
## 90103 5
## 90273 3
## 91661 3
## 91676 2
## 91707 4
## 91717 3
## 93124 2
## 93147 2
## 93832 2
## 93995 4
## 94385 3
## 94779 1
## 95198 3
## 96181 1
## 96313 3
## 96346 2
## 96375 3
## 96650 3
## 97366 2
## 97398 3
## 97610 3
## 97617 2
## 97624 1
## 37621 5
## 37815 3
## 39489 4
## 40110 1
## 40274 4
## 40681 5
## 41406 3
## 43770 3
## 44332 4
## 44787 3
## 45557 3
## 46428 4
## 47075 4
## 47935 2
## 48069 4
## 48256 5
## 48586 4
## 48741 4
## 49262 2
## 49622 3
## 49848 3
## 50328 2
## 50507 3
## 50697 5
## 51169 2
## 51327 2
## 51677 5
## 51855 5
## 52212 4
## 52340 3
## 52626 2
## 52710 5
## 77612 3
## 77911 5
## 77945 1
## 78680 3
## 82954 4
## 83114 3
## 87778 5
## 88048 5
## 88705 2
## 91497 4
## 96251 5
## 6486 4
## 8371 5
## 33961 5
## 34751 4
## 34924 5
## 35159 5
## 35333 5
## 37622 5
## 39490 5
## 41198 5
## 43771 1
## 44333 5
## 45558 4
## 46429 5
## 52097 5
## 54247 5
## 60450 4
## 60561 5
## 78681 1
## 82474 5
## 82819 1
## 88609 5
## 62 4
## 2705 5
## 2905 4
## 4228 3
## 4475 4
## 4642 5
## 6222 4
## 6487 4
## 7299 2
## 7596 3
## 7991 3
## 8608 5
## 8857 4
## 8978 3
## 9405 4
## 9721 3
## 9960 4
## 10297 3
## 10495 3
## 10712 4
## 11213 5
## 11458 5
## 11706 5
## 12000 4
## 13599 3
## 13881 4
## 14233 4
## 15494 3
## 16004 5
## 16378 5
## 16767 4
## 18524 5
## 18637 3
## 18872 5
## 19494 5
## 19832 4
## 20045 5
## 21095 3
## 22318 4
## 22512 5
## 23281 4
## 23907 3
## 24269 5
## 24607 3
## 25747 3
## 25972 5
## 26231 4
## 26703 4
## 27573 5
## 28259 4
## 28404 4
## 28778 3
## 29488 5
## 29735 4
## 30568 2
## 31037 4
## 31826 4
## 32031 4
## 32633 3
## 32892 3
## 33115 5
## 33504 3
## 33776 1
## 33962 3
## 34289 5
## 34752 2
## 34925 3
## 35160 2
## 36466 4
## 36831 4
## 37816 2
## 39491 2
## 40479 5
## 41826 4
## 42027 5
## 42300 4
## 42729 1
## 42980 3
## 43202 5
## 43382 3
## 45559 4
## 46430 5
## 48856 4
## 49263 5
## 49623 2
## 50698 2
## 51856 4
## 53610 4
## 53888 1
## 54100 5
## 54248 4
## 54360 3
## 54967 2
## 55157 3
## 55236 4
## 55772 1
## 56136 3
## 56275 4
## 57407 3
## 57470 4
## 57555 4
## 57683 3
## 58031 4
## 58095 4
## 58387 5
## 58521 5
## 59199 2
## 59374 4
## 60637 4
## 61111 4
## 61333 4
## 61572 4
## 61753 1
## 62017 4
## 63201 5
## 63733 4
## 63870 5
## 64238 3
## 64420 5
## 64605 5
## 64840 4
## 64979 5
## 65188 3
## 65407 5
## 65482 3
## 65813 4
## 65883 4
## 65977 4
## 66095 4
## 68716 4
## 69955 3
## 70810 4
## 72009 5
## 72268 4
## 72881 4
## 72949 5
## 73216 3
## 73414 4
## 73613 3
## 73941 4
## 74659 4
## 75565 5
## 75730 3
## 76021 3
## 76604 2
## 78108 4
## 78273 3
## 78417 4
## 78682 3
## 78858 4
## 79409 3
## 79513 3
## 80143 4
## 80603 3
## 80858 2
## 81015 4
## 81364 5
## 81535 4
## 81838 3
## 82347 3
## 83713 4
## 84024 3
## 84569 2
## 84685 4
## 85409 3
## 86370 5
## 87352 3
## 87506 1
## 89108 3
## 89977 5
## 90274 4
## 90491 5
## 90794 3
## 90816 4
## 93059 3
## 93191 4
## 93654 2
## 93852 3
## 94074 2
## 95667 3
## 95778 4
## 96471 2
## 96968 3
## 37505 4
## 37817 2
## 39492 2
## 40766 4
## 41051 3
## 41407 4
## 43772 5
## 44334 1
## 46431 3
## 47076 4
## 47351 3
## 47693 2
## 47936 2
## 48070 3
## 48257 3
## 49849 1
## 50508 3
## 51050 2
## 51790 2
## 77613 1
## 82475 2
## 87507 1
## 88002 2
## 88666 2
## 88730 5
## 91498 2
## 91633 2
## 96256 4
## 63 5
## 468 4
## 595 5
## 698 2
## 894 4
## 1064 5
## 2029 5
## 2266 4
## 3208 5
## 3560 5
## 4026 5
## 4549 4
## 4643 4
## 4888 3
## 5045 4
## 5274 5
## 5411 4
## 5527 4
## 5666 3
## 5719 4
## 5893 4
## 6089 3
## 6333 4
## 6488 5
## 7173 3
## 7300 5
## 7407 5
## 7597 5
## 7992 2
## 8372 4
## 8496 4
## 8609 5
## 8858 4
## 8979 5
## 9136 4
## 9243 5
## 9406 5
## 9961 5
## 10496 5
## 10713 5
## 11214 5
## 11612 4
## 12001 2
## 12226 4
## 12477 4
## 12821 5
## 12937 5
## 13081 5
## 13314 5
## 13882 5
## 14234 5
## 14454 3
## 15050 4
## 15316 3
## 15495 5
## 16005 5
## 16379 4
## 16768 5
## 17148 3
## 17254 4
## 17574 5
## 18302 4
## 18638 5
## 19049 5
## 20046 5
## 20271 5
## 20575 4
## 20755 4
## 20909 5
## 21997 3
## 22257 5
## 22319 4
## 22513 4
## 23282 3
## 23908 5
## 24270 3
## 24608 5
## 25215 5
## 25748 4
## 26232 5
## 26932 5
## 27204 4
## 27337 5
## 28026 4
## 29199 5
## 29489 5
## 30265 5
## 30569 5
## 30835 4
## 31038 5
## 31484 3
## 32032 5
## 32893 5
## 33116 4
## 33381 3
## 33505 5
## 33672 5
## 33963 4
## 34581 5
## 34753 3
## 34926 4
## 35161 4
## 35334 3
## 35523 3
## 35763 4
## 35902 5
## 36179 4
## 36373 5
## 36467 5
## 37069 4
## 37225 4
## 37623 2
## 37818 1
## 38043 4
## 38169 3
## 38328 5
## 38467 3
## 38708 5
## 38875 2
## 38952 4
## 39160 4
## 39493 4
## 40227 4
## 40275 3
## 40713 5
## 40767 4
## 41052 5
## 41199 5
## 41408 5
## 42301 4
## 42823 4
## 42981 5
## 43383 2
## 43773 5
## 44335 5
## 44788 5
## 45026 3
## 45118 4
## 45352 5
## 45560 5
## 45988 3
## 46135 5
## 46316 3
## 46432 5
## 47492 4
## 47694 4
## 48258 5
## 48587 4
## 48742 4
## 49456 5
## 49624 4
## 50329 5
## 50699 4
## 50962 4
## 51002 4
## 51051 3
## 51170 4
## 51328 5
## 51612 3
## 52037 3
## 52098 4
## 52341 4
## 52470 4
## 52627 4
## 52711 1
## 52736 5
## 52799 4
## 52848 4
## 52969 5
## 53214 4
## 53411 3
## 53542 5
## 53611 4
## 53984 4
## 54020 4
## 54195 4
## 54692 5
## 55056 3
## 55158 4
## 55237 5
## 55543 3
## 55946 5
## 56137 5
## 56276 4
## 56619 2
## 56857 5
## 57030 5
## 57179 4
## 57269 3
## 57556 5
## 57684 5
## 57853 5
## 58096 5
## 58461 4
## 58522 5
## 59375 3
## 59815 3
## 60008 5
## 60157 4
## 60451 4
## 60562 2
## 60791 4
## 60853 3
## 60899 4
## 61573 5
## 61817 5
## 61887 2
## 62018 2
## 62230 4
## 62724 3
## 63111 4
## 64980 5
## 65483 5
## 66096 4
## 68237 5
## 68717 5
## 68830 5
## 68866 5
## 68976 5
## 69130 3
## 69180 3
## 69367 4
## 69745 5
## 69906 5
## 70020 4
## 70113 4
## 70523 4
## 70547 3
## 70585 4
## 70749 2
## 70811 5
## 71018 3
## 71158 3
## 71416 5
## 72010 4
## 72189 4
## 72534 4
## 72670 4
## 73824 4
## 73942 3
## 74048 5
## 74131 5
## 75105 4
## 76399 5
## 77084 3
## 77196 4
## 77262 5
## 77614 4
## 77912 3
## 77946 4
## 78109 5
## 78274 3
## 78584 2
## 78859 5
## 80289 3
## 80492 3
## 80859 4
## 80960 3
## 81536 5
## 81839 5
## 82075 2
## 82229 5
## 82476 4
## 82955 5
## 83115 5
## 83343 4
## 83540 3
## 83714 5
## 83877 4
## 83981 3
## 84079 2
## 84121 4
## 84333 4
## 84857 5
## 84986 1
## 85005 4
## 85045 5
## 85131 3
## 85188 5
## 85410 3
## 85511 5
## 85559 3
## 85616 5
## 85803 3
## 86020 4
## 86234 4
## 87143 2
## 87677 4
## 88188 3
## 88213 4
## 88268 3
## 88330 4
## 88357 5
## 88610 1
## 89334 4
## 89433 4
## 89481 3
## 89561 2
## 89610 3
## 89672 4
## 89840 4
## 89899 3
## 90065 4
## 90151 4
## 90275 3
## 90602 4
## 91021 4
## 91057 5
## 91249 1
## 91566 5
## 92193 4
## 92233 3
## 92355 4
## 92480 3
## 92560 4
## 92811 4
## 93029 2
## 93192 4
## 93467 4
## 93528 5
## 93721 3
## 93942 5
## 94505 3
## 94633 2
## 94652 2
## 94814 3
## 95668 4
## 95790 4
## 95926 3
## 95998 3
## 96693 1
## 96710 4
## 96748 2
## 96816 2
## 96853 4
## 96938 5
## 97104 3
## 97181 4
## 97313 4
## 97347 3
## 97367 3
## 97379 3
## 97558 4
## 97629 2
## 97644 2
## 97655 5
## 97659 4
## 97667 4
## 97686 5
## 97702 4
## 97711 4
## 64 4
## 1651 5
## 2706 5
## 3307 4
## 14455 5
## 17378 5
## 17799 4
## 17935 4
## 19608 1
## 33843 3
## 37506 5
## 38170 3
## 38644 5
## 40768 5
## 41827 3
## 42028 2
## 42302 5
## 43573 5
## 43774 5
## 44204 4
## 45353 3
## 46066 4
## 47077 5
## 48259 5
## 68932 5
## 82121 4
## 82820 5
## 85352 3
## 86601 4
## 97727 4
## 2267 4
## 6489 3
## 7598 5
## 14456 4
## 17379 4
## 17936 4
## 19609 4
## 21096 3
## 21727 4
## 25008 3
## 38645 4
## 42029 3
## 43574 4
## 43775 3
## 64102 4
## 67660 4
## 67823 4
## 77030 5
## 85132 3
## 89009 5
## 92561 3
## 95981 3
## 37624 3
## 37819 3
## 39494 5
## 40111 1
## 40769 4
## 41200 5
## 41409 5
## 43776 2
## 45561 3
## 46433 3
## 47352 3
## 47587 4
## 47862 4
## 48260 3
## 48588 4
## 48743 4
## 49625 2
## 50700 3
## 52099 2
## 52342 3
## 52800 2
## 69047 1
## 82758 4
## 82821 4
## 82956 3
## 88624 3
## 65 5
## 2906 5
## 39495 4
## 39954 2
## 40770 3
## 43777 3
## 45562 4
## 46434 3
## 46841 2
## 47078 2
## 48261 5
## 48589 3
## 48744 4
## 49850 4
## 50330 5
## 50701 4
## 51708 4
## 51791 2
## 66097 3
## 69048 4
## 77615 4
## 82477 5
## 82957 5
## 87822 4
## 88269 2
## 895 3
## 2268 4
## 3842 4
## 5275 3
## 5412 3
## 5528 3
## 7301 3
## 7408 4
## 7599 4
## 10497 4
## 10714 3
## 13883 5
## 24271 4
## 25216 4
## 26933 4
## 27338 4
## 30836 4
## 34582 3
## 34754 3
## 34927 4
## 35162 2
## 35335 3
## 35764 3
## 35903 4
## 39496 4
## 40112 3
## 40480 3
## 44336 3
## 45563 4
## 49457 4
## 50073 3
## 50198 4
## 50509 4
## 54196 2
## 59039 2
## 60009 4
## 60452 3
## 60792 2
## 61888 4
## 62725 4
## 65699 4
## 70021 3
## 70524 1
## 70586 3
## 71559 4
## 72950 4
## 75106 4
## 75809 4
## 82122 4
## 85046 2
## 89841 4
## 90020 3
## 93468 3
## 96711 3
## 96854 2
## 1652 5
## 2707 5
## 2907 4
## 3308 4
## 5720 3
## 7600 4
## 12227 4
## 14457 5
## 15858 5
## 16006 4
## 17380 5
## 17937 5
## 19610 5
## 31039 4
## 34290 4
## 36468 4
## 39161 3
## 39497 5
## 40771 5
## 42030 4
## 42303 5
## 43203 4
## 43778 5
## 46136 4
## 48262 2
## 48982 5
## 62726 4
## 67022 5
## 68021 5
## 75298 5
## 82123 5
## 82348 4
## 86803 4
## 95791 4
## 66 3
## 2908 4
## 6490 5
## 6999 1
## 7409 5
## 10715 5
## 12228 5
## 13315 5
## 16007 5
## 16380 5
## 16769 5
## 20272 5
## 23909 5
## 24609 5
## 26233 5
## 26934 5
## 29200 5
## 32033 5
## 33964 5
## 36180 5
## 36469 4
## 37625 4
## 38329 4
## 38468 5
## 39162 5
## 40113 3
## 40228 5
## 40682 5
## 44789 3
## 46435 5
## 50510 4
## 54693 5
## 56277 5
## 57031 5
## 62231 4
## 62960 1
## 69368 5
## 72671 5
## 78275 5
## 78467 4
## 78683 2
## 82478 4
## 87240 3
## 88270 3
## 92812 5
## 95238 2
## 67 4
## 2269 5
## 2530 4
## 2708 3
## 2909 4
## 4476 5
## 5976 5
## 7601 5
## 13884 5
## 14458 5
## 15496 4
## 15859 2
## 16008 4
## 16770 4
## 18873 4
## 19611 5
## 20576 4
## 20910 3
## 21097 4
## 26704 4
## 27339 4
## 27818 5
## 28952 5
## 31827 4
## 32352 4
## 33965 4
## 36832 5
## 43575 4
## 48983 5
## 52970 4
## 59617 5
## 62520 5
## 63871 5
## 64103 4
## 64421 3
## 64784 4
## 64981 4
## 65189 5
## 66291 4
## 66759 5
## 66845 5
## 67275 4
## 67371 4
## 67461 5
## 67824 5
## 72882 4
## 72951 4
## 73614 4
## 73787 4
## 76835 4
## 81840 4
## 14459 5
## 17938 5
## 20911 4
## 33966 3
## 36470 3
## 37507 3
## 38044 4
## 43779 4
## 44337 4
## 46056 4
## 46067 5
## 47079 3
## 47695 4
## 61112 4
## 61217 3
## 62727 5
## 66098 4
## 77514 4
## 81689 2
## 82124 5
## 96257 4
## 97219 5
## 37820 3
## 39498 3
## 43780 5
## 44338 3
## 44790 4
## 45564 3
## 46842 3
## 47080 4
## 47353 4
## 49264 4
## 49458 4
## 49626 3
## 50199 3
## 51171 3
## 51555 2
## 87463 3
## 87508 2
## 87950 4
## 91382 3
## 68 3
## 1065 5
## 2910 5
## 4229 5
## 6491 4
## 14460 4
## 15124 5
## 16009 4
## 16381 5
## 16645 4
## 16771 4
## 17575 5
## 17800 5
## 17939 2
## 20577 4
## 21098 2
## 26234 4
## 33967 4
## 34474 3
## 36181 1
## 36471 4
## 37740 5
## 37821 3
## 38171 3
## 38330 2
## 38469 4
## 38709 4
## 38953 4
## 39163 3
## 39499 5
## 39955 1
## 40229 1
## 41828 5
## 42304 1
## 42693 1
## 42824 4
## 42982 5
## 43384 5
## 43781 4
## 44339 3
## 45027 1
## 45119 5
## 45244 1
## 45354 2
## 45565 4
## 45989 5
## 46137 5
## 46436 5
## 48263 5
## 49627 4
## 49851 4
## 50702 4
## 51003 1
## 51329 5
## 51613 1
## 52343 1
## 56278 3
## 56620 2
## 56784 5
## 56858 4
## 62019 4
## 62232 5
## 62961 3
## 68880 5
## 69369 4
## 72269 4
## 72672 4
## 73825 4
## 77515 5
## 77616 4
## 79150 4
## 80290 4
## 81841 4
## 82125 5
## 82479 3
## 82822 1
## 83344 3
## 85411 4
## 85730 3
## 85856 4
## 85939 2
## 86125 2
## 87144 3
## 87241 5
## 87398 3
## 87464 1
## 87951 1
## 89235 4
## 89482 4
## 89611 3
## 91022 4
## 91287 4
## 91327 4
## 91383 3
## 92194 1
## 92234 3
## 92696 4
## 92813 4
## 93279 3
## 93529 4
## 93961 1
## 95792 1
## 97314 3
## 97462 4
## 97712 1
## 97740 3
## 97749 3
## 1066 4
## 4644 4
## 5721 4
## 7410 2
## 11215 4
## 12229 3
## 12577 5
## 17381 4
## 19050 5
## 20578 1
## 23568 5
## 25217 5
## 26235 5
## 27574 4
## 28187 4
## 37626 1
## 39956 3
## 44340 3
## 45566 3
## 48590 3
## 49628 2
## 51330 5
## 51709 2
## 52344 5
## 52628 4
## 53215 2
## 53379 3
## 56673 4
## 58388 4
## 61479 3
## 66846 5
## 88358 4
## 39500 3
## 41201 4
## 41410 4
## 43782 2
## 44341 5
## 45567 3
## 47696 4
## 48264 5
## 48591 4
## 49629 4
## 49852 3
## 50200 5
## 50331 5
## 50703 4
## 51052 5
## 51331 5
## 52471 5
## 77947 3
## 78684 2
## 93170 3
## 69 4
## 699 4
## 1067 2
## 1418 4
## 1653 5
## 2270 4
## 2709 4
## 2911 4
## 3309 4
## 3375 4
## 3561 5
## 4027 4
## 5046 3
## 5199 4
## 5276 5
## 6223 5
## 6492 5
## 7302 2
## 7411 4
## 7602 4
## 7993 3
## 8161 4
## 8303 3
## 8373 2
## 8610 5
## 8859 4
## 8980 4
## 9244 2
## 9407 5
## 9722 4
## 10167 4
## 10298 3
## 11857 5
## 12230 3
## 12578 2
## 12822 1
## 13316 5
## 13885 4
## 14461 5
## 15051 2
## 15125 3
## 15860 4
## 16010 4
## 17382 4
## 17576 4
## 17801 4
## 17940 4
## 18374 4
## 19261 5
## 19612 4
## 20273 4
## 20579 3
## 21492 5
## 22420 2
## 23056 4
## 23690 4
## 23910 4
## 24272 5
## 24610 5
## 25218 4
## 25973 4
## 26236 4
## 26705 3
## 26935 4
## 27819 4
## 28260 5
## 28405 4
## 28779 4
## 28953 5
## 29201 5
## 29490 4
## 29736 4
## 29959 4
## 31040 2
## 31828 2
## 32539 5
## 32634 4
## 32894 4
## 33117 4
## 33844 3
## 34291 4
## 35904 4
## 36182 1
## 36472 4
## 37508 4
## 37741 3
## 38172 4
## 38646 4
## 39164 4
## 39501 4
## 40276 3
## 41202 2
## 41609 4
## 41829 3
## 42305 3
## 42730 1
## 42825 3
## 42983 4
## 43385 3
## 43576 4
## 43783 4
## 44342 2
## 45355 4
## 45568 4
## 46068 4
## 46138 3
## 46437 3
## 47081 3
## 47354 4
## 47697 1
## 48265 5
## 48745 5
## 48984 5
## 49265 3
## 50332 4
## 50511 3
## 50704 3
## 51332 3
## 52100 2
## 52971 4
## 55238 4
## 55947 3
## 56279 4
## 56859 3
## 57032 4
## 58097 5
## 59618 4
## 60867 3
## 60900 3
## 61248 4
## 61657 2
## 61889 2
## 62020 4
## 62521 4
## 62728 1
## 62962 2
## 63202 4
## 63498 4
## 66099 4
## 66847 5
## 67210 2
## 67372 3
## 67661 4
## 67825 5
## 67975 5
## 68238 5
## 68419 4
## 68718 5
## 68850 4
## 72011 4
## 72270 3
## 72673 4
## 74597 4
## 75299 4
## 75566 4
## 75860 4
## 76022 5
## 78276 3
## 78685 3
## 79287 4
## 79649 3
## 79822 4
## 80053 4
## 80747 3
## 80860 4
## 81842 4
## 82349 5
## 82823 4
## 82958 4
## 83498 2
## 83594 3
## 84264 4
## 84570 4
## 85412 1
## 85731 3
## 86126 3
## 86602 4
## 86804 4
## 86959 4
## 87952 5
## 88573 4
## 89978 4
## 90539 4
## 90665 2
## 90689 3
## 90722 4
## 90746 4
## 91958 3
## 92100 4
## 92195 1
## 92356 3
## 92814 3
## 93193 4
## 94121 4
## 94932 4
## 95723 4
## 95793 5
## 95862 4
## 96170 4
## 96539 4
## 97063 4
## 97768 3
## 97794 3
## 97809 4
## 70 3
## 596 3
## 896 3
## 1068 5
## 1654 2
## 2030 5
## 2271 5
## 2531 5
## 2912 2
## 3209 3
## 3562 5
## 3843 4
## 4230 2
## 5047 5
## 5413 3
## 5529 4
## 5722 5
## 5894 5
## 6334 3
## 6493 5
## 7000 3
## 7174 2
## 7303 5
## 7412 3
## 7603 5
## 8162 1
## 8374 2
## 8611 4
## 8981 4
## 9408 5
## 10498 3
## 10716 5
## 12002 5
## 12231 4
## 13317 5
## 13600 5
## 13886 5
## 14462 5
## 15052 2
## 15126 4
## 15317 4
## 15497 3
## 16011 5
## 16382 3
## 16646 2
## 16772 2
## 17149 1
## 17255 4
## 19051 4
## 19262 5
## 20912 5
## 21889 2
## 21998 5
## 22320 4
## 22915 4
## 23911 5
## 24273 5
## 24611 5
## 25219 5
## 26237 5
## 26706 5
## 26936 5
## 27340 4
## 29202 5
## 30266 4
## 30570 4
## 30837 5
## 31829 4
## 32540 2
## 33118 5
## 33382 3
## 33506 3
## 33673 5
## 33968 5
## 34583 1
## 34755 4
## 34928 4
## 35163 3
## 35336 5
## 35905 5
## 36183 4
## 36374 1
## 36473 5
## 36833 4
## 37226 5
## 37509 5
## 38045 4
## 38331 4
## 38470 5
## 39165 5
## 39502 4
## 39957 3
## 40114 4
## 40481 5
## 40683 3
## 40772 5
## 41053 5
## 41203 4
## 41610 5
## 41830 3
## 42031 2
## 42306 1
## 42637 4
## 42826 4
## 42984 5
## 43386 4
## 43784 3
## 45356 4
## 45569 4
## 46139 1
## 46317 4
## 46438 3
## 46843 4
## 47082 4
## 47355 2
## 47863 2
## 47937 4
## 48146 3
## 48266 4
## 48592 5
## 48746 5
## 50512 5
## 50705 5
## 50963 4
## 51053 3
## 51333 2
## 51710 3
## 51792 3
## 52038 4
## 52101 5
## 52345 5
## 52472 3
## 52684 4
## 52737 4
## 52801 3
## 52849 4
## 53216 4
## 53412 4
## 53759 3
## 54197 3
## 54249 3
## 55239 5
## 55407 1
## 56280 3
## 56574 3
## 56621 2
## 56860 4
## 57033 2
## 57180 4
## 57270 3
## 59040 5
## 59816 5
## 60010 3
## 60244 5
## 60360 5
## 60453 3
## 60563 3
## 60793 3
## 60868 1
## 61218 1
## 61890 5
## 62021 4
## 62233 3
## 63112 2
## 64360 3
## 66413 4
## 67023 5
## 69253 4
## 69370 3
## 69642 5
## 69907 5
## 69956 3
## 70022 3
## 70161 2
## 70237 2
## 70490 3
## 70587 5
## 71019 4
## 71159 5
## 71217 2
## 72232 1
## 72271 4
## 72425 3
## 72462 3
## 72674 4
## 72952 5
## 73886 3
## 74219 2
## 74487 4
## 74748 4
## 74779 4
## 74864 3
## 75107 3
## 75487 4
## 75731 5
## 77085 5
## 77263 3
## 77328 4
## 77409 4
## 77617 2
## 77948 3
## 78046 3
## 78110 5
## 78277 4
## 78468 2
## 78536 4
## 78686 4
## 78860 2
## 79151 3
## 80054 4
## 80291 3
## 80748 2
## 80811 2
## 80961 3
## 81016 4
## 81439 2
## 81492 3
## 81537 2
## 81690 2
## 81843 4
## 82076 1
## 82824 4
## 82959 4
## 83116 4
## 83178 3
## 83345 2
## 83499 2
## 83541 4
## 83595 3
## 83715 4
## 83847 2
## 83916 2
## 83982 2
## 84025 1
## 84080 2
## 84640 4
## 84922 3
## 85006 2
## 85512 5
## 85617 2
## 85693 3
## 85732 3
## 85857 4
## 85940 2
## 86021 2
## 86127 1
## 87061 3
## 87353 4
## 87724 2
## 87823 5
## 88214 2
## 88271 2
## 88331 1
## 88359 3
## 88458 2
## 88504 1
## 88611 1
## 89109 2
## 89188 4
## 89236 3
## 89335 3
## 89434 2
## 89483 2
## 89646 1
## 89673 1
## 89842 4
## 90021 3
## 90276 4
## 91023 1
## 91112 3
## 91187 3
## 91268 1
## 91384 1
## 91567 3
## 91730 4
## 91743 1
## 91897 2
## 92004 5
## 92101 4
## 92697 1
## 92740 4
## 92815 5
## 92998 1
## 93280 1
## 93306 5
## 93469 4
## 93530 3
## 93788 2
## 93876 1
## 93922 1
## 94315 5
## 94472 3
## 94623 1
## 94687 2
## 94998 1
## 95521 3
## 96712 4
## 96749 1
## 96795 2
## 96817 2
## 96847 2
## 96855 2
## 97348 5
## 97380 3
## 97630 5
## 97703 1
## 97750 1
## 97826 2
## 97832 4
## 97839 1
## 97846 1
## 97848 3
## 97863 1
## 37822 5
## 39503 4
## 40277 4
## 40773 4
## 41204 3
## 41411 5
## 43785 3
## 45570 1
## 46439 3
## 46844 2
## 47083 4
## 47698 3
## 48071 4
## 48267 4
## 48593 5
## 49266 4
## 50513 3
## 50706 3
## 51054 5
## 51636 5
## 51857 4
## 52039 1
## 52269 4
## 52346 4
## 52473 3
## 78537 1
## 92663 5
## 97866 5
## 97869 4
## 39504 4
## 40774 4
## 41054 3
## 43786 5
## 45245 5
## 46845 5
## 47084 4
## 47356 5
## 47493 4
## 48268 4
## 49267 4
## 51793 5
## 51858 4
## 52270 4
## 78687 4
## 82825 5
## 82960 2
## 88505 5
## 88684 5
## 89779 3
## 71 4
## 1069 5
## 1419 4
## 6494 5
## 7604 5
## 9409 5
## 9723 5
## 9962 5
## 10635 1
## 12232 5
## 13887 3
## 15760 5
## 15861 5
## 17941 1
## 18639 4
## 18874 5
## 19263 5
## 19833 1
## 21099 4
## 22818 4
## 22916 4
## 23283 5
## 23569 5
## 23912 5
## 24274 5
## 24612 5
## 25009 4
## 25478 2
## 26238 5
## 27341 1
## 28188 4
## 28261 2
## 28406 1
## 28954 5
## 31041 3
## 31830 5
## 32764 5
## 33969 4
## 34756 4
## 34929 4
## 35906 3
## 36834 4
## 52972 5
## 56674 5
## 57557 3
## 59200 5
## 62386 5
## 62522 5
## 64901 4
## 64982 3
## 65484 4
## 65978 5
## 66292 5
## 67662 1
## 68539 5
## 69643 3
## 72012 4
## 72535 5
## 76923 5
## 80055 3
## 90879 4
## 91568 4
## 92102 4
## 93194 2
## 95892 5
## 37823 3
## 39505 3
## 40278 1
## 40775 5
## 41412 3
## 43787 5
## 46440 3
## 46846 3
## 47085 4
## 47494 4
## 47864 2
## 47938 2
## 48072 3
## 48147 1
## 48269 5
## 49268 2
## 49459 2
## 49853 2
## 50201 2
## 50333 3
## 50514 2
## 50707 2
## 51334 1
## 51678 2
## 51711 2
## 51859 4
## 52271 4
## 52347 4
## 77618 2
## 78585 2
## 87587 3
## 88459 4
## 97876 3
## 97883 3
## 72 4
## 2532 4
## 2710 4
## 6495 5
## 12823 4
## 14463 2
## 16773 2
## 17256 4
## 17383 2
## 17942 5
## 18375 4
## 20580 4
## 20913 3
## 21100 4
## 26239 5
## 33845 4
## 36184 4
## 38046 5
## 41611 4
## 42307 5
## 42638 2
## 44343 4
## 45120 4
## 45357 4
## 49269 4
## 50074 4
## 50202 1
## 56861 4
## 61113 4
## 62729 5
## 74220 4
## 73 5
## 700 5
## 1070 4
## 1655 4
## 1917 5
## 2272 5
## 2533 3
## 2711 5
## 2913 4
## 4231 4
## 4477 3
## 4645 4
## 5048 3
## 5277 5
## 5895 4
## 6090 3
## 6335 3
## 6496 5
## 7001 4
## 7082 5
## 7605 4
## 7994 4
## 8612 5
## 8860 4
## 8982 4
## 9410 4
## 9724 4
## 10299 4
## 10717 4
## 11078 5
## 11216 3
## 11459 5
## 11707 5
## 11858 4
## 12003 5
## 12233 5
## 12579 2
## 12824 5
## 13601 5
## 13888 4
## 14464 3
## 15498 4
## 15761 5
## 16383 3
## 16774 5
## 17384 5
## 17577 4
## 18525 5
## 18640 5
## 18875 5
## 19052 4
## 19264 5
## 19495 4
## 19613 5
## 20047 5
## 20581 2
## 21101 5
## 21387 3
## 21493 3
## 21728 4
## 22421 4
## 22714 5
## 22819 4
## 22917 5
## 23284 5
## 23570 5
## 23691 5
## 23804 5
## 23913 5
## 24275 5
## 24613 5
## 25010 5
## 25220 2
## 25614 5
## 26240 5
## 26937 3
## 27342 4
## 27575 4
## 28189 5
## 28262 4
## 28407 3
## 28780 4
## 28955 4
## 29203 3
## 29491 4
## 29737 5
## 29960 4
## 30096 3
## 30267 3
## 30571 5
## 30838 3
## 31042 4
## 31624 4
## 31831 4
## 32034 4
## 32353 5
## 32635 5
## 32895 3
## 33119 4
## 33970 5
## 34292 5
## 34415 5
## 34757 5
## 34930 5
## 35337 3
## 35524 1
## 35907 4
## 36835 5
## 37378 3
## 39506 5
## 40115 1
## 40482 5
## 41831 5
## 42032 5
## 42569 4
## 43788 5
## 44205 4
## 45028 1
## 46441 4
## 46847 4
## 47086 3
## 48857 5
## 48985 5
## 49460 4
## 49630 2
## 50708 3
## 52850 2
## 52973 5
## 53889 4
## 53955 5
## 54101 4
## 54250 5
## 54361 5
## 54470 4
## 54694 3
## 54968 5
## 55240 2
## 55773 3
## 56281 3
## 56675 5
## 57034 4
## 57321 5
## 57471 3
## 57558 3
## 57685 3
## 57854 5
## 58098 4
## 58389 4
## 58523 5
## 58726 5
## 58846 5
## 58944 4
## 59201 5
## 59376 3
## 59619 4
## 59817 3
## 60011 5
## 60361 2
## 60638 5
## 61249 4
## 61334 4
## 61480 5
## 61542 4
## 61658 5
## 61818 1
## 61891 3
## 62387 4
## 62523 5
## 62963 3
## 63203 5
## 63499 5
## 63659 3
## 63734 4
## 63872 5
## 64104 4
## 64239 5
## 64361 5
## 64422 5
## 64490 4
## 64554 5
## 64606 5
## 64660 4
## 64725 3
## 64841 4
## 64983 4
## 65190 5
## 65270 5
## 65408 5
## 65647 3
## 65700 4
## 65814 5
## 65884 4
## 65979 5
## 66293 4
## 66697 5
## 66848 4
## 67211 5
## 67276 2
## 67773 5
## 67826 5
## 68022 4
## 68420 5
## 68540 5
## 68719 3
## 69371 2
## 69644 4
## 70238 2
## 70387 3
## 70588 3
## 71632 5
## 71824 3
## 72883 4
## 72953 5
## 73217 4
## 73254 5
## 73415 4
## 73473 5
## 73512 4
## 73615 4
## 74132 2
## 74221 5
## 74378 4
## 74488 3
## 74598 4
## 74660 5
## 74899 5
## 75108 3
## 75732 5
## 75861 4
## 76023 4
## 76280 5
## 76481 5
## 76605 4
## 76751 4
## 76836 4
## 76924 4
## 77031 5
## 77459 2
## 78111 3
## 78418 3
## 78861 3
## 79288 4
## 79410 3
## 79457 4
## 79514 5
## 79650 4
## 79823 5
## 80226 2
## 80640 4
## 80861 4
## 81017 4
## 81231 5
## 81365 4
## 81759 2
## 82350 3
## 82480 2
## 83242 3
## 83542 3
## 84026 4
## 84218 2
## 84441 3
## 84516 4
## 84767 4
## 85100 4
## 85353 4
## 85941 1
## 86304 5
## 86319 4
## 86346 4
## 86603 4
## 86805 5
## 88871 5
## 89010 4
## 89435 3
## 89843 4
## 90104 5
## 90414 3
## 90455 5
## 90540 4
## 90723 1
## 90795 5
## 90817 4
## 90880 5
## 90956 5
## 90990 4
## 91785 1
## 92481 2
## 93195 4
## 93307 3
## 93403 2
## 93531 2
## 93746 4
## 94122 3
## 94261 4
## 94386 2
## 94862 1
## 94933 4
## 95074 4
## 95166 4
## 96540 5
## 96629 5
## 97520 4
## 97601 5
## 97810 5
## 97903 1
## 97915 4
## 97924 4
## 1420 5
## 2914 5
## 3453 3
## 3563 5
## 4232 3
## 5278 5
## 6336 5
## 7002 4
## 8983 5
## 9137 5
## 9411 5
## 9963 5
## 11004 5
## 12004 5
## 13602 5
## 13889 2
## 15499 5
## 16012 4
## 16647 2
## 16775 5
## 17578 5
## 18641 5
## 18876 5
## 20048 5
## 20582 3
## 21102 4
## 21494 4
## 21890 5
## 22139 5
## 22514 5
## 22715 5
## 23180 5
## 24276 5
## 28408 5
## 31043 4
## 32896 5
## 33777 5
## 35908 4
## 36474 5
## 37379 4
## 38954 5
## 41413 5
## 41832 5
## 42033 4
## 42639 4
## 42731 5
## 43204 4
## 43387 5
## 43789 5
## 45571 4
## 46848 3
## 48270 4
## 49270 2
## 52738 3
## 53457 4
## 53612 3
## 53890 4
## 55241 5
## 55684 3
## 55774 5
## 56862 4
## 57035 4
## 57181 2
## 58099 5
## 60639 5
## 63873 5
## 64423 5
## 65701 4
## 68239 4
## 69645 4
## 70239 1
## 70812 5
## 72536 2
## 74599 4
## 76606 5
## 78278 5
## 78862 5
## 79289 5
## 80227 5
## 80412 5
## 80641 5
## 81538 5
## 81691 4
## 83716 5
## 84219 4
## 84265 3
## 84372 5
## 84442 5
## 84530 4
## 84571 5
## 84686 5
## 84858 5
## 86604 3
## 87242 5
## 87399 3
## 90066 4
## 90818 5
## 92235 2
## 92816 5
## 93060 4
## 93308 5
## 93853 5
## 93877 1
## 95669 5
## 97932 4
## 97941 5
## 3564 2
## 6497 1
## 7606 5
## 8613 5
## 10718 5
## 17943 3
## 23914 1
## 24614 1
## 26241 1
## 26707 5
## 27820 2
## 33120 2
## 39507 5
## 40483 4
## 45572 2
## 49461 3
## 49631 3
## 49854 2
## 50203 2
## 52974 5
## 66414 3
## 70813 4
## 77619 2
## 6498 5
## 8304 4
## 12234 5
## 19265 5
## 19614 3
## 20049 3
## 21388 4
## 23915 4
## 24615 5
## 25011 5
## 26708 5
## 27343 5
## 27821 5
## 28409 4
## 29738 5
## 30268 5
## 30572 3
## 32354 4
## 33971 2
## 36836 5
## 37510 3
## 39508 3
## 43790 4
## 44344 3
## 44791 2
## 47087 4
## 50075 2
## 51335 3
## 52975 4
## 57322 4
## 61335 3
## 62524 5
## 62730 4
## 63323 4
## 63500 5
## 63735 4
## 64105 4
## 64491 4
## 64984 3
## 67024 4
## 67827 5
## 68240 4
## 74990 5
## 75067 5
## 75109 3
## 75567 4
## 79721 4
## 85133 4
## 87588 3
## 88872 4
## 90105 3
## 37824 2
## 43791 4
## 44345 3
## 45246 3
## 45573 3
## 46442 2
## 47588 5
## 49271 3
## 49462 4
## 49632 2
## 49855 2
## 50076 2
## 50204 2
## 50334 2
## 50515 2
## 50709 2
## 51055 3
## 51172 2
## 82481 2
## 87465 3
## 91385 2
## 91499 3
## 1656 4
## 2031 2
## 2273 3
## 3565 3
## 6224 4
## 7995 4
## 8614 3
## 10499 2
## 11460 3
## 11708 4
## 14465 4
## 17385 3
## 19615 4
## 22140 4
## 25615 5
## 25974 5
## 27822 5
## 28656 4
## 29739 5
## 31358 3
## 32355 4
## 42308 3
## 48858 4
## 48986 4
## 52348 3
## 52976 4
## 63501 5
## 66415 4
## 67025 3
## 68421 4
## 75068 5
## 75256 4
## 75568 4
## 76024 3
## 76752 4
## 84122 3
## 85134 3
## 74 5
## 597 3
## 4233 3
## 6499 4
## 12825 3
## 14466 5
## 15500 3
## 16013 5
## 16384 2
## 16648 1
## 17944 5
## 19616 5
## 20583 5
## 20914 5
## 36185 5
## 37742 5
## 38471 1
## 38955 3
## 39509 3
## 40776 4
## 41612 5
## 41833 4
## 42309 4
## 43205 4
## 43792 5
## 44792 4
## 45029 4
## 45358 5
## 46140 4
## 48271 5
## 51860 5
## 56282 3
## 56622 4
## 56863 4
## 62731 3
## 62964 1
## 66100 5
## 67026 5
## 72675 3
## 78279 3
## 81692 2
## 82482 2
## 89674 2
## 92357 5
## 93789 4
## 95522 3
## 97315 3
## 97463 5
## 97751 2
## 97946 5
## 75 4
## 701 4
## 1071 5
## 1421 5
## 1918 4
## 2032 4
## 3376 4
## 3566 5
## 4028 4
## 4889 3
## 5414 4
## 5530 5
## 5723 3
## 6500 4
## 7175 1
## 7413 4
## 7607 5
## 8375 5
## 9245 3
## 9725 4
## 10168 3
## 10719 4
## 11217 5
## 11461 5
## 11634 4
## 12235 5
## 12712 4
## 13318 4
## 14467 5
## 15191 3
## 15501 4
## 15862 5
## 16014 3
## 16385 5
## 16649 1
## 16776 4
## 17257 3
## 17386 4
## 17579 3
## 17945 5
## 18303 2
## 18376 5
## 19617 5
## 20274 4
## 20756 4
## 20872 3
## 21729 4
## 22515 2
## 22820 4
## 23285 5
## 23916 4
## 24277 5
## 24616 5
## 25012 4
## 25221 4
## 25479 4
## 26242 3
## 26709 5
## 26938 3
## 27205 3
## 27576 3
## 27823 5
## 28027 4
## 28263 5
## 28956 5
## 29204 5
## 30573 5
## 31044 4
## 31625 5
## 31832 5
## 32035 4
## 33121 3
## 33383 5
## 33846 2
## 33972 3
## 34584 3
## 34758 2
## 34931 5
## 35164 3
## 35338 2
## 35525 2
## 35658 3
## 35765 3
## 36186 1
## 36837 5
## 37070 3
## 37380 4
## 37743 4
## 38472 4
## 38710 3
## 41205 4
## 41613 3
## 42034 5
## 42570 4
## 43206 5
## 43388 5
## 43577 5
## 43793 4
## 45030 4
## 45359 4
## 45574 1
## 46141 3
## 47088 4
## 50205 4
## 53613 4
## 53985 2
## 54695 3
## 55575 3
## 55948 4
## 56676 5
## 56864 3
## 57323 4
## 58945 5
## 59041 5
## 59377 3
## 59620 5
## 60454 2
## 60564 3
## 60901 4
## 62022 4
## 62234 3
## 63874 5
## 65597 4
## 66416 3
## 66546 5
## 66849 3
## 67212 5
## 67373 4
## 68023 5
## 68631 4
## 69254 2
## 69372 3
## 69746 3
## 70443 4
## 70589 3
## 70814 4
## 71081 3
## 71285 4
## 71524 4
## 71785 3
## 72434 4
## 74780 4
## 75365 5
## 75569 5
## 75733 4
## 76482 5
## 77086 2
## 78112 3
## 78419 5
## 79092 5
## 79824 5
## 80862 3
## 80962 2
## 81844 4
## 82126 4
## 82206 4
## 84027 5
## 84959 3
## 84987 4
## 85082 3
## 85219 3
## 85264 4
## 85733 2
## 85858 4
## 87243 2
## 91158 3
## 91328 4
## 92005 4
## 92358 3
## 93532 4
## 94188 4
## 94863 4
## 97951 3
## 1072 5
## 1657 3
## 2915 5
## 4029 5
## 4234 5
## 9138 1
## 10169 3
## 13319 4
## 15024 1
## 15502 4
## 16015 5
## 16386 4
## 16777 3
## 17580 5
## 17802 5
## 17946 5
## 18490 1
## 29205 3
## 33778 5
## 34475 4
## 36475 3
## 37627 4
## 37825 5
## 38332 4
## 38473 3
## 38876 3
## 38956 3
## 39510 4
## 39958 4
## 40116 2
## 41414 5
## 41614 5
## 41834 3
## 42310 5
## 43794 1
## 44346 3
## 44793 2
## 45121 4
## 45360 4
## 45575 4
## 46142 5
## 46318 3
## 46849 2
## 47939 5
## 49272 1
## 49633 5
## 49856 4
## 50335 3
## 50710 3
## 51336 5
## 53217 1
## 53458 1
## 56283 5
## 57036 3
## 57182 3
## 60640 5
## 61036 3
## 62023 4
## 62965 5
## 69373 4
## 72013 2
## 72272 4
## 72463 5
## 72676 5
## 74222 3
## 77620 5
## 78280 4
## 81845 2
## 82483 3
## 83346 4
## 85413 3
## 86087 4
## 86128 2
## 86208 3
## 86605 1
## 87244 5
## 87400 4
## 87466 1
## 87509 2
## 87678 2
## 87725 3
## 87953 1
## 88852 4
## 89484 4
## 89612 3
## 90225 2
## 91386 3
## 91744 3
## 92103 5
## 92196 4
## 92236 4
## 92698 2
## 92741 2
## 92817 5
## 93148 2
## 93655 3
## 93722 4
## 94764 2
## 94815 5
## 95523 5
## 95933 4
## 96456 5
## 96969 5
## 97440 1
## 97464 1
## 97687 3
## 76 4
## 598 3
## 702 4
## 1073 3
## 1658 3
## 2033 4
## 2534 4
## 2916 2
## 3454 1
## 3844 5
## 4030 5
## 5200 5
## 6501 4
## 7414 4
## 7608 5
## 8163 4
## 8305 4
## 10720 4
## 12826 5
## 14468 5
## 15318 2
## 16016 4
## 16387 3
## 17258 4
## 17387 4
## 17803 3
## 17947 5
## 18377 4
## 19266 4
## 19618 4
## 20915 4
## 21103 4
## 21495 3
## 22141 5
## 22422 5
## 22516 3
## 23286 4
## 23571 4
## 24617 5
## 25013 4
## 26710 5
## 27344 5
## 27824 5
## 28657 5
## 29206 4
## 30462 5
## 30574 4
## 31833 4
## 32356 4
## 32636 4
## 33507 4
## 34932 2
## 35339 2
## 35909 5
## 36476 3
## 37227 4
## 38173 5
## 38474 4
## 41615 5
## 42311 5
## 42985 4
## 43578 4
## 44347 5
## 45361 5
## 47089 5
## 50206 3
## 50711 3
## 56284 3
## 56677 4
## 56865 4
## 57183 3
## 58946 5
## 59202 3
## 60245 4
## 60902 4
## 61114 5
## 61219 2
## 61250 5
## 61336 4
## 61481 4
## 62525 4
## 62732 5
## 63875 5
## 64106 5
## 64492 5
## 65191 4
## 66101 5
## 66850 4
## 68720 5
## 69255 4
## 70525 3
## 72190 3
## 72954 4
## 73142 4
## 74223 3
## 74991 3
## 77213 5
## 79001 5
## 80374 3
## 83596 3
## 83717 4
## 84028 4
## 85859 2
## 86209 1
## 86539 3
## 87145 1
## 89011 5
## 89237 2
## 89647 3
## 90415 4
## 90492 4
## 90881 1
## 92104 5
## 92359 4
## 92562 5
## 94316 4
## 95585 4
## 95794 5
## 96541 4
## 97031 4
## 2712 4
## 2917 2
## 3567 2
## 6225 1
## 6502 2
## 7609 3
## 9412 4
## 9726 3
## 13890 4
## 14469 4
## 16388 2
## 17948 3
## 18642 1
## 18877 2
## 19267 2
## 22716 2
## 23287 1
## 24618 2
## 25480 2
## 26243 2
## 27577 4
## 27825 3
## 28410 2
## 28957 1
## 29740 3
## 30575 5
## 31045 2
## 32036 2
## 32637 2
## 32897 2
## 34476 1
## 39166 3
## 40484 2
## 41415 5
## 41835 2
## 42312 5
## 43389 3
## 43795 2
## 47890 2
## 48594 5
## 48747 5
## 48987 3
## 58727 3
## 59621 2
## 62388 1
## 63876 3
## 64362 1
## 64424 3
## 64985 3
## 66102 2
## 67828 3
## 71633 1
## 74992 2
## 75862 3
## 88506 3
## 89436 1
## 95239 3
## 97546 2
## 77 4
## 1074 3
## 2034 4
## 4235 4
## 4646 4
## 5724 3
## 6503 5
## 7415 3
## 10721 4
## 15053 2
## 16017 4
## 16778 4
## 17150 2
## 20275 3
## 20584 4
## 21104 3
## 24619 4
## 25749 3
## 26244 4
## 31626 3
## 33973 4
## 35340 2
## 36477 4
## 38877 3
## 45576 3
## 46143 4
## 53218 3
## 55949 3
## 62526 3
## 66103 5
## 69256 4
## 72677 4
## 74224 4
## 78281 3
## 79924 4
## 81846 4
## 85942 3
## 90022 4
## 92006 4
## 92105 4
## 92563 4
## 93533 5
## 4647 3
## 7610 4
## 8615 4
## 13603 4
## 13891 4
## 30576 3
## 33122 3
## 35910 3
## 39511 4
## 40777 3
## 41416 4
## 43796 3
## 44348 3
## 46443 3
## 46850 3
## 47495 2
## 48748 5
## 48988 4
## 50336 3
## 52474 4
## 52977 4
## 59378 1
## 87824 2
## 1659 4
## 14470 5
## 16018 5
## 16389 5
## 16779 5
## 17581 5
## 20757 5
## 26245 5
## 33974 4
## 36478 2
## 37826 5
## 38174 4
## 38711 4
## 39512 5
## 42313 3
## 42827 4
## 42986 5
## 45122 5
## 45362 4
## 46144 3
## 46319 4
## 46444 5
## 47699 5
## 48272 5
## 49634 4
## 49857 4
## 50337 3
## 50712 5
## 50964 4
## 51056 5
## 51337 5
## 52040 2
## 53848 5
## 56285 5
## 56575 2
## 56623 2
## 57037 2
## 61115 4
## 62024 5
## 62235 5
## 67027 4
## 72678 4
## 73826 4
## 73887 3
## 77621 4
## 78282 5
## 78586 5
## 78688 4
## 80292 3
## 81847 5
## 82484 5
## 82961 4
## 85734 4
## 85860 4
## 85943 4
## 86606 3
## 87245 5
## 89238 2
## 89485 4
## 89675 5
## 91288 4
## 92360 3
## 92742 4
## 2918 5
## 9413 3
## 12580 4
## 17949 4
## 21999 3
## 23572 5
## 24620 4
## 25222 4
## 26246 5
## 27826 3
## 30577 4
## 33123 4
## 33975 5
## 34293 4
## 39513 5
## 40117 3
## 41055 4
## 44349 2
## 47357 3
## 48989 5
## 50207 4
## 50338 5
## 50713 3
## 51173 4
## 53956 5
## 57686 4
## 59203 5
## 75570 5
## 95308 3
## 37628 3
## 39514 4
## 43797 1
## 44350 3
## 45577 3
## 46445 5
## 48273 5
## 48595 3
## 49635 5
## 49858 5
## 50714 5
## 52102 4
## 52349 1
## 52475 5
## 78469 1
## 78538 3
## 82485 2
## 82962 4
## 88332 4
## 91289 5
## 1422 5
## 6226 1
## 10300 2
## 11462 5
## 11709 4
## 13320 5
## 14235 4
## 17804 3
## 18878 5
## 19496 4
## 19619 5
## 23573 1
## 27206 1
## 31046 4
## 33124 4
## 33976 4
## 34477 3
## 35659 1
## 36187 3
## 36479 4
## 36838 4
## 37228 1
## 37381 5
## 44351 3
## 45031 3
## 48990 5
## 53459 3
## 54362 5
## 55159 1
## 56138 3
## 59622 5
## 61574 5
## 63204 5
## 64363 4
## 64785 4
## 66698 5
## 66760 4
## 67663 5
## 68632 5
## 70023 1
## 70815 3
## 72955 4
## 73255 4
## 73668 5
## 75069 4
## 76025 4
## 76483 4
## 77329 4
## 77410 2
## 77460 1
## 79265 4
## 80375 1
## 80728 1
## 81174 2
## 81232 4
## 86129 3
## 90277 1
## 95418 5
## 95425 5
## 95863 4
## 96613 4
## 97047 3
## 97969 4
## 97971 1
## 97978 5
## 97980 2
## 97982 1
## 97984 1
## 97985 3
## 78 5
## 1075 1
## 1660 1
## 2919 5
## 4236 5
## 14471 4
## 16019 5
## 16390 4
## 16780 4
## 17259 3
## 17582 4
## 17805 5
## 21105 5
## 26247 4
## 33977 5
## 34478 5
## 36188 2
## 38712 1
## 38957 1
## 39167 5
## 39515 4
## 39959 2
## 41616 4
## 41836 4
## 42035 3
## 42314 1
## 42732 4
## 42828 2
## 42987 5
## 43390 2
## 44352 1
## 45123 4
## 45578 4
## 45990 4
## 46446 5
## 48274 5
## 49859 3
## 50208 1
## 56286 4
## 56785 4
## 57038 1
## 61116 1
## 62236 3
## 62389 2
## 69374 3
## 72537 4
## 72679 3
## 73827 3
## 77622 1
## 78283 3
## 81848 5
## 82127 5
## 82486 2
## 83718 2
## 85560 4
## 86607 4
## 87246 5
## 87401 3
## 89110 2
## 89486 3
## 89562 3
## 91387 2
## 92106 5
## 92361 5
## 92818 2
## 93534 2
## 93790 4
## 96542 5
## 97688 3
## 6504 5
## 17950 4
## 18879 4
## 19053 5
## 23917 5
## 24621 4
## 26248 5
## 30097 4
## 31047 3
## 32357 5
## 32638 5
## 35911 4
## 37629 3
## 39516 5
## 40118 1
## 46447 5
## 46851 4
## 47865 3
## 49463 3
## 51057 5
## 58847 3
## 60012 4
## 63502 4
## 63736 3
## 63877 3
## 64902 3
## 65271 3
## 65409 3
## 68024 3
## 68977 4
## 72956 5
## 73143 4
## 73256 5
## 78047 3
## 78113 5
## 79515 5
## 87825 5
## 37827 5
## 39517 3
## 39960 3
## 44353 3
## 45247 5
## 45579 3
## 46320 3
## 46448 5
## 47358 4
## 49636 5
## 49860 3
## 50339 5
## 50715 3
## 51338 4
## 77623 4
## 78470 3
## 82759 5
## 87679 3
## 91290 5
## 91388 3
## 37828 3
## 39518 4
## 40279 4
## 40778 4
## 41056 4
## 41417 5
## 43798 3
## 44354 2
## 45248 4
## 47090 4
## 47359 3
## 47496 2
## 47589 3
## 47940 4
## 48275 4
## 48596 4
## 50340 2
## 50516 4
## 51861 3
## 52213 3
## 52350 4
## 52739 3
## 78689 3
## 88127 4
## 88731 3
## 92664 3
## 3845 3
## 17388 4
## 25481 4
## 25616 3
## 26939 5
## 33779 4
## 58390 1
## 58728 4
## 58947 3
## 61337 3
## 61482 4
## 63205 3
## 63878 3
## 64240 3
## 64493 3
## 66851 3
## 71525 4
## 71634 4
## 72957 3
## 73257 3
## 73554 3
## 75110 4
## 76281 3
## 79227 3
## 84123 1
## 95586 2
## 96221 3
## 37511 5
## 37829 4
## 39519 4
## 39961 3
## 40119 4
## 40280 4
## 40779 4
## 43799 5
## 44794 4
## 45249 5
## 45580 5
## 46321 4
## 46449 4
## 46852 5
## 47091 5
## 47497 5
## 47590 5
## 49273 4
## 49464 4
## 49637 4
## 49861 5
## 50077 5
## 50341 5
## 50517 5
## 50716 5
## 50965 4
## 51058 4
## 51174 4
## 51556 4
## 77624 3
## 78471 1
## 78690 5
## 87589 4
## 87826 5
## 87954 4
## 89780 4
## 89812 3
## 91291 4
## 91634 5
## 97527 3
## 79 3
## 1661 5
## 2035 5
## 2274 5
## 2535 3
## 2713 5
## 2920 5
## 3455 1
## 4648 5
## 4890 2
## 5049 4
## 5614 4
## 5667 1
## 6337 4
## 6505 4
## 7611 5
## 8497 4
## 8861 5
## 8984 5
## 9139 1
## 9414 5
## 9727 5
## 11005 1
## 11218 1
## 11859 5
## 12005 5
## 12938 2
## 13892 5
## 14236 3
## 14472 5
## 15192 5
## 15503 5
## 16020 5
## 16391 2
## 17151 1
## 17389 5
## 17583 5
## 17806 5
## 18643 2
## 19760 1
## 19782 3
## 19834 4
## 20050 5
## 20585 4
## 21106 3
## 21891 4
## 22258 2
## 22423 5
## 22717 5
## 23181 3
## 23288 1
## 25617 5
## 29492 5
## 29741 5
## 30578 5
## 31048 4
## 32037 4
## 32898 5
## 33125 5
## 33847 4
## 36480 4
## 36839 5
## 37071 4
## 37229 1
## 37744 4
## 38047 5
## 38175 5
## 38958 5
## 40780 5
## 41418 5
## 42315 5
## 42640 5
## 42733 5
## 43391 4
## 43800 5
## 44355 3
## 45363 5
## 48148 5
## 48597 5
## 49862 1
## 51175 5
## 51339 4
## 51862 5
## 52476 4
## 53460 1
## 53760 1
## 53795 1
## 53891 5
## 54363 5
## 54568 1
## 54602 1
## 54884 1
## 55024 1
## 55242 4
## 55424 1
## 55482 1
## 55685 1
## 55775 5
## 56624 1
## 57184 1
## 57376 3
## 57472 4
## 58100 2
## 59379 5
## 60641 5
## 61037 1
## 61117 4
## 62025 5
## 62966 4
## 69375 3
## 69957 5
## 71128 1
## 71237 1
## 71375 1
## 71635 4
## 72680 3
## 73979 3
## 75366 5
## 76026 5
## 76607 5
## 76837 5
## 79152 4
## 79290 5
## 79722 5
## 79825 4
## 80144 3
## 80228 5
## 80493 2
## 80551 4
## 80604 5
## 80642 5
## 81539 5
## 81849 4
## 82351 5
## 83597 5
## 83719 1
## 83848 4
## 83932 1
## 84373 1
## 84443 4
## 85735 4
## 86506 2
## 86608 5
## 86757 5
## 87097 1
## 87402 1
## 88625 3
## 88706 3
## 89676 4
## 89781 5
## 90278 5
## 90341 3
## 90372 1
## 90456 5
## 91389 1
## 91731 1
## 92237 3
## 92482 2
## 92819 4
## 92980 3
## 92999 1
## 93061 4
## 93309 5
## 93854 5
## 94387 4
## 94604 5
## 94724 3
## 95729 2
## 96970 5
## 97162 1
## 97441 1
## 97497 5
## 97741 5
## 97986 3
## 98002 4
## 98009 4
## 1662 4
## 2036 5
## 2275 4
## 5050 4
## 6506 5
## 7612 2
## 8616 5
## 9964 4
## 12006 4
## 13321 3
## 13893 5
## 14473 2
## 15504 4
## 17951 5
## 18644 3
## 18880 4
## 19497 4
## 20586 3
## 23918 5
## 25223 3
## 26940 4
## 27578 4
## 27827 4
## 28781 4
## 29207 3
## 32899 5
## 35912 5
## 41617 2
## 57687 5
## 63879 5
## 64986 5
## 66104 1
## 70590 3
## 74379 3
## 76608 3
## 76753 4
## 77197 1
## 87354 3
## 1076 5
## 2536 4
## 4237 3
## 6507 5
## 12827 5
## 14474 5
## 15505 4
## 16021 4
## 18378 3
## 20916 4
## 21107 4
## 26249 3
## 33978 5
## 36375 4
## 36481 3
## 37230 4
## 38048 5
## 38475 4
## 39168 1
## 39520 4
## 40281 4
## 41057 4
## 41419 5
## 41618 4
## 43579 5
## 43801 2
## 44356 3
## 44795 3
## 45364 5
## 45581 2
## 46069 3
## 46145 4
## 47498 5
## 49274 3
## 49465 4
## 50078 5
## 50209 3
## 50518 3
## 50717 4
## 51863 5
## 52103 2
## 52272 5
## 52477 4
## 56287 2
## 61118 4
## 62733 5
## 66105 3
## 81760 3
## 82826 4
## 82963 1
## 87590 4
## 87627 4
## 87680 3
## 88873 2
## 89319 3
## 90226 4
## 90416 2
## 91857 4
## 92107 4
## 94844 4
## 80 3
## 1077 4
## 2037 4
## 2276 5
## 3568 4
## 3846 5
## 5725 4
## 6091 3
## 6508 5
## 7416 3
## 7613 5
## 8164 4
## 8239 4
## 8617 4
## 9415 1
## 10722 4
## 11860 4
## 12236 5
## 12713 4
## 13322 3
## 13894 5
## 14475 5
## 16781 2
## 17390 3
## 17952 5
## 18379 3
## 19268 5
## 20276 5
## 20917 4
## 21496 4
## 21730 4
## 22000 5
## 22424 4
## 22517 3
## 23289 4
## 23919 5
## 24278 4
## 24622 4
## 25014 5
## 25224 4
## 25750 5
## 26250 4
## 26711 5
## 26941 4
## 27579 4
## 27828 4
## 29208 4
## 29493 3
## 29742 4
## 29961 4
## 30269 4
## 30839 4
## 31049 3
## 31834 4
## 32038 4
## 33126 4
## 33384 3
## 33848 3
## 34294 4
## 36840 3
## 37630 1
## 37830 3
## 39521 3
## 40120 2
## 41058 1
## 41206 2
## 42316 5
## 44357 5
## 44796 2
## 45250 3
## 45582 4
## 46322 4
## 46450 2
## 47092 4
## 47700 4
## 48991 4
## 49466 2
## 49638 2
## 50079 4
## 50519 3
## 51340 4
## 51557 3
## 51637 2
## 51712 3
## 51864 4
## 52104 3
## 53219 2
## 55950 5
## 57941 3
## 59380 4
## 61819 4
## 61892 5
## 62734 4
## 66106 4
## 68241 4
## 70816 3
## 74225 2
## 75111 4
## 75571 3
## 75863 4
## 77625 3
## 78587 3
## 79002 4
## 82487 3
## 85135 4
## 87779 1
## 88874 4
## 90227 2
## 90666 3
## 90747 4
## 93196 3
## 94189 4
## 95103 3
## 96892 4
## 81 4
## 469 4
## 1078 4
## 1423 4
## 1663 2
## 2038 5
## 2277 5
## 2921 5
## 3159 4
## 3569 5
## 4031 3
## 4238 3
## 4649 5
## 5051 4
## 5415 3
## 5531 2
## 6509 5
## 7003 4
## 7417 4
## 7614 4
## 7996 5
## 8376 4
## 8618 5
## 8985 4
## 9416 5
## 9728 4
## 9965 4
## 10301 5
## 10425 3
## 10500 4
## 10723 4
## 11219 5
## 11463 4
## 11861 4
## 12237 4
## 12478 3
## 12714 3
## 13082 5
## 13323 4
## 13604 5
## 13895 5
## 14237 4
## 14476 4
## 15127 2
## 15506 4
## 16022 4
## 16392 4
## 16782 5
## 17260 4
## 17391 4
## 17584 4
## 17953 5
## 18526 4
## 18881 4
## 19054 3
## 19269 2
## 20051 4
## 20277 4
## 20587 4
## 20758 4
## 21497 4
## 21892 4
## 22001 2
## 22142 5
## 22518 5
## 22918 3
## 23290 4
## 23920 4
## 24279 5
## 24623 5
## 25225 4
## 25618 4
## 25751 2
## 25975 3
## 26251 5
## 26942 4
## 27207 5
## 27829 4
## 28782 4
## 28958 4
## 29209 4
## 29494 4
## 29743 2
## 30098 4
## 30270 3
## 30579 5
## 30840 4
## 31050 4
## 31835 4
## 32039 5
## 32765 1
## 32900 5
## 33127 4
## 33508 3
## 33674 4
## 33780 3
## 33979 4
## 34295 4
## 34585 4
## 34933 5
## 35165 4
## 35341 4
## 35660 5
## 35766 4
## 35913 4
## 36189 1
## 36482 4
## 36841 4
## 37382 5
## 37745 1
## 37831 3
## 38049 4
## 38176 4
## 38333 3
## 38476 4
## 38959 4
## 39169 5
## 39522 4
## 39962 1
## 40121 1
## 40485 5
## 40781 4
## 41207 4
## 41619 3
## 41837 4
## 42036 5
## 42317 3
## 42734 4
## 42829 3
## 42988 3
## 43207 5
## 43392 4
## 43802 3
## 44358 5
## 45365 4
## 45583 2
## 45991 3
## 46146 2
## 46451 5
## 47093 4
## 47360 4
## 48276 5
## 48749 4
## 48859 4
## 48992 5
## 49275 1
## 49639 3
## 49863 3
## 50342 4
## 50718 3
## 51059 4
## 51176 3
## 51341 3
## 51794 3
## 51865 1
## 52041 4
## 52740 4
## 53220 1
## 53413 3
## 53614 4
## 54696 4
## 56288 3
## 56866 4
## 58101 4
## 58524 5
## 59042 4
## 59381 4
## 59623 4
## 60869 4
## 60903 3
## 61119 3
## 61220 2
## 61575 3
## 61820 3
## 62026 4
## 62237 4
## 62967 3
## 63206 5
## 63503 3
## 63880 4
## 64107 4
## 64661 4
## 64903 4
## 65885 3
## 66107 3
## 66417 4
## 66547 5
## 67538 5
## 68721 4
## 68881 3
## 69086 3
## 69376 3
## 69646 4
## 70591 4
## 70817 4
## 71417 4
## 72014 4
## 72273 5
## 72538 3
## 72681 4
## 73314 3
## 73828 3
## 74049 3
## 74226 4
## 75572 4
## 75864 3
## 76027 4
## 76400 5
## 77626 3
## 77817 4
## 77949 3
## 78114 5
## 78284 4
## 79153 4
## 80413 3
## 80643 4
## 80863 4
## 80963 4
## 81233 5
## 81540 4
## 81850 3
## 82128 3
## 82230 3
## 82488 4
## 82964 4
## 83347 3
## 83598 3
## 83720 4
## 83849 3
## 84444 4
## 84531 4
## 84687 3
## 84768 5
## 85220 4
## 85561 2
## 85736 2
## 86609 4
## 86758 3
## 86865 3
## 87146 2
## 87247 4
## 87510 3
## 87681 2
## 87726 2
## 88360 3
## 89239 4
## 91159 2
## 91292 2
## 91569 5
## 91752 4
## 92007 3
## 92108 4
## 92362 4
## 92820 3
## 93000 2
## 93062 4
## 93171 2
## 93535 2
## 93656 2
## 93791 3
## 94934 4
## 95309 4
## 95999 3
## 96171 4
## 96543 4
## 97465 4
## 97752 3
## 97933 3
## 98023 3
## 98034 4
## 39523 5
## 40782 3
## 41208 1
## 41420 5
## 44359 5
## 46452 4
## 46853 4
## 47094 4
## 47499 4
## 47701 3
## 47941 4
## 48277 4
## 48598 5
## 48750 5
## 49467 1
## 51060 2
## 51342 5
## 51795 1
## 51866 4
## 52273 1
## 52351 3
## 52478 3
## 52712 1
## 52741 4
## 53380 1
## 68978 4
## 77950 5
## 78691 1
## 78819 3
## 82827 1
## 82965 1
## 88315 2
## 88361 5
## 88626 1
## 88707 4
## 88805 5
## 88830 5
## 88846 3
## 95453 1
## 97225 1
## 98057 3
## 2278 2
## 4650 3
## 5615 4
## 7176 5
## 7615 5
## 9140 1
## 9246 5
## 9417 4
## 10724 3
## 11464 5
## 13896 5
## 15507 5
## 16783 5
## 21498 1
## 22002 5
## 24280 5
## 26252 2
## 27580 4
## 28411 4
## 29495 5
## 30463 2
## 30580 3
## 31051 3
## 32639 5
## 33128 5
## 33980 5
## 36190 4
## 39524 5
## 48993 5
## 52851 3
## 53615 1
## 53957 5
## 54251 5
## 55951 3
## 57942 5
## 58102 4
## 59043 4
## 59382 5
## 61338 5
## 61821 5
## 74489 5
## 76028 5
## 76401 5
## 76609 5
## 78115 5
## 79093 5
## 80229 1
## 80864 5
## 81018 3
## 81175 5
## 81234 4
## 81440 3
## 81541 3
## 82352 4
## 83599 4
## 84266 2
## 84572 4
## 84688 1
## 89844 4
## 90690 5
## 93470 2
## 95310 3
## 95507 5
## 82 3
## 599 2
## 977 1
## 1079 4
## 1664 4
## 1919 2
## 2537 2
## 2714 1
## 2922 3
## 3160 1
## 3293 1
## 3310 1
## 3377 1
## 3456 1
## 4032 1
## 4239 5
## 12828 1
## 14477 3
## 15025 1
## 15036 1
## 15054 1
## 15128 2
## 15193 1
## 15234 1
## 15319 1
## 15508 3
## 15728 1
## 15863 1
## 16023 2
## 16393 2
## 16650 1
## 16784 4
## 17152 2
## 17261 2
## 17392 1
## 17585 3
## 17807 2
## 18380 2
## 18491 1
## 19620 2
## 20546 1
## 20588 1
## 20759 2
## 20873 1
## 20918 1
## 21108 2
## 33781 4
## 33849 1
## 33981 4
## 34416 1
## 34479 3
## 36191 1
## 36376 1
## 36483 5
## 37231 1
## 37512 1
## 37631 1
## 37832 2
## 38647 1
## 39106 1
## 39525 3
## 39963 1
## 40122 1
## 40230 1
## 40282 2
## 40332 1
## 40364 2
## 40684 1
## 40783 1
## 41059 4
## 41620 1
## 41838 4
## 42037 3
## 42318 2
## 42571 1
## 42641 2
## 42694 1
## 42735 4
## 42830 2
## 42989 4
## 43208 3
## 43393 2
## 43580 2
## 43803 1
## 44206 2
## 44360 4
## 44797 4
## 45032 2
## 45124 3
## 45251 1
## 45584 2
## 46323 1
## 46453 3
## 46854 2
## 47095 2
## 47361 1
## 47500 2
## 47591 1
## 47702 1
## 47866 1
## 49276 3
## 49468 2
## 49640 1
## 49864 2
## 50080 1
## 50210 2
## 50343 1
## 50520 3
## 50719 3
## 50966 1
## 51004 1
## 51061 1
## 51177 2
## 51343 3
## 51558 1
## 51614 1
## 51638 2
## 51679 1
## 53221 2
## 53340 1
## 53359 1
## 53414 1
## 53761 1
## 53796 3
## 53849 2
## 56289 4
## 56576 1
## 56625 2
## 56678 1
## 56786 2
## 56867 1
## 57039 3
## 57185 2
## 57271 2
## 58361 1
## 60904 1
## 61038 1
## 61078 1
## 61120 3
## 61194 1
## 61221 1
## 62027 2
## 62238 1
## 62390 2
## 62735 2
## 62968 4
## 63113 1
## 66108 3
## 69257 1
## 69377 2
## 69591 1
## 72274 4
## 72435 1
## 72464 2
## 72539 4
## 72682 3
## 72848 1
## 73829 3
## 73888 2
## 74227 3
## 77516 3
## 77627 2
## 77913 1
## 77951 4
## 78048 1
## 78285 2
## 78472 1
## 78539 1
## 78692 3
## 79154 2
## 80056 2
## 80293 1
## 80361 1
## 81693 2
## 81761 1
## 81851 4
## 82077 1
## 82129 2
## 82489 1
## 82760 1
## 83348 2
## 83465 1
## 83500 1
## 83600 2
## 83721 1
## 83850 1
## 83906 1
## 83917 1
## 85354 2
## 85414 3
## 85533 1
## 85562 3
## 85618 1
## 85737 2
## 85804 1
## 85861 1
## 85944 1
## 86022 2
## 86071 1
## 86088 1
## 86130 1
## 86210 1
## 86235 1
## 86283 3
## 86383 1
## 86436 1
## 86540 1
## 86610 3
## 86759 3
## 86806 1
## 87147 2
## 87248 1
## 87375 2
## 87403 2
## 87467 1
## 87511 1
## 87591 1
## 87628 3
## 87682 1
## 87727 2
## 87780 1
## 87827 2
## 87955 1
## 88003 1
## 88036 1
## 88049 1
## 88057 1
## 88074 1
## 88128 1
## 88875 1
## 88956 1
## 89012 1
## 89111 3
## 89189 2
## 89240 1
## 89320 1
## 89336 3
## 89437 1
## 89487 1
## 89563 1
## 89613 1
## 89648 1
## 89677 3
## 89782 3
## 89813 1
## 90228 1
## 90342 1
## 90417 1
## 91024 4
## 91058 2
## 91097 1
## 91113 1
## 91160 1
## 91188 2
## 91220 1
## 91240 1
## 91250 1
## 91269 2
## 91293 1
## 91329 1
## 91353 2
## 91390 2
## 91462 1
## 91500 1
## 91528 1
## 91635 1
## 91732 1
## 91745 1
## 91858 1
## 91898 1
## 91959 1
## 92008 1
## 92326 1
## 92483 1
## 92665 1
## 92743 1
## 92783 1
## 92821 2
## 93001 1
## 93030 1
## 93172 1
## 93281 1
## 93536 2
## 93657 2
## 93723 1
## 93792 2
## 93833 2
## 93878 2
## 93923 2
## 93962 1
## 93996 1
## 94030 2
## 94190 1
## 94229 1
## 94506 1
## 94548 1
## 94572 2
## 94591 1
## 94605 1
## 94624 1
## 94780 1
## 94799 1
## 94816 1
## 94845 1
## 94999 1
## 95186 1
## 95199 1
## 95240 2
## 95363 1
## 95465 1
## 95479 1
## 95524 1
## 95587 2
## 95697 1
## 95917 1
## 95927 1
## 95934 2
## 96063 1
## 96075 1
## 96080 2
## 96105 3
## 96112 1
## 96207 1
## 96236 1
## 96243 1
## 96396 1
## 96544 1
## 96583 1
## 96591 1
## 96622 1
## 96818 1
## 97299 1
## 97349 1
## 97424 1
## 97451 1
## 97485 1
## 97528 1
## 97625 1
## 97660 1
## 97668 2
## 97713 1
## 97728 1
## 97742 1
## 97769 1
## 97827 1
## 97833 1
## 97840 1
## 97849 1
## 97877 1
## 97884 1
## 97947 1
## 98003 1
## 98064 1
## 98068 1
## 98071 1
## 98075 1
## 98076 1
## 98078 1
## 98084 1
## 98087 1
## 98092 1
## 98093 1
## 98099 1
## 98102 1
## 98108 1
## 98109 1
## 98113 1
## 98117 1
## 98119 1
## 98124 1
## 98126 1
## 98137 1
## 98147 1
## 98156 1
## 98160 1
## 98161 1
## 98162 1
## 98163 1
## 98165 1
## 98166 1
## 98171 1
## 98173 1
## 98178 1
## 98182 1
## 98183 1
## 98184 1
## 98186 1
## 98189 1
## 98190 1
## 98195 1
## 98197 1
## 98203 1
## 98206 1
## 98209 1
## 98211 1
## 98213 1
## 98215 1
## 98218 1
## 98220 1
## 98221 1
## 98222 1
## 98224 1
## 98225 2
## 98230 1
## 98236 1
## 98240 1
## 98243 1
## 98245 1
## 98248 1
## 98249 1
## 98251 1
## 98261 1
## 98268 1
## 98272 1
## 98277 1
## 98284 1
## 98290 2
## 98298 1
## 98302 1
## 98308 1
## 98311 1
## 98316 1
## 98322 1
## 98325 1
## 98331 1
## 98334 1
## 98336 1
## 98339 1
## 98344 1
## 98353 1
## 98360 1
## 83 4
## 2923 4
## 6227 3
## 6510 5
## 9418 5
## 14478 3
## 15509 4
## 16785 3
## 17262 4
## 17808 5
## 20919 3
## 23921 5
## 25619 5
## 26253 5
## 28412 4
## 30841 3
## 33982 3
## 36484 3
## 39170 3
## 43209 2
## 45366 3
## 58103 5
## 62028 4
## 63324 5
## 72540 5
## 83722 3
## 86611 3
## 87148 4
## 6511 2
## 7304 2
## 7418 4
## 8377 2
## 10501 3
## 12007 3
## 12939 3
## 13324 3
## 16786 3
## 20278 3
## 22321 4
## 25226 3
## 25482 5
## 26254 2
## 30581 4
## 30842 3
## 32040 3
## 32541 4
## 33129 4
## 33983 4
## 34480 1
## 34586 3
## 34759 4
## 34934 4
## 35166 3
## 35342 5
## 37383 4
## 38477 2
## 39171 2
## 39526 3
## 40486 2
## 41060 3
## 41621 4
## 41839 5
## 45585 3
## 51062 3
## 52852 3
## 54031 2
## 54252 4
## 56290 4
## 59044 2
## 60455 2
## 60565 3
## 63881 5
## 64241 5
## 70444 3
## 75430 4
## 80414 4
## 81542 4
## 94688 2
## 96025 3
## 96819 1
## 96856 3
## 84 4
## 1080 3
## 1665 5
## 2039 3
## 2538 3
## 2715 4
## 2924 3
## 3378 4
## 3570 3
## 4240 4
## 4891 3
## 5360 2
## 5377 3
## 5616 4
## 5896 4
## 6092 4
## 6512 4
## 7004 4
## 7083 4
## 7616 3
## 7941 5
## 7997 4
## 8619 4
## 8862 4
## 8986 4
## 9141 3
## 9419 3
## 9729 4
## 9966 4
## 10170 3
## 10502 3
## 10725 3
## 11220 3
## 11710 5
## 12008 3
## 12238 4
## 12581 3
## 12715 3
## 12829 4
## 13083 4
## 13605 2
## 13897 4
## 14479 5
## 15864 4
## 16024 2
## 16394 2
## 16787 2
## 17393 5
## 17809 3
## 17954 5
## 18645 5
## 19055 5
## 19621 5
## 20052 3
## 21499 3
## 21893 3
## 22425 3
## 22519 2
## 22919 3
## 23057 4
## 23121 3
## 23692 5
## 23922 4
## 24624 3
## 25015 3
## 25227 4
## 26255 4
## 26712 4
## 26943 4
## 27345 4
## 27830 4
## 28413 4
## 28658 4
## 29496 4
## 29744 4
## 30582 3
## 30843 3
## 31535 4
## 31627 4
## 32041 4
## 32542 4
## 32640 5
## 32901 4
## 33130 4
## 33385 3
## 33509 3
## 33782 3
## 33850 5
## 34296 4
## 35526 3
## 36192 2
## 36485 4
## 36842 4
## 37384 3
## 38478 4
## 38713 2
## 38878 2
## 38960 3
## 39527 3
## 39964 3
## 40283 5
## 41421 4
## 41840 4
## 42038 5
## 42319 4
## 42572 3
## 43210 5
## 43581 5
## 43804 4
## 44207 4
## 46855 3
## 48278 4
## 48860 3
## 48994 5
## 49469 5
## 51867 5
## 52978 5
## 53762 1
## 53892 5
## 53958 3
## 54102 4
## 54364 4
## 54471 5
## 54969 4
## 55243 4
## 55483 3
## 55576 3
## 55686 3
## 55776 3
## 55952 3
## 56291 2
## 56868 3
## 57040 3
## 57186 2
## 58104 4
## 58729 4
## 60013 3
## 60246 3
## 60642 4
## 61121 3
## 61339 4
## 62391 4
## 62969 2
## 63207 4
## 63504 4
## 63882 5
## 64242 4
## 64425 4
## 64494 5
## 64726 4
## 64987 5
## 65192 4
## 65272 5
## 65702 4
## 65886 4
## 66109 4
## 66294 4
## 66548 4
## 66699 4
## 66852 5
## 67028 5
## 67277 4
## 67664 4
## 67774 3
## 67829 4
## 68242 4
## 68422 5
## 68541 4
## 68722 4
## 69958 3
## 70240 3
## 70818 2
## 71636 4
## 71825 3
## 72015 5
## 72275 3
## 72541 4
## 72884 4
## 73144 4
## 73258 5
## 74380 3
## 74490 4
## 74600 5
## 74945 3
## 74993 4
## 75112 4
## 75196 4
## 75226 3
## 75300 5
## 75573 3
## 75865 4
## 76029 3
## 76282 4
## 76610 3
## 77032 3
## 77087 2
## 77517 4
## 78863 4
## 79003 3
## 79094 5
## 79291 5
## 79651 4
## 79723 4
## 80145 4
## 80230 3
## 80644 4
## 80865 3
## 81235 3
## 81366 3
## 81493 3
## 81543 3
## 81852 3
## 82353 3
## 83907 3
## 84374 4
## 84769 4
## 85101 3
## 85355 4
## 86320 4
## 86347 3
## 86612 3
## 86960 4
## 89979 3
## 90106 4
## 90279 3
## 90343 4
## 90541 3
## 90991 3
## 91636 3
## 91786 3
## 91859 4
## 91960 4
## 92109 3
## 92238 2
## 92591 4
## 94031 3
## 94606 4
## 94935 4
## 95241 2
## 95381 4
## 95670 4
## 95698 5
## 95882 3
## 96037 5
## 96137 5
## 96524 3
## 97202 3
## 97904 2
## 98366 4
## 98371 3
## 98376 5
## 1666 4
## 2925 3
## 3847 4
## 4241 4
## 4651 5
## 6093 4
## 6513 4
## 11711 5
## 15510 4
## 15762 4
## 15865 4
## 17955 5
## 22426 1
## 25620 4
## 26256 4
## 29497 4
## 29745 5
## 30099 4
## 31359 3
## 33131 4
## 34297 4
## 36486 4
## 37072 3
## 39528 4
## 40784 5
## 42039 4
## 42320 4
## 42695 4
## 43582 5
## 43805 4
## 44208 5
## 47096 4
## 48995 4
## 49470 5
## 58105 5
## 60247 4
## 63505 4
## 66853 5
## 67029 4
## 68423 4
## 74900 4
## 78693 4
## 79391 3
## 79458 4
## 81694 4
## 86613 4
## 89845 3
## 92592 4
## 2279 1
## 5052 4
## 5416 5
## 5897 5
## 7177 1
## 7419 4
## 7617 3
## 9967 5
## 10503 5
## 10726 5
## 13084 3
## 13898 5
## 14480 4
## 15129 2
## 16025 5
## 16395 2
## 16788 2
## 20589 4
## 20760 4
## 22322 5
## 25483 4
## 30844 5
## 34481 4
## 34587 5
## 36487 2
## 37632 2
## 38479 1
## 39172 4
## 39529 1
## 40333 3
## 40785 1
## 42831 4
## 44361 1
## 45125 4
## 45586 3
## 45992 2
## 46147 3
## 46324 3
## 46454 5
## 47097 3
## 47592 4
## 49641 5
## 50521 3
## 51005 4
## 51063 3
## 51178 4
## 51344 3
## 51713 3
## 52853 5
## 54697 4
## 56292 3
## 56577 1
## 61893 5
## 63114 4
## 69087 4
## 69378 4
## 69747 4
## 70024 1
## 70592 5
## 70819 4
## 72016 4
## 72276 4
## 72465 3
## 72542 4
## 78116 4
## 78588 4
## 80294 3
## 81853 3
## 83179 2
## 84029 2
## 85619 2
## 86089 4
## 87956 3
## 88129 4
## 89190 5
## 89678 3
## 89846 5
## 91114 3
## 91270 3
## 91391 4
## 92363 5
## 93002 3
## 93365 5
## 93471 3
## 94564 1
## 96801 3
## 97433 4
## 97669 4
## 98138 3
## 98312 2
## 98378 2
## 1424 5
## 3848 4
## 4652 4
## 7084 4
## 8620 5
## 8863 5
## 9420 4
## 9730 4
## 11465 5
## 11712 4
## 13606 3
## 15866 5
## 19056 3
## 19270 4
## 19622 5
## 23291 5
## 24281 5
## 25016 2
## 25752 5
## 27581 4
## 28414 5
## 29498 4
## 29746 4
## 31052 2
## 31836 4
## 32042 4
## 32641 4
## 32766 4
## 32902 3
## 33132 5
## 37385 3
## 42040 5
## 46455 4
## 58106 4
## 58525 5
## 58730 4
## 59383 4
## 59624 4
## 61340 5
## 67775 3
## 67830 3
## 71637 1
## 75574 5
## 76484 5
## 76611 5
## 76925 3
## 79095 5
## 79652 5
## 79925 4
## 81019 3
## 81236 4
## 81367 4
## 82354 4
## 84770 5
## 94123 4
## 95311 3
## 897 4
## 1081 5
## 2040 5
## 2539 4
## 3571 5
## 4653 3
## 5417 3
## 6514 4
## 7305 4
## 7618 4
## 8621 5
## 8987 3
## 9421 4
## 10426 4
## 10504 4
## 10727 5
## 12009 4
## 13325 5
## 13607 5
## 13899 5
## 14481 4
## 16396 3
## 16789 4
## 17956 4
## 20053 5
## 20279 3
## 20761 4
## 21109 3
## 21500 5
## 22143 3
## 22323 3
## 22520 3
## 22718 4
## 22920 4
## 24282 5
## 24625 5
## 25228 4
## 25484 4
## 25976 5
## 26257 3
## 27346 4
## 27831 3
## 28415 3
## 28959 3
## 29210 3
## 30100 4
## 30583 2
## 31053 4
## 31360 3
## 31837 2
## 32043 4
## 32358 4
## 33133 5
## 33510 5
## 34588 3
## 35767 3
## 35914 4
## 36488 3
## 37232 1
## 39965 3
## 40487 5
## 42832 3
## 44362 4
## 45587 2
## 46456 4
## 48996 5
## 50344 3
## 52854 4
## 52979 4
## 55160 5
## 57688 5
## 60014 4
## 60905 4
## 61341 4
## 61754 4
## 61894 5
## 62527 4
## 63883 5
## 64108 5
## 64243 3
## 65273 5
## 65703 3
## 66418 3
## 66549 2
## 67462 4
## 69959 4
## 70025 2
## 70593 5
## 70820 4
## 72277 5
## 74228 5
## 74381 4
## 74601 5
## 74749 2
## 75575 4
## 77330 4
## 77628 3
## 78117 3
## 78864 5
## 80295 4
## 81020 3
## 81854 5
## 83851 4
## 83983 2
## 84771 2
## 87149 2
## 87728 2
## 89337 3
## 89488 4
## 93310 3
## 96802 2
## 97505 3
## 85 5
## 703 5
## 1082 3
## 1425 5
## 1667 3
## 1920 5
## 2540 4
## 2716 5
## 2926 2
## 3161 3
## 3379 5
## 3457 2
## 4033 4
## 4654 4
## 4994 4
## 5053 3
## 5898 4
## 5977 3
## 6515 5
## 7619 5
## 8165 3
## 8240 3
## 8306 3
## 10728 3
## 11466 4
## 12239 5
## 12582 3
## 13326 5
## 13608 4
## 14238 5
## 14482 4
## 15055 2
## 16397 1
## 16651 1
## 16790 2
## 17394 5
## 17957 4
## 18381 3
## 18527 4
## 18646 5
## 18882 5
## 19057 5
## 19271 4
## 19498 4
## 19623 4
## 20054 5
## 20920 4
## 21110 5
## 22144 4
## 22719 3
## 23058 5
## 23122 4
## 23693 4
## 23923 5
## 24283 5
## 24626 5
## 25017 5
## 25229 4
## 25621 5
## 25753 5
## 25977 5
## 26258 3
## 27347 5
## 27582 2
## 28416 5
## 28960 5
## 29499 5
## 29747 5
## 29962 4
## 30101 5
## 30845 3
## 31054 5
## 31536 5
## 31838 1
## 32767 1
## 33134 5
## 34482 4
## 35915 5
## 36843 5
## 37386 3
## 38050 4
## 38177 4
## 38846 4
## 38961 2
## 41841 4
## 42041 5
## 42321 3
## 42833 2
## 43211 5
## 45588 5
## 46070 3
## 48279 2
## 48861 4
## 48997 5
## 54103 4
## 54365 3
## 56293 2
## 57559 3
## 58107 5
## 59384 5
## 61195 4
## 61342 5
## 62392 5
## 62528 5
## 63325 5
## 63506 5
## 63884 5
## 64109 5
## 64244 4
## 64364 5
## 64426 5
## 64555 5
## 64727 3
## 64988 5
## 65274 5
## 65410 4
## 65485 4
## 65648 3
## 65815 5
## 66419 5
## 66550 4
## 66700 4
## 66761 4
## 67213 1
## 67278 4
## 67539 5
## 67831 4
## 68025 5
## 68102 4
## 68243 5
## 68723 3
## 68831 4
## 70821 4
## 71638 5
## 72017 4
## 72543 3
## 72958 5
## 73315 4
## 73805 2
## 74447 4
## 74602 5
## 74722 3
## 74901 5
## 74946 4
## 75301 4
## 75734 5
## 75866 3
## 76223 4
## 76283 5
## 76485 4
## 76754 4
## 76926 3
## 79096 4
## 79516 4
## 81021 2
## 81855 3
## 82966 4
## 84772 5
## 85415 3
## 85620 1
## 86807 4
## 86961 3
## 87113 4
## 88806 2
## 89679 2
## 90418 5
## 91501 3
## 91762 4
## 92593 4
## 92627 5
## 93909 3
## 93997 5
## 94124 5
## 94864 4
## 94903 5
## 95200 4
## 95242 5
## 95982 3
## 98035 3
## 98246 4
## 98385 3
## 98395 4
## 98413 4
## 98417 4
## 98421 5
## 1083 4
## 1668 1
## 2927 4
## 4034 3
## 14483 4
## 16026 4
## 16398 3
## 16791 3
## 17586 3
## 20590 4
## 20762 4
## 33984 4
## 36489 5
## 37833 4
## 39530 3
## 40786 4
## 41422 5
## 41622 4
## 42322 4
## 42834 3
## 42990 3
## 44363 5
## 45126 3
## 45589 3
## 46457 4
## 47098 5
## 47942 4
## 48280 5
## 50345 4
## 50522 2
## 50720 3
## 51345 4
## 51868 1
## 52742 4
## 53415 2
## 56294 4
## 62029 5
## 66110 3
## 69049 2
## 69258 4
## 69379 3
## 72278 4
## 72683 2
## 74229 4
## 78286 3
## 79155 3
## 80296 3
## 81856 3
## 82490 3
## 82967 4
## 85738 2
## 85945 3
## 88362 3
## 88507 2
## 89489 2
## 91025 2
## 91115 2
## 91463 3
## 98010 2
## 11713 5
## 40787 3
## 41061 3
## 41423 4
## 43806 4
## 44364 3
## 46458 4
## 46856 4
## 47099 4
## 47703 3
## 48281 5
## 48599 5
## 48751 5
## 50721 3
## 51064 4
## 51179 2
## 51796 3
## 51869 4
## 52105 3
## 52274 4
## 82828 4
## 82968 3
## 83117 3
## 83180 3
## 88257 3
## 88460 3
## 88574 4
## 1084 4
## 1669 5
## 4242 4
## 6516 4
## 14484 5
## 15235 4
## 15511 2
## 16399 2
## 16792 2
## 17587 3
## 17958 4
## 36193 3
## 38714 1
## 38962 2
## 39173 4
## 39531 5
## 40788 3
## 42323 2
## 42573 3
## 43394 5
## 44209 4
## 44798 4
## 46857 4
## 47100 5
## 51870 4
## 62970 2
## 67030 4
## 85356 4
## 90229 3
## 94032 4
## 95699 4
## 96038 4
## 96208 2
## 97529 3
## 98434 5
## 86 4
## 470 3
## 3849 4
## 4035 2
## 4243 4
## 4892 3
## 5279 3
## 5418 3
## 7620 1
## 9422 5
## 10171 2
## 10302 3
## 10729 4
## 11221 2
## 12940 3
## 13327 1
## 14485 5
## 15512 1
## 16027 4
## 16793 3
## 17153 1
## 17959 5
## 20591 2
## 21501 4
## 21894 4
## 22324 4
## 22521 3
## 24627 4
## 25485 4
## 26713 4
## 27832 4
## 28961 4
## 29211 1
## 30102 5
## 32044 4
## 33511 4
## 35916 3
## 36490 4
## 38051 3
## 39532 3
## 39966 2
## 40123 1
## 40789 4
## 41842 3
## 42324 4
## 42736 4
## 42991 5
## 43807 4
## 44365 1
## 45590 1
## 46459 4
## 46858 4
## 47704 4
## 47943 4
## 48282 4
## 50523 1
## 50722 3
## 51180 3
## 51346 1
## 52106 1
## 52479 4
## 52685 1
## 52743 3
## 53381 3
## 53543 4
## 53763 1
## 55244 4
## 55777 3
## 55953 3
## 56295 3
## 56626 4
## 56869 3
## 57187 3
## 59625 4
## 60015 4
## 61576 3
## 62971 2
## 64245 5
## 64427 5
## 66111 4
## 69131 1
## 69960 4
## 70026 3
## 70445 3
## 71526 4
## 74133 4
## 77331 4
## 77952 1
## 78118 4
## 78589 2
## 78694 4
## 79004 4
## 80146 3
## 80552 3
## 81544 4
## 81857 4
## 82829 4
## 83243 4
## 83723 3
## 84445 3
## 84689 3
## 85416 3
## 85946 2
## 86023 2
## 86614 4
## 87355 3
## 87404 3
## 87828 3
## 88363 1
## 88708 4
## 89338 2
## 89929 4
## 94388 3
## 94480 4
## 94689 2
## 95525 3
## 96149 4
## 97466 3
## 98440 4
## 98445 3
## 87 4
## 704 4
## 1085 3
## 1426 3
## 1670 4
## 2280 5
## 2541 4
## 2928 4
## 3572 5
## 3850 4
## 4244 2
## 4478 3
## 4655 5
## 4893 2
## 4995 3
## 5054 3
## 5899 4
## 6517 3
## 7005 4
## 7085 4
## 7306 3
## 7621 5
## 7998 4
## 8378 2
## 8622 5
## 8988 3
## 9142 1
## 9423 4
## 9731 3
## 9968 4
## 10172 3
## 10303 3
## 10427 2
## 10505 3
## 10636 1
## 10730 3
## 11079 2
## 11222 2
## 11467 3
## 11714 3
## 11862 4
## 12010 3
## 12240 3
## 12479 3
## 12583 3
## 12941 3
## 13085 3
## 13609 3
## 13900 4
## 14239 3
## 14486 4
## 16028 3
## 16400 3
## 16794 2
## 17395 4
## 17588 2
## 17960 5
## 18647 3
## 18883 3
## 19058 2
## 19272 3
## 19499 5
## 20055 3
## 20280 4
## 21389 3
## 21502 3
## 21731 3
## 21895 3
## 22145 4
## 22325 3
## 22427 2
## 22522 4
## 22720 3
## 23059 4
## 23182 2
## 23292 5
## 23924 3
## 24284 5
## 24628 4
## 25018 3
## 25486 3
## 25622 3
## 25754 4
## 25978 3
## 26259 3
## 26714 3
## 26944 3
## 27348 4
## 27583 5
## 27833 4
## 28028 4
## 28417 4
## 28659 5
## 28783 4
## 28962 4
## 29212 3
## 29500 3
## 29748 4
## 29963 3
## 30103 4
## 30584 3
## 30846 3
## 31055 4
## 31361 3
## 31628 3
## 31839 3
## 32045 3
## 32359 4
## 32543 1
## 32642 2
## 32903 3
## 33135 3
## 33512 4
## 33675 2
## 33985 1
## 34298 4
## 34483 3
## 34589 3
## 34760 1
## 34935 1
## 35167 1
## 35343 1
## 35661 2
## 35917 3
## 36194 2
## 36491 3
## 36844 5
## 37073 3
## 37387 2
## 39967 2
## 40488 4
## 41843 2
## 42325 3
## 42835 2
## 42992 3
## 43395 3
## 43808 1
## 44799 1
## 45591 4
## 48862 4
## 48998 5
## 49471 3
## 52855 2
## 52980 4
## 53544 2
## 53616 3
## 53893 3
## 54059 2
## 54253 1
## 54569 1
## 54698 2
## 54970 2
## 55245 2
## 55577 2
## 55778 3
## 55954 2
## 56139 3
## 56296 2
## 56870 3
## 57324 3
## 57473 2
## 57689 2
## 58108 3
## 58391 2
## 58526 4
## 59045 4
## 59204 4
## 59385 3
## 59626 4
## 60016 3
## 60456 1
## 60566 1
## 60643 2
## 61039 1
## 61577 3
## 61659 4
## 61706 5
## 61895 3
## 62030 3
## 62529 4
## 63208 3
## 63326 3
## 63660 3
## 63737 3
## 63885 4
## 64246 3
## 64495 3
## 64662 3
## 64989 4
## 65275 3
## 65486 3
## 65598 4
## 65649 4
## 65704 2
## 65980 4
## 66295 3
## 66420 4
## 66551 4
## 66854 3
## 67031 4
## 67214 3
## 67279 3
## 67374 4
## 67463 4
## 67540 5
## 67665 4
## 67832 5
## 68103 4
## 68244 4
## 68542 4
## 68633 4
## 69088 1
## 69181 3
## 69380 3
## 69647 3
## 69748 3
## 70241 2
## 70446 2
## 70594 4
## 70822 2
## 71082 3
## 71238 1
## 71286 2
## 71527 4
## 71639 1
## 72018 4
## 73145 3
## 73726 3
## 73980 1
## 74017 2
## 74050 3
## 74230 3
## 74382 3
## 74491 2
## 74661 3
## 74781 2
## 74994 1
## 75113 2
## 75302 4
## 75367 4
## 75576 3
## 75867 2
## 76030 5
## 76284 4
## 76486 4
## 76612 3
## 76755 5
## 76927 4
## 77411 2
## 77818 2
## 78865 2
## 79005 4
## 79517 2
## 79724 3
## 79926 3
## 80002 3
## 80147 3
## 80415 2
## 81022 3
## 81237 4
## 81368 2
## 81441 4
## 81545 3
## 82130 3
## 83349 1
## 83601 3
## 84030 4
## 84375 2
## 84532 2
## 84690 1
## 84773 4
## 85189 2
## 85621 1
## 86348 4
## 87150 2
## 87405 2
## 89847 3
## 89930 2
## 90067 2
## 90152 3
## 90373 3
## 90957 3
## 91529 2
## 91677 3
## 92009 3
## 92822 2
## 93311 2
## 93404 2
## 93443 2
## 93943 2
## 94169 3
## 94725 3
## 94781 3
## 95051 3
## 95149 3
## 96347 2
## 96677 1
## 96694 1
## 96784 2
## 96939 3
## 98465 1
## 98468 2
## 98475 2
## 98479 1
## 98507 2
## 2717 4
## 6048 3
## 6094 5
## 7420 4
## 8166 3
## 8241 3
## 8307 3
## 9143 2
## 12830 3
## 14240 3
## 14487 5
## 15320 3
## 17961 5
## 18648 5
## 19059 5
## 19273 5
## 20056 5
## 21390 3
## 21732 3
## 26260 5
## 27584 3
## 29964 3
## 32643 4
## 34761 3
## 35918 5
## 36195 3
## 37513 4
## 39533 4
## 40365 3
## 40489 4
## 41209 4
## 41623 4
## 42326 4
## 46148 4
## 46460 3
## 47362 4
## 48283 5
## 50211 2
## 50346 3
## 50723 4
## 53222 2
## 53545 3
## 53986 3
## 54603 2
## 54885 2
## 54971 4
## 56627 2
## 57272 3
## 57943 4
## 59046 3
## 59386 3
## 60644 5
## 61822 3
## 63115 2
## 64990 4
## 65981 4
## 66112 3
## 70162 3
## 71640 4
## 72279 4
## 73669 4
## 74782 2
## 75577 5
## 77629 3
## 81695 3
## 82491 2
## 82969 4
## 83152 3
## 84081 2
## 84334 2
## 84960 3
## 85221 3
## 85739 4
## 86131 2
## 86437 2
## 87729 3
## 88130 4
## 88965 3
## 91251 2
## 92197 3
## 92239 4
## 92954 2
## 93834 1
## 94573 4
## 94653 4
## 96483 4
## 97105 1
## 98036 4
## 98446 2
## 98513 2
## 98521 2
## 98522 1
## 98531 2
## 98536 3
## 98538 4
## 1427 5
## 2542 2
## 4245 4
## 8989 3
## 9144 5
## 9732 3
## 12942 3
## 15236 4
## 15429 1
## 15513 4
## 15867 3
## 21503 5
## 24285 2
## 30585 3
## 36845 4
## 37514 3
## 38648 3
## 39174 2
## 40790 3
## 43583 5
## 43809 5
## 44210 3
## 47593 4
## 51871 3
## 54366 4
## 54472 4
## 55246 4
## 57041 4
## 58731 4
## 71528 2
## 76031 5
## 76928 5
## 78866 5
## 83602 3
## 86615 4
## 91809 4
## 92666 4
## 95260 4
## 97293 3
## 471 3
## 705 3
## 2041 1
## 3573 5
## 4894 3
## 5280 2
## 5419 3
## 5532 2
## 6518 5
## 7421 3
## 7622 1
## 8379 2
## 9247 2
## 10731 5
## 11223 5
## 12241 5
## 12716 1
## 13328 5
## 17962 5
## 22523 4
## 23925 5
## 24629 5
## 25230 5
## 25487 5
## 26261 5
## 26715 3
## 26945 5
## 27208 1
## 27834 5
## 28029 3
## 28264 3
## 29213 5
## 32046 5
## 34590 4
## 34762 3
## 34936 4
## 35168 3
## 35344 4
## 35527 3
## 35662 4
## 35768 4
## 37388 3
## 37834 4
## 39534 4
## 39968 1
## 40490 5
## 41210 2
## 41424 4
## 43810 1
## 44366 3
## 44800 4
## 45592 4
## 46461 4
## 47101 3
## 47594 2
## 47705 3
## 48073 4
## 48284 4
## 48752 4
## 49472 3
## 49642 3
## 49865 3
## 50347 3
## 50724 4
## 51181 2
## 51347 2
## 51872 2
## 52214 4
## 52352 3
## 52480 4
## 52744 2
## 53382 4
## 53987 1
## 54699 2
## 55578 2
## 55955 3
## 59047 3
## 59627 5
## 60457 5
## 66421 5
## 66552 5
## 67032 5
## 67375 1
## 68104 5
## 68634 3
## 68979 3
## 69749 3
## 70027 4
## 70595 4
## 70823 4
## 71083 4
## 71287 4
## 71418 3
## 71939 3
## 75578 5
## 77088 4
## 77630 2
## 77819 1
## 78119 4
## 78540 1
## 78695 3
## 80416 2
## 82492 3
## 82830 5
## 82970 3
## 84031 3
## 84335 2
## 85047 4
## 85190 3
## 86866 3
## 87829 4
## 87957 3
## 88364 3
## 90206 2
## 97009 3
## 97106 4
## 98541 2
## 98557 1
## 88 4
## 706 3
## 978 2
## 1086 4
## 2042 4
## 2929 3
## 3851 4
## 4036 2
## 4246 2
## 4550 2
## 5055 3
## 5281 3
## 6519 5
## 7006 3
## 7422 3
## 7623 5
## 7999 3
## 8623 4
## 8864 2
## 9424 4
## 9733 3
## 9969 3
## 10304 3
## 10732 3
## 11080 5
## 11224 3
## 12242 5
## 12831 3
## 13086 3
## 13329 4
## 13610 3
## 13901 4
## 14488 1
## 14905 5
## 15237 3
## 16029 1
## 16401 2
## 16795 3
## 17154 1
## 17963 5
## 18304 3
## 18528 3
## 18649 4
## 19274 5
## 19624 4
## 20057 3
## 20763 3
## 21111 4
## 21504 4
## 21733 4
## 22003 3
## 22524 3
## 22921 3
## 23293 4
## 23926 4
## 24286 4
## 24630 5
## 25019 3
## 25231 4
## 25755 4
## 25979 3
## 26262 4
## 26716 4
## 26946 5
## 27209 3
## 27349 3
## 27585 5
## 27835 4
## 28030 5
## 28418 4
## 28784 4
## 29214 3
## 29501 3
## 29749 4
## 29965 4
## 30271 4
## 30464 3
## 30847 3
## 31056 3
## 31629 3
## 32047 4
## 32768 4
## 32904 4
## 33136 4
## 33386 4
## 33513 3
## 33986 3
## 34937 3
## 35169 3
## 35345 3
## 35919 3
## 36492 2
## 36846 4
## 37389 3
## 38178 3
## 38334 2
## 39535 4
## 40491 3
## 42327 3
## 42737 3
## 45127 2
## 46149 1
## 46462 2
## 48999 4
## 49866 2
## 52107 3
## 52856 3
## 52981 5
## 53617 3
## 53797 1
## 54367 3
## 54473 4
## 54700 3
## 55779 3
## 55956 4
## 56297 2
## 56871 1
## 57042 1
## 58109 3
## 58527 4
## 58732 4
## 58848 4
## 59048 3
## 59387 2
## 59530 3
## 60248 4
## 60906 3
## 61343 3
## 61896 3
## 62530 5
## 62736 4
## 63507 4
## 65276 3
## 65487 4
## 66296 4
## 66553 4
## 67376 3
## 68105 4
## 68245 4
## 68724 5
## 69648 3
## 70242 3
## 70824 3
## 71560 3
## 74383 4
## 74492 3
## 74783 3
## 74995 3
## 75579 4
## 75735 3
## 75868 5
## 76032 4
## 76402 3
## 76613 4
## 77332 3
## 77953 3
## 78120 3
## 78696 3
## 78867 2
## 79006 3
## 79653 2
## 80749 4
## 82231 4
## 82493 2
## 83724 3
## 85622 1
## 85740 2
## 85805 2
## 87406 1
## 89049 3
## 89848 3
## 89980 4
## 90603 3
## 91189 5
## 92240 2
## 94800 1
## 95243 3
## 95795 5
## 96172 4
## 97316 2
## 97350 4
## 89 1
## 1087 4
## 1671 5
## 2718 4
## 12832 4
## 14489 3
## 15514 3
## 15868 5
## 16030 3
## 33851 4
## 37515 5
## 37633 1
## 39536 4
## 39969 1
## 40791 5
## 42328 4
## 43584 4
## 43811 5
## 45593 1
## 48285 4
## 49643 2
## 49867 3
## 50081 1
## 56298 2
## 56679 5
## 62393 4
## 62737 5
## 66113 4
## 69050 1
## 77631 1
## 78473 1
## 82971 3
## 85357 3
## 88272 1
## 90230 1
## 91392 1
## 91464 1
## 98094 3
## 98196 1
## 90 5
## 472 4
## 1088 4
## 1428 4
## 1672 4
## 2043 5
## 2930 4
## 3574 4
## 4037 2
## 4247 4
## 4656 5
## 4895 4
## 5282 4
## 5420 3
## 5852 3
## 5978 3
## 6228 2
## 6520 5
## 7307 4
## 7624 4
## 8000 4
## 8380 5
## 8498 4
## 9248 5
## 9425 5
## 9970 4
## 10173 4
## 10733 5
## 11225 5
## 12011 4
## 12243 5
## 12584 4
## 12943 4
## 13087 5
## 13330 5
## 13902 5
## 14241 5
## 15026 2
## 15194 3
## 15729 3
## 16031 5
## 16402 4
## 16796 5
## 17263 4
## 17589 5
## 18650 5
## 19275 4
## 19783 3
## 19835 4
## 19897 4
## 20058 5
## 20592 5
## 20764 4
## 21112 3
## 22525 4
## 23574 5
## 23927 5
## 24287 5
## 24631 5
## 25232 5
## 25488 4
## 25756 4
## 26947 5
## 28031 4
## 28419 5
## 28785 4
## 29215 5
## 29502 4
## 30586 5
## 31057 5
## 31362 4
## 31630 5
## 32048 5
## 32905 4
## 33514 5
## 33987 5
## 34484 4
## 34591 4
## 34763 5
## 34938 5
## 35170 5
## 35346 5
## 35528 4
## 35920 4
## 36196 2
## 37074 3
## 37390 4
## 37634 3
## 37835 3
## 39537 4
## 40492 5
## 42329 5
## 42738 4
## 42993 4
## 43812 4
## 44367 5
## 45128 3
## 45594 4
## 47363 5
## 48286 5
## 49000 5
## 49868 3
## 50212 5
## 52982 5
## 53223 5
## 53416 3
## 53496 5
## 53988 4
## 54104 5
## 54254 5
## 54701 5
## 55095 4
## 55161 5
## 55247 4
## 55687 2
## 55780 4
## 56299 3
## 56787 2
## 56872 3
## 57043 3
## 57690 4
## 57855 5
## 58110 5
## 58849 5
## 59049 5
## 59205 5
## 60017 5
## 60249 4
## 60458 5
## 60645 4
## 60907 3
## 61344 4
## 61578 4
## 61897 4
## 62239 4
## 62394 4
## 63209 5
## 63886 5
## 64904 3
## 64991 5
## 65488 4
## 66297 4
## 67033 5
## 67833 4
## 68246 4
## 68424 4
## 69182 3
## 69381 3
## 69649 4
## 69908 4
## 70243 4
## 70360 4
## 70825 5
## 71084 4
## 71288 4
## 71419 5
## 71529 2
## 71641 4
## 71826 4
## 71940 4
## 72019 5
## 72544 4
## 72684 4
## 73416 3
## 73943 3
## 75736 2
## 76614 3
## 77089 4
## 77333 5
## 77412 4
## 77820 4
## 78287 4
## 78868 3
## 80297 4
## 80417 4
## 81546 4
## 81858 4
## 82078 3
## 82494 3
## 83244 5
## 83350 3
## 83466 3
## 83501 4
## 83933 4
## 84082 4
## 85048 4
## 85323 4
## 85623 3
## 85947 4
## 86132 4
## 86384 4
## 86438 3
## 87249 4
## 88215 4
## 88273 4
## 89112 5
## 89438 4
## 89490 3
## 89564 3
## 89680 2
## 90374 5
## 91252 2
## 91294 3
## 92823 2
## 93003 2
## 93031 3
## 93724 3
## 93998 3
## 94317 3
## 94726 4
## 95730 3
## 96857 4
## 96918 3
## 97107 4
## 98480 3
## 98542 5
## 91 3
## 473 2
## 707 4
## 1089 3
## 1429 3
## 1673 3
## 1921 3
## 2044 4
## 2281 4
## 2931 3
## 3210 3
## 3380 2
## 3575 2
## 3852 4
## 4248 3
## 4479 4
## 4551 3
## 4657 3
## 4896 3
## 5056 1
## 5201 3
## 5283 4
## 5378 1
## 5391 2
## 5533 1
## 5726 4
## 5979 2
## 6049 4
## 6095 4
## 6229 3
## 6521 4
## 7007 2
## 7178 3
## 7423 4
## 7625 5
## 7942 4
## 8001 4
## 8167 4
## 8308 2
## 8381 1
## 8624 3
## 8865 4
## 9249 2
## 9426 2
## 9734 3
## 9971 3
## 10428 4
## 10506 2
## 10734 4
## 11081 1
## 11226 4
## 11715 4
## 11863 3
## 12244 3
## 12717 3
## 12833 5
## 13088 3
## 13331 4
## 13611 2
## 13903 4
## 14242 3
## 14490 4
## 15869 1
## 16032 2
## 16403 1
## 16797 2
## 17264 2
## 17396 3
## 17590 2
## 17964 5
## 18305 2
## 18382 4
## 19060 4
## 19625 4
## 20281 4
## 20491 3
## 20547 1
## 20765 1
## 20921 4
## 22004 4
## 22146 4
## 22428 5
## 22922 3
## 23805 3
## 23928 5
## 24288 3
## 24632 3
## 25020 2
## 25233 4
## 25757 5
## 25980 3
## 26263 2
## 26717 4
## 26948 4
## 27210 3
## 27350 5
## 27586 3
## 27836 3
## 28032 4
## 28265 4
## 28420 4
## 28660 4
## 28786 3
## 29216 3
## 29503 4
## 29750 4
## 29966 4
## 30272 5
## 30465 4
## 30587 3
## 30848 5
## 31058 4
## 31485 2
## 31537 3
## 31840 3
## 32049 2
## 32360 3
## 32544 4
## 32644 4
## 32906 2
## 33137 4
## 33387 3
## 33515 4
## 33676 4
## 33852 3
## 33988 3
## 34299 4
## 34592 3
## 34764 4
## 34939 3
## 35347 3
## 35529 2
## 35663 2
## 35769 4
## 35921 5
## 36493 4
## 36847 3
## 37075 1
## 37233 3
## 37391 2
## 37516 4
## 39538 2
## 40124 4
## 40493 3
## 40792 3
## 41211 4
## 41425 3
## 41624 2
## 42042 4
## 42330 5
## 42836 2
## 42994 2
## 43396 3
## 43585 4
## 43813 2
## 44368 4
## 44801 2
## 45252 3
## 47102 4
## 47364 2
## 48287 5
## 48600 3
## 48863 3
## 49001 5
## 49277 2
## 49473 3
## 50082 5
## 50213 5
## 50348 2
## 51065 4
## 51182 2
## 51348 2
## 51559 4
## 51873 5
## 52353 4
## 52983 4
## 53224 1
## 53546 2
## 53850 1
## 54032 3
## 54198 3
## 54255 1
## 54368 3
## 54702 2
## 54972 2
## 55484 3
## 55781 2
## 55957 3
## 56300 4
## 56578 1
## 56680 4
## 57273 3
## 57944 2
## 58111 4
## 58392 3
## 59050 1
## 59206 3
## 59628 4
## 59818 3
## 59909 1
## 59921 2
## 59938 1
## 60018 3
## 60250 5
## 60362 3
## 60794 1
## 60870 2
## 60908 3
## 61122 4
## 61251 4
## 61345 1
## 61543 1
## 61660 4
## 61707 2
## 61755 4
## 61823 4
## 62031 2
## 62395 3
## 62738 4
## 63327 4
## 63508 4
## 63738 4
## 63887 3
## 65816 3
## 65887 4
## 66114 4
## 66298 3
## 66554 3
## 66762 3
## 66855 3
## 67034 5
## 67377 4
## 67666 2
## 68247 3
## 68725 2
## 68945 3
## 69259 2
## 69382 2
## 69650 3
## 69883 1
## 70124 4
## 70163 2
## 70244 2
## 70491 1
## 70596 3
## 70750 3
## 70826 3
## 71420 2
## 71561 3
## 71642 5
## 71786 1
## 71971 4
## 72020 4
## 72191 3
## 72233 1
## 72280 3
## 72545 4
## 72685 2
## 72959 4
## 73316 4
## 74493 2
## 74784 2
## 74865 3
## 74996 4
## 75114 4
## 75197 3
## 75431 3
## 75580 4
## 75869 3
## 76033 4
## 76224 4
## 76403 3
## 76615 3
## 77090 2
## 77178 2
## 77264 2
## 77334 3
## 77518 2
## 77821 3
## 77954 3
## 78121 3
## 78288 3
## 78420 2
## 78869 3
## 79007 4
## 79133 1
## 79228 4
## 79292 3
## 79411 1
## 79518 3
## 79725 4
## 80148 4
## 80866 2
## 81176 3
## 81238 3
## 81442 2
## 82355 2
## 82831 3
## 82972 3
## 83918 4
## 84032 3
## 84124 5
## 84169 4
## 84189 1
## 84251 1
## 84641 3
## 84774 4
## 85007 2
## 85083 2
## 85136 3
## 85741 3
## 85862 1
## 86541 2
## 86808 2
## 86925 4
## 86962 4
## 87023 3
## 88075 1
## 88365 3
## 88461 3
## 88876 3
## 89050 3
## 89113 3
## 90023 3
## 90344 3
## 90493 3
## 90542 4
## 90667 2
## 90724 4
## 90992 3
## 91190 2
## 91221 3
## 91530 4
## 91787 2
## 91860 3
## 91961 3
## 92010 3
## 93197 3
## 93444 2
## 93910 2
## 94075 3
## 94125 3
## 94242 2
## 94262 5
## 94318 2
## 94865 2
## 94916 4
## 95006 3
## 95466 4
## 95508 5
## 95621 5
## 95671 1
## 95700 4
## 95964 2
## 96081 1
## 96126 3
## 96173 4
## 96182 4
## 96244 5
## 96397 3
## 96472 3
## 96484 4
## 96495 4
## 96713 4
## 96785 3
## 96940 2
## 97035 2
## 97093 1
## 97150 3
## 97351 4
## 97559 3
## 97591 4
## 98198 1
## 98377 4
## 98396 2
## 98560 3
## 98571 2
## 98575 3
## 98579 3
## 98582 3
## 98592 2
## 98600 2
## 98605 4
## 92 3
## 13332 4
## 23929 3
## 24289 2
## 25758 1
## 28421 2
## 29217 4
## 31059 3
## 37517 3
## 39539 4
## 40793 4
## 43212 3
## 43814 1
## 49002 1
## 58112 3
## 63661 1
## 64110 4
## 67035 1
## 67215 4
## 73146 5
## 93 3
## 1090 3
## 4038 4
## 6522 5
## 12834 4
## 14491 1
## 16033 4
## 20766 3
## 20922 5
## 21113 4
## 26264 5
## 33989 4
## 36494 3
## 38179 5
## 38480 4
## 39175 3
## 39540 3
## 41212 3
## 42331 4
## 42995 1
## 43213 5
## 44369 5
## 45595 2
## 47365 3
## 49474 3
## 49869 3
## 50349 4
## 51183 5
## 51639 3
## 61123 3
## 62032 4
## 62739 3
## 63116 4
## 73830 3
## 74231 4
## 81859 3
## 82131 2
## 82495 2
## 85417 4
## 87830 4
## 88216 2
## 91570 3
## 93725 2
## 94 2
## 1674 5
## 2282 4
## 5980 5
## 20548 3
## 23694 5
## 23930 3
## 28422 4
## 33138 4
## 37518 5
## 37836 3
## 39541 2
## 39970 2
## 40284 4
## 40794 4
## 43815 3
## 44370 3
## 45253 5
## 46071 5
## 46463 3
## 46859 4
## 47103 5
## 47366 3
## 47944 1
## 48601 4
## 48753 4
## 49003 5
## 49475 1
## 49644 3
## 51349 1
## 51640 1
## 51874 5
## 63739 4
## 82496 1
## 87592 3
## 87958 2
## 92667 5
## 96496 4
## 97729 2
## 97885 5
## 37519 4
## 37635 2
## 39542 3
## 40795 3
## 43816 2
## 44802 4
## 45596 3
## 46464 3
## 47367 3
## 48288 3
## 48602 4
## 48754 4
## 49645 3
## 50350 4
## 50725 3
## 51350 4
## 77632 1
## 82497 4
## 87629 2
## 91295 1
## 92744 1
## 37520 3
## 37837 1
## 39543 4
## 40125 3
## 40285 1
## 40796 4
## 41426 5
## 44371 5
## 45597 2
## 46465 1
## 47104 5
## 47867 2
## 47891 2
## 47945 5
## 48289 5
## 48566 1
## 48603 5
## 49870 1
## 50351 1
## 51184 3
## 51351 4
## 51641 1
## 51680 2
## 51875 3
## 52108 1
## 52354 5
## 53341 1
## 53360 1
## 53368 1
## 53383 1
## 77633 1
## 77955 3
## 78049 1
## 78697 2
## 78820 1
## 82498 4
## 82761 2
## 82832 3
## 87512 3
## 88004 1
## 88203 2
## 88258 2
## 88366 5
## 88462 4
## 88575 1
## 88667 2
## 88685 1
## 91502 1
## 92668 1
## 92726 1
## 94059 3
## 95454 4
## 96252 1
## 96258 1
## 97220 1
## 98011 1
## 98354 1
## 98361 1
## 98617 1
## 98621 1
## 98624 1
## 98629 1
## 98632 1
## 98634 1
## 474 3
## 600 2
## 708 4
## 898 3
## 1430 3
## 1675 4
## 2045 3
## 2283 3
## 2543 3
## 2719 4
## 2932 4
## 3294 2
## 3576 3
## 3853 4
## 4249 4
## 4658 4
## 5284 2
## 5421 3
## 5727 4
## 5981 3
## 7179 1
## 7424 3
## 7626 4
## 8002 3
## 8168 4
## 8242 3
## 8625 5
## 8866 3
## 9250 2
## 9427 4
## 9735 3
## 10305 3
## 10735 4
## 11227 3
## 11864 4
## 12012 2
## 12718 2
## 13333 3
## 13904 4
## 14492 2
## 15195 3
## 15515 3
## 16034 3
## 16798 3
## 17591 4
## 17965 5
## 18383 3
## 18529 3
## 18884 4
## 19061 4
## 19276 2
## 19626 3
## 20059 4
## 20282 3
## 20923 3
## 21505 5
## 21734 2
## 22005 2
## 22259 3
## 22429 2
## 22526 4
## 23695 4
## 23806 3
## 24290 3
## 24633 4
## 25021 1
## 25489 3
## 25759 4
## 25981 3
## 26265 3
## 26718 3
## 26949 2
## 27351 4
## 27587 4
## 27837 5
## 28033 3
## 28423 4
## 28661 3
## 28963 4
## 29218 3
## 29504 4
## 29751 4
## 30588 3
## 30849 3
## 31060 3
## 31363 4
## 31631 4
## 32050 3
## 32361 5
## 33139 5
## 34300 3
## 34417 3
## 34593 2
## 35770 3
## 36495 4
## 36848 2
## 37076 3
## 37392 3
## 37521 4
## 37838 3
## 38180 3
## 38963 3
## 39544 4
## 40494 3
## 40797 4
## 41625 4
## 42332 2
## 42837 3
## 42996 4
## 43397 3
## 43817 2
## 45033 2
## 45129 3
## 45367 2
## 45598 3
## 46150 3
## 47105 4
## 48290 4
## 48755 5
## 48864 4
## 49004 5
## 49278 3
## 49646 3
## 50726 2
## 52984 5
## 53618 3
## 54703 3
## 55248 4
## 56873 3
## 57044 3
## 57325 2
## 58113 4
## 58733 4
## 59388 3
## 59629 4
## 61124 3
## 61252 3
## 61346 3
## 61756 4
## 61898 3
## 62033 3
## 62740 2
## 62972 2
## 63888 5
## 66115 4
## 66299 4
## 66856 4
## 67036 5
## 67280 3
## 67541 4
## 67667 4
## 67976 4
## 68106 4
## 68248 4
## 68543 4
## 68726 4
## 68882 3
## 68980 2
## 69089 3
## 69383 3
## 70028 2
## 70447 2
## 70597 4
## 70827 4
## 71289 3
## 71530 3
## 72281 3
## 72686 3
## 73417 4
## 74232 3
## 74494 2
## 75115 3
## 76034 4
## 76616 4
## 78122 3
## 78289 3
## 78870 3
## 79156 3
## 80003 4
## 80231 3
## 80553 3
## 81239 4
## 81860 4
## 82232 4
## 82499 3
## 83181 4
## 83351 2
## 83725 3
## 84618 3
## 84775 2
## 85102 3
## 85265 2
## 85948 2
## 86024 3
## 86211 3
## 86439 3
## 86616 3
## 86809 3
## 86867 3
## 87151 3
## 87250 3
## 87407 5
## 87630 2
## 91161 3
## 91354 3
## 91571 3
## 91678 1
## 92110 3
## 92699 3
## 92824 3
## 93472 4
## 93726 3
## 94866 4
## 95000 3
## 95201 2
## 95261 3
## 95864 4
## 96183 2
## 96545 4
## 97048 3
## 97064 2
## 97300 5
## 97626 3
## 97753 4
## 98114 3
## 98120 3
## 98185 2
## 98273 3
## 98644 2
## 98651 3
## 7627 2
## 8990 4
## 9736 3
## 11716 2
## 12013 5
## 13612 4
## 27588 4
## 28964 5
## 29752 5
## 30589 4
## 31061 3
## 31632 4
## 32362 5
## 33140 5
## 47106 1
## 47946 4
## 53619 2
## 53894 5
## 54369 3
## 55249 4
## 55782 4
## 58734 4
## 58948 4
## 59630 5
## 66857 4
## 67281 3
## 67834 4
## 67977 4
## 76838 4
## 76929 5
## 81547 4
## 84446 3
## 91662 3
## 95 5
## 1676 3
## 2720 3
## 3162 4
## 6523 5
## 17966 5
## 18384 2
## 26266 4
## 37522 4
## 38335 2
## 38649 5
## 39545 2
## 40798 2
## 41213 2
## 42333 2
## 43586 5
## 43818 2
## 45368 4
## 46860 3
## 47368 2
## 49476 4
## 51352 2
## 52595 2
## 52666 2
## 56681 4
## 78541 1
## 83908 4
## 85358 5
## 88508 3
## 88732 2
## 94607 4
## 95028 2
## 95701 4
## 96 5
## 709 4
## 2933 4
## 3854 5
## 4250 4
## 4659 4
## 5617 3
## 5900 3
## 6338 3
## 6524 5
## 7628 5
## 8003 4
## 8867 4
## 9428 4
## 9737 4
## 10174 3
## 10306 5
## 10736 4
## 12014 4
## 12944 4
## 13334 4
## 13613 5
## 13905 5
## 14243 4
## 15056 3
## 15763 4
## 16799 4
## 17967 5
## 18651 4
## 19062 5
## 19277 5
## 21391 5
## 21506 5
## 21735 4
## 22430 4
## 22527 5
## 22821 3
## 23183 4
## 23294 5
## 23931 5
## 24291 4
## 24634 5
## 25234 4
## 25760 3
## 25982 4
## 26267 5
## 26719 5
## 27352 4
## 27589 4
## 27838 5
## 28034 3
## 29219 4
## 29753 5
## 30273 5
## 30590 5
## 31062 5
## 31364 4
## 31633 5
## 32051 5
## 32363 5
## 33141 4
## 33677 3
## 33990 4
## 35348 3
## 35922 4
## 36197 3
## 36849 3
## 37636 2
## 38964 4
## 39176 5
## 41844 5
## 42334 5
## 45034 4
## 46466 4
## 46861 4
## 47107 5
## 48604 5
## 50524 4
## 52985 5
## 54256 4
## 55162 3
## 55250 3
## 55783 5
## 55958 4
## 56140 5
## 57045 3
## 57691 4
## 57856 4
## 58114 5
## 59631 4
## 60019 4
## 60251 5
## 60646 3
## 61579 4
## 63740 5
## 63889 5
## 64111 4
## 65489 4
## 65599 3
## 66858 5
## 67282 4
## 67835 4
## 68249 5
## 70828 4
## 74384 3
## 74495 5
## 75581 4
## 75870 5
## 76035 5
## 76285 4
## 76839 2
## 77822 3
## 78123 3
## 78871 4
## 79726 5
## 80554 4
## 81023 4
## 81240 4
## 82973 4
## 83245 3
## 83726 2
## 84776 3
## 85694 3
## 86212 3
## 87152 3
## 89241 2
## 90457 3
## 90543 3
## 90882 4
## 92111 4
## 92825 3
## 95262 4
## 1677 3
## 8626 3
## 9429 3
## 16035 4
## 17968 4
## 26268 1
## 30104 5
## 31365 5
## 32907 5
## 34940 3
## 35349 3
## 39177 5
## 40334 3
## 42043 2
## 43819 4
## 46467 2
## 47947 3
## 52986 2
## 58115 5
## 60020 1
## 60909 3
## 61079 4
## 61347 4
## 64663 3
## 67542 4
## 68107 4
## 68425 4
## 72546 3
## 77634 3
## 78474 2
## 79519 4
## 87683 2
## 88217 2
## 92745 3
## 95455 1
## 98110 3
## 11717 4
## 11865 5
## 17969 2
## 25761 1
## 25983 1
## 28424 3
## 29754 5
## 30105 5
## 38052 5
## 40799 3
## 43820 4
## 48865 5
## 49005 5
## 54474 5
## 58116 4
## 58528 4
## 66555 4
## 67037 4
## 68250 5
## 68426 5
## 74496 5
## 75227 3
## 81241 4
## 87114 2
## 97 2
## 475 4
## 1091 4
## 1431 3
## 2046 4
## 2284 5
## 2544 4
## 4039 5
## 4251 4
## 5057 4
## 5728 5
## 6230 5
## 6525 5
## 7425 5
## 7629 5
## 8627 5
## 9430 3
## 9738 3
## 10737 5
## 13614 5
## 13906 5
## 14493 5
## 15130 4
## 16036 4
## 16404 4
## 16800 5
## 17592 5
## 17970 5
## 18652 5
## 18885 3
## 19278 5
## 20060 5
## 20283 5
## 21114 5
## 21736 5
## 22006 5
## 22147 4
## 22923 5
## 23696 5
## 23932 5
## 24292 5
## 24635 5
## 25022 4
## 25235 4
## 25984 5
## 26269 4
## 26720 4
## 27353 5
## 27839 5
## 28662 5
## 28787 4
## 28965 4
## 29220 5
## 29755 5
## 30106 5
## 30274 5
## 31063 5
## 32545 4
## 32645 5
## 32769 5
## 33516 4
## 33991 3
## 35171 4
## 35923 4
## 36198 1
## 36850 5
## 38715 3
## 39178 4
## 39546 4
## 41626 5
## 41845 5
## 42838 4
## 43398 5
## 43821 3
## 44372 4
## 45599 3
## 49006 5
## 52987 5
## 55251 3
## 56301 3
## 59207 4
## 60252 4
## 60363 4
## 60910 4
## 61125 4
## 61483 5
## 62034 3
## 62531 2
## 62741 4
## 63210 5
## 63328 4
## 63890 5
## 65600 5
## 65705 5
## 66116 4
## 66300 4
## 66556 4
## 66859 5
## 67038 4
## 67668 4
## 69384 4
## 70829 4
## 71643 4
## 72282 4
## 72687 5
## 72960 5
## 73418 4
## 74134 4
## 74233 5
## 76036 4
## 77635 4
## 78124 4
## 78290 3
## 78698 3
## 78872 4
## 80149 5
## 81242 5
## 83352 2
## 84267 5
## 86133 4
## 86440 4
## 89114 4
## 89981 4
## 91330 3
## 92112 3
## 96820 1
## 1092 5
## 1432 4
## 2047 5
## 2285 5
## 2545 3
## 3381 4
## 3577 3
## 3855 5
## 4040 3
## 5202 4
## 5534 4
## 5729 5
## 5982 4
## 6526 3
## 7426 4
## 7630 5
## 8628 5
## 9431 2
## 10738 4
## 12245 4
## 12719 4
## 12835 4
## 13907 4
## 14494 4
## 15764 4
## 16037 4
## 16801 4
## 17971 4
## 18530 3
## 18653 5
## 19063 4
## 19279 3
## 19627 4
## 21115 5
## 21737 3
## 22007 5
## 23123 4
## 23295 3
## 23575 4
## 23807 4
## 23933 3
## 24293 4
## 24636 4
## 25023 5
## 25762 5
## 25985 5
## 26270 3
## 26721 4
## 27354 5
## 27840 4
## 28035 5
## 28425 4
## 29221 4
## 29505 4
## 31634 5
## 31841 5
## 32646 4
## 33142 4
## 33853 5
## 34301 3
## 36377 5
## 36851 4
## 38053 2
## 38181 4
## 38336 3
## 38481 2
## 38847 5
## 39179 3
## 40800 3
## 42044 3
## 42335 3
## 43587 5
## 44373 3
## 45600 3
## 46151 3
## 47108 4
## 47706 3
## 48291 4
## 49007 4
## 49279 3
## 50083 5
## 50214 3
## 50525 5
## 51560 3
## 51876 3
## 52355 3
## 52988 5
## 56682 4
## 58529 5
## 61253 4
## 61348 4
## 62742 5
## 63211 4
## 63329 4
## 63741 4
## 63891 4
## 64992 4
## 66117 4
## 66301 4
## 66701 5
## 67216 5
## 67378 3
## 67776 4
## 68251 4
## 68727 4
## 70830 4
## 71644 3
## 72961 4
## 73379 4
## 75488 5
## 75737 4
## 79008 3
## 79520 4
## 79727 4
## 80494 3
## 83118 2
## 87024 4
## 87468 2
## 88463 4
## 90419 3
## 90668 2
## 92484 4
## 93198 4
## 94126 5
## 94319 5
## 95480 4
## 98397 4
## 1433 2
## 2048 2
## 2934 3
## 3578 3
## 3856 3
## 4660 4
## 6527 5
## 7308 4
## 7631 5
## 8629 4
## 9739 3
## 10507 3
## 11228 3
## 11866 5
## 12015 3
## 12246 4
## 13908 5
## 14244 4
## 17972 4
## 18654 5
## 19064 4
## 20284 4
## 21116 5
## 22148 4
## 22326 3
## 22924 3
## 23296 5
## 23934 4
## 24637 4
## 25236 5
## 25763 4
## 25986 3
## 26271 4
## 26722 3
## 26950 5
## 27355 4
## 27590 4
## 28426 4
## 28966 4
## 29222 5
## 29506 4
## 29756 4
## 30591 4
## 30850 3
## 31064 3
## 31366 3
## 31635 4
## 32052 4
## 32364 4
## 32546 2
## 32908 3
## 33143 4
## 33517 3
## 33992 4
## 34594 4
## 34765 5
## 34941 5
## 35172 3
## 35350 3
## 35924 4
## 36496 4
## 36852 2
## 37077 3
## 39547 3
## 41062 3
## 41214 4
## 41427 3
## 44374 2
## 46468 3
## 48292 5
## 52745 4
## 52989 4
## 54257 3
## 57945 4
## 58117 5
## 59208 5
## 59389 3
## 59531 5
## 60021 4
## 60459 4
## 60567 2
## 60647 3
## 62532 4
## 63509 5
## 63892 4
## 64993 5
## 67283 5
## 67836 4
## 69909 3
## 74785 2
## 78873 3
## 93199 5
## 94076 5
## 98 4
## 601 4
## 710 5
## 1093 5
## 1678 4
## 2049 5
## 2286 5
## 2935 3
## 3579 5
## 4252 3
## 4552 3
## 4661 4
## 5730 5
## 6096 4
## 6528 4
## 7427 5
## 7632 5
## 8004 4
## 8630 5
## 8868 4
## 8991 2
## 9145 3
## 9432 5
## 10175 2
## 10739 4
## 11082 4
## 11229 4
## 12585 4
## 12836 4
## 13089 3
## 13615 4
## 13909 5
## 14495 5
## 15238 4
## 17155 5
## 18385 4
## 19065 4
## 20061 2
## 20285 4
## 20593 4
## 20924 5
## 21117 3
## 21507 4
## 22008 5
## 23297 4
## 23576 3
## 23935 4
## 24638 5
## 26272 3
## 26723 4
## 27211 4
## 28036 5
## 28190 3
## 29507 5
## 30275 5
## 30466 3
## 30592 4
## 31065 4
## 32053 4
## 32909 5
## 33144 4
## 33518 4
## 33854 4
## 34595 3
## 34942 3
## 35530 2
## 35925 4
## 36497 5
## 36853 5
## 38337 3
## 39180 3
## 41846 3
## 42336 4
## 42739 2
## 42997 5
## 43822 4
## 46152 5
## 47109 5
## 48293 5
## 48605 5
## 49008 5
## 52857 3
## 52990 4
## 53461 2
## 53620 3
## 53764 2
## 55485 3
## 55784 2
## 55959 3
## 56302 3
## 56683 3
## 57188 2
## 57408 3
## 57946 5
## 58118 4
## 59390 3
## 61661 4
## 62743 5
## 64994 5
## 65277 3
## 66118 4
## 68728 4
## 69385 2
## 71020 3
## 71376 1
## 74234 4
## 75582 5
## 75738 4
## 76037 5
## 76404 3
## 77335 4
## 79009 3
## 79229 4
## 80495 4
## 81243 5
## 82356 4
## 83727 4
## 83852 2
## 84642 5
## 84691 3
## 85806 3
## 86236 2
## 89339 3
## 90024 5
## 91962 3
## 93063 1
## 93537 3
## 94191 5
## 94936 4
## 96064 4
## 96893 3
## 476 3
## 1094 4
## 2050 4
## 3211 3
## 3580 5
## 4553 1
## 4897 2
## 5285 4
## 5422 3
## 6529 1
## 7180 1
## 7633 5
## 8382 2
## 9251 3
## 10740 5
## 11230 5
## 13335 4
## 16038 4
## 16405 4
## 16802 1
## 20286 4
## 20594 3
## 23936 1
## 24639 3
## 25237 4
## 26273 1
## 26724 2
## 26951 3
## 27356 3
## 29223 5
## 32054 4
## 33993 5
## 34596 1
## 35531 5
## 35771 4
## 39548 1
## 42839 2
## 46469 4
## 53417 1
## 53989 2
## 54704 2
## 55096 4
## 55544 1
## 55960 5
## 56303 3
## 62240 3
## 69090 1
## 69132 3
## 69386 2
## 69750 1
## 70029 3
## 70448 3
## 70598 4
## 70831 4
## 71290 1
## 71421 5
## 71941 2
## 72688 4
## 74786 2
## 77091 4
## 77823 5
## 78125 5
## 78291 5
## 80418 3
## 83543 4
## 84336 1
## 84961 4
## 85191 2
## 85266 3
## 85863 3
## 86025 2
## 86385 1
## 93032 3
## 97010 1
## 97108 2
## 97952 2
## 711 3
## 899 3
## 1434 3
## 2287 5
## 3857 4
## 5286 4
## 5535 2
## 5731 4
## 6097 4
## 7428 4
## 7634 3
## 13910 5
## 14496 4
## 21508 4
## 21738 4
## 22925 3
## 23298 4
## 24294 3
## 25024 3
## 25238 5
## 26952 5
## 27591 3
## 28967 3
## 30851 4
## 31066 3
## 31636 3
## 31842 5
## 40495 3
## 40801 4
## 41627 4
## 44375 2
## 45601 2
## 56874 3
## 58949 3
## 59051 3
## 61662 4
## 65706 3
## 66860 4
## 67217 5
## 67284 3
## 72283 3
## 72962 4
## 75116 3
## 75368 4
## 75871 4
## 76286 5
## 76487 4
## 76930 3
## 79134 3
## 80004 3
## 83603 4
## 84643 3
## 94320 5
## 712 4
## 2546 1
## 5423 1
## 9972 1
## 11231 1
## 15765 5
## 18655 5
## 25764 5
## 32910 5
## 34302 5
## 39549 5
## 40802 5
## 52481 1
## 54475 5
## 59391 5
## 69387 4
## 70832 1
## 73727 5
## 74497 5
## 77033 5
## 86963 5
## 87831 4
## 88005 3
## 88733 4
## 89735 3
## 89744 4
## 92241 3
## 39550 3
## 40366 3
## 40803 5
## 43823 5
## 44376 5
## 44803 4
## 45602 4
## 46153 4
## 46470 5
## 46862 4
## 47501 4
## 47595 4
## 49280 4
## 50215 1
## 51185 3
## 51353 3
## 51877 4
## 52109 3
## 77956 4
## 91637 3
## 602 4
## 713 3
## 1095 4
## 2288 5
## 3212 4
## 3858 4
## 4041 5
## 4554 4
## 4898 3
## 5203 4
## 5287 4
## 5424 2
## 5536 4
## 5732 5
## 6231 5
## 6530 4
## 7181 4
## 7429 4
## 7635 5
## 8169 2
## 8631 5
## 9433 4
## 9740 3
## 10429 4
## 10741 4
## 12720 4
## 12945 3
## 13336 5
## 14497 5
## 15239 3
## 15321 2
## 16039 4
## 16406 1
## 16803 2
## 18306 3
## 18386 5
## 20287 4
## 20925 5
## 21118 1
## 21739 3
## 22009 5
## 22528 3
## 23937 5
## 24295 4
## 24640 4
## 25623 4
## 26274 4
## 27212 4
## 27592 4
## 31067 4
## 32055 5
## 32911 4
## 33519 4
## 33994 3
## 34766 3
## 35351 3
## 35532 4
## 37234 4
## 38054 5
## 38482 5
## 39181 4
## 39551 1
## 39971 4
## 40496 3
## 41428 5
## 41628 5
## 42998 4
## 43824 4
## 44377 3
## 46154 4
## 49009 5
## 50526 4
## 51615 4
## 52356 5
## 53225 3
## 54604 3
## 54705 4
## 54886 3
## 55097 3
## 55579 3
## 55785 2
## 55961 4
## 56304 3
## 56628 2
## 58119 2
## 61254 4
## 61708 4
## 61757 3
## 61824 3
## 61899 3
## 62744 4
## 62973 2
## 64247 2
## 64995 3
## 66119 4
## 69260 4
## 69751 4
## 70599 3
## 70833 4
## 71291 3
## 71422 4
## 72021 3
## 73981 3
## 74662 3
## 75583 4
## 78126 4
## 78292 3
## 79135 4
## 80496 5
## 81024 4
## 81443 4
## 82974 4
## 83604 4
## 83728 4
## 84376 3
## 84644 4
## 85222 3
## 85807 3
## 86810 4
## 88367 2
## 89565 3
## 89900 4
## 90025 4
## 91963 3
## 92011 4
## 92113 4
## 92364 3
## 92485 4
## 93064 3
## 93963 4
## 94192 3
## 94321 4
## 94690 3
## 94867 4
## 95588 4
## 96376 3
## 96714 3
## 96750 3
## 96858 4
## 96894 3
## 97410 2
## 97560 3
## 98024 3
## 98447 3
## 98653 3
## 99 4
## 477 3
## 714 3
## 1096 5
## 1435 1
## 1679 5
## 2051 5
## 2289 5
## 2936 3
## 3213 2
## 3581 5
## 4042 3
## 4253 3
## 4480 3
## 4662 5
## 4899 3
## 5058 5
## 5368 1
## 5425 2
## 5618 1
## 5668 3
## 5901 3
## 6232 5
## 6339 3
## 6531 4
## 7008 3
## 7182 5
## 7309 4
## 7636 5
## 8005 3
## 8383 4
## 8499 3
## 8632 5
## 8992 4
## 9146 4
## 9252 4
## 9434 5
## 9741 3
## 9973 4
## 10176 4
## 10307 4
## 10508 4
## 10637 1
## 10742 5
## 11006 2
## 11083 1
## 11232 4
## 11867 3
## 12016 4
## 12247 5
## 12480 2
## 12586 2
## 12721 3
## 12837 2
## 12946 3
## 13090 4
## 13337 5
## 13616 4
## 13911 4
## 14245 3
## 14498 5
## 14906 4
## 14978 2
## 15131 2
## 15322 3
## 15516 3
## 16040 5
## 16407 4
## 16652 2
## 16804 3
## 17593 5
## 17973 5
## 18656 2
## 18886 1
## 19280 5
## 19836 1
## 19966 2
## 20288 5
## 20492 2
## 20595 4
## 20767 2
## 20926 3
## 21119 3
## 21509 4
## 21740 3
## 21896 4
## 22010 4
## 22149 4
## 22260 3
## 22327 3
## 22431 1
## 22529 4
## 22721 2
## 22926 4
## 23184 3
## 23299 4
## 23938 5
## 24296 5
## 24641 5
## 25025 3
## 25239 4
## 25987 3
## 26275 4
## 26725 4
## 26953 4
## 27357 4
## 27593 5
## 28037 3
## 28427 2
## 28788 4
## 29224 4
## 29508 5
## 29967 4
## 30276 3
## 30593 4
## 31068 5
## 31637 3
## 31843 4
## 32056 4
## 32770 4
## 32912 4
## 33145 4
## 33388 3
## 33520 5
## 33678 4
## 33995 4
## 34303 4
## 34485 1
## 34597 3
## 34767 3
## 34943 5
## 35173 3
## 35352 4
## 35533 2
## 35664 4
## 35772 2
## 35926 2
## 36498 4
## 36854 5
## 37078 5
## 37235 2
## 37393 3
## 37839 3
## 38055 4
## 38149 1
## 38182 4
## 38338 1
## 38483 2
## 38716 2
## 38965 3
## 39182 4
## 39552 5
## 40231 1
## 40497 3
## 41063 2
## 41215 4
## 42337 5
## 42642 2
## 42740 3
## 42840 3
## 42999 4
## 43399 3
## 44378 4
## 45369 3
## 45603 3
## 46155 4
## 46471 5
## 47110 3
## 48294 4
## 49010 5
## 49871 3
## 50352 4
## 50727 5
## 51354 5
## 51714 1
## 52858 4
## 52991 4
## 53226 2
## 53418 2
## 53462 1
## 53497 4
## 53547 4
## 53621 2
## 53765 1
## 53990 3
## 54033 1
## 54080 1
## 54105 1
## 54199 1
## 54258 4
## 54706 4
## 54887 2
## 55025 2
## 55098 3
## 55163 4
## 55252 4
## 55425 1
## 55486 1
## 55580 4
## 55688 2
## 55786 4
## 55962 3
## 56305 3
## 56629 2
## 56788 3
## 56875 2
## 57046 3
## 57189 1
## 57274 3
## 57560 2
## 57692 2
## 58032 2
## 58120 4
## 58362 1
## 58462 1
## 59052 4
## 59209 3
## 59392 4
## 59819 4
## 59939 2
## 60221 3
## 60364 3
## 60460 4
## 60568 3
## 60648 3
## 60795 1
## 60911 3
## 61080 1
## 61580 2
## 61758 2
## 61900 3
## 62035 3
## 62241 2
## 62396 1
## 62745 4
## 62974 3
## 63117 2
## 65490 2
## 65888 2
## 66120 3
## 67669 5
## 68252 4
## 68544 2
## 68946 4
## 69091 3
## 69133 2
## 69183 2
## 69388 3
## 69651 4
## 69752 3
## 69910 2
## 70030 2
## 70245 3
## 70600 4
## 70834 5
## 71021 2
## 71129 2
## 71239 3
## 71292 3
## 71377 1
## 71423 3
## 71531 3
## 71902 3
## 72022 4
## 72284 4
## 72547 3
## 72689 1
## 73831 4
## 73889 3
## 73982 2
## 74135 3
## 74235 5
## 74787 4
## 74866 2
## 75117 3
## 75584 4
## 75872 3
## 76038 4
## 76405 3
## 76840 3
## 77092 1
## 77265 1
## 77636 3
## 77824 2
## 78293 4
## 78590 4
## 78874 4
## 79010 4
## 79377 3
## 79927 4
## 80005 3
## 80150 2
## 80232 2
## 80298 1
## 80376 1
## 80555 3
## 80605 3
## 80645 3
## 80867 4
## 81025 4
## 81191 2
## 81244 5
## 81494 3
## 81548 4
## 81861 5
## 82233 5
## 82357 2
## 82833 5
## 83246 4
## 83353 4
## 83605 3
## 83729 3
## 83934 2
## 83984 2
## 84033 3
## 84125 2
## 84377 3
## 84447 3
## 84533 2
## 84692 1
## 84923 4
## 85137 4
## 85192 3
## 85267 2
## 85324 2
## 85418 2
## 85513 1
## 85563 2
## 85864 3
## 85949 2
## 86090 3
## 86237 2
## 86386 3
## 86617 3
## 86868 4
## 87356 3
## 88368 4
## 89439 1
## 89566 1
## 89681 2
## 89849 3
## 89931 3
## 90068 3
## 90153 2
## 90280 3
## 90993 2
## 92012 4
## 92365 3
## 92938 1
## 93065 2
## 93312 3
## 93366 4
## 93405 4
## 93445 3
## 93855 3
## 93879 1
## 93924 4
## 93964 1
## 93999 2
## 94170 1
## 94389 3
## 94481 2
## 94507 1
## 94625 1
## 94654 1
## 95731 3
## 95849 3
## 96285 2
## 96305 1
## 96412 3
## 96678 2
## 96695 2
## 96895 1
## 96941 4
## 97065 4
## 97249 2
## 97411 1
## 97561 3
## 97770 4
## 97850 2
## 98139 2
## 98543 1
## 98662 4
## 98667 3
## 98675 3
## 100 4
## 1436 2
## 2052 3
## 3582 5
## 4254 1
## 4663 4
## 9435 5
## 9974 5
## 13091 5
## 15517 4
## 16041 5
## 16408 2
## 16653 2
## 16805 3
## 17594 3
## 20062 4
## 21897 5
## 24297 5
## 27358 2
## 33146 5
## 34486 3
## 36499 5
## 37637 3
## 38183 1
## 38339 2
## 38717 1
## 38966 4
## 39183 4
## 39553 1
## 39972 3
## 41847 4
## 42338 4
## 42643 4
## 43000 4
## 43400 2
## 43825 1
## 44379 3
## 44804 1
## 45604 4
## 45993 3
## 46156 5
## 46472 3
## 47892 4
## 48295 5
## 49011 4
## 49477 1
## 49647 4
## 49872 2
## 50728 3
## 50967 2
## 51186 4
## 51355 4
## 51797 4
## 53798 1
## 56306 1
## 56789 3
## 57047 1
## 58121 3
## 61901 4
## 62975 3
## 63118 3
## 68883 3
## 69389 5
## 72285 3
## 72548 3
## 72690 4
## 73832 2
## 73890 2
## 77957 4
## 80299 1
## 81862 3
## 82762 4
## 83354 3
## 83730 3
## 85564 3
## 85624 4
## 85950 1
## 86618 4
## 86760 2
## 87153 3
## 87251 4
## 87513 3
## 88752 1
## 89115 1
## 89242 4
## 89440 3
## 89491 2
## 90883 5
## 91026 2
## 91059 1
## 91116 2
## 91296 3
## 91572 4
## 91899 1
## 92242 4
## 92366 5
## 93793 3
## 93835 1
## 94634 4
## 95918 2
## 96546 3
## 97226 3
## 97771 1
## 97851 3
## 97934 1
## 2053 3
## 2937 4
## 3382 1
## 3583 5
## 4481 3
## 4664 4
## 4900 3
## 5853 3
## 7009 4
## 7310 3
## 9436 4
## 9742 2
## 10509 4
## 11718 3
## 12722 1
## 13617 5
## 15196 3
## 17595 3
## 17810 3
## 19281 1
## 20596 3
## 20768 3
## 20874 1
## 22150 4
## 22722 4
## 25624 4
## 28428 4
## 28789 4
## 29509 4
## 32547 1
## 32913 4
## 33855 2
## 33996 4
## 34304 3
## 36500 3
## 37079 4
## 37638 2
## 37840 3
## 39554 3
## 42339 3
## 42574 3
## 42741 4
## 43001 4
## 43401 3
## 43826 3
## 44211 3
## 45605 4
## 46473 4
## 46863 3
## 48296 5
## 49012 5
## 49478 2
## 49648 2
## 49873 3
## 50216 1
## 50353 4
## 50729 4
## 50968 3
## 51187 3
## 51356 3
## 52596 4
## 52859 4
## 53498 3
## 53548 3
## 54106 4
## 54259 4
## 54973 4
## 55164 4
## 55787 5
## 55963 4
## 58122 4
## 61759 4
## 61825 1
## 61902 4
## 67379 1
## 68108 4
## 68427 3
## 69261 1
## 69652 3
## 69961 4
## 70114 3
## 70125 1
## 71022 3
## 71085 4
## 71562 1
## 71645 4
## 71787 1
## 72286 3
## 73891 3
## 74603 2
## 76039 4
## 76406 1
## 76617 4
## 76841 5
## 77519 3
## 77637 3
## 78421 4
## 78475 2
## 78591 3
## 79293 4
## 79478 3
## 79728 2
## 80151 1
## 80419 4
## 80606 2
## 80646 3
## 80750 4
## 80868 3
## 80964 4
## 81369 3
## 82132 1
## 82500 3
## 82975 3
## 84268 1
## 86761 4
## 87514 2
## 87832 3
## 88316 3
## 89116 3
## 89191 3
## 90281 3
## 90725 2
## 91117 2
## 91222 1
## 91531 1
## 93200 5
## 93406 3
## 93446 2
## 93856 3
## 93944 3
## 94592 1
## 95312 3
## 95935 3
## 96082 2
## 96715 1
## 96796 2
## 96971 3
## 98291 3
## 98398 1
## 98680 3
## 98687 3
## 3584 5
## 8633 4
## 13912 5
## 19500 5
## 20063 2
## 23939 5
## 28790 4
## 28968 5
## 32914 5
## 36501 5
## 37841 2
## 43827 4
## 57561 5
## 58530 5
## 63212 5
## 63330 4
## 63510 5
## 63742 5
## 64728 4
## 66422 5
## 70601 4
## 72963 5
## 73147 5
## 73259 5
## 79521 5
## 96630 5
## 98692 4
## 1097 4
## 1680 5
## 2290 5
## 2721 5
## 3859 3
## 4043 4
## 4255 4
## 4665 4
## 7637 4
## 9437 4
## 12248 5
## 12723 2
## 13618 3
## 13913 5
## 15323 4
## 20597 3
## 20927 4
## 23577 5
## 24642 4
## 25240 4
## 25765 4
## 25988 4
## 26726 1
## 28429 4
## 30852 5
## 31844 3
## 34418 4
## 36378 3
## 37523 5
## 38484 4
## 39555 5
## 41064 4
## 42045 3
## 43214 2
## 43828 4
## 53851 3
## 56307 4
## 56684 5
## 62533 3
## 63511 4
## 65982 2
## 66121 4
## 66302 4
## 66763 3
## 68253 4
## 72549 3
## 75739 3
## 80057 5
## 85359 4
## 95244 3
## 1098 5
## 1681 3
## 2547 5
## 2722 4
## 2938 4
## 3311 4
## 4256 4
## 6532 4
## 12838 5
## 14499 5
## 15132 3
## 15870 4
## 16042 2
## 16806 2
## 17397 4
## 17811 4
## 17974 4
## 18387 5
## 19628 5
## 20928 3
## 33856 4
## 37236 1
## 37746 3
## 38340 2
## 38485 2
## 41629 3
## 41848 4
## 42340 4
## 43588 4
## 43829 3
## 44212 4
## 44380 2
## 45370 5
## 45606 3
## 45994 5
## 49281 4
## 49479 3
## 49649 3
## 50084 4
## 56308 2
## 57048 4
## 61222 2
## 62746 4
## 81762 3
## 82501 1
## 83355 3
## 85742 2
## 89682 2
## 91810 4
## 91861 4
## 91964 3
## 92013 4
## 92486 4
## 92826 2
## 93538 2
## 94193 4
## 94230 4
## 95831 4
## 7638 2
## 11868 1
## 13914 3
## 19629 1
## 31069 3
## 41429 5
## 42046 3
## 43830 5
## 44381 4
## 48297 5
## 50527 1
## 58531 4
## 62747 3
## 75489 3
## 75585 4
## 76040 4
## 78699 5
## 82834 3
## 85325 5
## 88076 1
## 89814 1
## 37842 3
## 39556 2
## 40126 1
## 40804 4
## 41430 3
## 43831 4
## 44382 4
## 46474 2
## 47111 5
## 48074 5
## 48149 3
## 48298 2
## 48606 1
## 48756 1
## 50730 1
## 51878 4
## 52215 5
## 52482 1
## 52597 4
## 53227 1
## 82502 3
## 82835 2
## 82976 3
## 87631 1
## 88006 4
## 88077 1
## 88464 4
## 88509 5
## 89783 2
## 101 5
## 1099 3
## 1437 5
## 1922 3
## 2054 4
## 3585 5
## 4257 3
## 4666 5
## 6533 5
## 7010 4
## 7639 3
## 8634 5
## 9438 4
## 9743 4
## 9975 5
## 10743 5
## 11233 5
## 12587 3
## 13092 5
## 13338 2
## 13619 5
## 13915 5
## 14246 3
## 14500 4
## 16043 5
## 16807 4
## 17596 5
## 18657 5
## 19066 4
## 19282 2
## 19761 3
## 19837 3
## 19898 4
## 19967 4
## 20064 5
## 20289 3
## 21510 5
## 21741 4
## 22530 5
## 22723 4
## 23300 4
## 23940 4
## 24643 5
## 25241 4
## 26276 4
## 26727 2
## 26954 3
## 27359 4
## 27594 4
## 29225 3
## 29510 5
## 30107 3
## 30594 4
## 30853 2
## 31070 4
## 31367 3
## 31845 1
## 32057 5
## 32365 5
## 32771 4
## 33147 4
## 34305 5
## 34944 2
## 35773 1
## 35927 4
## 36502 5
## 36855 1
## 37080 4
## 37237 1
## 40498 5
## 40685 4
## 42341 5
## 42742 4
## 43402 1
## 45130 4
## 45607 5
## 47369 5
## 52992 5
## 53895 4
## 54107 5
## 54707 1
## 55253 3
## 55788 5
## 56309 4
## 57562 5
## 57693 4
## 57857 5
## 58033 3
## 58123 5
## 58532 5
## 59053 3
## 59210 4
## 59632 4
## 60022 4
## 60253 1
## 60649 4
## 64112 5
## 64248 5
## 64664 3
## 64996 5
## 65278 5
## 65411 4
## 65491 3
## 65707 3
## 66557 2
## 67039 5
## 68109 3
## 69653 5
## 70835 3
## 71086 4
## 71646 4
## 72023 5
## 73317 3
## 73419 3
## 73927 2
## 73944 3
## 74136 5
## 74236 3
## 74663 4
## 75490 4
## 77336 3
## 79011 2
## 79294 4
## 81549 5
## 81863 5
## 89243 3
## 90375 5
## 90748 5
## 90884 4
## 93747 3
## 96473 4
## 98696 2
## 102 3
## 2939 4
## 6534 4
## 16808 4
## 17812 5
## 17975 3
## 21120 1
## 26277 4
## 38718 4
## 38967 3
## 44805 4
## 46475 4
## 48299 3
## 56310 4
## 62036 5
## 62976 3
## 72691 3
## 82503 4
## 86762 4
## 87252 3
## 89117 5
## 103 4
## 715 4
## 1438 2
## 2723 4
## 3586 3
## 5204 4
## 5902 4
## 6233 5
## 6535 4
## 7086 5
## 7640 5
## 8635 4
## 9439 3
## 10430 3
## 11084 5
## 12588 5
## 13339 5
## 13916 4
## 14501 5
## 16044 3
## 17976 3
## 18658 5
## 18887 4
## 20929 3
## 23060 4
## 23124 4
## 23697 5
## 23941 4
## 24298 4
## 25026 5
## 25625 5
## 26278 4
## 27595 4
## 28430 4
## 28969 4
## 29511 5
## 29757 4
## 30595 4
## 31071 4
## 31846 3
## 32915 3
## 35928 3
## 38056 4
## 38486 4
## 40805 3
## 41065 3
## 41431 4
## 42047 2
## 42342 5
## 43832 3
## 44806 4
## 45608 2
## 47112 5
## 48300 3
## 48607 5
## 49013 5
## 52993 4
## 57694 4
## 58124 4
## 58393 4
## 59633 4
## 61255 5
## 61349 4
## 62037 3
## 62534 5
## 62748 5
## 63893 5
## 64786 4
## 65279 4
## 66122 1
## 66861 4
## 67040 2
## 67837 4
## 68729 4
## 71647 5
## 72192 3
## 72964 4
## 74448 3
## 74902 5
## 75586 3
## 76041 4
## 78700 4
## 79522 5
## 79729 4
## 82133 3
## 82358 3
## 82836 3
## 88576 5
## 88877 3
## 88966 4
## 95467 2
## 95893 5
## 716 3
## 1439 3
## 1682 5
## 2291 2
## 2724 4
## 3860 5
## 5059 3
## 6098 5
## 6234 5
## 6536 3
## 7641 5
## 7943 5
## 8006 3
## 8636 5
## 9440 5
## 9744 5
## 9976 5
## 11234 4
## 12249 3
## 12589 3
## 13093 5
## 13620 5
## 13917 5
## 14247 3
## 14502 4
## 16045 3
## 16809 4
## 17977 5
## 18388 3
## 18888 5
## 19283 4
## 20065 4
## 23301 5
## 24644 5
## 25490 4
## 25989 5
## 27841 4
## 28431 4
## 28663 5
## 28791 4
## 28970 4
## 29512 5
## 29758 5
## 30596 5
## 30854 3
## 31072 5
## 31368 4
## 31638 4
## 32548 5
## 32916 5
## 33148 5
## 34306 4
## 35929 4
## 38341 5
## 39184 4
## 40232 5
## 40806 5
## 42048 5
## 42343 5
## 43833 3
## 45371 4
## 47370 5
## 48301 5
## 49014 5
## 52994 5
## 53896 5
## 54034 4
## 54108 4
## 54370 4
## 57563 4
## 58125 4
## 59211 3
## 59634 5
## 61350 5
## 63213 5
## 63743 4
## 63894 5
## 64729 5
## 64905 4
## 65280 5
## 65412 3
## 65492 3
## 65708 5
## 65889 5
## 66303 4
## 66558 5
## 67041 5
## 67670 5
## 67838 4
## 68254 5
## 68428 5
## 70836 5
## 71827 4
## 72024 5
## 72965 4
## 73616 4
## 73983 3
## 74664 5
## 74997 2
## 75198 5
## 75303 5
## 75873 4
## 76618 5
## 81245 5
## 85138 4
## 86072 4
## 86619 4
## 89051 4
## 90584 5
## 96497 5
## 104 3
## 478 2
## 717 4
## 900 3
## 1100 2
## 1440 5
## 1683 3
## 1923 3
## 2055 2
## 2292 1
## 2548 3
## 2725 3
## 2940 3
## 3163 2
## 3383 4
## 3458 3
## 3587 4
## 3861 4
## 4258 3
## 4667 4
## 4996 4
## 5060 4
## 5205 3
## 5619 2
## 5903 3
## 5983 4
## 6099 2
## 6235 2
## 6537 4
## 7087 4
## 7311 2
## 7642 3
## 8637 4
## 8993 3
## 9441 4
## 9745 3
## 9977 3
## 10177 3
## 10308 2
## 10431 2
## 10510 3
## 10744 3
## 11085 3
## 11235 3
## 11635 2
## 11719 2
## 11869 3
## 12017 3
## 12250 3
## 12590 5
## 12839 3
## 13094 3
## 13340 2
## 13621 2
## 13918 4
## 14248 5
## 14503 4
## 14979 2
## 15133 4
## 15518 3
## 15871 2
## 16046 2
## 16633 3
## 17398 4
## 17597 3
## 17978 4
## 18492 1
## 18531 3
## 18659 4
## 18889 3
## 19067 5
## 19284 4
## 19501 4
## 19630 3
## 19838 2
## 19899 3
## 19968 2
## 20066 3
## 20290 3
## 20598 3
## 20769 3
## 21121 3
## 21392 4
## 21511 3
## 21742 3
## 22011 2
## 22151 2
## 22432 2
## 22531 3
## 22724 3
## 22822 3
## 22927 3
## 23061 5
## 23125 5
## 23302 3
## 23698 5
## 23942 3
## 24299 3
## 24645 3
## 25027 2
## 25242 3
## 25491 3
## 25626 5
## 25766 3
## 25990 3
## 26279 3
## 26728 3
## 26955 4
## 27360 3
## 27596 3
## 27842 4
## 28038 2
## 28266 3
## 28432 4
## 28664 3
## 28792 4
## 28971 5
## 29226 2
## 29513 3
## 29759 5
## 29968 3
## 30108 5
## 30277 5
## 30597 3
## 31073 2
## 31369 3
## 31486 4
## 31538 2
## 31639 4
## 31847 4
## 32058 3
## 32366 3
## 32549 2
## 32647 3
## 32917 3
## 33149 3
## 33521 2
## 33679 2
## 33857 2
## 33997 3
## 34307 3
## 34419 4
## 34598 2
## 34945 3
## 35174 4
## 35774 2
## 35930 4
## 36379 3
## 36503 3
## 36856 3
## 37394 2
## 37524 4
## 37639 1
## 39557 2
## 39973 2
## 40499 3
## 41630 3
## 41849 3
## 42344 3
## 42575 3
## 42696 3
## 42743 3
## 43215 3
## 43403 3
## 43589 4
## 43834 3
## 44213 3
## 44383 3
## 44807 4
## 45035 3
## 45131 3
## 45254 4
## 45609 3
## 46476 3
## 46864 3
## 47371 3
## 47707 2
## 48302 4
## 48757 4
## 48866 2
## 49015 4
## 49282 3
## 49480 2
## 49650 2
## 50731 2
## 50969 2
## 52995 4
## 53228 1
## 53622 4
## 53897 3
## 54109 4
## 54371 3
## 54708 2
## 55057 3
## 55254 2
## 55689 2
## 55964 1
## 56141 4
## 57190 2
## 57326 4
## 57409 4
## 57474 3
## 57564 3
## 57695 4
## 57947 1
## 58126 4
## 58533 4
## 58735 4
## 58850 4
## 58950 4
## 59054 3
## 59212 4
## 59393 2
## 59532 3
## 59635 3
## 59820 3
## 60023 3
## 60204 2
## 60254 3
## 60365 3
## 60650 3
## 61351 4
## 61484 4
## 61544 4
## 61581 2
## 61663 4
## 61903 2
## 62038 3
## 62242 2
## 62397 5
## 62535 4
## 63119 1
## 63214 3
## 63331 5
## 63512 4
## 63662 5
## 63744 4
## 63895 5
## 64113 5
## 64249 3
## 64365 3
## 64428 3
## 64496 4
## 64556 3
## 64607 4
## 64665 4
## 64730 3
## 64787 3
## 64842 4
## 64906 4
## 64997 4
## 65193 4
## 65281 5
## 65413 4
## 65493 4
## 65601 4
## 65650 2
## 65709 4
## 65817 4
## 65890 4
## 65983 4
## 66423 4
## 66559 5
## 66764 5
## 67042 5
## 67218 3
## 67285 3
## 67464 5
## 67543 4
## 67671 3
## 67839 4
## 67978 3
## 68026 4
## 68110 3
## 68255 3
## 68429 4
## 68635 4
## 68730 3
## 69390 1
## 69654 3
## 69753 2
## 69911 2
## 70136 1
## 70164 4
## 70602 2
## 71130 2
## 71648 4
## 71828 3
## 72025 3
## 72193 3
## 72287 3
## 72550 2
## 72857 3
## 72885 4
## 72966 4
## 73148 5
## 73218 3
## 73260 5
## 73318 4
## 73380 3
## 73420 3
## 73474 4
## 73513 5
## 73555 3
## 73586 4
## 73617 3
## 73670 5
## 73728 2
## 73788 3
## 73806 3
## 73833 2
## 73945 2
## 73984 2
## 74051 3
## 74119 4
## 74237 2
## 74385 4
## 74449 2
## 74498 3
## 74604 2
## 74723 4
## 74750 2
## 74788 3
## 74903 4
## 75070 4
## 75118 3
## 75257 3
## 75304 3
## 75369 3
## 75432 3
## 75491 3
## 75587 4
## 75810 3
## 75874 5
## 76042 3
## 76225 4
## 76287 4
## 76488 3
## 76619 4
## 76756 5
## 76842 3
## 76931 4
## 77214 3
## 77337 4
## 77461 4
## 78422 3
## 78875 3
## 79012 2
## 79097 3
## 79295 3
## 79412 2
## 79523 5
## 79826 4
## 80006 2
## 80647 4
## 80751 3
## 80965 2
## 81026 2
## 81246 3
## 81550 3
## 82207 4
## 82234 2
## 82359 3
## 82763 3
## 82977 2
## 83878 3
## 83935 2
## 84034 4
## 84448 2
## 84517 3
## 84573 3
## 84777 4
## 85139 2
## 85193 2
## 86213 2
## 86305 3
## 86321 4
## 86349 3
## 86480 4
## 86507 2
## 86542 2
## 86620 3
## 86811 4
## 86852 3
## 86915 2
## 86964 3
## 87115 5
## 87340 4
## 87469 2
## 87515 3
## 87593 1
## 87781 2
## 88131 3
## 88967 4
## 89052 4
## 89192 2
## 89321 4
## 89340 2
## 89441 1
## 89850 2
## 89982 3
## 90107 3
## 90345 2
## 90376 1
## 90544 3
## 90604 2
## 90749 3
## 90785 4
## 90796 3
## 90819 4
## 90945 4
## 91223 2
## 91297 2
## 91465 2
## 91965 2
## 92014 3
## 92327 2
## 92594 4
## 92628 4
## 93066 3
## 93201 3
## 93407 2
## 93658 3
## 93748 3
## 93794 2
## 94077 3
## 94112 4
## 94453 3
## 94482 2
## 94917 2
## 94937 3
## 95364 3
## 95382 5
## 95402 3
## 95426 4
## 95554 3
## 95894 3
## 96150 2
## 96174 4
## 96184 1
## 96222 3
## 96365 2
## 96377 3
## 96393 4
## 96584 3
## 96614 3
## 96631 4
## 96651 3
## 96668 1
## 96972 4
## 97506 3
## 97602 3
## 97795 3
## 97916 3
## 98111 3
## 98237 3
## 98372 4
## 98386 3
## 98715 4
## 98719 3
## 98734 3
## 98735 3
## 98738 4
## 98746 3
## 98748 3
## 98763 4
## 98764 2
## 98765 3
## 98771 2
## 98773 4
## 98780 3
## 98781 4
## 98782 3
## 98789 3
## 98790 2
## 98791 3
## 98798 5
## 105 4
## 1101 4
## 3588 4
## 6538 5
## 7088 4
## 8869 2
## 8994 2
## 9442 4
## 9746 5
## 10745 4
## 11236 2
## 11468 4
## 11636 4
## 11720 4
## 11870 4
## 13341 4
## 14504 4
## 19285 4
## 21512 4
## 23699 4
## 24646 4
## 25028 4
## 25767 5
## 26280 3
## 27361 4
## 28039 4
## 28267 4
## 28433 4
## 28665 4
## 28793 5
## 28972 5
## 29227 4
## 29514 3
## 29760 5
## 29969 3
## 31539 4
## 32367 5
## 32648 4
## 35353 4
## 36504 4
## 40807 4
## 42049 5
## 43590 4
## 45255 3
## 49016 5
## 49283 4
## 50528 3
## 51715 1
## 52216 5
## 52357 4
## 57696 5
## 58851 4
## 59055 2
## 59394 4
## 59636 5
## 61352 3
## 61485 4
## 62536 5
## 63513 4
## 63896 5
## 64843 4
## 64998 4
## 66560 5
## 66702 5
## 67043 4
## 67544 4
## 67777 5
## 67840 5
## 67979 5
## 72967 3
## 75305 4
## 75370 4
## 75740 4
## 76043 4
## 78127 4
## 78876 4
## 79392 4
## 79524 5
## 82360 2
## 84778 4
## 88510 3
## 89053 4
## 90946 4
## 90958 4
## 92629 5
## 95029 2
## 95313 3
## 95589 4
## 95895 4
## 96259 5
## 96485 4
## 98749 4
## 98801 4
## 1684 5
## 2941 5
## 4668 4
## 6539 3
## 7011 5
## 7643 5
## 7944 5
## 8007 2
## 8638 5
## 8995 2
## 9443 5
## 9978 3
## 10746 4
## 12018 2
## 13622 5
## 13919 5
## 14505 3
## 15519 4
## 16047 3
## 17979 5
## 18660 4
## 18890 5
## 19068 4
## 19286 2
## 20067 4
## 20770 4
## 21122 2
## 21513 2
## 23700 5
## 23943 3
## 24647 3
## 25243 2
## 25768 1
## 26281 4
## 26956 2
## 27362 5
## 27843 3
## 28434 4
## 28973 3
## 29228 2
## 29515 1
## 30109 4
## 30278 3
## 30855 4
## 31074 3
## 31540 3
## 32059 2
## 32368 3
## 33150 5
## 33998 4
## 34308 5
## 34487 3
## 36505 4
## 38968 3
## 40500 2
## 41631 1
## 41850 1
## 42050 3
## 43002 5
## 43835 5
## 44808 4
## 45610 2
## 46157 4
## 47372 4
## 47708 4
## 48303 4
## 49017 5
## 50732 5
## 51357 3
## 53852 3
## 57049 1
## 57697 5
## 57858 4
## 58127 5
## 58534 5
## 58852 1
## 59213 5
## 59637 4
## 60024 4
## 61353 4
## 62977 3
## 63215 3
## 63897 5
## 64999 3
## 65710 3
## 65818 3
## 65891 5
## 65984 3
## 66424 3
## 67545 4
## 67672 3
## 67841 2
## 68111 3
## 68832 2
## 69391 4
## 69655 4
## 72288 4
## 72466 3
## 72551 4
## 73618 5
## 74605 3
## 76044 3
## 76489 3
## 76757 3
## 77338 4
## 78294 2
## 78423 3
## 78877 4
## 79157 2
## 79296 4
## 79525 4
## 80300 3
## 80869 5
## 81247 5
## 82837 5
## 83356 1
## 87154 2
## 87253 3
## 89683 4
## 92198 2
## 93202 2
## 95001 4
## 98103 4
## 98399 3
## 1685 4
## 3862 4
## 4669 4
## 8008 4
## 8639 5
## 11469 4
## 13920 4
## 14506 5
## 17980 5
## 19069 5
## 21514 3
## 23578 5
## 24648 4
## 25244 3
## 25627 4
## 25769 4
## 25991 4
## 26957 5
## 27363 4
## 27844 3
## 28268 4
## 28435 4
## 29761 4
## 30110 4
## 32369 4
## 36857 4
## 43836 3
## 52996 4
## 56685 5
## 58128 4
## 62537 5
## 63332 5
## 63898 5
## 64250 4
## 64557 4
## 64844 4
## 65282 4
## 65414 2
## 65602 4
## 66765 5
## 66862 4
## 68027 4
## 68430 5
## 72968 5
## 76226 4
## 76490 4
## 79526 3
## 96474 5
## 15520 4
## 16409 3
## 16810 4
## 17598 3
## 21123 2
## 26282 3
## 33783 3
## 36506 3
## 38719 3
## 38969 3
## 39185 4
## 39558 3
## 43837 5
## 45611 3
## 46158 5
## 46477 4
## 46865 3
## 56311 4
## 61126 4
## 62039 4
## 62978 3
## 68981 4
## 69392 3
## 83357 3
## 85419 2
## 86621 3
## 89244 3
## 96457 3
## 97467 1
## 1441 5
## 1686 5
## 1924 5
## 2293 5
## 2726 5
## 5537 5
## 5733 5
## 5984 5
## 6050 4
## 6100 2
## 6540 5
## 7644 4
## 8009 5
## 8640 1
## 8870 5
## 9444 1
## 10747 3
## 11086 3
## 12251 4
## 12591 4
## 13342 5
## 13921 5
## 14507 3
## 15766 3
## 15872 5
## 17399 5
## 18661 5
## 18891 3
## 19070 5
## 19287 5
## 19631 5
## 20930 5
## 21393 3
## 22725 5
## 23062 5
## 23303 4
## 23808 5
## 23944 4
## 24649 4
## 25029 5
## 25770 5
## 25992 5
## 26283 3
## 26958 5
## 27364 4
## 27597 1
## 27845 5
## 28269 1
## 28974 5
## 29229 5
## 29970 5
## 30856 1
## 31075 3
## 31370 3
## 31541 5
## 31640 3
## 31848 5
## 32060 4
## 33858 5
## 34946 2
## 35931 3
## 36858 5
## 37525 5
## 40808 5
## 41432 5
## 42345 5
## 43838 1
## 44384 2
## 46478 1
## 47373 1
## 47502 4
## 48150 2
## 48867 5
## 49018 1
## 51879 5
## 54476 3
## 57698 3
## 57948 5
## 58535 5
## 58736 5
## 58951 3
## 59214 5
## 59395 5
## 59533 5
## 60025 5
## 61354 5
## 61486 5
## 62538 5
## 62749 5
## 63216 5
## 63333 5
## 63745 3
## 63899 5
## 64114 5
## 64497 5
## 64558 5
## 64666 5
## 64731 3
## 64788 5
## 65194 4
## 65283 4
## 65415 5
## 65711 4
## 65819 5
## 65985 5
## 66123 5
## 66304 5
## 66561 5
## 66703 5
## 66766 5
## 66863 1
## 67219 5
## 67380 3
## 68256 5
## 68431 5
## 68545 5
## 68636 5
## 68731 5
## 70165 5
## 72194 3
## 72969 5
## 73219 4
## 73556 5
## 74606 5
## 74665 5
## 74724 4
## 75306 5
## 75492 5
## 75741 5
## 75875 5
## 76491 3
## 76932 5
## 77215 5
## 77462 5
## 78701 1
## 79393 5
## 79527 4
## 81370 5
## 82208 5
## 83153 5
## 86322 5
## 86965 5
## 88968 5
## 89054 5
## 90476 5
## 90691 5
## 92595 3
## 93911 5
## 94127 5
## 94263 5
## 94868 5
## 94904 5
## 95202 2
## 96475 1
## 96632 5
## 96652 4
## 97352 5
## 98118 3
## 37526 5
## 37843 4
## 40809 5
## 41433 5
## 43839 5
## 44385 5
## 44809 4
## 46479 3
## 46866 5
## 47113 5
## 47709 4
## 48304 5
## 51642 3
## 51880 4
## 52110 3
## 52598 1
## 52713 1
## 53229 2
## 82504 3
## 82978 3
## 87516 2
## 87833 3
## 88369 5
## 88511 5
## 41066 3
## 43840 5
## 44386 5
## 45256 4
## 45612 3
## 46480 4
## 47114 3
## 47710 4
## 47948 4
## 48305 4
## 51188 3
## 51616 3
## 52111 2
## 52358 3
## 52629 2
## 77958 2
## 78592 3
## 78702 2
## 82838 5
## 87959 5
## 88132 4
## 88370 2
## 106 4
## 15521 4
## 36507 4
## 42051 5
## 43216 4
## 45132 3
## 45613 4
## 47503 5
## 47596 5
## 51066 5
## 53369 5
## 62750 3
## 81696 5
## 89684 5
## 92015 3
## 95702 5
## 95936 5
## 98199 5
## 98207 5
## 107 4
## 1102 3
## 1442 5
## 1925 4
## 2549 4
## 2727 3
## 2942 3
## 3164 3
## 3589 3
## 4259 3
## 4482 3
## 4670 4
## 9445 3
## 10511 3
## 11470 4
## 11721 5
## 12840 2
## 15522 4
## 15873 4
## 17599 3
## 17981 4
## 18389 2
## 19632 3
## 21124 3
## 22152 5
## 22726 4
## 24300 3
## 28436 5
## 28975 4
## 29516 4
## 31641 4
## 32918 3
## 33859 5
## 34309 4
## 34488 3
## 36508 2
## 38057 4
## 42052 3
## 42744 1
## 43217 3
## 43591 5
## 43841 4
## 47597 4
## 48868 5
## 49019 4
## 53623 3
## 54974 4
## 58129 3
## 59638 4
## 61127 4
## 61256 3
## 61760 3
## 63120 4
## 66305 4
## 66562 5
## 66864 4
## 68732 4
## 71649 5
## 74499 4
## 74607 5
## 76045 4
## 76620 4
## 79098 4
## 79297 4
## 79730 3
## 80058 3
## 80648 3
## 81027 4
## 81371 4
## 81444 3
## 84269 4
## 85360 4
## 93203 4
## 95203 3
## 95883 3
## 96547 4
## 97730 5
## 98231 2
## 98804 3
## 98807 3
## 108 4
## 603 5
## 1103 4
## 1687 5
## 2550 4
## 3214 2
## 3384 4
## 3590 4
## 4483 5
## 4671 4
## 5061 4
## 5206 2
## 5620 2
## 5734 5
## 6541 5
## 7012 2
## 7089 4
## 7183 3
## 7312 2
## 7645 5
## 8010 3
## 8384 2
## 8641 5
## 8871 4
## 8996 4
## 9147 4
## 9253 5
## 9446 4
## 9747 4
## 9979 4
## 10178 4
## 10512 4
## 11007 3
## 11237 3
## 11722 4
## 12019 4
## 12252 5
## 12481 4
## 12724 4
## 13095 4
## 13623 2
## 14508 4
## 14907 5
## 15057 2
## 15324 4
## 15523 4
## 15767 4
## 16048 2
## 16410 2
## 16811 1
## 17156 4
## 17813 4
## 19288 4
## 20291 1
## 20493 3
## 20771 2
## 21125 5
## 21515 4
## 21743 5
## 21898 3
## 22012 4
## 22153 4
## 22261 3
## 22532 4
## 22727 4
## 22928 3
## 23185 3
## 23304 5
## 23579 5
## 23809 5
## 23945 4
## 24301 4
## 24650 3
## 25771 5
## 25993 4
## 26284 4
## 26959 4
## 27598 3
## 28040 4
## 28437 5
## 28794 4
## 29517 5
## 29762 4
## 30279 5
## 31076 4
## 31642 5
## 31849 4
## 32772 5
## 32919 4
## 33151 4
## 33389 5
## 33784 2
## 33999 2
## 34599 1
## 35665 4
## 35932 3
## 36199 1
## 36509 5
## 36859 5
## 37238 3
## 37395 4
## 38058 5
## 38342 4
## 38970 2
## 39559 5
## 40501 4
## 42346 5
## 42644 3
## 42841 3
## 44214 3
## 45036 3
## 45133 2
## 45614 4
## 46867 2
## 47949 3
## 48869 5
## 49020 5
## 50085 4
## 52997 5
## 53499 2
## 53624 1
## 53799 4
## 54260 4
## 54372 4
## 54570 3
## 55255 3
## 55690 3
## 56790 4
## 56876 4
## 57050 4
## 58737 4
## 59396 5
## 60651 4
## 60912 2
## 61040 3
## 61128 3
## 61761 1
## 62040 1
## 62751 4
## 66124 4
## 66306 5
## 67673 4
## 68257 5
## 68432 3
## 68947 5
## 69754 1
## 69962 5
## 70031 3
## 70246 4
## 70603 4
## 71563 4
## 71829 5
## 72552 4
## 73421 3
## 74238 4
## 74386 4
## 74500 4
## 75493 3
## 75588 4
## 75742 5
## 76046 5
## 76621 4
## 76843 3
## 77339 3
## 77520 4
## 78295 2
## 79230 4
## 79654 4
## 79731 4
## 79928 3
## 80007 3
## 80233 3
## 80497 5
## 80607 3
## 80649 4
## 81028 1
## 81248 5
## 81495 4
## 81551 3
## 82079 5
## 82134 3
## 82235 3
## 82361 4
## 83182 4
## 83358 2
## 83606 3
## 83731 4
## 83853 5
## 84126 4
## 84378 4
## 84693 4
## 85420 4
## 85534 2
## 86238 3
## 86622 3
## 87025 5
## 87254 5
## 87408 3
## 88078 5
## 89118 4
## 89245 2
## 89932 4
## 90154 4
## 90282 4
## 90346 1
## 90458 4
## 90494 4
## 90605 4
## 92114 2
## 92487 4
## 92827 3
## 93204 4
## 93313 4
## 93447 5
## 93539 2
## 93659 4
## 93857 2
## 93880 3
## 93925 4
## 94390 4
## 94508 2
## 94817 2
## 94869 5
## 95052 2
## 95075 4
## 95263 4
## 95314 5
## 95526 4
## 95672 3
## 95919 4
## 96151 4
## 96286 3
## 96413 4
## 96731 3
## 97049 2
## 98606 4
## 98813 5
## 3459 3
## 6542 4
## 12947 2
## 15730 4
## 18892 2
## 21126 3
## 26285 4
## 32061 3
## 34000 4
## 37239 1
## 39560 4
## 46481 4
## 57051 3
## 62398 2
## 72553 4
## 72692 4
## 80301 4
## 83359 3
## 88333 1
## 92828 5
## 93004 5
## 93540 3
## 109 4
## 604 2
## 1443 3
## 2056 4
## 2294 5
## 3215 2
## 4044 4
## 4260 3
## 4901 1
## 5426 2
## 5669 2
## 6543 5
## 7430 4
## 7646 1
## 8997 3
## 9148 2
## 9254 5
## 9447 3
## 10513 2
## 11008 2
## 11087 5
## 11238 2
## 11471 4
## 12725 1
## 12948 2
## 13096 3
## 13343 3
## 13624 3
## 13922 4
## 14249 3
## 14509 4
## 14908 2
## 15325 5
## 15524 3
## 16049 3
## 16411 1
## 16812 4
## 18662 4
## 18893 3
## 19762 1
## 20494 1
## 21127 5
## 21899 1
## 22262 1
## 22328 3
## 22533 3
## 22929 3
## 23946 5
## 24302 5
## 24651 3
## 25030 4
## 25245 4
## 25628 5
## 26286 5
## 27213 4
## 27365 5
## 29230 3
## 29518 3
## 29971 4
## 30467 5
## 30598 3
## 31077 3
## 31643 4
## 32062 3
## 32370 4
## 32920 2
## 33152 3
## 33680 5
## 34310 5
## 34600 2
## 34768 4
## 34947 3
## 35354 3
## 35534 1
## 35666 3
## 36200 3
## 36380 4
## 36860 5
## 37081 3
## 37240 3
## 38487 4
## 38720 1
## 38879 1
## 39186 4
## 40127 5
## 40502 4
## 43404 1
## 44387 5
## 44810 2
## 45615 2
## 52860 2
## 53766 1
## 53800 3
## 54605 2
## 54709 1
## 55256 3
## 55691 1
## 55789 3
## 55965 4
## 56142 3
## 56579 3
## 56791 2
## 56877 1
## 57052 3
## 57191 1
## 57275 4
## 57410 3
## 57565 3
## 57859 3
## 58130 3
## 58394 5
## 58463 3
## 59056 3
## 59215 3
## 59397 5
## 59940 3
## 60158 4
## 60255 3
## 60652 2
## 61826 3
## 61904 4
## 62752 4
## 63121 4
## 69134 3
## 69592 4
## 69755 3
## 70247 3
## 70388 1
## 70751 5
## 70837 4
## 71087 1
## 71160 3
## 71293 1
## 71424 2
## 71903 1
## 72026 4
## 72554 3
## 72693 2
## 73729 5
## 74239 1
## 74666 3
## 75589 4
## 75743 5
## 76407 4
## 77093 4
## 77266 4
## 77463 4
## 77825 2
## 80377 4
## 80420 1
## 80498 4
## 80650 4
## 80812 1
## 81249 4
## 81552 2
## 81763 5
## 82080 1
## 82236 4
## 82505 1
## 83467 1
## 83879 2
## 84694 3
## 84988 2
## 85049 1
## 85223 2
## 85514 4
## 86026 1
## 86134 1
## 86387 4
## 86441 1
## 86869 1
## 86926 5
## 88371 5
## 88878 4
## 89492 2
## 89614 1
## 89933 1
## 91241 1
## 91573 3
## 92829 3
## 93205 4
## 93408 1
## 93836 1
## 94322 4
## 94655 1
## 94938 5
## 95622 1
## 95732 2
## 96414 3
## 96896 3
## 96942 3
## 97011 3
## 97109 1
## 97203 1
## 98481 2
## 110 4
## 1104 4
## 4672 5
## 6544 5
## 8011 4
## 8642 5
## 9748 5
## 14510 3
## 15525 5
## 16813 4
## 21128 4
## 26287 4
## 34001 3
## 38650 4
## 39187 4
## 39561 5
## 39974 3
## 40810 4
## 41216 2
## 41434 4
## 46482 2
## 51881 3
## 81372 5
## 82839 4
## 82979 3
## 92669 4
## 111 3
## 1105 2
## 2057 5
## 3591 2
## 6545 5
## 7431 4
## 8643 5
## 9448 1
## 10748 3
## 12253 5
## 13344 4
## 13923 5
## 14511 4
## 15768 5
## 16050 5
## 16814 2
## 17982 5
## 21516 3
## 22013 5
## 23305 4
## 23947 4
## 24652 3
## 25246 5
## 25772 3
## 25994 3
## 26288 4
## 26960 5
## 27366 3
## 27599 5
## 27846 3
## 28976 4
## 29519 2
## 29972 5
## 32063 3
## 35933 4
## 36201 3
## 38343 4
## 38488 3
## 39188 3
## 43003 2
## 43218 1
## 45037 3
## 45616 3
## 49874 1
## 50086 4
## 52112 4
## 56312 4
## 62539 2
## 62753 5
## 64115 2
## 67044 5
## 72195 4
## 77638 3
## 85140 3
## 86938 5
## 89341 3
## 112 4
## 479 3
## 718 4
## 1106 5
## 1688 5
## 2058 5
## 2295 5
## 2551 4
## 3592 5
## 3863 4
## 4045 4
## 4673 4
## 5062 4
## 5538 4
## 5735 5
## 6546 4
## 7184 4
## 7432 5
## 7647 5
## 8012 5
## 8644 5
## 9255 5
## 9449 5
## 10749 5
## 11472 5
## 11723 4
## 12020 4
## 12254 5
## 12726 5
## 12841 4
## 13345 4
## 13924 5
## 14512 5
## 15240 3
## 15769 5
## 16051 4
## 16815 3
## 17265 3
## 17400 5
## 17600 3
## 18390 5
## 19289 5
## 19633 4
## 20292 4
## 20599 5
## 20772 3
## 22014 5
## 22534 3
## 23306 4
## 23580 5
## 23948 3
## 24303 5
## 24653 4
## 25031 4
## 25247 4
## 25773 5
## 26289 3
## 26729 5
## 26961 4
## 27600 4
## 28041 4
## 28438 4
## 29231 4
## 29973 5
## 30599 4
## 30857 5
## 31850 5
## 32064 3
## 32550 4
## 33153 4
## 33522 3
## 34002 4
## 34311 4
## 34948 4
## 36202 4
## 36510 5
## 36861 5
## 37082 3
## 37241 4
## 37396 5
## 37527 5
## 37844 2
## 38184 5
## 38344 4
## 38489 4
## 38721 2
## 38971 3
## 39189 3
## 39562 5
## 41217 4
## 41632 4
## 42053 4
## 43219 5
## 45038 2
## 45617 3
## 46159 4
## 46483 4
## 47115 4
## 47893 3
## 48870 5
## 49021 5
## 50529 4
## 51358 4
## 52998 4
## 55966 4
## 56313 3
## 56630 3
## 56686 5
## 56792 4
## 57053 3
## 57949 5
## 58131 4
## 58536 5
## 59057 5
## 60913 4
## 61041 3
## 61355 5
## 61709 4
## 61827 4
## 62041 4
## 62243 3
## 62979 3
## 63217 4
## 63334 5
## 63514 5
## 63900 5
## 69393 3
## 70838 4
## 71788 4
## 72027 3
## 72289 5
## 72694 2
## 72970 5
## 74240 3
## 74725 5
## 76408 4
## 78128 4
## 78424 5
## 79732 4
## 80608 4
## 81764 4
## 81864 3
## 82237 5
## 82506 3
## 84645 5
## 85141 5
## 85951 1
## 86543 5
## 86927 4
## 88879 5
## 89493 2
## 91574 3
## 92016 5
## 92115 3
## 92367 3
## 93206 5
## 93541 3
## 94243 5
## 94323 4
## 95007 5
## 96138 4
## 113 4
## 480 4
## 1107 4
## 1689 2
## 2296 5
## 3864 4
## 4674 4
## 5904 4
## 6547 5
## 7433 5
## 7648 4
## 8645 5
## 9450 5
## 9980 5
## 11088 4
## 12255 4
## 12592 5
## 12727 5
## 13097 5
## 13346 2
## 13925 5
## 14513 5
## 15526 4
## 15874 4
## 16052 3
## 17266 3
## 17983 4
## 18391 4
## 19290 5
## 19839 3
## 20293 4
## 21129 4
## 21517 2
## 21744 4
## 22329 4
## 24654 3
## 25032 5
## 25774 4
## 26290 4
## 26962 4
## 27214 1
## 28439 5
## 29232 2
## 29520 4
## 30280 5
## 30600 4
## 31078 2
## 34003 4
## 34312 4
## 35934 3
## 36203 2
## 36511 2
## 36862 4
## 37242 4
## 37747 4
## 38185 2
## 39563 4
## 39975 1
## 40128 4
## 40367 3
## 41067 4
## 41218 4
## 42347 4
## 44388 4
## 45372 4
## 45618 1
## 48306 5
## 49481 5
## 49651 3
## 49875 2
## 50087 2
## 50217 4
## 50733 3
## 51067 3
## 51359 4
## 51716 4
## 51882 4
## 52999 4
## 53625 4
## 54110 4
## 56143 4
## 57566 5
## 61129 5
## 61828 4
## 62540 5
## 62754 4
## 63122 3
## 63515 5
## 64251 4
## 65000 4
## 65494 5
## 68258 4
## 70166 4
## 71650 4
## 72028 5
## 72555 5
## 74241 4
## 74387 4
## 77521 5
## 77639 2
## 78476 1
## 78542 2
## 81865 3
## 82507 2
## 82980 2
## 83183 4
## 85361 5
## 86544 4
## 89649 3
## 90026 4
## 90231 3
## 90885 5
## 91298 3
## 91393 4
## 91532 2
## 91575 5
## 92243 4
## 94324 5
## 95703 5
## 96065 4
## 96592 3
## 98593 5
## 114 4
## 1108 3
## 2297 4
## 2943 4
## 3593 5
## 4046 3
## 4261 4
## 5288 3
## 5985 5
## 6548 5
## 7434 3
## 8243 4
## 8646 5
## 10750 5
## 14514 4
## 15326 4
## 15527 3
## 16053 4
## 16412 3
## 16816 4
## 17601 4
## 18663 5
## 20294 5
## 20600 3
## 20773 2
## 21130 5
## 23949 5
## 26291 4
## 26963 5
## 27367 5
## 30601 4
## 32065 4
## 34004 4
## 36512 5
## 38186 4
## 38345 5
## 38490 3
## 38722 3
## 39190 3
## 39564 3
## 40503 3
## 42054 4
## 42842 4
## 43004 4
## 44389 4
## 45619 3
## 45995 4
## 46160 5
## 46484 4
## 48307 5
## 56314 3
## 57567 4
## 58537 4
## 58853 4
## 61762 2
## 62042 3
## 62244 3
## 62980 2
## 63516 5
## 67546 5
## 68884 3
## 72467 3
## 72556 3
## 72695 3
## 73557 5
## 78296 4
## 81866 5
## 82508 2
## 85362 3
## 86623 4
## 87255 2
## 91162 2
## 92116 4
## 92244 5
## 92368 3
## 92830 3
## 94870 3
## 115 5
## 1109 4
## 1690 5
## 2728 4
## 14515 5
## 17401 5
## 18392 4
## 20875 5
## 34420 4
## 42055 5
## 42348 5
## 42576 4
## 43842 5
## 45039 3
## 46485 4
## 56878 5
## 62755 5
## 81697 3
## 81867 4
## 86812 4
## 116 5
## 719 4
## 1444 4
## 2298 5
## 2944 4
## 3594 5
## 6549 4
## 7649 3
## 8647 5
## 10751 5
## 11089 4
## 11239 3
## 11473 4
## 11871 5
## 12256 4
## 13098 4
## 13347 5
## 13625 4
## 13926 5
## 14516 4
## 16054 5
## 16817 5
## 17602 3
## 17984 5
## 18664 5
## 21518 3
## 22015 3
## 23307 3
## 24304 5
## 25033 2
## 26730 3
## 26964 5
## 28042 4
## 28270 5
## 28666 1
## 29974 5
## 30281 4
## 30602 5
## 30858 4
## 32066 4
## 33154 4
## 33785 4
## 34005 4
## 35935 4
## 36513 4
## 37640 2
## 39976 2
## 41633 3
## 43005 4
## 45620 4
## 46161 3
## 46486 4
## 49022 5
## 50734 4
## 51068 3
## 51360 2
## 52113 4
## 58538 5
## 59398 3
## 60366 2
## 61582 5
## 63746 5
## 63901 5
## 64252 5
## 64429 4
## 64608 5
## 64845 5
## 65001 5
## 66425 5
## 67381 5
## 67842 4
## 68259 5
## 70604 4
## 70839 4
## 72029 5
## 72290 3
## 75307 3
## 76047 4
## 76492 5
## 77826 3
## 78297 2
## 78593 5
## 79298 4
## 79528 5
## 81029 4
## 81868 4
## 82238 3
## 82362 3
## 82981 3
## 85142 4
## 88372 4
## 90820 5
## 92369 3
## 92746 3
## 93207 4
## 98422 3
## 98815 3
## 117 3
## 1445 5
## 2945 3
## 3460 3
## 3595 4
## 4675 4
## 4902 2
## 5369 2
## 6550 5
## 8385 3
## 8648 4
## 9451 5
## 9981 3
## 10417 1
## 10638 3
## 11240 4
## 12482 1
## 12949 3
## 13626 5
## 13927 4
## 14250 3
## 14980 3
## 15027 2
## 15731 2
## 16413 4
## 16818 3
## 17603 3
## 17814 3
## 18665 4
## 18894 5
## 19291 5
## 19502 4
## 19763 1
## 19840 4
## 19900 3
## 19969 3
## 20068 4
## 21131 2
## 22728 3
## 22823 2
## 22930 4
## 23186 3
## 23308 1
## 23950 5
## 24655 5
## 25248 3
## 26292 5
## 26965 4
## 27601 3
## 28043 3
## 29521 4
## 30111 4
## 30282 3
## 31079 4
## 32067 5
## 32371 3
## 32773 1
## 33681 1
## 34006 4
## 34489 3
## 34769 4
## 34949 4
## 35175 4
## 35355 4
## 35535 3
## 35936 4
## 36863 3
## 37243 1
## 37397 4
## 37641 2
## 39191 3
## 39565 4
## 39977 2
## 40504 3
## 40811 2
## 43843 1
## 48308 5
## 49876 3
## 52114 2
## 53000 3
## 54111 3
## 54200 1
## 54261 4
## 54606 1
## 54888 2
## 55058 3
## 55257 3
## 55657 3
## 55967 3
## 56315 3
## 57377 3
## 57411 4
## 57475 3
## 57568 3
## 57699 4
## 58132 5
## 58854 4
## 59216 2
## 59639 3
## 59821 2
## 59941 3
## 60026 3
## 60367 3
## 60461 5
## 60653 2
## 61081 2
## 61583 3
## 62245 3
## 65002 4
## 65284 4
## 65495 3
## 65712 3
## 68112 3
## 69184 3
## 69626 2
## 70032 3
## 70389 3
## 71190 2
## 71240 3
## 71378 1
## 71830 3
## 72030 3
## 72557 4
## 73475 2
## 73558 3
## 73730 1
## 73928 3
## 73946 4
## 74018 2
## 74052 3
## 74388 2
## 75433 1
## 76048 4
## 76844 4
## 77094 2
## 77640 3
## 77827 2
## 79299 3
## 83247 3
## 83936 3
## 86481 3
## 86508 2
## 87409 2
## 88274 3
## 90377 4
## 90840 3
## 92831 2
## 93005 3
## 93749 3
## 94000 3
## 94727 3
## 95226 3
## 95555 3
## 96348 4
## 97507 1
## 98693 4
## 98697 3
## 98821 3
## 98833 2
## 901 2
## 1110 2
## 7185 3
## 7650 5
## 13928 5
## 14517 3
## 16055 2
## 16414 1
## 16819 2
## 20601 4
## 27368 4
## 30283 3
## 33390 2
## 33523 3
## 33682 5
## 34007 3
## 35937 5
## 37845 1
## 38346 5
## 39566 4
## 39978 3
## 40368 2
## 41219 4
## 41634 2
## 42843 1
## 44390 4
## 45621 2
## 46487 3
## 49652 2
## 49877 2
## 50088 5
## 50218 1
## 50735 2
## 51189 2
## 51617 4
## 52115 2
## 56316 4
## 56580 1
## 57276 2
## 59822 4
## 59942 2
## 60027 1
## 60159 3
## 60256 3
## 60368 3
## 60796 3
## 60914 2
## 62246 1
## 69394 3
## 69884 1
## 70248 4
## 70526 1
## 70548 1
## 71023 1
## 72696 4
## 77095 3
## 77267 2
## 77641 2
## 77959 5
## 78298 3
## 82081 1
## 82509 1
## 83502 1
## 83732 5
## 85865 1
## 85952 1
## 86027 2
## 86091 1
## 86135 4
## 86239 4
## 86284 4
## 86388 1
## 86442 1
## 87062 3
## 87076 2
## 87470 4
## 87834 3
## 88373 2
## 89494 1
## 91098 1
## 91253 2
## 91299 1
## 93033 1
## 118 5
## 481 5
## 720 5
## 902 5
## 1111 4
## 1691 4
## 2059 5
## 2299 5
## 2946 5
## 3461 4
## 3596 5
## 4262 5
## 4903 4
## 5063 5
## 5379 3
## 5427 4
## 5905 4
## 6340 4
## 6551 4
## 7013 4
## 7313 5
## 7651 3
## 8649 5
## 8998 4
## 10514 3
## 10752 5
## 11241 5
## 11724 5
## 12021 5
## 12257 5
## 12728 1
## 13348 5
## 13627 4
## 13929 5
## 14518 4
## 15134 4
## 16056 5
## 16415 5
## 16654 1
## 16820 5
## 17267 2
## 17604 5
## 17985 4
## 20602 4
## 21132 5
## 22535 5
## 23951 3
## 24656 4
## 26293 4
## 26731 4
## 27369 5
## 27847 3
## 28044 5
## 29233 5
## 30603 3
## 30859 4
## 32068 4
## 33155 5
## 33524 3
## 33786 3
## 34008 4
## 34490 4
## 34601 5
## 34770 4
## 34950 3
## 35176 3
## 35356 4
## 35667 3
## 35775 4
## 35938 5
## 36204 3
## 36514 4
## 37642 4
## 37846 4
## 40505 4
## 41851 5
## 42349 3
## 42645 5
## 42745 5
## 43006 3
## 43220 3
## 43405 4
## 44391 5
## 45134 5
## 45622 3
## 49284 2
## 49653 4
## 49878 5
## 52861 3
## 53419 3
## 53767 1
## 53853 3
## 54373 5
## 54710 5
## 54975 4
## 55790 4
## 55968 4
## 56317 4
## 56581 3
## 56793 4
## 57277 4
## 60028 3
## 60462 3
## 60654 4
## 60797 4
## 61223 4
## 62043 5
## 62247 4
## 62399 5
## 62981 4
## 64430 5
## 68113 3
## 68982 5
## 69395 4
## 69756 5
## 69912 3
## 70033 4
## 70605 5
## 70840 5
## 71294 3
## 71789 5
## 72291 5
## 72468 4
## 72697 4
## 73892 3
## 74242 5
## 75119 4
## 76288 5
## 76845 2
## 77096 4
## 77642 5
## 77828 3
## 78129 5
## 78299 5
## 78878 5
## 80234 5
## 80556 3
## 80651 4
## 80813 4
## 81030 5
## 81553 5
## 81765 4
## 81869 5
## 82510 4
## 83360 4
## 83544 4
## 83880 4
## 83985 5
## 84083 2
## 84220 5
## 84270 4
## 84337 4
## 84449 5
## 84534 4
## 84574 4
## 84859 4
## 84924 5
## 85050 3
## 85194 4
## 85421 5
## 85565 4
## 86028 3
## 86092 4
## 86136 4
## 86285 3
## 86443 2
## 86763 4
## 86870 2
## 87155 4
## 87256 4
## 89193 5
## 89495 3
## 89615 3
## 89685 3
## 89851 5
## 91027 3
## 91060 3
## 91118 4
## 91254 3
## 91300 3
## 91355 5
## 91394 4
## 91466 5
## 92832 4
## 93006 4
## 93282 3
## 93314 4
## 93367 5
## 93473 4
## 93542 4
## 93795 4
## 93926 2
## 94033 4
## 94608 5
## 94691 2
## 95076 4
## 95187 4
## 95315 3
## 95920 5
## 96696 3
## 96716 3
## 96751 5
## 97110 1
## 97182 3
## 97841 4
## 98580 3
## 98838 3
## 2729 5
## 6552 5
## 7945 5
## 8170 5
## 8244 5
## 8309 5
## 9749 4
## 11725 4
## 14519 5
## 15747 4
## 15875 3
## 16821 3
## 18393 4
## 18493 2
## 19634 4
## 21133 4
## 23063 4
## 23126 4
## 26294 5
## 29975 3
## 33860 3
## 34421 4
## 36515 2
## 37847 4
## 39567 3
## 40812 3
## 42056 4
## 42350 5
## 43592 5
## 43844 5
## 44392 3
## 44811 4
## 46868 3
## 47504 4
## 47711 4
## 48309 5
## 50089 5
## 52275 4
## 54374 5
## 56318 3
## 61356 4
## 62756 5
## 68733 5
## 71651 5
## 77522 4
## 88969 5
## 89745 4
## 90283 3
## 91862 5
## 91966 4
## 92670 2
## 95481 5
## 95704 5
## 96039 4
## 97489 2
## 98792 5
## 98847 2
## 37643 3
## 39568 2
## 41435 5
## 43845 5
## 44393 1
## 44812 2
## 45623 4
## 46488 5
## 47950 5
## 48075 4
## 48310 5
## 48608 3
## 49879 4
## 50354 5
## 50736 3
## 51190 5
## 51361 2
## 78703 4
## 82511 5
## 82982 5
## 87517 5
## 87730 3
## 88317 1
## 2300 5
## 2947 3
## 5539 4
## 8872 3
## 13628 4
## 13930 4
## 15241 4
## 16057 4
## 16822 3
## 20603 4
## 21745 5
## 23309 5
## 23952 4
## 24305 4
## 25249 4
## 25775 4
## 25995 5
## 26295 4
## 27370 4
## 30284 4
## 32069 4
## 36205 2
## 38972 4
## 40813 3
## 41220 3
## 43846 4
## 44394 3
## 45373 4
## 45624 3
## 46162 4
## 48311 5
## 48871 5
## 53001 5
## 56319 3
## 62757 5
## 64116 4
## 69396 3
## 82512 4
## 82840 4
## 83607 2
## 84127 4
## 84450 3
## 89342 4
## 90606 4
## 94391 3
## 95623 5
## 39569 3
## 41068 5
## 41436 3
## 44395 3
## 46489 3
## 47712 3
## 48312 5
## 49285 2
## 49654 4
## 50355 5
## 51362 4
## 51561 5
## 52630 4
## 53384 5
## 68983 1
## 77960 4
## 82513 4
## 88007 5
## 88259 5
## 91503 5
## 92747 5
## 95030 5
## 97304 5
## 16058 4
## 17605 5
## 37644 5
## 37848 4
## 39979 4
## 44396 4
## 45625 4
## 46490 5
## 46869 4
## 47374 3
## 49482 3
## 49655 4
## 50356 4
## 51798 5
## 51883 5
## 52042 3
## 53342 5
## 56879 5
## 72558 2
## 72698 4
## 78477 5
## 82514 3
## 87632 5
## 88275 5
## 91395 3
## 92748 5
## 97235 3
## 119 3
## 1112 4
## 2060 4
## 2948 3
## 3597 4
## 4676 3
## 5621 4
## 5906 2
## 6101 2
## 6553 2
## 7090 3
## 7435 3
## 7652 4
## 8013 3
## 8650 5
## 8873 4
## 8999 3
## 9256 2
## 9452 4
## 9750 4
## 9982 4
## 10179 3
## 10515 2
## 11242 3
## 11726 3
## 12483 4
## 12593 3
## 12729 3
## 13099 3
## 13349 4
## 13931 4
## 14251 3
## 14520 3
## 15528 4
## 16823 3
## 17157 2
## 17606 3
## 18532 5
## 18666 3
## 19841 2
## 20069 3
## 20495 1
## 20604 3
## 21519 3
## 23581 3
## 23953 2
## 24657 3
## 25776 4
## 26296 3
## 27371 3
## 28440 4
## 29234 2
## 30285 3
## 31080 3
## 32070 3
## 33156 3
## 33391 3
## 33683 3
## 34313 3
## 35939 3
## 36206 2
## 36516 3
## 36864 4
## 38723 3
## 38973 3
## 39570 4
## 40814 3
## 41069 3
## 42057 4
## 42646 3
## 43221 3
## 44397 3
## 45257 4
## 45374 2
## 45626 2
## 49023 5
## 51191 3
## 51643 3
## 51717 4
## 53230 3
## 53500 4
## 53626 4
## 53801 2
## 54711 2
## 54889 3
## 55258 2
## 55791 4
## 56320 2
## 56582 3
## 57054 2
## 57476 2
## 57569 3
## 57700 3
## 57860 3
## 57950 4
## 58133 4
## 58539 4
## 59217 3
## 59399 4
## 60029 3
## 60257 3
## 60655 4
## 62400 2
## 62982 3
## 64253 4
## 64366 5
## 64667 3
## 65003 4
## 66307 3
## 69397 2
## 69963 4
## 70249 3
## 70752 1
## 70841 3
## 71564 3
## 71652 4
## 72031 4
## 72559 4
## 73422 3
## 73789 3
## 74053 3
## 74243 2
## 74501 4
## 75494 4
## 76049 4
## 76622 4
## 79300 5
## 79827 5
## 80752 3
## 81250 4
## 81373 3
## 82363 4
## 83184 3
## 83248 3
## 83608 2
## 84271 4
## 84451 3
## 84575 3
## 84604 3
## 84695 3
## 85422 2
## 85695 3
## 86624 4
## 89055 4
## 89442 3
## 89567 2
## 90284 4
## 90495 2
## 90607 2
## 91028 3
## 92199 2
## 92245 5
## 93067 3
## 93660 2
## 93881 2
## 94818 2
## 95624 3
## 95865 4
## 96943 4
## 97689 4
## 120 5
## 3598 5
## 3865 3
## 4677 3
## 5064 4
## 6554 5
## 8014 4
## 8651 5
## 9453 5
## 10753 4
## 11243 4
## 11727 4
## 11872 4
## 13100 5
## 13350 4
## 13629 4
## 13932 4
## 14252 3
## 14521 5
## 16059 3
## 17607 4
## 17986 4
## 18667 5
## 18895 5
## 19071 5
## 19292 5
## 19503 4
## 19901 5
## 20070 5
## 20295 4
## 21520 3
## 22729 5
## 22824 5
## 23310 5
## 24658 5
## 25250 5
## 25492 4
## 25996 4
## 26297 4
## 26966 4
## 27602 4
## 28045 5
## 28977 5
## 29235 5
## 29522 4
## 29763 4
## 30112 5
## 30604 4
## 31081 4
## 31371 5
## 32071 3
## 32921 4
## 34009 4
## 35940 4
## 36517 2
## 37849 4
## 38491 2
## 39571 3
## 40129 2
## 40506 4
## 40815 4
## 41221 1
## 41437 5
## 45627 2
## 46491 3
## 48609 4
## 48758 5
## 49024 5
## 49656 3
## 49880 1
## 50737 4
## 51363 2
## 53002 5
## 54112 5
## 57412 5
## 57701 5
## 58134 5
## 59218 2
## 59534 4
## 59640 4
## 60030 5
## 61584 4
## 63517 3
## 63747 4
## 63902 5
## 64117 4
## 64367 4
## 64907 5
## 65004 5
## 65285 5
## 66426 4
## 66563 5
## 66865 3
## 67045 5
## 67547 3
## 67674 3
## 67843 5
## 68114 5
## 68260 5
## 68433 4
## 69229 5
## 70842 4
## 72032 3
## 72886 4
## 73619 3
## 73947 4
## 75258 5
## 75371 5
## 76758 5
## 76846 4
## 77643 2
## 78704 5
## 79301 4
## 81031 5
## 87835 2
## 88079 2
## 88276 3
## 88970 3
## 92596 3
## 95427 5
## 98698 3
## 98750 4
## 98849 5
## 721 4
## 1113 5
## 2301 5
## 2730 4
## 3312 5
## 3866 5
## 4263 4
## 4484 4
## 5289 3
## 5736 5
## 6102 5
## 7653 5
## 9751 4
## 12022 3
## 12842 5
## 13933 5
## 14522 5
## 15876 4
## 17268 4
## 19635 3
## 20931 5
## 21521 5
## 22016 2
## 23311 5
## 24306 5
## 25034 5
## 25777 5
## 26732 5
## 26967 5
## 27215 5
## 27372 5
## 27603 5
## 28667 4
## 28978 5
## 30286 5
## 30468 5
## 30605 5
## 30860 2
## 31082 5
## 31644 5
## 31851 5
## 32072 5
## 32372 5
## 33157 5
## 33392 3
## 33684 5
## 34010 5
## 35357 4
## 35941 4
## 36207 5
## 36865 5
## 37244 4
## 40816 5
## 42058 5
## 43222 5
## 43847 2
## 44398 5
## 45628 3
## 49414 4
## 52276 4
## 53627 4
## 54375 4
## 54477 4
## 55692 5
## 58952 5
## 59400 5
## 59823 3
## 60031 5
## 60258 5
## 60369 2
## 60656 4
## 62758 5
## 63218 5
## 65713 5
## 66866 5
## 67220 5
## 67286 5
## 67980 3
## 68028 5
## 70167 5
## 70250 5
## 72887 4
## 72971 5
## 73261 5
## 74867 4
## 75228 4
## 75876 5
## 76050 4
## 76227 4
## 76493 5
## 77216 4
## 77268 3
## 77464 4
## 77523 3
## 78050 2
## 79413 4
## 79828 5
## 80499 5
## 81870 2
## 82209 5
## 82239 3
## 83609 3
## 84190 2
## 84646 4
## 84779 5
## 85363 4
## 86545 1
## 87026 3
## 87518 3
## 91900 4
## 94244 5
## 94264 4
## 94392 4
## 95008 5
## 95264 4
## 97050 3
## 97611 2
## 98200 4
## 98858 2
## 98864 2
## 121 5
## 1114 2
## 2949 3
## 6555 2
## 14523 5
## 15197 1
## 15529 2
## 16060 5
## 16416 4
## 17608 4
## 21134 2
## 26298 2
## 36518 5
## 37245 3
## 37850 4
## 39192 4
## 39572 4
## 41635 5
## 42697 2
## 43007 5
## 43406 4
## 44399 4
## 45375 4
## 45629 4
## 46163 5
## 46492 5
## 49881 3
## 50530 3
## 50738 4
## 56794 3
## 56880 4
## 62044 4
## 62248 3
## 63123 3
## 72292 5
## 74244 4
## 77524 2
## 78543 2
## 81871 5
## 82515 5
## 83361 4
## 85423 3
## 89686 3
## 91061 4
## 92370 3
## 96548 2
## 1692 4
## 2731 4
## 4264 3
## 14524 5
## 17402 4
## 36519 3
## 37851 1
## 41438 4
## 42059 5
## 42351 3
## 43223 3
## 43593 4
## 43848 4
## 44813 3
## 48313 4
## 49286 2
## 49483 3
## 50219 1
## 66125 4
## 77525 3
## 87594 2
## 89119 2
## 482 3
## 605 4
## 903 3
## 1115 5
## 2302 5
## 3216 4
## 3599 4
## 4047 5
## 4678 4
## 4904 3
## 5065 4
## 5290 5
## 6103 5
## 6556 5
## 7186 4
## 7314 3
## 7436 4
## 7654 5
## 8386 3
## 8652 5
## 8874 4
## 9149 3
## 9257 4
## 9454 4
## 10516 3
## 11009 4
## 11090 4
## 11244 4
## 12023 4
## 12258 5
## 12730 4
## 12950 3
## 13934 5
## 14525 5
## 15242 4
## 15770 5
## 16824 3
## 17403 5
## 17987 5
## 18307 5
## 19293 5
## 19902 4
## 20071 4
## 20296 5
## 20496 4
## 20605 3
## 21522 5
## 21900 3
## 22017 5
## 22154 5
## 22263 4
## 22330 4
## 22536 4
## 22931 3
## 23312 4
## 23582 5
## 23954 5
## 24659 5
## 25035 5
## 25251 5
## 25493 5
## 25778 5
## 25997 5
## 26299 5
## 26733 5
## 26968 4
## 27604 5
## 27848 5
## 28046 5
## 28191 4
## 29236 4
## 29976 5
## 30606 5
## 30861 5
## 31083 4
## 31487 5
## 31852 5
## 32073 4
## 32774 4
## 33158 4
## 33393 4
## 33525 4
## 34011 4
## 34602 3
## 34771 3
## 34951 5
## 35177 4
## 35358 4
## 35536 4
## 35776 4
## 36208 3
## 36866 4
## 37083 4
## 37246 4
## 38492 5
## 40507 5
## 41636 4
## 45376 4
## 45630 3
## 50090 3
## 53463 2
## 53628 4
## 54262 2
## 54607 3
## 54712 3
## 54890 3
## 55099 3
## 55259 3
## 55969 4
## 56321 3
## 56687 5
## 56881 4
## 57055 3
## 58135 3
## 59058 4
## 59401 5
## 60463 3
## 60569 2
## 60915 3
## 61545 5
## 61905 4
## 62541 5
## 62759 5
## 63335 4
## 63518 4
## 63903 5
## 64118 5
## 65286 5
## 67046 5
## 67382 5
## 69318 2
## 69398 3
## 69757 4
## 69913 3
## 70034 3
## 70251 3
## 70606 3
## 70843 4
## 71241 3
## 71295 3
## 71425 3
## 71502 3
## 72699 3
## 73620 5
## 73948 3
## 75120 4
## 75308 5
## 75877 5
## 76051 4
## 77097 4
## 77829 4
## 78130 4
## 78300 3
## 79013 4
## 79929 4
## 80152 4
## 80421 3
## 80753 4
## 81032 4
## 81554 4
## 81872 3
## 84084 3
## 84191 3
## 84379 4
## 84647 5
## 85268 3
## 85808 4
## 85953 3
## 86389 4
## 89246 2
## 90027 4
## 90069 3
## 90608 3
## 91224 3
## 92833 3
## 93068 4
## 94325 5
## 94692 3
## 95104 3
## 95850 3
## 96378 2
## 97267 5
## 98140 1
## 98400 4
## 98839 2
## 122 3
## 483 2
## 606 1
## 722 4
## 1116 4
## 1926 4
## 2061 4
## 2303 4
## 2552 3
## 3165 3
## 3217 3
## 3462 3
## 4048 2
## 4265 3
## 4555 4
## 4905 1
## 5066 4
## 5291 3
## 5392 3
## 5428 1
## 5540 3
## 5622 3
## 5737 4
## 6104 1
## 6557 5
## 7014 3
## 7091 3
## 7187 3
## 7437 4
## 7655 4
## 8171 5
## 8245 5
## 8310 4
## 8387 3
## 8500 1
## 9150 3
## 9258 4
## 9752 3
## 9983 3
## 10180 3
## 10309 3
## 10517 2
## 10754 3
## 11010 3
## 11245 3
## 11474 4
## 12024 2
## 12259 4
## 12594 3
## 12731 4
## 12951 2
## 13101 4
## 13351 5
## 13630 4
## 13935 4
## 14253 3
## 14526 3
## 14909 2
## 15058 2
## 15243 3
## 15771 5
## 15877 4
## 16061 4
## 16655 2
## 16825 2
## 17158 2
## 17269 3
## 17404 4
## 17988 4
## 18308 3
## 18394 2
## 19072 5
## 19294 4
## 19784 2
## 19903 3
## 20072 2
## 20297 4
## 20497 1
## 20606 4
## 21135 3
## 21523 5
## 21746 4
## 22018 3
## 22264 2
## 22331 2
## 22537 3
## 22825 2
## 22932 2
## 23313 4
## 23583 5
## 23955 5
## 24307 4
## 24660 5
## 25252 5
## 25629 4
## 25779 4
## 25998 3
## 26300 4
## 26734 4
## 26969 4
## 27216 4
## 27373 3
## 27605 3
## 28047 4
## 28192 4
## 28441 4
## 28979 4
## 29237 4
## 29977 4
## 30287 4
## 30469 3
## 30862 5
## 31084 3
## 31372 5
## 31488 3
## 31645 4
## 31853 4
## 32074 3
## 32373 4
## 33394 2
## 33526 2
## 33685 3
## 34012 4
## 34314 3
## 34603 4
## 34772 4
## 34952 4
## 35178 2
## 35359 3
## 35537 4
## 35668 3
## 35777 3
## 35942 4
## 36209 3
## 36867 3
## 37084 3
## 37247 2
## 37398 3
## 37748 4
## 38059 5
## 38187 3
## 38347 4
## 38493 4
## 38724 3
## 39193 4
## 39573 2
## 39980 3
## 40130 3
## 40369 3
## 40508 3
## 40714 3
## 40817 4
## 41637 3
## 43407 3
## 43849 5
## 44400 4
## 45040 3
## 45631 3
## 46164 3
## 47116 5
## 50091 4
## 50220 3
## 50739 1
## 51364 4
## 53003 4
## 53231 3
## 53420 1
## 53464 3
## 53802 1
## 53854 2
## 54021 2
## 54201 1
## 54263 2
## 54376 3
## 54478 3
## 54608 3
## 54713 3
## 54891 2
## 55026 1
## 55100 3
## 55426 2
## 55529 2
## 55581 3
## 55792 1
## 55970 4
## 56144 4
## 56322 2
## 56631 1
## 56688 5
## 57951 3
## 58136 2
## 58395 4
## 59219 3
## 59402 4
## 59641 4
## 59824 3
## 60464 2
## 60570 1
## 60798 1
## 60854 1
## 60916 3
## 61042 2
## 61664 3
## 61906 3
## 62249 1
## 62542 5
## 62760 4
## 63124 3
## 63336 4
## 63519 5
## 63904 5
## 64119 4
## 65892 4
## 68029 4
## 68261 4
## 69092 1
## 69135 3
## 69262 3
## 69399 4
## 69758 2
## 69914 2
## 70035 3
## 70168 3
## 70252 2
## 70390 3
## 70449 4
## 70607 3
## 70844 3
## 71024 3
## 71218 2
## 71296 1
## 71426 2
## 71503 1
## 71532 3
## 71653 5
## 71790 4
## 72033 3
## 72700 2
## 73949 3
## 74137 3
## 74450 4
## 74789 3
## 75744 4
## 75878 5
## 76052 4
## 76409 3
## 77098 2
## 77269 2
## 77830 4
## 78131 3
## 79302 3
## 79930 3
## 80059 4
## 80153 1
## 80302 1
## 80362 4
## 80378 1
## 80500 3
## 80754 2
## 80814 2
## 80870 3
## 81033 3
## 81251 3
## 81496 2
## 82082 1
## 82240 3
## 82364 3
## 83545 1
## 83610 2
## 83881 2
## 83937 3
## 84380 3
## 84452 3
## 84696 2
## 85008 1
## 85051 3
## 85269 2
## 85743 2
## 85809 2
## 85866 3
## 85954 1
## 86137 3
## 86390 2
## 87077 1
## 89247 2
## 89343 1
## 89496 2
## 89901 2
## 89934 2
## 90155 3
## 90285 2
## 90496 3
## 91163 2
## 91242 1
## 91692 1
## 91746 1
## 92371 3
## 93069 2
## 93149 2
## 93315 1
## 93474 3
## 93882 1
## 93965 3
## 94128 4
## 94326 4
## 94393 3
## 94509 3
## 94693 2
## 94728 2
## 94819 2
## 94871 3
## 95105 3
## 95265 3
## 96000 1
## 96287 1
## 96415 3
## 96717 2
## 97012 2
## 97111 1
## 97183 2
## 97399 2
## 97631 2
## 97953 1
## 98025 2
## 98514 2
## 98872 2
## 98873 2
## 607 3
## 904 2
## 1117 3
## 1446 2
## 1693 4
## 2062 3
## 2553 4
## 2950 2
## 3218 2
## 3600 1
## 3867 5
## 5738 5
## 5907 3
## 6105 4
## 6236 5
## 6558 3
## 7015 2
## 7092 4
## 7188 1
## 7438 4
## 7656 5
## 8015 2
## 8172 4
## 8501 1
## 8653 4
## 8875 4
## 9000 1
## 9259 3
## 9455 1
## 9753 1
## 10181 2
## 10432 3
## 10518 1
## 11091 3
## 11246 2
## 12025 1
## 12260 2
## 12843 3
## 13352 1
## 13936 4
## 14527 5
## 15135 1
## 15244 5
## 15530 1
## 16656 1
## 16826 1
## 17159 1
## 17405 5
## 17989 4
## 18533 5
## 18668 5
## 18896 3
## 19073 4
## 19295 4
## 19504 4
## 19636 4
## 19785 1
## 19970 1
## 20073 3
## 20774 1
## 21136 5
## 21394 4
## 21524 3
## 21747 3
## 22019 5
## 22155 3
## 22433 2
## 22538 1
## 22730 3
## 22826 2
## 23187 1
## 23314 4
## 23701 2
## 23810 5
## 23956 3
## 24308 1
## 24661 1
## 25036 5
## 25253 2
## 25494 5
## 25780 4
## 25999 3
## 26301 2
## 26735 4
## 26970 3
## 27374 5
## 27606 2
## 27849 4
## 28048 2
## 28442 5
## 28668 4
## 28980 5
## 29238 3
## 29523 1
## 29764 5
## 29978 4
## 30288 4
## 30607 2
## 31085 2
## 31373 3
## 31646 2
## 31854 4
## 32075 1
## 32374 4
## 32551 4
## 32649 5
## 32775 3
## 33159 1
## 33395 2
## 33527 2
## 35538 1
## 35669 1
## 35943 1
## 36210 3
## 36520 2
## 36868 5
## 37085 2
## 37399 1
## 38060 5
## 38725 1
## 38880 1
## 38974 1
## 41439 3
## 41852 1
## 42352 5
## 42844 1
## 43594 5
## 45377 3
## 47117 3
## 48610 4
## 48759 4
## 49025 4
## 51884 5
## 52359 2
## 53004 5
## 53501 2
## 53629 3
## 53898 5
## 54113 3
## 54976 3
## 55260 1
## 55487 4
## 55693 3
## 55793 2
## 55971 1
## 56323 1
## 56882 4
## 57056 1
## 57192 3
## 57327 3
## 57477 2
## 58137 4
## 58396 5
## 58540 5
## 58738 5
## 59220 4
## 59403 3
## 59642 3
## 59825 3
## 59943 1
## 60160 3
## 60205 3
## 60259 3
## 60370 2
## 60657 1
## 61357 3
## 61546 3
## 61829 4
## 62543 4
## 62761 5
## 62983 1
## 63219 4
## 63337 4
## 63748 3
## 63905 4
## 64120 3
## 64368 3
## 64498 4
## 64732 4
## 65005 5
## 65195 3
## 65287 4
## 65416 4
## 65603 3
## 65714 4
## 65820 3
## 65893 5
## 65986 4
## 66126 4
## 66308 4
## 66704 5
## 66867 4
## 67047 4
## 67287 4
## 67383 4
## 67675 4
## 67778 5
## 67844 5
## 68030 4
## 68262 5
## 68434 4
## 68546 5
## 68637 3
## 68734 5
## 68948 5
## 70845 2
## 71654 4
## 72701 1
## 72888 4
## 72972 5
## 73149 3
## 73381 4
## 73621 3
## 73731 4
## 74138 1
## 74389 2
## 74502 4
## 74608 4
## 74790 3
## 74947 4
## 74998 5
## 75121 3
## 75199 5
## 75229 4
## 75309 4
## 75434 2
## 75879 4
## 76053 4
## 76289 4
## 76410 2
## 76494 4
## 76623 1
## 76759 4
## 76933 4
## 77034 5
## 77099 1
## 77340 4
## 77413 2
## 77831 1
## 79231 4
## 79529 2
## 79655 2
## 79733 4
## 79931 1
## 80154 4
## 80235 4
## 80303 1
## 80609 1
## 80871 2
## 81252 2
## 81555 1
## 81766 5
## 82365 4
## 83362 1
## 83546 2
## 83611 1
## 83733 1
## 84085 1
## 84221 1
## 84272 3
## 84535 1
## 84780 4
## 84842 4
## 85103 2
## 85143 3
## 85224 1
## 85535 3
## 85696 1
## 85744 3
## 85867 1
## 86138 2
## 86509 3
## 86625 1
## 87027 5
## 88080 3
## 88627 5
## 88880 4
## 89013 5
## 89056 4
## 89344 1
## 89568 1
## 89852 2
## 89902 1
## 90545 3
## 90609 5
## 90692 5
## 91331 3
## 91693 5
## 91763 4
## 91788 3
## 92017 4
## 92246 3
## 92488 5
## 92597 4
## 92834 2
## 93283 1
## 94129 5
## 94288 2
## 94327 3
## 94394 1
## 94729 2
## 94939 4
## 95009 5
## 95106 2
## 95556 1
## 95625 2
## 95884 4
## 95983 3
## 96113 1
## 96152 2
## 96416 1
## 97562 1
## 98216 4
## 98373 4
## 98482 3
## 98601 2
## 98607 5
## 98663 3
## 98699 1
## 98875 1
## 98893 2
## 98901 1
## 905 5
## 1118 4
## 2554 4
## 3219 2
## 4266 5
## 4485 5
## 6559 5
## 7189 4
## 7657 5
## 8246 5
## 9001 4
## 9754 5
## 10519 2
## 10755 4
## 11475 4
## 11728 4
## 12026 5
## 12484 5
## 12844 5
## 13631 4
## 13937 5
## 16417 3
## 16827 4
## 17270 5
## 20498 3
## 20775 4
## 21901 5
## 22020 5
## 22332 4
## 22933 5
## 24309 5
## 25254 4
## 26302 4
## 26971 5
## 27375 5
## 30289 5
## 32650 5
## 33396 5
## 33528 5
## 33686 5
## 34013 5
## 34604 4
## 35360 3
## 35944 5
## 36521 1
## 37400 5
## 37528 5
## 37749 3
## 38494 2
## 38651 5
## 38848 5
## 39194 4
## 39574 3
## 40509 4
## 42060 5
## 42698 5
## 42845 5
## 43008 3
## 43224 5
## 43850 5
## 44401 5
## 45996 5
## 47598 5
## 49287 5
## 50092 2
## 50531 5
## 51618 3
## 52862 3
## 53855 5
## 54202 5
## 54977 5
## 55794 5
## 57952 5
## 59944 5
## 60032 3
## 60260 4
## 60799 4
## 61665 5
## 62045 5
## 62762 5
## 66309 3
## 68735 4
## 68885 5
## 69400 4
## 69885 4
## 69964 1
## 70036 1
## 70169 5
## 70253 5
## 70492 3
## 70608 5
## 71025 4
## 71219 3
## 71565 5
## 71655 3
## 71791 5
## 71831 5
## 72560 5
## 72973 5
## 77100 4
## 77217 4
## 77270 5
## 78132 4
## 79099 5
## 79459 4
## 79656 5
## 80060 5
## 80119 4
## 80236 4
## 80557 4
## 80755 5
## 81374 5
## 81556 4
## 81698 5
## 81767 5
## 81873 2
## 82366 5
## 84273 5
## 84453 5
## 84860 4
## 85009 5
## 85424 4
## 87078 5
## 87357 1
## 87471 5
## 89345 4
## 90028 5
## 91811 5
## 91901 5
## 92247 4
## 94328 5
## 94395 5
## 95077 5
## 95316 5
## 95885 5
## 96752 5
## 98840 4
## 123 3
## 484 1
## 723 5
## 1447 4
## 1694 4
## 2063 4
## 2304 4
## 2555 4
## 2951 3
## 3601 5
## 4267 3
## 4679 5
## 5067 4
## 5429 2
## 5623 1
## 5854 3
## 5908 4
## 6106 3
## 6237 4
## 6560 5
## 7016 4
## 7093 4
## 7315 3
## 7658 3
## 8016 3
## 8388 2
## 8654 5
## 8876 3
## 9456 4
## 9755 5
## 10310 2
## 10520 4
## 10756 4
## 11092 3
## 11476 4
## 11873 3
## 12027 4
## 12261 3
## 13102 4
## 13632 5
## 13938 5
## 14528 5
## 15198 1
## 15531 4
## 15878 2
## 16062 3
## 16418 3
## 16828 2
## 17406 4
## 17609 3
## 17815 3
## 17990 5
## 18494 1
## 18534 4
## 18669 5
## 18897 4
## 19074 3
## 19296 4
## 19505 3
## 19637 4
## 19904 4
## 20776 3
## 22539 2
## 23315 2
## 23584 5
## 23702 5
## 23957 5
## 24310 4
## 24662 5
## 25255 3
## 25495 3
## 25630 3
## 25781 4
## 26000 5
## 26303 5
## 26736 3
## 27376 3
## 27607 4
## 27850 5
## 28049 2
## 28271 4
## 28443 5
## 28669 5
## 28795 5
## 28981 5
## 29524 4
## 29765 4
## 29979 4
## 30113 4
## 30290 5
## 30608 4
## 30863 4
## 31086 4
## 31374 5
## 31647 4
## 32076 4
## 32375 5
## 32922 4
## 33160 5
## 33529 3
## 33787 3
## 33861 3
## 34422 4
## 35945 5
## 36211 3
## 36522 4
## 36869 4
## 37086 3
## 37401 3
## 37529 4
## 37750 2
## 38188 4
## 39195 4
## 39575 3
## 40510 5
## 40818 4
## 41440 3
## 41853 3
## 42061 4
## 42353 3
## 42577 4
## 43009 2
## 43225 4
## 43408 3
## 43595 4
## 43851 4
## 44814 4
## 45632 2
## 46493 2
## 47118 5
## 47951 3
## 48076 3
## 48151 2
## 48314 4
## 48611 4
## 48872 3
## 49026 5
## 50740 2
## 51718 1
## 52277 3
## 52360 4
## 52483 3
## 52863 4
## 53005 5
## 53899 5
## 54114 4
## 54377 3
## 54609 3
## 55165 3
## 55261 4
## 55795 4
## 56324 2
## 56883 2
## 57057 1
## 57328 4
## 57702 3
## 58138 4
## 58397 2
## 58541 5
## 58739 4
## 58855 4
## 58953 5
## 59643 4
## 59945 3
## 60033 3
## 60658 3
## 61257 5
## 61358 4
## 61666 4
## 61907 3
## 62046 3
## 62250 2
## 62544 3
## 62984 1
## 63125 3
## 63338 4
## 63520 4
## 63663 3
## 63749 5
## 64254 4
## 64431 4
## 64609 4
## 64789 4
## 64846 4
## 64908 5
## 65006 5
## 65288 5
## 65417 3
## 65715 3
## 65821 4
## 65894 4
## 65987 2
## 66310 4
## 66427 4
## 66564 5
## 66868 4
## 67048 5
## 67221 4
## 67288 3
## 67384 4
## 67548 5
## 67676 5
## 67845 4
## 68115 5
## 68263 5
## 68435 3
## 68547 4
## 68638 4
## 69051 1
## 69401 2
## 69656 4
## 70609 4
## 71088 3
## 71533 2
## 71656 3
## 72293 4
## 72889 3
## 72974 4
## 73220 4
## 73476 3
## 73622 4
## 74019 2
## 74054 3
## 74451 2
## 75122 5
## 75200 3
## 75372 4
## 75435 3
## 75590 4
## 75880 5
## 76290 4
## 76495 3
## 76624 5
## 76760 4
## 76934 4
## 78705 4
## 78879 4
## 79232 4
## 79303 4
## 79460 3
## 79530 4
## 79657 4
## 79829 3
## 80061 4
## 80120 3
## 80872 4
## 81034 4
## 81253 4
## 81557 4
## 81874 3
## 82135 4
## 82367 3
## 82841 4
## 83363 2
## 83734 3
## 84781 4
## 85425 3
## 85745 3
## 86626 1
## 86813 4
## 87156 3
## 87257 4
## 88008 3
## 89120 3
## 90378 2
## 90546 4
## 90750 5
## 92835 2
## 93475 4
## 94730 4
## 94940 4
## 95245 3
## 95365 2
## 95557 3
## 95733 3
## 97547 2
## 97743 2
## 98483 2
## 1448 4
## 2064 4
## 2305 5
## 3602 5
## 3868 5
## 5207 4
## 5739 4
## 6238 4
## 6561 4
## 7659 5
## 9457 4
## 10757 5
## 13353 5
## 13939 4
## 17991 5
## 18898 1
## 19075 5
## 23958 4
## 24663 5
## 25037 5
## 25631 5
## 26972 4
## 27851 5
## 28796 4
## 28982 5
## 30291 5
## 30470 3
## 31087 4
## 31375 5
## 31648 4
## 32077 5
## 32376 5
## 35946 4
## 36870 5
## 44402 4
## 48873 4
## 53006 5
## 58139 4
## 61830 5
## 62545 5
## 63906 5
## 65289 4
## 66869 5
## 67677 5
## 73150 4
## 75591 4
## 75881 5
## 82241 3
## 84128 2
## 94941 5
## 98345 2
## 41441 4
## 43852 3
## 47375 3
## 47505 4
## 47713 2
## 48077 4
## 48315 3
## 48612 4
## 48760 4
## 49288 4
## 49484 4
## 50741 3
## 51719 3
## 51885 3
## 52278 3
## 52484 4
## 78706 4
## 88465 4
## 88577 3
## 88628 5
## 124 4
## 1695 5
## 2952 5
## 4268 5
## 6562 5
## 9458 5
## 9984 4
## 11477 5
## 12028 4
## 13940 5
## 14529 5
## 15532 4
## 16063 4
## 16419 4
## 17610 4
## 20777 2
## 20932 5
## 22934 5
## 26304 5
## 30292 4
## 31649 4
## 32377 5
## 33788 4
## 35947 5
## 36523 4
## 37645 2
## 38975 2
## 39576 5
## 41854 4
## 42062 5
## 42354 4
## 42578 4
## 42746 1
## 43010 5
## 44403 4
## 45633 3
## 46494 5
## 49027 5
## 49289 5
## 56325 4
## 57058 3
## 62047 4
## 62251 3
## 62985 4
## 63220 5
## 65007 5
## 69402 3
## 72294 4
## 72561 3
## 72702 3
## 74245 4
## 74390 5
## 78301 5
## 80062 5
## 81875 4
## 82136 5
## 82516 5
## 83364 3
## 83612 5
## 85426 3
## 86627 5
## 86764 2
## 87258 4
## 87519 3
## 87731 3
## 89121 3
## 93796 4
## 94001 4
## 94078 4
## 95937 4
## 96083 2
## 125 4
## 3603 3
## 4680 4
## 6563 4
## 8389 3
## 9459 3
## 9985 3
## 12262 3
## 13103 3
## 13354 3
## 13941 4
## 14254 3
## 14910 4
## 14981 3
## 16064 3
## 16420 3
## 16829 3
## 18670 3
## 19297 3
## 19971 2
## 20298 4
## 21748 2
## 22731 3
## 22935 4
## 23585 3
## 24311 3
## 24664 4
## 25256 4
## 26305 4
## 26973 3
## 27608 3
## 28050 2
## 28444 4
## 29525 3
## 30114 4
## 30609 3
## 31650 3
## 32078 4
## 34014 4
## 34605 3
## 34773 3
## 34953 4
## 35179 3
## 35361 3
## 38726 2
## 39196 3
## 39577 3
## 40511 4
## 45634 4
## 46495 4
## 47376 3
## 54264 3
## 55262 3
## 56326 2
## 56689 3
## 57413 3
## 57570 3
## 57703 3
## 57861 2
## 58140 4
## 59059 3
## 59221 4
## 59535 3
## 59644 3
## 60371 3
## 60465 3
## 60571 3
## 60659 3
## 61908 3
## 62252 3
## 62401 3
## 65008 3
## 65496 3
## 67049 3
## 67549 4
## 67846 4
## 69185 3
## 72034 3
## 72703 3
## 74020 3
## 74055 2
## 74139 3
## 74452 3
## 74791 3
## 76847 3
## 77832 3
## 82242 4
## 85868 2
## 85955 2
## 89497 3
## 90156 3
## 90886 2
## 94171 3
## 94731 2
## 96919 2
## 126 5
## 485 4
## 608 3
## 724 4
## 906 3
## 1119 5
## 1449 4
## 1696 5
## 2065 5
## 2306 5
## 2732 4
## 3220 4
## 3463 3
## 3604 5
## 3869 5
## 4049 4
## 4269 4
## 4556 3
## 4681 4
## 4906 3
## 5068 4
## 5292 4
## 5361 2
## 5430 3
## 5541 3
## 5624 3
## 5670 3
## 5740 4
## 5855 1
## 5909 3
## 6051 3
## 6107 4
## 6564 5
## 7017 3
## 7190 4
## 7316 3
## 7439 4
## 7660 5
## 7946 3
## 8017 4
## 8390 2
## 8502 3
## 8655 5
## 8877 4
## 9002 3
## 9151 3
## 9260 4
## 9460 4
## 9756 4
## 9986 4
## 10182 4
## 10311 3
## 10410 3
## 10433 4
## 10521 3
## 10639 4
## 10758 4
## 11011 3
## 11093 4
## 11247 4
## 11613 2
## 11637 3
## 11729 3
## 12029 3
## 12263 5
## 12595 5
## 12732 4
## 12952 2
## 13104 5
## 13355 5
## 13633 3
## 13942 5
## 14255 4
## 14530 5
## 14911 4
## 15037 1
## 15245 3
## 15327 4
## 16065 4
## 16421 3
## 16657 2
## 16830 4
## 17160 3
## 17271 4
## 17407 5
## 17611 4
## 17992 5
## 18309 4
## 19298 5
## 19786 4
## 19905 4
## 19972 3
## 20074 5
## 20299 5
## 20499 3
## 20607 4
## 20778 3
## 20933 4
## 21137 5
## 21525 4
## 21749 4
## 22021 5
## 22156 5
## 22265 3
## 22333 3
## 22434 4
## 22540 3
## 22936 4
## 23316 5
## 23586 5
## 23811 4
## 23959 5
## 24312 5
## 24665 5
## 25038 5
## 25257 5
## 25782 5
## 26001 5
## 26306 5
## 26737 5
## 26974 5
## 27217 4
## 27377 4
## 27609 5
## 27852 5
## 28051 4
## 28193 4
## 28670 5
## 28797 4
## 29239 5
## 29526 4
## 29766 5
## 29980 5
## 30293 5
## 30471 5
## 30610 4
## 30864 4
## 31088 5
## 31489 5
## 31542 4
## 31855 4
## 32079 4
## 32776 5
## 32923 4
## 33397 4
## 33530 4
## 33687 4
## 34015 4
## 34315 5
## 34491 3
## 34606 4
## 34774 4
## 34954 4
## 35180 3
## 35362 4
## 35539 3
## 35670 3
## 35778 3
## 35948 5
## 36212 4
## 36524 5
## 36871 5
## 37087 4
## 37248 4
## 37402 4
## 37852 3
## 38061 4
## 38189 4
## 38348 4
## 38495 4
## 38727 3
## 38881 2
## 39197 4
## 39578 5
## 40131 3
## 40286 4
## 40370 3
## 40512 4
## 40819 4
## 41070 4
## 41222 4
## 41442 5
## 41638 4
## 41855 3
## 42355 4
## 42846 3
## 43011 4
## 43409 4
## 44404 4
## 44815 2
## 45041 4
## 45135 3
## 45378 4
## 45635 4
## 46165 5
## 46496 4
## 46870 4
## 47119 5
## 47714 4
## 48316 5
## 48613 4
## 48761 4
## 48874 4
## 49028 5
## 49657 3
## 49882 3
## 50093 4
## 50221 3
## 50742 4
## 51069 4
## 51192 4
## 51365 4
## 51562 4
## 51886 5
## 52116 4
## 52361 4
## 52485 4
## 52746 4
## 52802 3
## 52864 3
## 53007 5
## 53232 3
## 53465 3
## 53502 3
## 53549 3
## 53630 3
## 53991 2
## 54035 1
## 54203 3
## 54265 3
## 54479 4
## 54571 2
## 54610 3
## 54714 4
## 54892 3
## 54978 3
## 55027 2
## 55101 2
## 55166 3
## 55263 4
## 55427 2
## 55488 4
## 55530 1
## 55582 2
## 55694 3
## 55796 3
## 55972 4
## 56145 4
## 56327 3
## 56583 2
## 56632 2
## 56690 5
## 56795 3
## 56884 4
## 57059 4
## 57278 3
## 57378 3
## 57478 4
## 57571 4
## 57704 5
## 57862 4
## 57953 4
## 58141 5
## 58398 4
## 58464 3
## 58542 5
## 58740 4
## 58856 5
## 59060 3
## 59222 5
## 59404 4
## 59826 4
## 60034 4
## 60261 4
## 60372 4
## 60466 2
## 60572 1
## 60660 3
## 60800 3
## 60855 1
## 60917 4
## 61043 2
## 61130 4
## 61258 4
## 61359 4
## 61487 4
## 61831 4
## 61909 3
## 62048 4
## 62253 3
## 62402 4
## 62546 5
## 62763 5
## 63339 5
## 65009 4
## 65497 4
## 66127 5
## 67385 4
## 67847 4
## 68116 4
## 68736 4
## 69093 1
## 69136 3
## 69263 3
## 69403 3
## 69593 4
## 69657 3
## 69759 4
## 69886 3
## 69915 3
## 70037 2
## 70170 4
## 70254 4
## 70391 2
## 70450 3
## 70493 3
## 70527 3
## 70610 4
## 70753 3
## 70846 4
## 71026 4
## 71131 2
## 71161 3
## 71242 2
## 71297 3
## 71379 2
## 71427 4
## 71566 4
## 71657 3
## 71792 3
## 71942 3
## 72035 4
## 72234 2
## 72295 3
## 72469 2
## 72704 3
## 72975 5
## 74021 2
## 74140 3
## 74246 4
## 74503 3
## 74726 4
## 74792 4
## 74999 4
## 75310 4
## 75436 4
## 75745 4
## 75811 5
## 76054 4
## 76411 4
## 77101 3
## 77198 1
## 77271 3
## 77644 3
## 77833 3
## 77961 3
## 78133 4
## 78302 4
## 78425 3
## 78821 4
## 78880 4
## 79014 4
## 79158 2
## 79233 2
## 79830 4
## 79932 4
## 80155 3
## 80379 3
## 80422 2
## 80501 3
## 80713 2
## 80756 3
## 80815 2
## 81035 4
## 81192 1
## 81254 4
## 81445 4
## 81558 2
## 81876 4
## 82083 1
## 82243 4
## 82368 4
## 82517 3
## 82842 4
## 82983 4
## 83249 3
## 83481 1
## 83735 3
## 83882 3
## 83938 3
## 83986 1
## 84035 4
## 84086 2
## 84129 4
## 84170 3
## 84192 2
## 84338 2
## 84381 3
## 84536 1
## 84605 3
## 84648 3
## 84697 3
## 84861 2
## 84925 1
## 84962 3
## 85010 3
## 85028 3
## 85052 3
## 85084 2
## 85144 4
## 85176 2
## 85225 2
## 85515 2
## 85625 3
## 85746 3
## 85869 3
## 86139 3
## 86391 3
## 86510 4
## 86546 4
## 86628 4
## 86928 5
## 86939 4
## 87410 2
## 87684 3
## 87836 3
## 88218 3
## 88629 4
## 88814 4
## 88831 4
## 88881 4
## 89014 4
## 89346 3
## 89498 2
## 89569 2
## 89853 3
## 89935 3
## 89983 4
## 90029 4
## 90286 3
## 90379 3
## 90610 4
## 90887 4
## 91029 2
## 91062 3
## 91119 2
## 91576 3
## 91718 2
## 91789 3
## 91967 3
## 92018 3
## 92200 3
## 92372 3
## 92564 5
## 92836 3
## 92972 2
## 93070 3
## 93125 2
## 93368 1
## 93409 3
## 93476 3
## 93543 3
## 93837 2
## 93912 4
## 94329 3
## 94396 3
## 94510 2
## 94549 3
## 94565 3
## 94656 2
## 94694 1
## 94732 3
## 94820 1
## 94872 4
## 95078 3
## 95107 3
## 95266 4
## 95482 4
## 95509 3
## 95626 4
## 95762 2
## 95779 3
## 95851 2
## 96001 2
## 96185 4
## 96223 4
## 96314 2
## 96498 3
## 96593 4
## 96718 3
## 96753 2
## 96803 1
## 96897 4
## 96944 4
## 96973 3
## 97112 1
## 97204 3
## 97250 1
## 97268 4
## 97317 3
## 97353 3
## 97434 1
## 97563 4
## 97632 2
## 97645 1
## 97942 4
## 98026 3
## 98448 1
## 98515 1
## 98532 3
## 98841 2
## 98876 3
## 98912 2
## 98914 4
## 98915 3
## 127 4
## 1120 2
## 1697 4
## 2953 4
## 4050 4
## 4270 4
## 6565 3
## 12845 4
## 14531 4
## 15533 4
## 16066 4
## 16831 2
## 17408 3
## 18395 4
## 19638 3
## 20608 4
## 21138 3
## 26307 3
## 33862 4
## 36525 4
## 38976 4
## 39198 3
## 39579 4
## 41639 5
## 41856 4
## 42356 4
## 42647 1
## 42699 4
## 43012 4
## 43410 4
## 43596 4
## 43853 5
## 45379 4
## 47120 4
## 56328 3
## 62049 3
## 62254 1
## 62403 2
## 66128 4
## 72296 4
## 73834 4
## 74247 4
## 81877 4
## 82518 3
## 83613 3
## 86547 4
## 87472 3
## 89194 4
## 91863 3
## 92019 3
## 92117 3
## 95483 3
## 96549 4
## 97754 2
## 3605 5
## 13943 4
## 24313 5
## 37853 3
## 39580 3
## 40820 5
## 43854 5
## 44405 5
## 45636 4
## 46871 2
## 47121 3
## 47599 5
## 48078 4
## 48317 5
## 48614 4
## 52486 4
## 67050 5
## 68031 5
## 68984 4
## 72976 5
## 83119 5
## 88009 3
## 89057 5
## 128 3
## 486 4
## 725 4
## 1121 5
## 1927 4
## 2307 2
## 2556 3
## 3166 4
## 3221 4
## 3464 3
## 3606 1
## 4051 5
## 4271 5
## 4557 5
## 4682 2
## 4907 2
## 4997 2
## 5069 3
## 5208 3
## 5293 4
## 5625 4
## 5671 2
## 5741 4
## 5910 1
## 6108 4
## 6566 3
## 7094 3
## 7661 4
## 8173 4
## 8247 4
## 8311 4
## 8391 3
## 8503 3
## 8656 1
## 8878 1
## 9003 2
## 9152 4
## 9261 4
## 9757 1
## 9987 3
## 10312 4
## 10759 3
## 11012 4
## 11094 4
## 11478 5
## 11874 1
## 12030 1
## 12264 4
## 12485 3
## 12733 4
## 12953 3
## 13105 3
## 13356 4
## 14256 3
## 14532 4
## 14912 3
## 15059 4
## 15246 4
## 15328 5
## 15772 5
## 15879 1
## 16067 5
## 16658 1
## 16832 4
## 17161 1
## 17409 3
## 18310 5
## 18396 1
## 18495 1
## 18535 1
## 18671 3
## 19639 4
## 19787 3
## 20300 4
## 20549 1
## 20609 4
## 20934 3
## 21139 4
## 21395 5
## 21526 5
## 21750 5
## 22022 4
## 22266 3
## 22827 5
## 23064 4
## 23127 4
## 23188 3
## 23317 5
## 23587 5
## 23703 3
## 23960 2
## 24314 5
## 24666 4
## 25039 5
## 25258 3
## 26002 2
## 26308 3
## 27218 5
## 27610 5
## 28194 5
## 28272 3
## 28445 3
## 28798 2
## 29240 4
## 29981 3
## 30472 5
## 30611 4
## 30865 2
## 31089 3
## 31543 5
## 31651 5
## 31856 5
## 32080 4
## 32378 4
## 32777 3
## 33161 3
## 33688 2
## 34016 1
## 34423 4
## 34607 4
## 34775 4
## 34955 4
## 35181 4
## 35363 4
## 35540 2
## 35779 5
## 35949 2
## 36213 3
## 36381 5
## 36872 4
## 37088 4
## 37249 4
## 37530 3
## 38190 4
## 38349 3
## 38496 3
## 38882 3
## 39199 5
## 39981 3
## 40513 5
## 40821 4
## 41640 2
## 41857 3
## 42063 3
## 43226 3
## 43411 1
## 44406 3
## 45042 4
## 45136 3
## 45637 2
## 46872 4
## 49290 4
## 49485 5
## 52043 4
## 53421 5
## 53466 4
## 53631 3
## 53768 1
## 53959 4
## 53992 4
## 54022 1
## 54036 1
## 54204 3
## 54266 4
## 54480 4
## 54611 4
## 54715 4
## 54893 3
## 55028 3
## 55079 3
## 55102 5
## 55264 1
## 55428 4
## 55489 3
## 55531 4
## 55545 4
## 55583 4
## 55695 5
## 55973 1
## 56329 3
## 56633 4
## 56691 5
## 56885 5
## 57060 3
## 57193 3
## 57279 4
## 57379 3
## 57572 3
## 57954 3
## 58399 4
## 58741 1
## 58857 4
## 59061 4
## 59223 3
## 59405 4
## 59536 4
## 59827 4
## 60161 3
## 60467 3
## 60573 4
## 60661 1
## 60918 5
## 61044 3
## 61259 3
## 61360 3
## 61547 4
## 61585 5
## 61832 4
## 61910 3
## 62255 3
## 62547 5
## 63521 3
## 63750 4
## 64369 4
## 64432 3
## 64559 2
## 64610 3
## 64668 5
## 65498 3
## 65604 5
## 66311 3
## 66870 4
## 67051 3
## 67289 4
## 68548 3
## 68639 3
## 68833 1
## 68867 1
## 69137 3
## 69264 1
## 69404 3
## 69594 1
## 69760 4
## 70038 1
## 70126 3
## 70171 4
## 70451 3
## 70611 4
## 71132 4
## 71298 3
## 71380 1
## 71428 4
## 71943 4
## 72297 2
## 72446 1
## 72705 5
## 73732 3
## 74022 4
## 74056 3
## 74453 4
## 74793 5
## 74904 4
## 75201 1
## 75437 3
## 75746 4
## 75882 5
## 76496 5
## 76625 4
## 76848 2
## 76935 3
## 77171 2
## 77218 2
## 77834 4
## 78134 3
## 78303 3
## 78478 4
## 79414 4
## 79831 4
## 79933 4
## 80008 5
## 80063 3
## 80380 4
## 80502 5
## 80714 4
## 80757 3
## 80816 4
## 81036 3
## 81559 1
## 81699 3
## 81768 5
## 82137 2
## 82244 5
## 82984 4
## 83154 2
## 83482 4
## 83503 3
## 83614 3
## 83736 3
## 83854 3
## 84274 4
## 84339 3
## 84382 4
## 84454 3
## 84649 4
## 84782 3
## 84963 4
## 85053 4
## 85092 4
## 85104 3
## 85226 3
## 85270 2
## 85626 4
## 85747 3
## 85810 4
## 85956 4
## 86029 1
## 86140 5
## 86214 3
## 86240 4
## 86444 4
## 86511 4
## 86629 1
## 86929 1
## 86940 1
## 87098 5
## 87157 5
## 87358 1
## 87411 4
## 88219 3
## 88612 4
## 88882 3
## 89015 3
## 89248 4
## 89616 3
## 89903 5
## 90108 5
## 90157 3
## 90232 3
## 90420 3
## 90888 3
## 90959 4
## 91099 3
## 91120 4
## 91164 1
## 91255 3
## 91504 1
## 91552 4
## 91694 5
## 91719 4
## 91733 4
## 91812 4
## 92020 3
## 92118 5
## 92489 3
## 92749 2
## 92787 4
## 92837 4
## 92955 4
## 92981 3
## 93034 4
## 93071 3
## 93150 1
## 93208 4
## 93544 4
## 93661 1
## 93838 4
## 93966 4
## 94265 3
## 94303 4
## 94626 2
## 94635 4
## 94782 4
## 94821 1
## 95068 1
## 95108 3
## 95167 3
## 95267 3
## 95366 3
## 95383 4
## 95527 1
## 95558 2
## 95796 1
## 95928 2
## 96076 3
## 96186 1
## 96288 4
## 96315 2
## 96323 4
## 96334 3
## 96379 1
## 96525 1
## 96669 3
## 96679 5
## 96732 4
## 96821 2
## 96920 3
## 97036 3
## 97113 4
## 97163 3
## 97184 4
## 97251 1
## 97269 1
## 97301 1
## 97318 3
## 97373 2
## 97412 1
## 97548 1
## 97618 4
## 97646 3
## 97834 4
## 97852 4
## 97972 4
## 98004 3
## 98077 4
## 98141 1
## 98217 3
## 98262 4
## 98414 1
## 98484 3
## 98516 5
## 98608 3
## 98645 3
## 98654 3
## 98700 3
## 98902 3
## 98913 4
## 98927 3
## 98930 4
## 98934 1
## 98935 1
## 98940 4
## 98944 3
## 98949 4
## 98952 5
## 98954 4
## 98955 1
## 98956 1
## 98957 4
## 98962 3
## 98967 2
## 98969 4
## 98970 4
## 98974 5
## 98976 1
## 129 4
## 487 3
## 609 2
## 726 3
## 907 4
## 1122 4
## 1450 5
## 1698 5
## 2066 5
## 2308 5
## 2557 5
## 3607 5
## 4908 3
## 5070 4
## 5294 3
## 5431 3
## 5626 5
## 6567 3
## 7191 5
## 7317 2
## 7662 5
## 8018 4
## 8392 3
## 9004 5
## 9153 4
## 9262 3
## 9461 4
## 9758 4
## 9988 4
## 10183 4
## 10313 3
## 10434 2
## 10522 3
## 10760 4
## 11013 3
## 11248 2
## 11730 4
## 12031 3
## 12486 4
## 12734 3
## 12954 2
## 13106 5
## 13357 4
## 13944 5
## 14257 2
## 14533 3
## 14982 5
## 15028 3
## 15534 4
## 15732 3
## 16068 5
## 16422 2
## 17612 2
## 17816 3
## 17993 5
## 18311 3
## 18672 4
## 19299 4
## 19842 4
## 19973 4
## 20301 2
## 20500 3
## 21527 5
## 21902 5
## 22023 4
## 22157 3
## 22267 2
## 22334 4
## 22541 4
## 22732 3
## 23189 4
## 23961 3
## 24315 3
## 24667 3
## 25259 3
## 26003 4
## 26309 3
## 26738 3
## 26975 3
## 29241 3
## 29767 2
## 30294 5
## 30612 3
## 30866 4
## 31090 3
## 32081 2
## 32924 3
## 33162 5
## 33398 3
## 33531 4
## 33689 2
## 33789 5
## 34017 3
## 34492 4
## 34608 3
## 34776 3
## 34956 3
## 35182 3
## 35364 3
## 35541 3
## 35671 3
## 35780 4
## 35950 3
## 36214 5
## 36526 3
## 37089 3
## 37403 2
## 37854 3
## 40514 4
## 41858 5
## 42357 5
## 43013 3
## 43412 3
## 43855 4
## 44407 5
## 45638 2
## 48318 3
## 48615 5
## 48762 5
## 49029 5
## 49658 4
## 49883 2
## 50094 5
## 53467 3
## 53632 5
## 54205 5
## 54267 2
## 54378 3
## 54612 4
## 54716 5
## 54979 4
## 55029 2
## 55059 5
## 55167 5
## 55265 4
## 55797 4
## 55974 3
## 56146 3
## 56330 2
## 56796 3
## 57061 3
## 57414 5
## 57705 3
## 57863 3
## 58142 5
## 59062 4
## 60373 3
## 60468 3
## 60662 5
## 60801 2
## 61586 3
## 61763 4
## 62050 3
## 62256 2
## 62986 5
## 63907 4
## 64370 5
## 65010 5
## 65418 4
## 65988 3
## 66129 3
## 68264 5
## 68436 3
## 68985 5
## 69094 3
## 69186 3
## 69265 4
## 69405 4
## 69761 2
## 70039 1
## 70255 3
## 70612 4
## 70847 2
## 71133 3
## 71243 2
## 71299 3
## 71832 4
## 71904 3
## 71944 4
## 72036 5
## 72470 3
## 73423 4
## 73835 4
## 74391 4
## 74504 5
## 76055 3
## 76626 5
## 76936 4
## 77341 4
## 77645 2
## 78707 2
## 78881 3
## 79015 3
## 79234 5
## 79304 4
## 80156 2
## 80558 3
## 80610 5
## 80715 3
## 80817 3
## 80873 2
## 80966 3
## 81255 2
## 81375 2
## 81560 3
## 81878 4
## 82245 4
## 82519 2
## 82843 5
## 82985 3
## 83250 2
## 83365 4
## 83855 4
## 83883 4
## 83987 3
## 84087 3
## 84383 4
## 84455 4
## 84698 4
## 86630 3
## 87259 3
## 89195 4
## 89347 5
## 89687 2
## 89984 5
## 90158 4
## 91063 4
## 91121 3
## 92328 3
## 92838 5
## 93072 4
## 93316 5
## 93545 3
## 93662 4
## 93727 2
## 93797 4
## 94002 3
## 94079 3
## 94172 4
## 94905 5
## 95150 4
## 95188 4
## 95559 3
## 96153 5
## 96324 2
## 96335 3
## 96697 4
## 96859 5
## 96974 5
## 97905 4
## 98012 5
## 98401 5
## 98783 4
## 98808 5
## 98850 3
## 98877 4
## 98894 3
## 39581 2
## 39982 3
## 41223 5
## 44408 4
## 44816 3
## 45639 3
## 46497 4
## 46873 3
## 47377 5
## 47868 1
## 47952 4
## 49659 4
## 49884 3
## 50357 1
## 51070 3
## 51193 4
## 51366 3
## 51720 2
## 52044 1
## 68986 4
## 77962 3
## 78708 5
## 82520 5
## 87732 4
## 89815 2
## 91467 2
## 39582 5
## 40287 4
## 40822 4
## 41224 3
## 44409 4
## 45640 4
## 46498 3
## 47122 5
## 47506 4
## 47715 3
## 49291 4
## 50222 1
## 50532 5
## 51367 3
## 51721 3
## 51887 3
## 52117 4
## 53233 3
## 78594 2
## 87837 2
## 88220 4
## 3465 3
## 4052 4
## 5742 5
## 6341 4
## 6568 5
## 7663 5
## 9759 4
## 9989 4
## 11479 4
## 12596 5
## 13107 5
## 14534 4
## 15329 4
## 17613 5
## 21140 4
## 23318 5
## 24316 5
## 25040 4
## 27611 5
## 28983 4
## 30613 5
## 31091 4
## 31652 5
## 31857 4
## 32082 5
## 32379 4
## 33163 4
## 36873 5
## 44410 2
## 45137 2
## 45641 4
## 55266 4
## 56634 3
## 56797 4
## 57194 5
## 59224 5
## 59406 4
## 59645 5
## 60919 4
## 72037 4
## 74057 3
## 74141 4
## 76497 5
## 77526 3
## 79832 5
## 81037 4
## 85627 4
## 86631 4
## 87260 3
## 91902 3
## 94511 4
## 95189 5
## 98936 2
## 39583 4
## 39983 2
## 40288 4
## 40823 4
## 41071 3
## 41443 5
## 43856 4
## 44817 3
## 46499 3
## 46874 5
## 47123 4
## 47378 4
## 47507 4
## 47600 4
## 47716 4
## 47953 3
## 48319 3
## 48616 5
## 49292 3
## 49660 3
## 50095 3
## 50743 4
## 51194 3
## 51368 3
## 51563 3
## 51799 3
## 51888 4
## 52217 4
## 52279 4
## 52362 4
## 52487 5
## 69052 2
## 77963 3
## 78479 3
## 78709 3
## 82521 3
## 82844 3
## 82986 3
## 83185 3
## 87733 2
## 88133 4
## 88578 4
## 88668 4
## 88734 3
## 89816 3
## 8657 3
## 14535 4
## 20935 5
## 21141 5
## 23319 4
## 26976 4
## 27378 3
## 28446 4
## 28984 4
## 29982 5
## 31376 4
## 33164 3
## 34018 4
## 36527 4
## 39584 2
## 40824 4
## 41072 4
## 42358 4
## 43857 3
## 44411 5
## 46500 4
## 47124 5
## 48320 5
## 49293 3
## 52363 4
## 53008 5
## 60920 4
## 66871 3
## 68987 5
## 74248 2
## 77964 4
## 88630 4
## 130 4
## 610 2
## 727 5
## 1123 4
## 2067 5
## 2558 2
## 2733 4
## 3167 3
## 3222 4
## 3385 4
## 3608 4
## 4272 3
## 4909 2
## 5362 5
## 5627 4
## 5672 2
## 5743 4
## 5911 3
## 6109 4
## 6569 4
## 7192 2
## 7440 4
## 7664 2
## 7947 5
## 9005 4
## 9760 5
## 10184 4
## 10314 5
## 10523 3
## 11095 3
## 11249 3
## 11480 5
## 11638 5
## 12032 4
## 12265 4
## 12487 4
## 12597 4
## 13108 5
## 13358 4
## 13634 4
## 14258 4
## 14536 3
## 14913 5
## 15199 1
## 15535 5
## 15880 5
## 16069 2
## 16833 3
## 17272 5
## 17614 4
## 17994 4
## 18673 5
## 18899 4
## 19640 4
## 19788 3
## 19974 4
## 20075 4
## 20302 3
## 20610 5
## 21142 5
## 21528 5
## 21751 4
## 21903 4
## 22268 3
## 22542 2
## 22937 3
## 23190 5
## 23320 4
## 23588 3
## 23812 4
## 23962 4
## 24317 4
## 24668 4
## 25041 5
## 25260 4
## 25783 5
## 26310 3
## 26977 4
## 27219 3
## 27612 5
## 28195 3
## 28447 4
## 29242 4
## 29527 4
## 29983 4
## 30614 4
## 31092 3
## 31653 4
## 31858 4
## 32083 5
## 32380 4
## 32552 1
## 32778 1
## 32925 3
## 33165 4
## 33399 3
## 34424 5
## 34957 3
## 35183 1
## 35542 3
## 35672 4
## 35951 3
## 36215 4
## 36528 2
## 37250 3
## 38191 5
## 38497 4
## 38652 5
## 39200 3
## 39585 4
## 40825 5
## 41444 5
## 41859 2
## 42064 4
## 42579 4
## 42648 5
## 42747 4
## 43597 1
## 44412 5
## 44818 5
## 45043 3
## 46166 4
## 46875 5
## 47894 5
## 48152 4
## 48617 5
## 48763 5
## 50223 1
## 50970 4
## 51006 5
## 51644 5
## 51800 5
## 51889 4
## 52024 5
## 52280 4
## 52747 4
## 53009 4
## 53633 5
## 53960 4
## 54206 5
## 54379 5
## 54481 5
## 54894 3
## 55080 1
## 55267 4
## 55408 5
## 55490 4
## 55696 1
## 55798 3
## 55975 5
## 56147 5
## 56331 3
## 56692 4
## 57062 2
## 57280 3
## 57479 3
## 57706 5
## 57955 1
## 58143 4
## 58400 2
## 58742 5
## 59063 5
## 59225 3
## 59407 5
## 60663 5
## 60921 1
## 61260 2
## 61361 5
## 61587 5
## 62257 3
## 62404 3
## 62764 4
## 62987 4
## 63126 3
## 63908 5
## 66705 2
## 68265 4
## 68886 5
## 68949 4
## 69406 1
## 69916 3
## 70040 4
## 70256 4
## 71027 4
## 71220 4
## 71381 2
## 72038 5
## 72562 3
## 72706 3
## 74249 4
## 74392 5
## 74794 3
## 75000 5
## 75123 3
## 75747 4
## 76056 3
## 76412 5
## 78051 5
## 78595 5
## 79461 2
## 79479 2
## 79658 5
## 79833 4
## 79934 4
## 80503 3
## 80652 3
## 80818 3
## 81038 5
## 81193 2
## 81446 4
## 81497 5
## 81561 3
## 81769 4
## 81879 5
## 82246 4
## 82369 4
## 82764 3
## 83547 4
## 83615 2
## 83737 2
## 83909 3
## 83939 3
## 84088 2
## 84275 5
## 84456 4
## 84699 1
## 84783 3
## 85011 5
## 85105 3
## 85427 3
## 85536 2
## 85566 3
## 85697 4
## 85811 1
## 87028 2
## 88037 5
## 88050 5
## 88189 5
## 88735 5
## 89122 4
## 89443 4
## 89499 2
## 89570 4
## 89688 3
## 90159 3
## 90287 4
## 90421 2
## 90497 5
## 90889 5
## 91396 3
## 91577 2
## 92248 5
## 93073 3
## 93173 5
## 93209 5
## 93546 1
## 93798 4
## 93858 4
## 94003 5
## 94397 4
## 94454 5
## 94512 3
## 94733 4
## 94942 5
## 95031 5
## 95168 3
## 95268 1
## 95317 3
## 95560 4
## 95763 3
## 96336 2
## 96499 4
## 96623 3
## 97164 1
## 97252 3
## 97530 5
## 97714 5
## 97811 5
## 97835 4
## 98058 5
## 98252 5
## 98485 2
## 98981 2
## 98983 3
## 98993 4
## 131 5
## 728 4
## 1699 5
## 2068 5
## 4683 5
## 5542 5
## 6570 5
## 7665 5
## 8658 5
## 12735 4
## 13945 4
## 14537 5
## 15247 4
## 15536 3
## 16070 5
## 16834 4
## 22024 5
## 23321 5
## 26311 3
## 30295 4
## 30473 5
## 31654 4
## 33532 5
## 34019 5
## 36216 4
## 36529 5
## 37251 2
## 38062 4
## 38192 5
## 38350 5
## 38498 3
## 38728 1
## 39201 4
## 42359 4
## 45138 5
## 45642 5
## 46167 4
## 46876 3
## 48321 4
## 50533 5
## 51890 5
## 52364 5
## 52488 4
## 58465 3
## 61261 5
## 62988 1
## 69407 4
## 72298 5
## 75748 4
## 77965 4
## 79935 4
## 81880 3
## 82522 4
## 85428 3
## 86632 5
## 88374 2
## 89249 4
## 89936 3
## 90422 4
## 92373 5
## 94194 2
## 2309 4
## 2559 5
## 2954 4
## 3609 5
## 6571 4
## 8659 5
## 9462 5
## 13635 4
## 13946 5
## 14538 5
## 16835 2
## 17995 5
## 18674 3
## 19076 2
## 19506 5
## 22158 4
## 24318 3
## 24669 4
## 25042 1
## 25261 4
## 25496 3
## 25632 5
## 26004 5
## 26739 4
## 28273 1
## 29528 5
## 29768 5
## 30115 4
## 30296 4
## 30615 5
## 31377 5
## 32084 3
## 32381 5
## 32779 2
## 33166 4
## 34316 3
## 35365 2
## 35952 4
## 36530 4
## 39586 4
## 40826 5
## 41445 5
## 42360 4
## 43858 4
## 44819 3
## 45643 2
## 46501 5
## 47508 4
## 48875 4
## 49030 4
## 50534 1
## 51891 5
## 52281 5
## 52365 5
## 53010 5
## 58543 5
## 59646 4
## 66565 4
## 67052 4
## 67550 5
## 68266 3
## 68437 4
## 69266 5
## 72436 2
## 74609 4
## 75592 4
## 78544 1
## 81881 3
## 87960 1
## 88134 5
## 88579 5
## 93210 2
## 94130 4
## 98210 5
## 132 3
## 1124 4
## 2955 3
## 3466 1
## 4053 4
## 15330 3
## 16071 4
## 16836 3
## 17615 2
## 20611 3
## 21143 2
## 34020 2
## 38883 1
## 43014 3
## 53422 3
## 56332 2
## 56886 2
## 60922 4
## 62051 4
## 62405 1
## 63127 2
## 78304 4
## 81882 4
## 85429 3
## 86871 4
## 89250 3
## 92374 5
## 133 5
## 2956 4
## 3467 3
## 3610 5
## 4684 5
## 5071 4
## 5856 3
## 6342 3
## 6572 5
## 7318 3
## 8393 2
## 8660 4
## 9006 4
## 9463 4
## 9990 5
## 11250 4
## 12033 4
## 12266 3
## 12598 2
## 13109 4
## 13636 3
## 13947 4
## 14259 4
## 14983 3
## 15060 2
## 15331 3
## 16072 3
## 16423 4
## 16659 4
## 16837 4
## 17616 3
## 18675 3
## 18900 3
## 19300 4
## 19507 4
## 19789 2
## 19906 4
## 20076 5
## 20303 3
## 21144 2
## 21529 3
## 22269 5
## 22543 4
## 22733 3
## 22938 4
## 23191 2
## 23322 3
## 23963 5
## 24670 5
## 25262 4
## 26005 1
## 26312 5
## 26978 4
## 28448 3
## 28799 4
## 29529 4
## 30116 3
## 30616 4
## 31093 4
## 31378 3
## 31655 3
## 32085 5
## 32382 3
## 33167 4
## 33533 2
## 34021 4
## 34777 2
## 34958 4
## 35184 3
## 35366 4
## 35953 3
## 36217 3
## 37090 2
## 37646 3
## 38729 3
## 39202 4
## 40515 4
## 41225 3
## 41860 4
## 49031 4
## 49885 3
## 53011 3
## 54115 3
## 54268 3
## 54717 4
## 55268 3
## 55799 4
## 55976 2
## 56148 3
## 56333 2
## 57573 3
## 57707 4
## 58144 5
## 58858 4
## 59226 5
## 59537 4
## 59647 3
## 59828 2
## 60469 1
## 60574 2
## 61588 3
## 62258 4
## 62406 1
## 62548 3
## 62989 3
## 63909 5
## 64121 3
## 65011 4
## 65290 4
## 67053 3
## 67551 3
## 67848 3
## 68267 4
## 69408 2
## 69762 3
## 70613 3
## 70848 3
## 72039 4
## 72563 4
## 73950 3
## 74058 4
## 74393 3
## 75495 2
## 75593 3
## 78052 2
## 78305 3
## 78882 5
## 79305 3
## 80423 3
## 81039 4
## 81562 3
## 81883 2
## 83251 4
## 85227 4
## 85537 3
## 85870 3
## 85957 2
## 86215 3
## 89251 3
## 89500 3
## 91578 4
## 92201 2
## 92839 3
## 93074 4
## 93547 4
## 94004 3
## 94513 2
## 94734 2
## 97796 3
## 98142 3
## 134 5
## 611 3
## 729 4
## 908 5
## 1125 5
## 1451 4
## 1700 5
## 2069 4
## 2310 5
## 2957 5
## 3223 4
## 3468 2
## 3611 5
## 4054 5
## 4558 3
## 4685 4
## 5072 4
## 5295 4
## 5432 3
## 5673 4
## 6052 4
## 6239 5
## 6343 4
## 6573 5
## 7193 5
## 7319 4
## 7441 4
## 7666 5
## 8661 5
## 9007 4
## 9154 4
## 9464 5
## 9761 4
## 9991 4
## 10185 4
## 10524 4
## 10761 5
## 11014 4
## 11251 4
## 11614 3
## 11639 2
## 12267 3
## 12488 5
## 12736 4
## 12846 4
## 12955 2
## 13110 4
## 13359 4
## 13637 4
## 13948 5
## 14260 4
## 14539 5
## 14914 4
## 15136 4
## 16073 5
## 16424 2
## 16838 2
## 17162 3
## 17273 4
## 17410 5
## 17617 4
## 18312 4
## 18397 5
## 19843 4
## 20077 3
## 20304 5
## 20612 4
## 21145 5
## 21530 4
## 21752 4
## 21904 3
## 22025 5
## 22270 2
## 22335 4
## 22939 4
## 23323 5
## 23964 5
## 24319 5
## 24671 5
## 25043 2
## 25784 5
## 26313 5
## 27220 4
## 28052 3
## 29243 4
## 30297 4
## 30617 4
## 31094 4
## 32086 5
## 32553 4
## 32780 4
## 32926 4
## 33534 4
## 33690 4
## 34317 5
## 34609 5
## 35543 3
## 35673 4
## 35954 4
## 36218 2
## 36382 4
## 36531 4
## 36874 5
## 37252 4
## 37751 2
## 37855 2
## 38063 5
## 38351 4
## 38499 4
## 40289 4
## 41641 3
## 43015 4
## 43413 4
## 43598 4
## 44413 5
## 45044 4
## 45139 5
## 45380 5
## 45644 5
## 50096 1
## 50224 4
## 52865 4
## 53468 3
## 53503 3
## 53550 3
## 53634 4
## 53803 3
## 54037 1
## 54060 3
## 54207 3
## 54572 2
## 54613 4
## 54718 4
## 55103 1
## 55269 3
## 55429 3
## 55491 4
## 55697 4
## 55800 4
## 55977 4
## 56149 4
## 56334 4
## 56887 5
## 57063 4
## 57195 3
## 57281 4
## 57415 4
## 57480 4
## 57574 4
## 57864 4
## 57956 4
## 58145 4
## 58544 4
## 58743 5
## 60374 5
## 60923 5
## 61045 3
## 61224 5
## 61667 5
## 61833 5
## 61911 3
## 62052 4
## 62765 5
## 65012 5
## 65499 4
## 66130 5
## 69095 3
## 69409 3
## 69763 4
## 69887 2
## 69917 3
## 70115 1
## 70172 4
## 70452 4
## 70494 3
## 70549 2
## 70614 4
## 70754 5
## 70849 4
## 71028 3
## 71134 2
## 71162 3
## 71191 4
## 71221 1
## 71244 2
## 71300 4
## 71382 1
## 71429 4
## 71567 5
## 71658 4
## 72040 4
## 72426 3
## 72707 3
## 73836 3
## 74142 4
## 74505 5
## 74795 4
## 76057 4
## 77272 3
## 78306 5
## 78426 5
## 79636 3
## 80157 5
## 80304 3
## 80559 4
## 80874 4
## 81040 4
## 81256 4
## 81563 3
## 81770 5
## 81884 3
## 82370 4
## 83252 2
## 83366 3
## 83504 2
## 83548 3
## 83738 4
## 83988 1
## 84036 4
## 84130 4
## 84171 3
## 84193 3
## 84384 5
## 84537 2
## 84576 4
## 84700 4
## 84862 4
## 84989 4
## 85012 2
## 85029 3
## 85516 3
## 85628 4
## 85748 3
## 85812 4
## 85871 4
## 86093 2
## 86241 3
## 86286 3
## 86548 5
## 89123 4
## 89348 2
## 89650 4
## 89854 4
## 89904 3
## 89937 4
## 90030 4
## 90160 4
## 91030 1
## 91064 2
## 91122 2
## 91332 3
## 91695 1
## 92119 4
## 92375 4
## 92490 4
## 92840 3
## 93369 4
## 93477 4
## 93548 2
## 93967 4
## 94195 4
## 94330 5
## 94473 4
## 94483 4
## 94514 2
## 94566 3
## 94695 2
## 94873 4
## 95079 4
## 95734 3
## 96002 3
## 96289 4
## 96417 4
## 96680 3
## 96733 1
## 96754 4
## 96804 3
## 96822 1
## 96860 3
## 96921 4
## 96945 5
## 97151 2
## 97253 2
## 97319 4
## 97381 4
## 97435 3
## 97633 2
## 97670 4
## 97954 3
## 97973 3
## 98263 3
## 98842 3
## 98878 2
## 98945 2
## 98996 4
## 135 4
## 488 4
## 1126 3
## 1701 4
## 1928 5
## 2070 5
## 3386 2
## 4055 4
## 4686 4
## 6240 5
## 6574 4
## 7667 5
## 8019 5
## 8662 5
## 10762 5
## 11481 5
## 11731 4
## 13360 4
## 13949 5
## 14540 5
## 15537 4
## 15824 4
## 16074 4
## 16425 3
## 17411 4
## 17618 2
## 17996 5
## 18676 4
## 19301 4
## 20305 5
## 20936 4
## 21146 5
## 21531 4
## 22026 5
## 23065 4
## 23324 5
## 23589 5
## 24320 5
## 24672 5
## 25263 5
## 26006 5
## 26314 4
## 26979 5
## 28274 5
## 28800 4
## 28985 4
## 29244 5
## 29769 5
## 30117 5
## 30867 4
## 31544 5
## 31859 5
## 32781 3
## 34022 3
## 34318 5
## 34610 4
## 34959 5
## 35955 5
## 36219 3
## 38193 4
## 38352 3
## 38500 3
## 38730 3
## 40371 3
## 40516 4
## 42361 5
## 43016 4
## 43599 4
## 44414 3
## 46168 4
## 46502 4
## 49415 5
## 50097 3
## 50744 3
## 51071 5
## 52118 2
## 56335 3
## 56693 4
## 57708 4
## 58146 5
## 58859 5
## 61362 3
## 62259 3
## 62766 5
## 63340 4
## 63751 5
## 63910 5
## 64122 5
## 64371 4
## 64499 5
## 64669 4
## 64733 4
## 65419 5
## 66428 4
## 66566 5
## 67054 4
## 67849 4
## 68032 5
## 68438 5
## 68887 3
## 72196 4
## 72890 4
## 72977 5
## 73319 4
## 74250 3
## 74506 5
## 75812 4
## 75883 5
## 76291 5
## 76498 5
## 76761 5
## 77102 3
## 79531 4
## 82523 3
## 84650 4
## 86549 5
## 86966 5
## 88883 5
## 91968 4
## 92249 3
## 93211 4
## 93750 4
## 94331 5
## 95797 4
## 136 2
## 489 3
## 612 2
## 730 4
## 909 3
## 1127 3
## 1452 3
## 2071 3
## 2311 4
## 2734 3
## 2958 3
## 3168 2
## 3224 2
## 3612 3
## 3870 4
## 4273 3
## 4486 3
## 4559 3
## 4687 3
## 4910 1
## 5073 2
## 5296 2
## 5380 1
## 5433 1
## 5543 3
## 5986 5
## 6110 3
## 6241 5
## 6344 3
## 6575 5
## 7018 3
## 7194 3
## 7320 3
## 7442 4
## 7668 4
## 8394 1
## 8663 5
## 8879 3
## 9008 2
## 9155 3
## 9263 3
## 9465 3
## 9762 3
## 9992 4
## 10315 2
## 10435 3
## 10525 2
## 10763 3
## 11096 4
## 11252 4
## 11640 3
## 11875 4
## 12034 3
## 12268 5
## 12599 2
## 12737 4
## 12956 2
## 13361 3
## 13638 4
## 13950 4
## 14261 3
## 14541 4
## 15538 2
## 16075 3
## 16839 3
## 17163 3
## 17412 4
## 17619 2
## 17997 5
## 18398 3
## 18677 4
## 18901 3
## 19077 5
## 19302 5
## 19641 3
## 19790 3
## 20078 4
## 20306 4
## 20613 2
## 20779 1
## 20937 3
## 21147 4
## 21396 4
## 21532 4
## 21905 2
## 22027 4
## 22159 5
## 22271 2
## 22336 3
## 22435 4
## 22544 2
## 22734 3
## 22828 4
## 22940 4
## 23066 3
## 23128 3
## 23192 3
## 23325 4
## 23965 5
## 24321 5
## 24673 5
## 25044 2
## 25264 4
## 25497 4
## 25785 4
## 26007 5
## 26315 3
## 26740 5
## 26980 4
## 27379 5
## 27613 2
## 27853 3
## 28053 3
## 28671 5
## 28801 3
## 28986 4
## 29245 3
## 29530 4
## 29984 4
## 30118 5
## 30298 4
## 30618 3
## 30868 3
## 31095 3
## 31490 4
## 31656 3
## 31860 3
## 32087 3
## 32383 4
## 32651 3
## 32927 4
## 33168 4
## 33400 3
## 33535 2
## 34023 3
## 34319 4
## 34611 1
## 34778 2
## 34960 3
## 35185 2
## 35367 2
## 35674 2
## 35781 2
## 35956 5
## 36220 3
## 36532 3
## 36875 4
## 37091 3
## 37253 2
## 37856 3
## 38194 3
## 38353 3
## 38501 3
## 38653 4
## 38731 2
## 38977 3
## 39203 2
## 39587 3
## 40372 3
## 40517 3
## 41446 4
## 41642 4
## 42065 3
## 42748 2
## 43017 2
## 43227 2
## 43414 2
## 43600 5
## 43859 3
## 44415 3
## 45045 2
## 45140 2
## 45381 4
## 45645 2
## 46072 4
## 46169 4
## 46503 2
## 47125 4
## 48322 4
## 48618 3
## 48764 3
## 48876 4
## 49661 2
## 50225 2
## 50745 2
## 52366 3
## 52489 2
## 52866 3
## 53012 4
## 53551 2
## 53635 2
## 53900 2
## 54269 2
## 54895 2
## 55270 3
## 55698 1
## 55801 2
## 55978 3
## 56150 4
## 56336 1
## 56888 2
## 57064 2
## 57196 1
## 57329 4
## 57416 4
## 57709 3
## 57865 4
## 57957 3
## 58147 3
## 58401 4
## 58466 1
## 58545 4
## 58860 4
## 58954 3
## 59227 5
## 59408 3
## 59648 4
## 59829 3
## 60035 4
## 60206 4
## 60262 4
## 60664 3
## 60924 2
## 61225 3
## 61262 2
## 61363 4
## 61488 4
## 61548 3
## 61668 3
## 61710 4
## 61764 2
## 61834 4
## 62053 3
## 62549 5
## 63341 4
## 63522 5
## 63752 4
## 63911 5
## 64123 5
## 64255 3
## 64670 4
## 64734 5
## 65013 5
## 65196 4
## 65500 4
## 65605 3
## 65651 4
## 65716 4
## 65895 5
## 65989 4
## 66312 3
## 66429 3
## 66767 5
## 66872 4
## 67386 5
## 67678 3
## 68268 4
## 68439 4
## 68737 4
## 69267 3
## 69410 1
## 69658 3
## 69764 1
## 69965 3
## 70041 1
## 70173 3
## 70257 2
## 70615 3
## 70850 4
## 71135 2
## 71163 2
## 71430 2
## 71659 4
## 71793 3
## 72041 3
## 72197 4
## 72299 3
## 72978 5
## 73221 3
## 73733 3
## 73837 1
## 74143 2
## 74251 3
## 74394 3
## 74610 3
## 74796 4
## 74868 3
## 74905 4
## 75124 3
## 75259 3
## 75311 5
## 75438 4
## 75594 3
## 75813 5
## 75884 5
## 76058 3
## 76292 4
## 76413 1
## 76627 2
## 76937 3
## 77103 2
## 77646 2
## 77835 2
## 78135 3
## 78307 3
## 78427 3
## 79016 4
## 79159 2
## 79532 5
## 79734 3
## 79936 3
## 80009 2
## 80158 3
## 80424 1
## 80653 3
## 80875 2
## 81041 3
## 81564 2
## 81885 2
## 82247 3
## 82371 2
## 82524 2
## 82987 3
## 83549 2
## 83884 3
## 84037 3
## 84340 1
## 84385 3
## 84457 2
## 84651 2
## 85093 1
## 85228 2
## 85271 1
## 85430 2
## 85629 2
## 85813 3
## 86141 3
## 86512 3
## 86633 2
## 86872 2
## 87029 3
## 87261 3
## 87412 1
## 87734 2
## 88375 3
## 89124 2
## 89571 1
## 89651 2
## 89855 2
## 89938 2
## 89985 4
## 90031 2
## 90498 2
## 90547 3
## 91123 2
## 92021 3
## 92376 2
## 92491 3
## 92530 3
## 93317 2
## 93370 3
## 93410 2
## 93478 1
## 93663 3
## 93927 2
## 94874 2
## 94943 3
## 95318 1
## 95528 3
## 95627 3
## 95866 4
## 96066 2
## 96719 3
## 96734 2
## 96861 1
## 96946 2
## 97066 3
## 97114 1
## 97152 1
## 97382 2
## 97521 3
## 97564 3
## 97812 4
## 97917 3
## 97987 3
## 98121 4
## 98561 2
## 137 5
## 1128 4
## 1929 3
## 3469 3
## 4056 4
## 6576 5
## 10764 4
## 12847 4
## 14542 4
## 15061 3
## 15332 4
## 15539 4
## 16076 4
## 16426 3
## 16660 2
## 16840 5
## 17164 3
## 17274 4
## 17620 3
## 17998 5
## 20614 4
## 20780 3
## 21148 5
## 26316 5
## 34024 4
## 36221 3
## 36533 4
## 37254 3
## 37857 3
## 38064 4
## 38195 5
## 38354 5
## 38502 5
## 38732 4
## 38884 3
## 38978 3
## 39204 3
## 39588 3
## 40132 4
## 40373 2
## 40827 5
## 41226 5
## 41643 3
## 42362 4
## 42847 3
## 43018 3
## 43860 5
## 44416 5
## 45141 2
## 45382 4
## 45646 4
## 45997 4
## 46170 5
## 46325 3
## 46504 4
## 46877 4
## 47717 3
## 48323 5
## 49662 1
## 49886 3
## 50098 4
## 50226 3
## 50535 3
## 50746 4
## 51072 4
## 51195 3
## 51369 4
## 51564 4
## 51892 4
## 52045 3
## 52119 4
## 52367 3
## 52490 5
## 52631 4
## 52748 3
## 52803 4
## 53234 2
## 53423 1
## 56337 4
## 56584 2
## 56889 4
## 57065 3
## 57282 3
## 60925 3
## 62054 4
## 62260 3
## 62767 5
## 62990 3
## 63912 4
## 66131 4
## 67055 5
## 67552 5
## 68888 4
## 68988 5
## 69053 4
## 69268 4
## 69411 4
## 69595 3
## 72708 3
## 72979 5
## 73838 3
## 77527 3
## 77647 2
## 77966 3
## 78596 3
## 81886 4
## 82084 2
## 82525 3
## 82765 3
## 82988 4
## 83120 3
## 85749 3
## 85872 3
## 85958 1
## 86030 1
## 86094 3
## 86142 3
## 86392 3
## 87473 4
## 87685 3
## 87838 4
## 88376 4
## 88631 4
## 89252 3
## 89349 3
## 89501 3
## 89572 3
## 91191 3
## 91356 3
## 91813 4
## 92022 2
## 92120 4
## 92202 2
## 92250 2
## 92377 4
## 92841 3
## 93549 3
## 94196 4
## 94515 2
## 94550 3
## 94636 1
## 94657 2
## 95529 4
## 95590 3
## 96067 3
## 96594 2
## 97354 3
## 97442 3
## 138 4
## 731 4
## 1129 5
## 2072 4
## 3613 4
## 4274 5
## 5544 4
## 5744 3
## 5857 4
## 6111 5
## 6577 5
## 7095 5
## 7195 1
## 7669 4
## 8248 5
## 8880 5
## 9156 4
## 9264 4
## 9466 5
## 9763 5
## 9993 5
## 10186 4
## 10316 4
## 10765 4
## 11253 4
## 11482 5
## 11615 2
## 11732 5
## 12035 4
## 12269 5
## 12600 5
## 12957 4
## 13111 4
## 13362 1
## 13639 5
## 13951 5
## 14262 4
## 14543 5
## 14984 4
## 15062 4
## 15333 4
## 15825 5
## 16427 3
## 16841 4
## 17621 5
## 18678 5
## 18902 4
## 19078 5
## 19642 4
## 19975 4
## 20079 4
## 20307 4
## 21149 4
## 21533 5
## 21753 5
## 21906 4
## 22160 5
## 22272 4
## 22337 4
## 22545 4
## 22735 4
## 22941 5
## 23326 5
## 23966 4
## 24322 5
## 24674 4
## 26317 4
## 26981 1
## 27614 5
## 28054 3
## 28275 4
## 28449 5
## 28987 4
## 29531 5
## 30619 5
## 31096 4
## 31657 5
## 31861 5
## 32088 4
## 32652 5
## 32928 5
## 33169 5
## 33401 4
## 33536 5
## 34025 4
## 34612 4
## 34779 4
## 34961 4
## 35186 4
## 35368 4
## 35675 3
## 36222 4
## 36534 4
## 36876 4
## 37404 5
## 40518 4
## 45046 4
## 49032 5
## 53013 4
## 53901 4
## 54116 4
## 54270 4
## 54380 5
## 54482 5
## 54719 4
## 54896 4
## 55060 4
## 55430 4
## 55699 3
## 55802 5
## 55979 4
## 56151 4
## 56338 5
## 57197 2
## 57330 4
## 57417 4
## 57481 5
## 57710 4
## 57866 4
## 57958 4
## 58148 4
## 58546 4
## 59064 5
## 59649 5
## 60470 4
## 60575 4
## 60665 4
## 61263 5
## 61589 4
## 61912 3
## 63913 5
## 64256 4
## 64790 5
## 65014 5
## 65197 5
## 65291 5
## 65717 4
## 66567 5
## 66768 4
## 68269 4
## 69412 4
## 70258 4
## 70392 5
## 71089 3
## 71660 5
## 72042 4
## 72891 5
## 74023 5
## 74395 5
## 74507 5
## 75125 4
## 75373 4
## 76059 5
## 76628 5
## 79480 5
## 79533 4
## 80425 4
## 80560 4
## 80758 5
## 80876 4
## 81257 5
## 81376 5
## 81447 5
## 81498 4
## 81565 4
## 81700 4
## 82085 4
## 82372 4
## 84701 3
## 84863 4
## 85229 4
## 85326 4
## 86513 4
## 89939 4
## 90161 2
## 90380 5
## 90693 5
## 90797 4
## 90821 5
## 91679 3
## 92842 5
## 93212 4
## 93284 2
## 93751 5
## 95204 5
## 95561 4
## 95628 4
## 96187 5
## 96418 3
## 96975 5
## 97906 4
## 98402 5
## 98720 4
## 98784 5
## 98851 4
## 98984 2
## 139 5
## 1130 5
## 1702 4
## 1930 2
## 2073 5
## 2560 3
## 2735 4
## 2959 3
## 3313 5
## 3387 5
## 3614 4
## 3871 5
## 4057 2
## 5209 4
## 5987 5
## 6242 5
## 6578 5
## 7443 5
## 7670 5
## 8312 3
## 10766 4
## 11483 5
## 12270 5
## 13363 5
## 13952 5
## 14544 5
## 15540 3
## 15773 5
## 16077 3
## 16842 5
## 17413 5
## 17622 5
## 17999 5
## 19079 5
## 19643 4
## 20308 4
## 20938 1
## 21150 2
## 21534 4
## 23967 5
## 25786 4
## 26008 5
## 26318 5
## 27615 3
## 27854 5
## 28450 5
## 28988 5
## 29985 5
## 30119 5
## 31097 5
## 31862 4
## 32089 3
## 32384 4
## 33863 5
## 34026 5
## 34962 4
## 36535 5
## 36877 4
## 37255 1
## 37531 4
## 37752 1
## 38065 4
## 38196 5
## 38503 2
## 38654 5
## 38979 2
## 39107 5
## 39205 5
## 39589 5
## 39984 1
## 40828 5
## 41447 5
## 41861 4
## 42066 4
## 42363 5
## 42580 5
## 42700 4
## 42848 2
## 43019 4
## 43415 4
## 43601 5
## 43861 5
## 44215 4
## 44820 3
## 45258 5
## 45383 5
## 45647 1
## 46073 4
## 46171 1
## 46878 5
## 47379 3
## 47895 1
## 48324 5
## 48619 5
## 53014 5
## 58547 5
## 58861 5
## 59650 5
## 60926 1
## 61364 4
## 61835 5
## 62768 4
## 63523 5
## 63753 5
## 63914 5
## 64124 4
## 64257 5
## 65292 5
## 65718 5
## 66132 5
## 66430 5
## 66873 5
## 67056 5
## 67679 4
## 67850 4
## 68440 5
## 69269 4
## 74252 5
## 74611 5
## 75749 4
## 75885 5
## 76499 5
## 76938 5
## 78308 4
## 78545 1
## 79160 4
## 79534 5
## 82845 5
## 85431 3
## 86634 5
## 86765 2
## 86967 5
## 88512 4
## 89058 5
## 90233 1
## 90347 4
## 90694 5
## 90751 5
## 91814 4
## 91903 3
## 94332 5
## 95798 5
## 96040 4
## 97416 5
## 97772 4
## 140 3
## 732 1
## 1131 4
## 1453 5
## 2074 4
## 2312 5
## 2561 3
## 3225 3
## 3388 4
## 3615 4
## 4058 4
## 4275 4
## 4560 1
## 4688 4
## 5074 3
## 5210 4
## 5363 3
## 5745 3
## 6112 2
## 6579 5
## 7196 3
## 7444 4
## 7671 5
## 7948 5
## 9467 3
## 9764 5
## 10317 2
## 10767 3
## 11484 4
## 11733 5
## 12271 4
## 12489 4
## 12738 3
## 13112 3
## 13640 5
## 13953 5
## 14545 5
## 14985 1
## 15248 4
## 15334 4
## 15541 3
## 15774 5
## 15881 4
## 16078 4
## 16428 3
## 17414 4
## 18313 4
## 18399 4
## 18903 4
## 19303 4
## 19644 5
## 20080 5
## 20309 3
## 20615 3
## 20781 3
## 21151 3
## 21535 5
## 21754 5
## 22028 4
## 22161 2
## 22436 1
## 23327 5
## 24323 4
## 24675 5
## 25045 4
## 25265 4
## 26319 4
## 26741 3
## 26982 4
## 27380 5
## 28451 3
## 28989 3
## 29246 1
## 29532 4
## 29770 3
## 29986 3
## 30299 3
## 30474 4
## 30620 3
## 31098 3
## 31658 4
## 31863 4
## 32090 4
## 32385 4
## 32653 3
## 32929 2
## 33170 4
## 33537 3
## 34027 4
## 34320 5
## 34963 2
## 35369 2
## 35544 3
## 35782 2
## 35957 3
## 36223 2
## 36536 4
## 36878 5
## 37647 1
## 37858 3
## 38197 3
## 38355 3
## 38504 1
## 39206 3
## 39590 5
## 40519 3
## 40715 3
## 40829 4
## 41227 2
## 41448 5
## 41644 4
## 42067 5
## 42581 3
## 43020 3
## 43228 4
## 43416 4
## 43862 5
## 44417 3
## 45384 3
## 45648 3
## 46172 5
## 46505 3
## 46879 4
## 47126 4
## 47718 4
## 50358 2
## 51722 2
## 52491 3
## 53015 4
## 53636 2
## 57711 3
## 58149 3
## 58955 1
## 59228 4
## 59651 3
## 60036 2
## 60263 4
## 60375 3
## 60927 4
## 61590 3
## 62055 3
## 62550 4
## 62769 5
## 63342 5
## 63524 4
## 64258 3
## 65293 3
## 66133 4
## 66874 3
## 67057 5
## 68270 5
## 68549 3
## 68889 3
## 69413 3
## 71222 1
## 71661 4
## 72043 4
## 72564 3
## 72980 5
## 74059 3
## 74253 4
## 74396 3
## 75750 3
## 76500 4
## 77648 3
## 78480 2
## 78710 5
## 78883 3
## 79306 4
## 79535 2
## 80237 3
## 80654 3
## 81377 4
## 81887 3
## 82248 3
## 82526 2
## 82846 5
## 82989 4
## 83121 4
## 87158 3
## 88884 1
## 90162 2
## 91301 1
## 91815 4
## 92251 3
## 92378 3
## 94333 3
## 95080 3
## 95673 3
## 96862 1
## 97886 4
## 141 5
## 1454 5
## 1703 4
## 3616 4
## 3872 4
## 4689 4
## 6580 5
## 8020 4
## 9468 4
## 9994 5
## 10768 5
## 12036 5
## 12601 2
## 13641 4
## 13954 4
## 14263 3
## 16429 4
## 16843 4
## 17623 3
## 18000 5
## 18679 5
## 18904 3
## 19080 5
## 20081 5
## 20310 4
## 21152 3
## 21397 3
## 21536 3
## 23328 5
## 23968 4
## 24676 5
## 25633 5
## 26320 4
## 26983 3
## 27381 3
## 27616 4
## 27855 5
## 28802 5
## 28990 5
## 29247 4
## 29533 4
## 29771 4
## 30120 4
## 30300 3
## 30621 3
## 30869 3
## 31099 4
## 31379 5
## 31659 5
## 32091 5
## 32386 5
## 32654 3
## 32930 5
## 36537 5
## 38733 4
## 39207 4
## 40233 4
## 40520 4
## 41862 3
## 42068 3
## 42364 2
## 42849 3
## 43021 4
## 43417 4
## 43863 4
## 45649 3
## 48079 3
## 48877 4
## 49033 5
## 51370 5
## 52867 3
## 53016 5
## 55271 4
## 55803 3
## 57575 4
## 57712 5
## 58150 5
## 58548 5
## 58956 5
## 59229 4
## 59652 5
## 61591 4
## 62056 4
## 62407 3
## 62551 4
## 63128 4
## 63343 5
## 63754 5
## 63915 5
## 64125 4
## 64259 3
## 64372 3
## 65015 5
## 65294 5
## 65606 5
## 65652 4
## 65719 3
## 65990 4
## 66568 4
## 66875 4
## 67851 4
## 68117 5
## 68271 5
## 68640 5
## 69414 3
## 69659 4
## 72044 4
## 72565 3
## 72981 5
## 73151 5
## 74060 4
## 75595 5
## 75751 3
## 76629 3
## 77836 3
## 79536 4
## 81888 3
## 85630 4
## 86482 4
## 86635 3
## 87159 3
## 87262 3
## 90163 3
## 90381 4
## 91579 4
## 95799 4
## 98174 3
## 142 3
## 733 3
## 1132 3
## 1931 5
## 2313 5
## 2562 4
## 2736 4
## 3226 1
## 3314 1
## 3389 3
## 3873 4
## 4059 3
## 4276 3
## 4487 4
## 4690 4
## 5211 3
## 5988 3
## 6113 4
## 6243 4
## 6345 4
## 6581 4
## 7096 4
## 7445 2
## 7672 4
## 8021 3
## 8174 5
## 8249 5
## 8313 4
## 9157 2
## 9765 3
## 9995 3
## 10187 3
## 10318 2
## 10526 3
## 11097 4
## 11485 5
## 11734 4
## 12037 3
## 12272 5
## 12602 4
## 12848 2
## 12958 1
## 13113 3
## 13642 4
## 13955 4
## 14264 3
## 14546 3
## 14915 2
## 15542 3
## 15775 4
## 15826 3
## 16430 2
## 18001 5
## 18400 4
## 19081 4
## 19304 4
## 19508 4
## 19645 4
## 20082 3
## 20311 4
## 20939 5
## 21153 4
## 21398 4
## 21537 3
## 21755 4
## 23067 4
## 23129 4
## 23193 3
## 23329 4
## 23590 4
## 23704 5
## 23813 4
## 24324 5
## 24677 4
## 25046 5
## 25266 4
## 25787 4
## 26321 3
## 26742 3
## 27382 3
## 27617 3
## 28276 5
## 28452 4
## 28991 3
## 29772 3
## 29987 4
## 30622 4
## 31100 4
## 31545 3
## 31660 4
## 31864 3
## 32092 4
## 32387 4
## 32554 4
## 32655 5
## 33171 5
## 34028 2
## 34964 3
## 35187 3
## 36224 1
## 36538 2
## 36879 4
## 37092 3
## 37256 2
## 37405 3
## 37753 2
## 38198 5
## 38356 3
## 38655 5
## 38980 2
## 39208 2
## 39985 3
## 40374 2
## 41073 4
## 41228 3
## 41863 3
## 42069 4
## 42365 4
## 42649 3
## 43229 3
## 43602 5
## 43864 4
## 44418 3
## 44821 3
## 45650 2
## 46074 3
## 46173 4
## 46506 4
## 47127 4
## 47509 3
## 48080 4
## 48325 3
## 49034 4
## 49294 3
## 51371 4
## 52120 3
## 52282 4
## 52368 3
## 52492 4
## 52749 4
## 53637 4
## 54117 3
## 54381 3
## 54614 3
## 54980 2
## 55272 2
## 55492 4
## 55584 2
## 55804 3
## 56694 4
## 57576 4
## 58151 3
## 59230 3
## 59409 5
## 59653 3
## 61264 3
## 61365 5
## 62408 3
## 62552 5
## 62770 4
## 63221 4
## 63344 4
## 63525 4
## 63664 3
## 63755 4
## 63916 5
## 64126 4
## 64260 4
## 64433 5
## 64500 4
## 65016 3
## 65295 4
## 65501 3
## 65607 4
## 65653 4
## 66134 4
## 66313 4
## 66431 5
## 66569 4
## 66706 4
## 66769 4
## 66876 5
## 67058 4
## 67222 4
## 67290 4
## 67779 3
## 68550 4
## 68738 3
## 68989 3
## 69230 5
## 69415 3
## 69966 3
## 71383 3
## 71662 2
## 72045 4
## 72709 3
## 72892 3
## 72982 3
## 73262 4
## 73320 4
## 73671 4
## 74727 2
## 75001 3
## 75071 4
## 75126 4
## 75230 4
## 75312 4
## 75752 3
## 76060 3
## 76849 4
## 78884 4
## 79415 4
## 79937 4
## 80159 4
## 80655 3
## 80759 4
## 80819 2
## 80933 4
## 81042 4
## 81177 3
## 81566 3
## 81889 4
## 82249 4
## 82373 4
## 82766 1
## 83122 3
## 83155 5
## 84276 4
## 84577 2
## 84784 4
## 85307 4
## 85364 4
## 85631 3
## 86814 4
## 86968 4
## 87030 3
## 88204 3
## 88377 2
## 88815 4
## 88832 3
## 88885 3
## 88971 3
## 89746 4
## 90348 2
## 90477 3
## 90499 4
## 90611 2
## 90726 4
## 90798 4
## 90947 4
## 90960 2
## 91696 2
## 91764 5
## 91790 4
## 92531 3
## 92598 4
## 92630 3
## 93126 2
## 93213 4
## 93550 2
## 93752 4
## 93913 4
## 94231 3
## 94334 4
## 94398 3
## 95010 4
## 95319 4
## 95530 1
## 95780 4
## 96808 2
## 97032 3
## 97067 2
## 97094 1
## 97468 2
## 97935 2
## 98079 3
## 98278 3
## 98997 4
## 99000 3
## 14547 3
## 37648 4
## 39209 4
## 40234 3
## 40375 1
## 44419 4
## 45651 3
## 46507 4
## 49663 4
## 50747 3
## 56798 4
## 61046 4
## 78481 2
## 86242 4
## 87474 5
## 87686 5
## 90234 4
## 92121 4
## 94801 5
## 143 4
## 490 2
## 613 2
## 734 4
## 1133 4
## 1455 4
## 1704 3
## 2075 4
## 2314 4
## 2960 4
## 3227 4
## 3470 2
## 3617 4
## 4060 4
## 4277 3
## 4691 4
## 4911 4
## 5075 3
## 5297 4
## 5545 3
## 5674 3
## 5746 4
## 5858 5
## 6114 4
## 6582 5
## 7019 4
## 7197 1
## 7321 3
## 7673 4
## 8022 4
## 8395 3
## 8664 5
## 9009 4
## 9158 2
## 9265 4
## 9469 5
## 9996 4
## 10319 4
## 10436 4
## 10527 3
## 10769 5
## 11015 3
## 11098 3
## 11254 5
## 12038 4
## 12273 2
## 12490 3
## 12603 3
## 12959 4
## 13114 5
## 13364 5
## 13643 4
## 13956 4
## 14265 4
## 14548 5
## 15063 3
## 15335 5
## 15543 1
## 16079 5
## 16431 4
## 16661 2
## 16844 4
## 17165 2
## 17275 4
## 18002 4
## 18314 5
## 18680 4
## 18905 4
## 19764 2
## 19976 3
## 20083 4
## 20312 4
## 20501 3
## 20940 4
## 21154 2
## 21399 3
## 21538 3
## 21756 4
## 21907 1
## 22029 4
## 22162 2
## 22338 3
## 22437 2
## 22546 3
## 22736 3
## 22829 3
## 22942 3
## 23330 4
## 23969 5
## 24325 4
## 24678 5
## 25267 4
## 25788 3
## 26009 3
## 26322 5
## 26743 5
## 26984 3
## 27221 4
## 27618 4
## 27856 4
## 28453 3
## 28803 3
## 28992 4
## 29248 5
## 29534 4
## 29773 5
## 30121 4
## 30475 4
## 30623 5
## 30870 4
## 31101 5
## 31380 4
## 32093 4
## 32931 5
## 33172 4
## 33402 3
## 33538 4
## 33691 4
## 34029 4
## 34613 5
## 34780 3
## 34965 3
## 35188 3
## 35370 4
## 35545 2
## 35676 4
## 35783 4
## 36225 2
## 36539 4
## 37093 2
## 37257 4
## 37406 3
## 38357 3
## 38505 4
## 38734 3
## 39591 4
## 40521 4
## 40830 5
## 41229 4
## 41645 1
## 42366 1
## 42850 4
## 43022 4
## 43418 4
## 44420 4
## 45652 4
## 46326 3
## 46508 4
## 49035 5
## 49887 4
## 51372 4
## 51565 3
## 51893 4
## 53017 5
## 53424 4
## 53638 4
## 53993 4
## 54271 4
## 54615 5
## 54720 3
## 54981 3
## 55273 3
## 55431 1
## 55700 4
## 55805 2
## 55980 4
## 56152 3
## 56339 4
## 56635 2
## 56799 4
## 56890 4
## 57066 1
## 57198 4
## 57577 3
## 57713 3
## 57867 3
## 58152 1
## 58402 4
## 58467 4
## 58549 4
## 58862 4
## 59065 4
## 60037 4
## 60264 4
## 60666 4
## 60928 5
## 61047 3
## 61366 2
## 61592 4
## 61913 4
## 62553 4
## 63665 4
## 63917 4
## 65017 5
## 65502 3
## 65608 4
## 65654 3
## 66570 4
## 66877 3
## 67059 3
## 67465 4
## 67680 3
## 67852 4
## 68272 4
## 69416 4
## 69765 3
## 69918 3
## 70042 3
## 70259 4
## 70453 3
## 70616 3
## 70851 4
## 71301 4
## 71663 2
## 72046 5
## 72710 3
## 73152 4
## 73263 3
## 73321 4
## 73477 3
## 74508 1
## 74797 3
## 75596 5
## 76061 1
## 76414 3
## 76630 4
## 77104 2
## 77342 4
## 77649 2
## 78136 3
## 78309 3
## 78428 4
## 78885 3
## 79017 5
## 79416 4
## 79938 3
## 80381 4
## 80504 3
## 81043 4
## 81258 2
## 81448 2
## 81567 2
## 81890 4
## 82086 2
## 82250 3
## 83253 4
## 83367 4
## 83468 3
## 83739 4
## 84089 2
## 84131 3
## 84702 4
## 84964 4
## 85054 2
## 85632 3
## 85814 3
## 86143 4
## 86873 4
## 87160 4
## 87263 4
## 87413 4
## 90612 4
## 92122 4
## 92203 3
## 92379 4
## 92843 5
## 93075 4
## 93839 1
## 94399 2
## 94735 3
## 95151 4
## 95629 3
## 97115 4
## 97165 1
## 97755 4
## 37859 2
## 39592 3
## 40686 2
## 41074 2
## 41230 4
## 44822 3
## 45653 1
## 46327 2
## 46880 4
## 47719 4
## 47896 2
## 49664 2
## 49888 2
## 50748 3
## 51373 3
## 53235 3
## 82527 1
## 87839 2
## 91397 2
## 144 5
## 491 3
## 614 3
## 735 4
## 910 2
## 1134 4
## 1456 5
## 1705 5
## 2076 4
## 2315 4
## 2563 4
## 2961 3
## 3228 4
## 3471 2
## 3618 5
## 3874 5
## 4061 3
## 4278 4
## 4488 4
## 4692 3
## 4912 2
## 5076 3
## 5298 4
## 5434 1
## 5675 5
## 5747 5
## 5859 3
## 5912 4
## 6053 3
## 6115 5
## 6346 2
## 6583 5
## 7198 3
## 7322 3
## 7446 4
## 7674 5
## 8396 2
## 8504 1
## 8665 5
## 8881 4
## 9159 5
## 9266 4
## 9470 5
## 9766 4
## 9997 3
## 10188 3
## 10320 3
## 10528 4
## 10640 2
## 10770 5
## 11016 4
## 11099 4
## 11255 4
## 11486 5
## 11641 3
## 11876 3
## 12039 4
## 12491 4
## 12604 5
## 12739 4
## 12849 5
## 12960 3
## 13115 5
## 13365 5
## 13644 5
## 13957 5
## 14266 4
## 14549 5
## 15137 2
## 15336 4
## 15544 3
## 15882 5
## 16080 3
## 16432 2
## 16662 2
## 16845 3
## 17166 4
## 17276 4
## 17415 4
## 17624 2
## 18003 5
## 18315 4
## 18401 5
## 18681 5
## 19082 5
## 19646 4
## 19791 3
## 19907 3
## 20084 4
## 20313 5
## 20502 1
## 20616 4
## 20941 5
## 21155 5
## 21400 4
## 21539 5
## 21908 3
## 22030 5
## 22273 3
## 22339 3
## 22438 4
## 22547 5
## 22943 4
## 23194 3
## 23331 5
## 23705 5
## 23814 4
## 23970 5
## 24326 5
## 24679 5
## 25268 5
## 25789 5
## 26323 5
## 26744 5
## 26985 5
## 27222 5
## 27383 5
## 27619 4
## 27857 5
## 28454 5
## 28993 5
## 29249 4
## 29988 4
## 30301 4
## 30476 5
## 30624 5
## 30871 5
## 31102 4
## 31661 5
## 31865 5
## 32094 4
## 32932 5
## 33173 5
## 33539 4
## 33692 5
## 33864 5
## 34030 3
## 34321 4
## 34614 4
## 34781 3
## 34966 4
## 35189 3
## 35371 3
## 35546 4
## 35677 4
## 35784 4
## 35958 5
## 36226 4
## 36383 4
## 36540 5
## 36880 4
## 37094 3
## 37258 3
## 37407 4
## 37860 3
## 38066 5
## 38199 2
## 38358 4
## 38506 4
## 38656 4
## 38735 3
## 38981 4
## 39210 4
## 39593 4
## 39986 3
## 40133 3
## 40290 5
## 40376 3
## 40831 5
## 41075 4
## 41231 2
## 41646 3
## 42367 4
## 42582 3
## 42851 3
## 43023 3
## 43230 3
## 43419 4
## 43865 5
## 44216 4
## 44421 4
## 44823 2
## 45047 4
## 45142 3
## 45385 4
## 45654 4
## 46174 4
## 46509 1
## 47128 4
## 49036 5
## 49295 5
## 49486 3
## 49889 1
## 50099 3
## 50227 1
## 50359 2
## 50536 1
## 50749 3
## 51007 3
## 51374 4
## 51566 3
## 51894 5
## 53018 5
## 53236 2
## 53425 1
## 53469 2
## 53552 3
## 53639 4
## 53769 1
## 53804 1
## 53994 2
## 54038 2
## 54061 2
## 54208 4
## 54382 4
## 54483 3
## 54616 3
## 54721 4
## 54897 4
## 54982 5
## 55030 2
## 55081 3
## 55104 1
## 55274 4
## 55432 2
## 55493 4
## 55532 1
## 55546 1
## 55701 3
## 55806 4
## 55981 5
## 56153 4
## 56340 4
## 56695 4
## 56891 4
## 57067 4
## 57199 3
## 57283 2
## 57418 3
## 57578 4
## 57714 4
## 57868 4
## 57959 4
## 58153 4
## 58403 4
## 58468 3
## 58550 4
## 58957 4
## 59231 3
## 59410 4
## 59654 5
## 59830 4
## 60038 4
## 60471 4
## 60576 3
## 60667 5
## 60802 2
## 60929 3
## 61131 3
## 61226 4
## 61265 4
## 61367 3
## 61914 4
## 62409 4
## 62554 5
## 62771 4
## 62991 3
## 63129 3
## 63345 5
## 63526 4
## 63756 5
## 63918 5
## 64127 5
## 64671 4
## 65503 4
## 65609 4
## 65896 4
## 65991 5
## 66135 4
## 66878 5
## 67291 5
## 67387 4
## 68033 5
## 68739 4
## 68890 1
## 69096 1
## 69138 3
## 69187 2
## 69270 4
## 69319 2
## 69417 2
## 69660 3
## 69766 3
## 69888 2
## 69919 2
## 70043 2
## 70174 4
## 70260 4
## 70454 4
## 70528 1
## 70852 4
## 71029 3
## 71223 1
## 71245 4
## 71302 3
## 71384 3
## 71431 2
## 71664 4
## 71794 1
## 71945 2
## 72047 5
## 72300 4
## 72471 2
## 72566 4
## 72711 1
## 72983 5
## 73672 4
## 73734 4
## 73839 3
## 74144 3
## 74509 4
## 74728 3
## 74798 3
## 75496 5
## 75597 5
## 75814 4
## 75886 5
## 76062 5
## 76415 5
## 77105 4
## 77343 4
## 77650 1
## 77837 2
## 78310 1
## 78482 1
## 78886 4
## 79018 4
## 79235 3
## 79378 3
## 79537 5
## 79834 5
## 80160 4
## 80238 2
## 80426 2
## 80505 4
## 80561 2
## 80716 1
## 80877 3
## 81194 1
## 81259 4
## 81499 2
## 81568 5
## 81771 4
## 81891 4
## 82138 3
## 82251 4
## 82528 2
## 83254 2
## 83483 1
## 83616 4
## 83740 4
## 83885 3
## 84172 4
## 84277 4
## 84341 1
## 84386 5
## 84538 2
## 84578 3
## 84703 4
## 84785 5
## 85013 3
## 85030 1
## 85106 4
## 85195 2
## 85230 2
## 85365 4
## 85432 3
## 85633 3
## 85815 3
## 85873 3
## 86095 2
## 86144 4
## 86243 2
## 86393 2
## 86483 2
## 86550 3
## 86636 4
## 86815 4
## 86874 3
## 87264 2
## 87341 3
## 87359 2
## 87414 1
## 87475 3
## 87520 3
## 87633 4
## 88886 4
## 89253 2
## 89350 3
## 89856 3
## 89905 2
## 90032 2
## 90235 2
## 90423 3
## 90459 3
## 90548 4
## 90669 4
## 91192 4
## 91580 2
## 91680 2
## 91697 3
## 91816 5
## 92023 2
## 92123 4
## 92204 1
## 92252 3
## 92380 3
## 92631 4
## 92700 2
## 93035 1
## 93151 3
## 93214 5
## 93285 1
## 93318 2
## 93411 3
## 93479 3
## 93551 2
## 93664 4
## 93840 2
## 94289 2
## 94335 4
## 94609 1
## 94637 2
## 94658 1
## 94696 1
## 94765 1
## 94822 2
## 94846 3
## 94875 4
## 95081 4
## 95109 1
## 95269 3
## 95630 2
## 95800 4
## 95852 2
## 95965 3
## 96003 2
## 96041 2
## 96290 2
## 96337 2
## 96398 4
## 96419 4
## 96595 3
## 96735 2
## 96755 1
## 96823 1
## 96863 1
## 96898 4
## 96947 2
## 97013 3
## 97037 2
## 97068 4
## 97116 2
## 97166 1
## 97205 3
## 97254 1
## 97469 2
## 97565 3
## 97612 1
## 97634 2
## 97813 4
## 97955 3
## 98037 3
## 98127 3
## 98148 1
## 98449 1
## 98486 2
## 98594 2
## 99001 1
## 99004 1
## 99009 3
## 99010 3
## 15545 3
## 36541 5
## 37649 3
## 39987 1
## 41232 4
## 41864 4
## 42070 4
## 42650 4
## 43866 1
## 44422 3
## 45655 4
## 46175 5
## 46510 5
## 47954 3
## 48326 5
## 49665 4
## 49890 3
## 50750 3
## 52121 3
## 77914 2
## 77967 3
## 81892 3
## 83741 4
## 87840 3
## 88318 3
## 88378 3
## 145 5
## 492 2
## 1135 4
## 2077 1
## 2316 5
## 2564 3
## 2737 4
## 2962 1
## 3169 3
## 5299 3
## 5748 4
## 5989 5
## 6244 5
## 6347 3
## 6584 5
## 7097 2
## 7675 1
## 8175 3
## 8250 3
## 8314 4
## 8666 5
## 9010 3
## 9471 3
## 9767 4
## 9998 3
## 10437 1
## 10771 3
## 11100 3
## 11487 3
## 11735 4
## 11877 1
## 12040 2
## 12274 3
## 12605 2
## 13366 3
## 13645 4
## 13958 4
## 14550 3
## 16081 2
## 16846 3
## 18004 5
## 18402 3
## 18536 3
## 19083 5
## 19305 3
## 20085 3
## 20314 2
## 21156 4
## 21540 3
## 21757 4
## 22031 4
## 22439 4
## 22830 3
## 23068 4
## 23130 4
## 23332 4
## 23591 5
## 23706 4
## 23815 5
## 23971 4
## 24327 3
## 24680 3
## 25047 4
## 25269 4
## 25634 4
## 25790 1
## 26010 4
## 26324 4
## 26986 4
## 27223 3
## 27620 4
## 27858 4
## 28055 2
## 28196 5
## 28277 3
## 28455 3
## 28672 2
## 29250 3
## 29535 4
## 29774 2
## 29989 4
## 30122 4
## 30302 3
## 30477 3
## 30625 3
## 30872 4
## 31103 2
## 31546 5
## 31866 5
## 32095 3
## 32555 3
## 32782 2
## 32933 2
## 33174 5
## 34031 2
## 34322 4
## 34967 2
## 36542 2
## 36881 3
## 37095 3
## 37532 5
## 37861 1
## 38067 3
## 38359 3
## 38657 5
## 39211 2
## 39594 4
## 40832 4
## 41449 3
## 42071 2
## 43024 3
## 43603 5
## 43867 4
## 44217 3
## 44824 4
## 46176 4
## 46511 3
## 47129 4
## 47510 3
## 48081 5
## 48620 5
## 48878 4
## 49037 3
## 50360 2
## 50537 3
## 51723 3
## 52493 3
## 53019 5
## 54484 5
## 54722 1
## 55982 2
## 56341 3
## 56696 5
## 58154 4
## 58404 4
## 58551 5
## 58744 3
## 59066 4
## 59411 2
## 60668 3
## 61368 5
## 61549 3
## 61836 2
## 62057 4
## 62555 5
## 62772 4
## 63222 3
## 63346 3
## 63527 5
## 63757 2
## 63919 5
## 64128 3
## 64261 2
## 64373 5
## 65822 3
## 66571 4
## 66707 4
## 68273 5
## 68441 4
## 68551 5
## 68641 5
## 69767 3
## 70137 4
## 70617 3
## 71665 4
## 72712 2
## 72893 3
## 73478 3
## 74254 4
## 74510 3
## 74906 5
## 75497 4
## 75887 4
## 76063 4
## 76631 4
## 76939 3
## 77035 2
## 77838 3
## 78137 3
## 78429 3
## 78711 4
## 79735 3
## 79835 5
## 80064 4
## 80878 3
## 81178 3
## 81260 4
## 82529 3
## 82767 2
## 82990 3
## 84038 3
## 84278 4
## 84786 4
## 84843 5
## 85145 3
## 86637 3
## 87031 5
## 87116 4
## 88686 4
## 88972 5
## 89059 5
## 89940 2
## 90033 2
## 90207 4
## 90670 1
## 90695 3
## 90752 4
## 90961 4
## 92329 1
## 92532 5
## 94336 1
## 94400 2
## 94944 4
## 95025 4
## 97814 5
## 98487 3
## 98774 4
## 98931 3
## 99015 3
## 99021 2
## 2565 4
## 2738 5
## 3315 5
## 4279 3
## 14551 4
## 15546 4
## 15883 5
## 20942 5
## 36227 4
## 37533 5
## 39212 4
## 39595 2
## 40833 5
## 42072 4
## 43231 3
## 43604 4
## 43868 4
## 44218 4
## 44825 3
## 47601 5
## 49296 4
## 49487 3
## 62992 3
## 81772 1
## 82139 4
## 83368 3
## 87161 3
## 91904 4
## 92844 2
## 97417 5
## 99024 4
## 146 5
## 3472 4
## 3619 3
## 4062 4
## 4693 3
## 6585 5
## 7676 4
## 8397 3
## 8667 4
## 9768 4
## 9999 5
## 10189 3
## 11101 5
## 11256 4
## 11488 5
## 12275 5
## 12606 4
## 12961 3
## 14267 4
## 14552 3
## 14916 3
## 15337 5
## 15776 5
## 16847 1
## 18682 4
## 19306 4
## 20086 3
## 20503 4
## 21541 5
## 21758 5
## 22548 3
## 22831 3
## 22944 4
## 23333 5
## 23592 5
## 23972 5
## 24328 5
## 24681 4
## 25048 4
## 25635 3
## 26325 5
## 26987 3
## 27384 3
## 27621 5
## 28197 4
## 28804 3
## 29251 3
## 29536 3
## 29775 4
## 30303 3
## 31104 3
## 31867 5
## 32096 2
## 32783 5
## 32934 4
## 34032 4
## 34782 5
## 34968 5
## 35190 5
## 35372 5
## 37096 3
## 39213 5
## 39596 5
## 40522 3
## 40834 4
## 43869 3
## 48327 5
## 54272 3
## 55275 3
## 55433 3
## 55702 1
## 55807 2
## 55983 3
## 56697 5
## 57715 4
## 58155 5
## 58552 3
## 58745 4
## 59067 4
## 59412 5
## 60472 4
## 60577 2
## 61369 4
## 61489 5
## 62261 3
## 62556 5
## 63920 5
## 65823 3
## 66314 3
## 66572 5
## 67060 4
## 68274 5
## 68552 4
## 71534 4
## 72048 4
## 74511 3
## 74729 3
## 76064 4
## 76632 3
## 78483 1
## 79736 4
## 81378 3
## 81569 2
## 82252 4
## 86145 1
## 90288 4
## 92671 4
## 92845 4
## 94131 3
## 95110 4
## 95764 2
## 98488 4
## 147 4
## 736 5
## 911 4
## 1136 4
## 1457 5
## 1706 4
## 2078 5
## 2317 5
## 2963 3
## 3229 4
## 3316 3
## 3473 3
## 3620 4
## 3875 5
## 4063 4
## 4280 4
## 4694 3
## 4998 4
## 5077 3
## 5212 5
## 5749 4
## 5913 4
## 5990 4
## 6116 4
## 6245 4
## 6348 3
## 6586 5
## 7323 2
## 7447 3
## 7677 5
## 8023 3
## 8176 4
## 8251 3
## 8315 3
## 8668 4
## 8882 3
## 9011 4
## 9267 4
## 9472 2
## 9769 4
## 10000 4
## 10190 4
## 10321 3
## 10411 4
## 10529 3
## 10772 4
## 11102 5
## 11257 4
## 11642 4
## 11878 4
## 12041 4
## 12276 5
## 12607 4
## 12740 4
## 13116 4
## 13367 4
## 13646 1
## 13959 3
## 14268 4
## 14553 5
## 15200 4
## 15338 3
## 15884 4
## 16082 3
## 16433 3
## 16848 3
## 17167 4
## 17277 3
## 17416 4
## 18005 4
## 18403 5
## 18537 4
## 18683 3
## 18906 3
## 19084 5
## 19307 5
## 19792 3
## 19908 3
## 20087 4
## 20315 3
## 20617 3
## 20782 3
## 21157 4
## 21401 5
## 21542 5
## 21759 4
## 22032 4
## 22163 5
## 22440 4
## 22549 3
## 22737 4
## 22832 4
## 22945 4
## 23069 3
## 23131 3
## 23334 4
## 23593 5
## 23707 3
## 23816 4
## 23973 4
## 24682 4
## 25049 5
## 25270 4
## 25498 5
## 25636 4
## 25791 4
## 26011 5
## 26326 4
## 26745 5
## 26988 4
## 27224 4
## 27385 4
## 27622 4
## 27859 5
## 28456 4
## 28673 5
## 28805 3
## 28994 5
## 29252 5
## 29537 3
## 29776 3
## 29990 3
## 30123 4
## 30304 5
## 30478 5
## 30626 4
## 30873 5
## 31105 4
## 31381 3
## 31662 4
## 31868 4
## 32097 4
## 32388 4
## 32656 4
## 32784 2
## 32935 3
## 33175 3
## 33540 5
## 33693 3
## 34323 4
## 34615 3
## 35373 4
## 35547 3
## 35785 3
## 35959 3
## 36228 3
## 36543 3
## 36882 5
## 37097 3
## 37408 4
## 38200 4
## 38885 2
## 38982 4
## 39214 4
## 39988 3
## 40377 2
## 40523 3
## 41647 2
## 41865 3
## 42073 4
## 42368 4
## 43232 3
## 43420 4
## 43605 5
## 44423 4
## 45143 3
## 45386 4
## 45656 3
## 45998 3
## 46177 5
## 47897 1
## 48328 3
## 49038 4
## 49297 4
## 49488 3
## 49666 2
## 52868 3
## 53020 4
## 53504 3
## 53640 4
## 53902 3
## 54118 3
## 54485 4
## 54723 4
## 55168 4
## 55276 4
## 55494 4
## 55808 4
## 55984 4
## 56154 3
## 56698 5
## 56892 4
## 57068 4
## 57482 3
## 57716 4
## 57869 4
## 58156 5
## 58405 4
## 58553 4
## 58746 5
## 58863 4
## 58958 4
## 59232 4
## 59413 5
## 59538 4
## 59655 4
## 59831 4
## 60039 3
## 60265 4
## 60376 3
## 60473 3
## 60803 2
## 60930 4
## 61266 4
## 61490 4
## 61669 5
## 61711 4
## 61837 5
## 62058 3
## 62262 2
## 62410 3
## 62773 4
## 63130 4
## 63347 5
## 63528 4
## 63666 4
## 63758 5
## 63921 3
## 64129 3
## 64262 3
## 64374 4
## 64434 4
## 64501 4
## 64611 4
## 64735 3
## 64791 3
## 64847 5
## 64909 3
## 65018 3
## 65296 5
## 65420 3
## 65504 4
## 65610 5
## 65720 4
## 65824 3
## 65897 4
## 65992 3
## 66315 4
## 66432 3
## 66573 5
## 66708 5
## 66770 3
## 66879 4
## 67061 3
## 67223 4
## 67292 4
## 67466 4
## 67553 4
## 67681 3
## 67780 3
## 67853 4
## 68034 5
## 68118 3
## 68442 3
## 68642 4
## 68740 4
## 68950 4
## 69418 3
## 69768 4
## 70175 4
## 70261 4
## 70618 4
## 70755 4
## 70853 5
## 71030 3
## 71432 2
## 71504 3
## 71568 4
## 71666 3
## 71795 4
## 71833 4
## 72049 5
## 72198 4
## 72301 3
## 72713 3
## 72894 4
## 72984 5
## 73222 4
## 73322 3
## 73424 4
## 73479 4
## 73514 4
## 73587 4
## 73623 3
## 73673 3
## 73735 2
## 73807 4
## 74255 3
## 74397 4
## 74612 3
## 74667 4
## 74730 4
## 74869 3
## 75002 4
## 75072 4
## 75127 5
## 75260 5
## 75374 4
## 75439 4
## 75815 5
## 75888 5
## 76065 4
## 76228 3
## 76293 4
## 76501 3
## 76633 3
## 76762 4
## 76940 5
## 77036 5
## 77106 4
## 77219 4
## 77344 4
## 77465 4
## 77651 3
## 77839 4
## 78138 3
## 78430 4
## 78887 3
## 79019 3
## 79307 4
## 79538 5
## 79737 4
## 79836 3
## 80010 4
## 80161 5
## 80879 3
## 81044 4
## 81379 3
## 81570 4
## 81773 4
## 81893 4
## 82253 4
## 82374 3
## 83255 3
## 84039 4
## 84279 3
## 84787 3
## 85055 3
## 85107 4
## 85146 4
## 85308 4
## 85715 4
## 85816 3
## 85874 4
## 85959 3
## 86484 3
## 86514 3
## 86853 4
## 86930 5
## 87032 4
## 87117 3
## 88973 4
## 89351 4
## 89986 3
## 90109 4
## 90613 3
## 90727 4
## 90799 4
## 90822 3
## 90854 4
## 91791 4
## 92565 4
## 92632 4
## 92846 2
## 93448 4
## 93480 4
## 93552 3
## 94132 5
## 94337 3
## 94401 3
## 95270 4
## 95384 3
## 95428 3
## 95631 4
## 95765 4
## 95867 4
## 95984 2
## 96175 5
## 96550 4
## 96786 3
## 97425 3
## 97815 3
## 98423 4
## 98489 4
## 98562 4
## 98775 4
## 99031 4
## 37534 4
## 39597 5
## 43870 4
## 46512 3
## 47380 3
## 47602 2
## 49298 4
## 50100 3
## 50361 5
## 51073 5
## 51375 3
## 51567 4
## 78712 3
## 87841 4
## 89817 4
## 91468 3
## 92750 5
## 97887 2
## 98346 2
## 2739 5
## 4064 4
## 6587 5
## 15885 5
## 26327 4
## 34033 3
## 38658 5
## 39215 5
## 39598 3
## 41866 3
## 42074 5
## 45657 1
## 47381 5
## 68933 4
## 81701 4
## 82530 3
## 86216 1
## 86638 5
## 92672 5
## 95801 5
## 98317 1
## 148 4
## 912 3
## 1458 4
## 1707 4
## 2318 4
## 2964 5
## 3621 4
## 3876 3
## 4695 5
## 5078 4
## 5435 3
## 5546 4
## 5676 3
## 5860 4
## 5914 3
## 6117 2
## 6588 5
## 7020 4
## 7324 4
## 7678 5
## 8024 3
## 8398 3
## 8505 3
## 8669 5
## 9012 4
## 9268 1
## 9473 5
## 9770 4
## 10001 4
## 10191 4
## 10322 4
## 10438 4
## 10530 5
## 10773 4
## 11103 3
## 11258 5
## 11489 5
## 11736 5
## 12042 4
## 12277 5
## 12608 3
## 12962 3
## 13368 5
## 13647 4
## 13960 5
## 14269 5
## 14554 1
## 14917 4
## 16083 4
## 16434 3
## 16849 4
## 17625 4
## 18006 4
## 18538 3
## 18684 4
## 18907 3
## 19085 5
## 19308 4
## 19509 5
## 19909 4
## 20088 3
## 22550 4
## 23335 4
## 23708 5
## 23974 5
## 24329 5
## 24683 5
## 25271 4
## 25499 5
## 25637 5
## 25792 2
## 26012 4
## 26328 4
## 26989 5
## 27386 2
## 27623 3
## 27860 4
## 28056 4
## 28457 4
## 28674 3
## 28806 5
## 28995 4
## 29253 4
## 29538 5
## 29777 4
## 29991 3
## 30124 4
## 30305 4
## 30627 4
## 30874 5
## 31106 5
## 31382 5
## 31663 4
## 31869 2
## 32098 5
## 32389 3
## 32556 3
## 32657 4
## 32936 4
## 33176 5
## 33541 4
## 34034 4
## 34616 4
## 34783 4
## 34969 5
## 35191 5
## 35374 5
## 35548 4
## 35678 3
## 35786 4
## 35960 4
## 36883 4
## 37098 3
## 37409 3
## 39599 4
## 40524 5
## 42075 4
## 42369 4
## 43025 5
## 45658 4
## 46513 4
## 47603 4
## 47955 4
## 48621 5
## 49039 5
## 49489 3
## 49667 4
## 49891 3
## 50362 2
## 50971 4
## 52869 4
## 53021 5
## 53505 4
## 53553 5
## 53641 3
## 53903 5
## 54119 5
## 54273 4
## 54724 5
## 54898 3
## 54983 4
## 55169 5
## 55277 4
## 55585 4
## 55809 4
## 55985 4
## 56155 3
## 57380 3
## 57419 4
## 57483 3
## 57579 4
## 57717 3
## 57870 1
## 58157 5
## 58406 2
## 58747 4
## 59068 4
## 59233 4
## 59414 3
## 59832 3
## 60040 3
## 60162 2
## 60377 5
## 60474 3
## 60669 3
## 61593 4
## 61765 4
## 61838 5
## 61915 3
## 62059 4
## 63348 5
## 63529 4
## 63759 4
## 63922 4
## 64130 4
## 64263 1
## 64435 4
## 64672 4
## 64792 4
## 64848 4
## 64910 4
## 65019 5
## 65297 4
## 65421 4
## 65505 5
## 65721 4
## 65825 4
## 66316 3
## 66433 4
## 66574 4
## 67062 4
## 67388 3
## 67467 3
## 67554 5
## 67682 4
## 67854 5
## 68119 5
## 68275 4
## 68443 4
## 68643 3
## 69054 4
## 69661 2
## 69769 3
## 69967 3
## 70262 2
## 70455 3
## 70619 4
## 70854 5
## 71090 4
## 71303 3
## 71433 2
## 71569 3
## 71834 3
## 72050 4
## 72427 5
## 73153 3
## 73624 4
## 73929 4
## 73951 3
## 73985 2
## 74145 4
## 74454 5
## 74948 4
## 75128 4
## 75231 5
## 75375 4
## 75498 3
## 75598 4
## 75889 3
## 76066 4
## 76634 4
## 76763 3
## 76850 4
## 77220 3
## 77840 4
## 78139 4
## 78888 4
## 79308 4
## 79379 3
## 79417 3
## 79539 3
## 79738 5
## 80162 2
## 80239 4
## 80427 3
## 80611 4
## 80656 4
## 80729 3
## 80880 4
## 81045 4
## 81261 4
## 81571 4
## 82375 3
## 82531 4
## 82847 5
## 82991 3
## 83186 3
## 83256 4
## 83550 3
## 83940 2
## 84222 3
## 84280 4
## 84458 2
## 84539 3
## 84579 3
## 84864 4
## 84926 3
## 86639 4
## 86875 3
## 88974 4
## 89857 2
## 89941 4
## 89987 5
## 90070 4
## 90164 4
## 90382 3
## 90800 3
## 90823 4
## 90841 3
## 93076 4
## 93319 3
## 93371 3
## 93481 3
## 93753 3
## 94783 5
## 95227 3
## 95320 4
## 96864 3
## 96976 4
## 97014 3
## 97206 4
## 97907 4
## 98895 3
## 149 5
## 737 3
## 1459 5
## 1932 5
## 2740 5
## 3877 4
## 4696 4
## 6589 5
## 7098 5
## 7949 5
## 9474 4
## 9771 5
## 10002 4
## 11490 4
## 12278 5
## 12609 3
## 13369 5
## 13648 5
## 13961 4
## 14555 4
## 15777 5
## 16850 3
## 17417 3
## 18539 5
## 18685 5
## 18908 5
## 19086 5
## 19510 5
## 19647 3
## 20089 4
## 20316 1
## 21158 2
## 21402 2
## 21543 2
## 21760 4
## 22033 3
## 22164 1
## 23070 5
## 23132 5
## 23594 5
## 23709 5
## 23975 4
## 24330 3
## 24684 5
## 25050 3
## 25272 4
## 25500 3
## 25638 5
## 25793 5
## 26013 4
## 26329 4
## 26990 5
## 27387 5
## 27624 3
## 27861 5
## 28057 3
## 28198 5
## 28278 5
## 28458 5
## 28996 4
## 29254 5
## 29778 4
## 30125 5
## 31107 4
## 31383 5
## 31491 5
## 31547 5
## 31664 5
## 31870 3
## 32390 4
## 32658 5
## 32785 3
## 34035 3
## 34324 5
## 34970 3
## 35961 5
## 36884 3
## 37410 3
## 40525 1
## 40835 5
## 42076 5
## 42370 4
## 53022 5
## 53961 3
## 54486 4
## 56699 4
## 57331 3
## 57718 3
## 58554 5
## 58748 3
## 58864 5
## 58959 5
## 59234 5
## 59539 3
## 59656 4
## 60041 4
## 61196 4
## 61491 5
## 62557 5
## 63223 5
## 63349 5
## 63530 5
## 63667 5
## 63760 5
## 63923 5
## 64131 5
## 64264 4
## 64375 5
## 64436 5
## 64502 5
## 64560 5
## 64612 5
## 64673 5
## 64793 5
## 64849 5
## 64911 4
## 65020 5
## 65298 5
## 65422 4
## 65655 5
## 65826 5
## 65898 4
## 65993 5
## 66317 5
## 66434 5
## 66575 5
## 66709 3
## 66771 5
## 66880 3
## 67063 5
## 67224 3
## 67468 5
## 67555 5
## 67683 5
## 67981 5
## 68035 5
## 68120 5
## 68444 5
## 68553 5
## 68644 5
## 68741 5
## 68951 5
## 69231 5
## 70138 5
## 71192 5
## 71835 5
## 71972 3
## 72051 5
## 72199 5
## 72437 5
## 72567 5
## 72858 5
## 72895 4
## 72985 5
## 73154 5
## 73264 5
## 73323 5
## 73382 5
## 73425 3
## 73480 5
## 73515 5
## 73559 5
## [ reached 'max' / getOption("max.print") -- omitted 66059 rows ]
We need to join the 2 dataframes. The only thing they have in common are the movie titles.
# Grouped by Genre 1 plot
# Merge the data frames based on movie titles. We will further use this
merged_data <- left_join(movie_data, MovieLenseMeta,
by = c("item" = "title")
)
# Create a new data frame with genres and ratings
genre_ratings <- merged_data %>%
select(Action:Western, rating) %>%
gather(genre, is_genre, Action:Western) %>%
filter(is_genre == 1) %>%
group_by(genre) %>%
summarize(
avg_rating = mean(rating),
median_rating = median(rating)
)
ggplot(genre_ratings, aes(x = genre, y = avg_rating, fill = avg_rating)) +
geom_bar(stat = "identity") +
geom_text(aes(label = round(avg_rating, 2), vjust = -0.5), size = 3) +
coord_cartesian(ylim = c(0, 5)) +
xlab("Genre") +
ylab("Average Rating") +
ggtitle("Distribution of Ratings by Genre") +
scale_fill_gradient(low = "black", high = "blue") +
theme(axis.text.x = element_text(angle = 45, hjust = 1))
# install.packages("testthat")
library(testthat)
##
## Attaching package: 'testthat'
## The following object is masked from 'package:dplyr':
##
## matches
## The following object is masked from 'package:purrr':
##
## is_null
## The following objects are masked from 'package:readr':
##
## edition_get, local_edition
## The following object is masked from 'package:tidyr':
##
## matches
# Grouped by Genre multiple plots
genreRatings <- data.frame()
mergedRatingsGenre <- left_join(df, dfMeta, by = c("item" = "title"))
genreCols <- names(dfMetaGenres)
for (genre in genreCols) {
# Filter the data to only include ratings for movies that belong to the current genre
filteredData <- mergedRatingsGenre[mergedRatingsGenre[genre] == 1, ]
# Add ratings to a new data frame tagged by genre
rows <- data.frame(rating = filteredData$rating, genre = genre)
# Add new rows to result data frame
genreRatings <- rbind(genreRatings, rows)
}
ggplot(
genreRatings,
aes(x = rating)
) +
geom_histogram(binwidth = 0.5, fill = "grey", alpha = 0.7) +
facet_wrap(~genre, scales = "free_y") +
xlab("Rating") +
ylab("Frequency") +
ggtitle("Distribution of User Ratings by Genre") +
theme_minimal()
## test stuff
#test_that("There are more genreRatings because one movie can be specified as multiple genres", {
# expect_false(identical(nrow(genreRatings), nrow(df)))
#})
The distribution of user ratings is overall positive, with the majority of users rating 3 or higher. 3, 4 and 5 dominate the ratings, but the problem with 3 is that there are users for whom a 3-star rating is a bad rating and for others it is a good rating. We will see how to deal with this problem later.
merged_data
## user
## 1 1
## 2 1
## 3 1
## 4 1
## 5 1
## 6 1
## 7 1
## 8 1
## 9 1
## 10 1
## 11 1
## 12 1
## 13 1
## 14 1
## 15 1
## 16 1
## 17 1
## 18 1
## 19 1
## 20 1
## 21 1
## 22 1
## 23 1
## 24 1
## 25 1
## 26 1
## 27 1
## 28 1
## 29 1
## 30 1
## 31 1
## 32 1
## 33 1
## 34 1
## 35 1
## 36 1
## 37 1
## 38 1
## 39 1
## 40 1
## 41 1
## 42 1
## 43 1
## 44 1
## 45 1
## 46 1
## 47 1
## 48 1
## 49 1
## 50 1
## 51 1
## 52 1
## 53 1
## 54 1
## 55 1
## 56 1
## 57 1
## 58 1
## 59 1
## 60 1
## 61 1
## 62 1
## 63 1
## 64 1
## 65 1
## 66 1
## 67 1
## 68 1
## 69 1
## 70 1
## 71 1
## 72 1
## 73 1
## 74 1
## 75 1
## 76 1
## 77 1
## 78 1
## 79 1
## 80 1
## 81 1
## 82 1
## 83 1
## 84 1
## 85 1
## 86 1
## 87 1
## 88 1
## 89 1
## 90 1
## 91 1
## 92 1
## 93 1
## 94 1
## 95 1
## 96 1
## 97 1
## 98 1
## 99 1
## 100 1
## 101 1
## 102 1
## 103 1
## 104 1
## 105 1
## 106 1
## 107 1
## 108 1
## 109 1
## 110 1
## 111 1
## 112 1
## 113 1
## 114 1
## 115 1
## 116 1
## 117 1
## 118 1
## 119 1
## 120 1
## 121 1
## 122 1
## 123 1
## 124 1
## 125 1
## 126 1
## 127 1
## 128 1
## 129 1
## 130 1
## 131 1
## 132 1
## 133 1
## 134 1
## 135 1
## 136 1
## 137 1
## 138 1
## 139 1
## 140 1
## 141 1
## 142 1
## 143 1
## 144 1
## 145 1
## 146 1
## 147 1
## 148 1
## 149 1
## 150 1
## 151 1
## 152 1
## 153 1
## 154 1
## 155 1
## 156 1
## 157 1
## 158 1
## 159 1
## 160 1
## 161 1
## 162 1
## 163 1
## 164 1
## 165 1
## 166 1
## 167 1
## 168 1
## 169 1
## 170 1
## 171 1
## 172 1
## 173 1
## 174 1
## 175 1
## 176 1
## 177 1
## 178 1
## 179 1
## 180 1
## 181 1
## 182 1
## 183 1
## 184 1
## 185 1
## 186 1
## 187 1
## 188 1
## 189 1
## 190 1
## 191 1
## 192 1
## 193 1
## 194 1
## 195 1
## 196 1
## 197 1
## 198 1
## 199 1
## 200 1
## 201 1
## 202 1
## 203 1
## 204 1
## 205 1
## 206 1
## 207 1
## 208 1
## 209 1
## 210 1
## 211 1
## 212 1
## 213 1
## 214 1
## 215 1
## 216 1
## 217 1
## 218 1
## 219 1
## 220 1
## 221 1
## 222 1
## 223 1
## 224 1
## 225 1
## 226 1
## 227 1
## 228 1
## 229 1
## 230 1
## 231 1
## 232 1
## 233 1
## 234 1
## 235 1
## 236 1
## 237 1
## 238 1
## 239 1
## 240 1
## 241 1
## 242 1
## 243 1
## 244 1
## 245 1
## 246 1
## 247 1
## 248 1
## 249 1
## 250 1
## 251 1
## 252 1
## 253 1
## 254 1
## 255 1
## 256 1
## 257 1
## 258 1
## 259 1
## 260 1
## 261 1
## 262 1
## 263 1
## 264 1
## 265 1
## 266 1
## 267 1
## 268 1
## 269 1
## 270 1
## 271 1
## 272 2
## 273 2
## 274 2
## 275 2
## 276 2
## 277 2
## 278 2
## 279 2
## 280 2
## 281 2
## 282 2
## 283 2
## 284 2
## 285 2
## 286 2
## 287 2
## 288 2
## 289 2
## 290 2
## 291 2
## 292 2
## 293 2
## 294 2
## 295 2
## 296 2
## 297 2
## 298 2
## 299 2
## 300 2
## 301 2
## 302 2
## 303 2
## 304 2
## 305 2
## 306 2
## 307 2
## 308 2
## 309 2
## 310 2
## 311 2
## 312 2
## 313 2
## 314 2
## 315 2
## 316 2
## 317 2
## 318 2
## 319 2
## 320 2
## 321 2
## 322 2
## 323 2
## 324 2
## 325 2
## 326 2
## 327 2
## 328 2
## 329 2
## 330 2
## 331 2
## 332 2
## 333 3
## 334 3
## 335 3
## 336 3
## 337 3
## 338 3
## 339 3
## 340 3
## 341 3
## 342 3
## 343 3
## 344 3
## 345 3
## 346 3
## 347 3
## 348 3
## 349 3
## 350 3
## 351 3
## 352 3
## 353 3
## 354 3
## 355 3
## 356 3
## 357 3
## 358 3
## 359 3
## 360 3
## 361 3
## 362 3
## 363 3
## 364 3
## 365 3
## 366 3
## 367 3
## 368 3
## 369 3
## 370 3
## 371 3
## 372 3
## 373 3
## 374 3
## 375 3
## 376 3
## 377 3
## 378 3
## 379 3
## 380 3
## 381 3
## 382 3
## 383 3
## 384 4
## 385 4
## 386 4
## 387 4
## 388 4
## 389 4
## 390 4
## 391 4
## 392 4
## 393 4
## 394 4
## 395 4
## 396 4
## 397 4
## 398 4
## 399 4
## 400 4
## 401 4
## 402 4
## 403 4
## 404 4
## 405 4
## 406 4
## 407 5
## 408 5
## 409 5
## 410 5
## 411 5
## 412 5
## 413 5
## 414 5
## 415 5
## 416 5
## 417 5
## 418 5
## 419 5
## 420 5
## 421 5
## 422 5
## 423 5
## 424 5
## 425 5
## 426 5
## 427 5
## 428 5
## 429 5
## 430 5
## 431 5
## 432 5
## 433 5
## 434 5
## 435 5
## 436 5
## 437 5
## 438 5
## 439 5
## 440 5
## 441 5
## 442 5
## 443 5
## 444 5
## 445 5
## 446 5
## 447 5
## 448 5
## 449 5
## 450 5
## 451 5
## 452 5
## 453 5
## 454 5
## 455 5
## 456 5
## 457 5
## 458 5
## 459 5
## 460 5
## 461 5
## 462 5
## 463 5
## 464 5
## 465 5
## 466 5
## 467 5
## 468 5
## 469 5
## 470 5
## 471 5
## 472 5
## 473 5
## 474 5
## 475 5
## 476 5
## 477 5
## 478 5
## 479 5
## 480 5
## 481 5
## 482 5
## 483 5
## 484 5
## 485 5
## 486 5
## 487 5
## 488 5
## 489 5
## 490 5
## 491 5
## 492 5
## 493 5
## 494 5
## 495 5
## 496 5
## 497 5
## 498 5
## 499 5
## 500 5
## 501 5
## 502 5
## 503 5
## 504 5
## 505 5
## 506 5
## 507 5
## 508 5
## 509 5
## 510 5
## 511 5
## 512 5
## 513 5
## 514 5
## 515 5
## 516 5
## 517 5
## 518 5
## 519 5
## 520 5
## 521 5
## 522 5
## 523 5
## 524 5
## 525 5
## 526 5
## 527 5
## 528 5
## 529 5
## 530 5
## 531 5
## 532 5
## 533 5
## 534 5
## 535 5
## 536 5
## 537 5
## 538 5
## 539 5
## 540 5
## 541 5
## 542 5
## 543 5
## 544 5
## 545 5
## 546 5
## 547 5
## 548 5
## 549 5
## 550 5
## 551 5
## 552 5
## 553 5
## 554 5
## 555 5
## 556 5
## 557 5
## 558 5
## 559 5
## 560 5
## 561 5
## 562 5
## 563 5
## 564 5
## 565 5
## 566 5
## 567 5
## 568 5
## 569 5
## 570 5
## 571 5
## 572 5
## 573 5
## 574 5
## 575 5
## 576 5
## 577 5
## 578 5
## 579 5
## 580 5
## 581 5
## 582 6
## 583 6
## 584 6
## 585 6
## 586 6
## 587 6
## 588 6
## 589 6
## 590 6
## 591 6
## 592 6
## 593 6
## 594 6
## 595 6
## 596 6
## 597 6
## 598 6
## 599 6
## 600 6
## 601 6
## 602 6
## 603 6
## 604 6
## 605 6
## 606 6
## 607 6
## 608 6
## 609 6
## 610 6
## 611 6
## 612 6
## 613 6
## 614 6
## 615 6
## 616 6
## 617 6
## 618 6
## 619 6
## 620 6
## 621 6
## 622 6
## 623 6
## 624 6
## 625 6
## 626 6
## 627 6
## 628 6
## 629 6
## 630 6
## 631 6
## 632 6
## 633 6
## 634 6
## 635 6
## 636 6
## 637 6
## 638 6
## 639 6
## 640 6
## 641 6
## 642 6
## 643 6
## 644 6
## 645 6
## 646 6
## 647 6
## 648 6
## 649 6
## 650 6
## 651 6
## 652 6
## 653 6
## 654 6
## 655 6
## 656 6
## 657 6
## 658 6
## 659 6
## 660 6
## 661 6
## 662 6
## 663 6
## 664 6
## 665 6
## 666 6
## 667 6
## 668 6
## 669 6
## 670 6
## 671 6
## 672 6
## 673 6
## 674 6
## 675 6
## 676 6
## 677 6
## 678 6
## 679 6
## 680 6
## 681 6
## 682 6
## 683 6
## 684 6
## 685 6
## 686 6
## 687 6
## 688 6
## 689 6
## 690 6
## 691 6
## 692 6
## 693 6
## 694 6
## 695 6
## 696 6
## 697 6
## 698 6
## 699 6
## 700 6
## 701 6
## 702 6
## 703 6
## 704 6
## 705 6
## 706 6
## 707 6
## 708 6
## 709 6
## 710 6
## 711 6
## 712 6
## 713 6
## 714 6
## 715 6
## 716 6
## 717 6
## 718 6
## 719 6
## 720 6
## 721 6
## 722 6
## 723 6
## 724 6
## 725 6
## 726 6
## 727 6
## 728 6
## 729 6
## 730 6
## 731 6
## 732 6
## 733 6
## 734 6
## 735 6
## 736 6
## 737 6
## 738 6
## 739 6
## 740 6
## 741 6
## 742 6
## 743 6
## 744 6
## 745 6
## 746 6
## 747 6
## 748 6
## 749 6
## 750 6
## 751 6
## 752 6
## 753 6
## 754 6
## 755 6
## 756 6
## 757 6
## 758 6
## 759 6
## 760 6
## 761 6
## 762 6
## 763 6
## 764 6
## 765 6
## 766 6
## 767 6
## 768 6
## 769 6
## 770 6
## 771 6
## 772 6
## 773 6
## 774 6
## 775 6
## 776 6
## 777 6
## 778 6
## 779 6
## 780 6
## 781 6
## 782 6
## 783 6
## 784 6
## 785 6
## 786 6
## 787 6
## 788 6
## 789 6
## 790 7
## 791 7
## 792 7
## 793 7
## 794 7
## 795 7
## 796 7
## 797 7
## 798 7
## 799 7
## 800 7
## 801 7
## 802 7
## 803 7
## 804 7
## 805 7
## 806 7
## 807 7
## 808 7
## 809 7
## 810 7
## 811 7
## 812 7
## 813 7
## 814 7
## 815 7
## 816 7
## 817 7
## 818 7
## 819 7
## 820 7
## 821 7
## 822 7
## 823 7
## 824 7
## 825 7
## 826 7
## 827 7
## 828 7
## 829 7
## 830 7
## 831 7
## 832 7
## 833 7
## 834 7
## 835 7
## 836 7
## 837 7
## 838 7
## 839 7
## 840 7
## 841 7
## 842 7
## 843 7
## 844 7
## 845 7
## 846 7
## 847 7
## 848 7
## 849 7
## 850 7
## 851 7
## 852 7
## 853 7
## 854 7
## 855 7
## 856 7
## 857 7
## 858 7
## 859 7
## 860 7
## 861 7
## 862 7
## 863 7
## 864 7
## 865 7
## 866 7
## 867 7
## 868 7
## 869 7
## 870 7
## 871 7
## 872 7
## 873 7
## 874 7
## 875 7
## 876 7
## 877 7
## 878 7
## 879 7
## 880 7
## 881 7
## 882 7
## 883 7
## 884 7
## 885 7
## 886 7
## 887 7
## 888 7
## 889 7
## 890 7
## 891 7
## 892 7
## 893 7
## 894 7
## 895 7
## 896 7
## 897 7
## 898 7
## 899 7
## 900 7
## 901 7
## 902 7
## 903 7
## 904 7
## 905 7
## 906 7
## 907 7
## 908 7
## 909 7
## 910 7
## 911 7
## 912 7
## 913 7
## 914 7
## 915 7
## 916 7
## 917 7
## 918 7
## 919 7
## 920 7
## 921 7
## 922 7
## 923 7
## 924 7
## 925 7
## 926 7
## 927 7
## 928 7
## 929 7
## 930 7
## 931 7
## 932 7
## 933 7
## 934 7
## 935 7
## 936 7
## 937 7
## 938 7
## 939 7
## 940 7
## 941 7
## 942 7
## 943 7
## 944 7
## 945 7
## 946 7
## 947 7
## 948 7
## 949 7
## 950 7
## 951 7
## 952 7
## 953 7
## 954 7
## 955 7
## 956 7
## 957 7
## 958 7
## 959 7
## 960 7
## 961 7
## 962 7
## 963 7
## 964 7
## 965 7
## 966 7
## 967 7
## 968 7
## 969 7
## 970 7
## 971 7
## 972 7
## 973 7
## 974 7
## 975 7
## 976 7
## 977 7
## 978 7
## 979 7
## 980 7
## 981 7
## 982 7
## 983 7
## 984 7
## 985 7
## 986 7
## 987 7
## 988 7
## 989 7
## 990 7
## 991 7
## 992 7
## 993 7
## 994 7
## 995 7
## 996 7
## 997 7
## 998 7
## 999 7
## 1000 7
## 1001 7
## 1002 7
## 1003 7
## 1004 7
## 1005 7
## 1006 7
## 1007 7
## 1008 7
## 1009 7
## 1010 7
## 1011 7
## 1012 7
## 1013 7
## 1014 7
## 1015 7
## 1016 7
## 1017 7
## 1018 7
## 1019 7
## 1020 7
## 1021 7
## 1022 7
## 1023 7
## 1024 7
## 1025 7
## 1026 7
## 1027 7
## 1028 7
## 1029 7
## 1030 7
## 1031 7
## 1032 7
## 1033 7
## 1034 7
## 1035 7
## 1036 7
## 1037 7
## 1038 7
## 1039 7
## 1040 7
## 1041 7
## 1042 7
## 1043 7
## 1044 7
## 1045 7
## 1046 7
## 1047 7
## 1048 7
## 1049 7
## 1050 7
## 1051 7
## 1052 7
## 1053 7
## 1054 7
## 1055 7
## 1056 7
## 1057 7
## 1058 7
## 1059 7
## 1060 7
## 1061 7
## 1062 7
## 1063 7
## 1064 7
## 1065 7
## 1066 7
## 1067 7
## 1068 7
## 1069 7
## 1070 7
## 1071 7
## 1072 7
## 1073 7
## 1074 7
## 1075 7
## 1076 7
## 1077 7
## 1078 7
## 1079 7
## 1080 7
## 1081 7
## 1082 7
## 1083 7
## 1084 7
## 1085 7
## 1086 7
## 1087 7
## 1088 7
## 1089 7
## 1090 7
## 1091 7
## 1092 7
## 1093 7
## 1094 7
## 1095 7
## 1096 7
## 1097 7
## 1098 7
## 1099 7
## 1100 7
## 1101 7
## 1102 7
## 1103 7
## 1104 7
## 1105 7
## 1106 7
## 1107 7
## 1108 7
## 1109 7
## 1110 7
## 1111 7
## 1112 7
## 1113 7
## 1114 7
## 1115 7
## 1116 7
## 1117 7
## 1118 7
## 1119 7
## 1120 7
## 1121 7
## 1122 7
## 1123 7
## 1124 7
## 1125 7
## 1126 7
## 1127 7
## 1128 7
## 1129 7
## 1130 7
## 1131 7
## 1132 7
## 1133 7
## 1134 7
## 1135 7
## 1136 7
## 1137 7
## 1138 7
## 1139 7
## 1140 7
## 1141 7
## 1142 7
## 1143 7
## 1144 7
## 1145 7
## 1146 7
## 1147 7
## 1148 7
## 1149 7
## 1150 7
## 1151 7
## 1152 7
## 1153 7
## 1154 7
## 1155 7
## 1156 7
## 1157 7
## 1158 7
## 1159 7
## 1160 7
## 1161 7
## 1162 7
## 1163 7
## 1164 7
## 1165 7
## 1166 7
## 1167 7
## 1168 7
## 1169 7
## 1170 7
## 1171 7
## 1172 7
## 1173 7
## 1174 7
## 1175 7
## 1176 7
## 1177 7
## 1178 7
## 1179 7
## 1180 7
## 1181 7
## 1182 7
## 1183 7
## 1184 7
## 1185 7
## 1186 7
## 1187 7
## 1188 7
## 1189 7
## 1190 8
## 1191 8
## 1192 8
## 1193 8
## 1194 8
## 1195 8
## 1196 8
## 1197 8
## 1198 8
## 1199 8
## 1200 8
## 1201 8
## 1202 8
## 1203 8
## 1204 8
## 1205 8
## 1206 8
## 1207 8
## 1208 8
## 1209 8
## 1210 8
## 1211 8
## 1212 8
## 1213 8
## 1214 8
## 1215 8
## 1216 8
## 1217 8
## 1218 8
## 1219 8
## 1220 8
## 1221 8
## 1222 8
## 1223 8
## 1224 8
## 1225 8
## 1226 8
## 1227 8
## 1228 8
## 1229 8
## 1230 8
## 1231 8
## 1232 8
## 1233 8
## 1234 8
## 1235 8
## 1236 8
## 1237 8
## 1238 8
## 1239 8
## 1240 8
## 1241 8
## 1242 8
## 1243 8
## 1244 8
## 1245 8
## 1246 8
## 1247 8
## 1248 8
## 1249 9
## 1250 9
## 1251 9
## 1252 9
## 1253 9
## 1254 9
## 1255 9
## 1256 9
## 1257 9
## 1258 9
## 1259 9
## 1260 9
## 1261 9
## 1262 9
## 1263 9
## 1264 9
## 1265 9
## 1266 9
## 1267 9
## 1268 9
## 1269 9
## 1270 9
## 1271 10
## 1272 10
## 1273 10
## 1274 10
## 1275 10
## 1276 10
## 1277 10
## 1278 10
## 1279 10
## 1280 10
## 1281 10
## 1282 10
## 1283 10
## 1284 10
## 1285 10
## 1286 10
## 1287 10
## 1288 10
## 1289 10
## 1290 10
## 1291 10
## 1292 10
## 1293 10
## 1294 10
## 1295 10
## 1296 10
## 1297 10
## 1298 10
## 1299 10
## 1300 10
## 1301 10
## 1302 10
## 1303 10
## 1304 10
## 1305 10
## 1306 10
## 1307 10
## 1308 10
## 1309 10
## 1310 10
## 1311 10
## 1312 10
## 1313 10
## 1314 10
## 1315 10
## 1316 10
## 1317 10
## 1318 10
## 1319 10
## 1320 10
## 1321 10
## 1322 10
## 1323 10
## 1324 10
## 1325 10
## 1326 10
## 1327 10
## 1328 10
## 1329 10
## 1330 10
## 1331 10
## 1332 10
## 1333 10
## 1334 10
## 1335 10
## 1336 10
## 1337 10
## 1338 10
## 1339 10
## 1340 10
## 1341 10
## 1342 10
## 1343 10
## 1344 10
## 1345 10
## 1346 10
## 1347 10
## 1348 10
## 1349 10
## 1350 10
## 1351 10
## 1352 10
## 1353 10
## 1354 10
## 1355 10
## 1356 10
## 1357 10
## 1358 10
## 1359 10
## 1360 10
## 1361 10
## 1362 10
## 1363 10
## 1364 10
## 1365 10
## 1366 10
## 1367 10
## 1368 10
## 1369 10
## 1370 10
## 1371 10
## 1372 10
## 1373 10
## 1374 10
## 1375 10
## 1376 10
## 1377 10
## 1378 10
## 1379 10
## 1380 10
## 1381 10
## 1382 10
## 1383 10
## 1384 10
## 1385 10
## 1386 10
## 1387 10
## 1388 10
## 1389 10
## 1390 10
## 1391 10
## 1392 10
## 1393 10
## 1394 10
## 1395 10
## 1396 10
## 1397 10
## 1398 10
## 1399 10
## 1400 10
## 1401 10
## 1402 10
## 1403 10
## 1404 10
## 1405 10
## 1406 10
## 1407 10
## 1408 10
## 1409 10
## 1410 10
## 1411 10
## 1412 10
## 1413 10
## 1414 10
## 1415 10
## 1416 10
## 1417 10
## 1418 10
## 1419 10
## 1420 10
## 1421 10
## 1422 10
## 1423 10
## 1424 10
## 1425 10
## 1426 10
## 1427 10
## 1428 10
## 1429 10
## 1430 10
## 1431 10
## 1432 10
## 1433 10
## 1434 10
## 1435 10
## 1436 10
## 1437 10
## 1438 10
## 1439 10
## 1440 10
## 1441 10
## 1442 10
## 1443 10
## 1444 10
## 1445 10
## 1446 10
## 1447 10
## 1448 10
## 1449 10
## 1450 10
## 1451 10
## 1452 10
## 1453 10
## 1454 10
## 1455 11
## 1456 11
## 1457 11
## 1458 11
## 1459 11
## 1460 11
## 1461 11
## 1462 11
## 1463 11
## 1464 11
## 1465 11
## 1466 11
## 1467 11
## 1468 11
## 1469 11
## 1470 11
## 1471 11
## 1472 11
## 1473 11
## 1474 11
## 1475 11
## 1476 11
## 1477 11
## 1478 11
## 1479 11
## 1480 11
## 1481 11
## 1482 11
## 1483 11
## 1484 11
## 1485 11
## 1486 11
## 1487 11
## 1488 11
## 1489 11
## 1490 11
## 1491 11
## 1492 11
## 1493 11
## 1494 11
## 1495 11
## 1496 11
## 1497 11
## 1498 11
## 1499 11
## 1500 11
## 1501 11
## 1502 11
## 1503 11
## 1504 11
## 1505 11
## 1506 11
## 1507 11
## 1508 11
## 1509 11
## 1510 11
## 1511 11
## 1512 11
## 1513 11
## 1514 11
## 1515 11
## 1516 11
## 1517 11
## 1518 11
## 1519 11
## 1520 11
## 1521 11
## 1522 11
## 1523 11
## 1524 11
## 1525 11
## 1526 11
## 1527 11
## 1528 11
## 1529 11
## 1530 11
## 1531 11
## 1532 11
## 1533 11
## 1534 11
## 1535 11
## 1536 11
## 1537 11
## 1538 11
## 1539 11
## 1540 11
## 1541 11
## 1542 11
## 1543 11
## 1544 11
## 1545 11
## 1546 11
## 1547 11
## 1548 11
## 1549 11
## 1550 11
## 1551 11
## 1552 11
## 1553 11
## 1554 11
## 1555 11
## 1556 11
## 1557 11
## 1558 11
## 1559 11
## 1560 11
## 1561 11
## 1562 11
## 1563 11
## 1564 11
## 1565 11
## 1566 11
## 1567 11
## 1568 11
## 1569 11
## 1570 11
## 1571 11
## 1572 11
## 1573 11
## 1574 11
## 1575 11
## 1576 11
## 1577 11
## 1578 11
## 1579 11
## 1580 11
## 1581 11
## 1582 11
## 1583 11
## 1584 11
## 1585 11
## 1586 11
## 1587 11
## 1588 11
## 1589 11
## 1590 11
## 1591 11
## 1592 11
## 1593 11
## 1594 11
## 1595 11
## 1596 11
## 1597 11
## 1598 11
## 1599 11
## 1600 11
## 1601 11
## 1602 11
## 1603 11
## 1604 11
## 1605 11
## 1606 11
## 1607 11
## 1608 11
## 1609 11
## 1610 11
## 1611 11
## 1612 11
## 1613 11
## 1614 11
## 1615 11
## 1616 11
## 1617 11
## 1618 11
## 1619 11
## 1620 11
## 1621 11
## 1622 11
## 1623 11
## 1624 11
## 1625 11
## 1626 11
## 1627 11
## 1628 11
## 1629 11
## 1630 11
## 1631 11
## 1632 11
## 1633 11
## 1634 11
## 1635 12
## 1636 12
## 1637 12
## 1638 12
## 1639 12
## 1640 12
## 1641 12
## 1642 12
## 1643 12
## 1644 12
## 1645 12
## 1646 12
## 1647 12
## 1648 12
## 1649 12
## 1650 12
## 1651 12
## 1652 12
## 1653 12
## 1654 12
## 1655 12
## 1656 12
## 1657 12
## 1658 12
## 1659 12
## 1660 12
## 1661 12
## 1662 12
## 1663 12
## 1664 12
## 1665 12
## 1666 12
## 1667 12
## 1668 12
## 1669 12
## 1670 12
## 1671 12
## 1672 12
## 1673 12
## 1674 12
## 1675 12
## 1676 12
## 1677 12
## 1678 12
## 1679 12
## 1680 12
## 1681 12
## 1682 12
## 1683 12
## 1684 12
## 1685 12
## 1686 13
## 1687 13
## 1688 13
## 1689 13
## 1690 13
## 1691 13
## 1692 13
## 1693 13
## 1694 13
## 1695 13
## 1696 13
## 1697 13
## 1698 13
## 1699 13
## 1700 13
## 1701 13
## 1702 13
## 1703 13
## 1704 13
## 1705 13
## 1706 13
## 1707 13
## 1708 13
## 1709 13
## 1710 13
## 1711 13
## 1712 13
## 1713 13
## 1714 13
## 1715 13
## 1716 13
## 1717 13
## 1718 13
## 1719 13
## 1720 13
## 1721 13
## 1722 13
## 1723 13
## 1724 13
## 1725 13
## 1726 13
## 1727 13
## 1728 13
## 1729 13
## 1730 13
## 1731 13
## 1732 13
## 1733 13
## 1734 13
## 1735 13
## 1736 13
## 1737 13
## 1738 13
## 1739 13
## 1740 13
## 1741 13
## 1742 13
## 1743 13
## 1744 13
## 1745 13
## 1746 13
## 1747 13
## 1748 13
## 1749 13
## 1750 13
## 1751 13
## 1752 13
## 1753 13
## 1754 13
## 1755 13
## 1756 13
## 1757 13
## 1758 13
## 1759 13
## 1760 13
## 1761 13
## 1762 13
## 1763 13
## 1764 13
## 1765 13
## 1766 13
## 1767 13
## 1768 13
## 1769 13
## 1770 13
## 1771 13
## 1772 13
## 1773 13
## 1774 13
## 1775 13
## 1776 13
## 1777 13
## 1778 13
## 1779 13
## 1780 13
## 1781 13
## 1782 13
## 1783 13
## 1784 13
## 1785 13
## 1786 13
## 1787 13
## 1788 13
## 1789 13
## 1790 13
## 1791 13
## 1792 13
## 1793 13
## 1794 13
## 1795 13
## 1796 13
## 1797 13
## 1798 13
## 1799 13
## 1800 13
## 1801 13
## 1802 13
## 1803 13
## 1804 13
## 1805 13
## 1806 13
## 1807 13
## 1808 13
## 1809 13
## 1810 13
## 1811 13
## 1812 13
## 1813 13
## 1814 13
## 1815 13
## 1816 13
## 1817 13
## 1818 13
## 1819 13
## 1820 13
## 1821 13
## 1822 13
## 1823 13
## 1824 13
## 1825 13
## 1826 13
## 1827 13
## 1828 13
## 1829 13
## 1830 13
## 1831 13
## 1832 13
## 1833 13
## 1834 13
## 1835 13
## 1836 13
## 1837 13
## 1838 13
## 1839 13
## 1840 13
## 1841 13
## 1842 13
## 1843 13
## 1844 13
## 1845 13
## 1846 13
## 1847 13
## 1848 13
## 1849 13
## 1850 13
## 1851 13
## 1852 13
## 1853 13
## 1854 13
## 1855 13
## 1856 13
## 1857 13
## 1858 13
## 1859 13
## 1860 13
## 1861 13
## 1862 13
## 1863 13
## 1864 13
## 1865 13
## 1866 13
## 1867 13
## 1868 13
## 1869 13
## 1870 13
## 1871 13
## 1872 13
## 1873 13
## 1874 13
## 1875 13
## 1876 13
## 1877 13
## 1878 13
## 1879 13
## 1880 13
## 1881 13
## 1882 13
## 1883 13
## 1884 13
## 1885 13
## 1886 13
## 1887 13
## 1888 13
## 1889 13
## 1890 13
## 1891 13
## 1892 13
## 1893 13
## 1894 13
## 1895 13
## 1896 13
## 1897 13
## 1898 13
## 1899 13
## 1900 13
## 1901 13
## 1902 13
## 1903 13
## 1904 13
## 1905 13
## 1906 13
## 1907 13
## 1908 13
## 1909 13
## 1910 13
## 1911 13
## 1912 13
## 1913 13
## 1914 13
## 1915 13
## 1916 13
## 1917 13
## 1918 13
## 1919 13
## 1920 13
## 1921 13
## 1922 13
## 1923 13
## 1924 13
## 1925 13
## 1926 13
## 1927 13
## 1928 13
## 1929 13
## 1930 13
## 1931 13
## 1932 13
## 1933 13
## 1934 13
## 1935 13
## 1936 13
## 1937 13
## 1938 13
## 1939 13
## 1940 13
## 1941 13
## 1942 13
## 1943 13
## 1944 13
## 1945 13
## 1946 13
## 1947 13
## 1948 13
## 1949 13
## 1950 13
## 1951 13
## 1952 13
## 1953 13
## 1954 13
## 1955 13
## 1956 13
## 1957 13
## 1958 13
## 1959 13
## 1960 13
## 1961 13
## 1962 13
## 1963 13
## 1964 13
## 1965 13
## 1966 13
## 1967 13
## 1968 13
## 1969 13
## 1970 13
## 1971 13
## 1972 13
## 1973 13
## 1974 13
## 1975 13
## 1976 13
## 1977 13
## 1978 13
## 1979 13
## 1980 13
## 1981 13
## 1982 13
## 1983 13
## 1984 13
## 1985 13
## 1986 13
## 1987 13
## 1988 13
## 1989 13
## 1990 13
## 1991 13
## 1992 13
## 1993 13
## 1994 13
## 1995 13
## 1996 13
## 1997 13
## 1998 13
## 1999 13
## 2000 13
## 2001 13
## 2002 13
## 2003 13
## 2004 13
## 2005 13
## 2006 13
## 2007 13
## 2008 13
## 2009 13
## 2010 13
## 2011 13
## 2012 13
## 2013 13
## 2014 13
## 2015 13
## 2016 13
## 2017 13
## 2018 13
## 2019 13
## 2020 13
## 2021 13
## 2022 13
## 2023 13
## 2024 13
## 2025 13
## 2026 13
## 2027 13
## 2028 13
## 2029 13
## 2030 13
## 2031 13
## 2032 13
## 2033 13
## 2034 13
## 2035 13
## 2036 13
## 2037 13
## 2038 13
## 2039 13
## 2040 13
## 2041 13
## 2042 13
## 2043 13
## 2044 13
## 2045 13
## 2046 13
## 2047 13
## 2048 13
## 2049 13
## 2050 13
## 2051 13
## 2052 13
## 2053 13
## 2054 13
## 2055 13
## 2056 13
## 2057 13
## 2058 13
## 2059 13
## 2060 13
## 2061 13
## 2062 13
## 2063 13
## 2064 13
## 2065 13
## 2066 13
## 2067 13
## 2068 13
## 2069 13
## 2070 13
## 2071 13
## 2072 13
## 2073 13
## 2074 13
## 2075 13
## 2076 13
## 2077 13
## 2078 13
## 2079 13
## 2080 13
## 2081 13
## 2082 13
## 2083 13
## 2084 13
## 2085 13
## 2086 13
## 2087 13
## 2088 13
## 2089 13
## 2090 13
## 2091 13
## 2092 13
## 2093 13
## 2094 13
## 2095 13
## 2096 13
## 2097 13
## 2098 13
## 2099 13
## 2100 13
## 2101 13
## 2102 13
## 2103 13
## 2104 13
## 2105 13
## 2106 13
## 2107 13
## 2108 13
## 2109 13
## 2110 13
## 2111 13
## 2112 13
## 2113 13
## 2114 13
## 2115 13
## 2116 13
## 2117 13
## 2118 13
## 2119 13
## 2120 13
## 2121 13
## 2122 13
## 2123 13
## 2124 13
## 2125 13
## 2126 13
## 2127 13
## 2128 13
## 2129 13
## 2130 13
## 2131 13
## 2132 13
## 2133 13
## 2134 13
## 2135 13
## 2136 13
## 2137 13
## 2138 13
## 2139 13
## 2140 13
## 2141 13
## 2142 13
## 2143 13
## 2144 13
## 2145 13
## 2146 13
## 2147 13
## 2148 13
## 2149 13
## 2150 13
## 2151 13
## 2152 13
## 2153 13
## 2154 13
## 2155 13
## 2156 13
## 2157 13
## 2158 13
## 2159 13
## 2160 13
## 2161 13
## 2162 13
## 2163 13
## 2164 13
## 2165 13
## 2166 13
## 2167 13
## 2168 13
## 2169 13
## 2170 13
## 2171 13
## 2172 13
## 2173 13
## 2174 13
## 2175 13
## 2176 13
## 2177 13
## 2178 13
## 2179 13
## 2180 13
## 2181 13
## 2182 13
## 2183 13
## 2184 13
## 2185 13
## 2186 13
## 2187 13
## 2188 13
## 2189 13
## 2190 13
## 2191 13
## 2192 13
## 2193 13
## 2194 13
## 2195 13
## 2196 13
## 2197 13
## 2198 13
## 2199 13
## 2200 13
## 2201 13
## 2202 13
## 2203 13
## 2204 13
## 2205 13
## 2206 13
## 2207 13
## 2208 13
## 2209 13
## 2210 13
## 2211 13
## 2212 13
## 2213 13
## 2214 13
## 2215 13
## 2216 13
## 2217 13
## 2218 13
## 2219 13
## 2220 13
## 2221 13
## 2222 13
## 2223 13
## 2224 13
## 2225 13
## 2226 13
## 2227 13
## 2228 13
## 2229 13
## 2230 13
## 2231 13
## 2232 13
## 2233 13
## 2234 13
## 2235 13
## 2236 13
## 2237 13
## 2238 13
## 2239 13
## 2240 13
## 2241 13
## 2242 13
## 2243 13
## 2244 13
## 2245 13
## 2246 13
## 2247 13
## 2248 13
## 2249 13
## 2250 13
## 2251 13
## 2252 13
## 2253 13
## 2254 13
## 2255 13
## 2256 13
## 2257 13
## 2258 13
## 2259 13
## 2260 13
## 2261 13
## 2262 13
## 2263 13
## 2264 13
## 2265 13
## 2266 13
## 2267 13
## 2268 13
## 2269 13
## 2270 13
## 2271 13
## 2272 13
## 2273 13
## 2274 13
## 2275 13
## 2276 13
## 2277 13
## 2278 13
## 2279 13
## 2280 13
## 2281 13
## 2282 13
## 2283 13
## 2284 13
## 2285 13
## 2286 13
## 2287 13
## 2288 13
## 2289 13
## 2290 13
## 2291 13
## 2292 13
## 2293 13
## 2294 13
## 2295 13
## 2296 13
## 2297 13
## 2298 13
## 2299 13
## 2300 13
## 2301 13
## 2302 13
## 2303 13
## 2304 13
## 2305 13
## 2306 13
## 2307 13
## 2308 13
## 2309 13
## 2310 13
## 2311 13
## 2312 13
## 2313 13
## 2314 13
## 2315 13
## 2316 14
## 2317 14
## 2318 14
## 2319 14
## 2320 14
## 2321 14
## 2322 14
## 2323 14
## 2324 14
## 2325 14
## 2326 14
## 2327 14
## 2328 14
## 2329 14
## 2330 14
## 2331 14
## 2332 14
## 2333 14
## 2334 14
## 2335 14
## 2336 14
## 2337 14
## 2338 14
## 2339 14
## 2340 14
## 2341 14
## 2342 14
## 2343 14
## 2344 14
## 2345 14
## 2346 14
## 2347 14
## 2348 14
## 2349 14
## 2350 14
## 2351 14
## 2352 14
## 2353 14
## 2354 14
## 2355 14
## 2356 14
## 2357 14
## 2358 14
## 2359 14
## 2360 14
## 2361 14
## 2362 14
## 2363 14
## 2364 14
## 2365 14
## 2366 14
## 2367 14
## 2368 14
## 2369 14
## 2370 14
## 2371 14
## 2372 14
## 2373 14
## 2374 14
## 2375 14
## 2376 14
## 2377 14
## 2378 14
## 2379 14
## 2380 14
## 2381 14
## 2382 14
## 2383 14
## 2384 14
## 2385 14
## 2386 14
## 2387 14
## 2388 14
## 2389 14
## 2390 14
## 2391 14
## 2392 14
## 2393 14
## 2394 14
## 2395 14
## 2396 14
## 2397 14
## 2398 14
## 2399 14
## 2400 14
## 2401 14
## 2402 14
## 2403 14
## 2404 14
## 2405 14
## 2406 14
## 2407 14
## 2408 14
## 2409 14
## 2410 14
## 2411 14
## 2412 14
## 2413 14
## 2414 15
## 2415 15
## 2416 15
## 2417 15
## 2418 15
## 2419 15
## 2420 15
## 2421 15
## 2422 15
## 2423 15
## 2424 15
## 2425 15
## 2426 15
## 2427 15
## 2428 15
## 2429 15
## 2430 15
## 2431 15
## 2432 15
## 2433 15
## 2434 15
## 2435 15
## 2436 15
## 2437 15
## 2438 15
## 2439 15
## 2440 15
## 2441 15
## 2442 15
## 2443 15
## 2444 15
## 2445 15
## 2446 15
## 2447 15
## 2448 15
## 2449 15
## 2450 15
## 2451 15
## 2452 15
## 2453 15
## 2454 15
## 2455 15
## 2456 15
## 2457 15
## 2458 15
## 2459 15
## 2460 15
## 2461 15
## 2462 15
## 2463 15
## 2464 15
## 2465 15
## 2466 15
## 2467 15
## 2468 15
## 2469 15
## 2470 15
## 2471 15
## 2472 15
## 2473 15
## 2474 15
## 2475 15
## 2476 15
## 2477 15
## 2478 15
## 2479 15
## 2480 15
## 2481 15
## 2482 15
## 2483 15
## 2484 15
## 2485 15
## 2486 15
## 2487 15
## 2488 15
## 2489 15
## 2490 15
## 2491 15
## 2492 15
## 2493 15
## 2494 15
## 2495 15
## 2496 15
## 2497 15
## 2498 15
## 2499 15
## 2500 15
## 2501 15
## 2502 15
## 2503 15
## 2504 15
## 2505 15
## 2506 15
## 2507 15
## 2508 15
## 2509 15
## 2510 15
## 2511 15
## 2512 15
## 2513 15
## 2514 15
## 2515 15
## 2516 15
## 2517 16
## 2518 16
## 2519 16
## 2520 16
## 2521 16
## 2522 16
## 2523 16
## 2524 16
## 2525 16
## 2526 16
## 2527 16
## 2528 16
## 2529 16
## 2530 16
## 2531 16
## 2532 16
## 2533 16
## 2534 16
## 2535 16
## 2536 16
## 2537 16
## 2538 16
## 2539 16
## 2540 16
## 2541 16
## 2542 16
## 2543 16
## 2544 16
## 2545 16
## 2546 16
## 2547 16
## 2548 16
## 2549 16
## 2550 16
## 2551 16
## 2552 16
## 2553 16
## 2554 16
## 2555 16
## 2556 16
## 2557 16
## 2558 16
## 2559 16
## 2560 16
## 2561 16
## 2562 16
## 2563 16
## 2564 16
## 2565 16
## 2566 16
## 2567 16
## 2568 16
## 2569 16
## 2570 16
## 2571 16
## 2572 16
## 2573 16
## 2574 16
## 2575 16
## 2576 16
## 2577 16
## 2578 16
## 2579 16
## 2580 16
## 2581 16
## 2582 16
## 2583 16
## 2584 16
## 2585 16
## 2586 16
## 2587 16
## 2588 16
## 2589 16
## 2590 16
## 2591 16
## 2592 16
## 2593 16
## 2594 16
## 2595 16
## 2596 16
## 2597 16
## 2598 16
## 2599 16
## 2600 16
## 2601 16
## 2602 16
## 2603 16
## 2604 16
## 2605 16
## 2606 16
## 2607 16
## 2608 16
## 2609 16
## 2610 16
## 2611 16
## 2612 16
## 2613 16
## 2614 16
## 2615 16
## 2616 16
## 2617 16
## 2618 16
## 2619 16
## 2620 16
## 2621 16
## 2622 16
## 2623 16
## 2624 16
## 2625 16
## 2626 16
## 2627 16
## 2628 16
## 2629 16
## 2630 16
## 2631 16
## 2632 16
## 2633 16
## 2634 16
## 2635 16
## 2636 16
## 2637 16
## 2638 16
## 2639 16
## 2640 16
## 2641 16
## 2642 16
## 2643 16
## 2644 16
## 2645 16
## 2646 16
## 2647 16
## 2648 16
## 2649 16
## 2650 16
## 2651 16
## 2652 16
## 2653 16
## 2654 16
## 2655 16
## 2656 16
## 2657 17
## 2658 17
## 2659 17
## 2660 17
## 2661 17
## 2662 17
## 2663 17
## 2664 17
## 2665 17
## 2666 17
## 2667 17
## 2668 17
## 2669 17
## 2670 17
## 2671 17
## 2672 17
## 2673 17
## 2674 17
## 2675 17
## 2676 17
## 2677 17
## 2678 17
## 2679 17
## 2680 17
## 2681 17
## 2682 17
## 2683 17
## 2684 17
## 2685 18
## 2686 18
## 2687 18
## 2688 18
## 2689 18
## 2690 18
## 2691 18
## 2692 18
## 2693 18
## 2694 18
## 2695 18
## 2696 18
## 2697 18
## 2698 18
## 2699 18
## 2700 18
## 2701 18
## 2702 18
## 2703 18
## 2704 18
## 2705 18
## 2706 18
## 2707 18
## 2708 18
## 2709 18
## 2710 18
## 2711 18
## 2712 18
## 2713 18
## 2714 18
## 2715 18
## 2716 18
## 2717 18
## 2718 18
## 2719 18
## 2720 18
## 2721 18
## 2722 18
## 2723 18
## 2724 18
## 2725 18
## 2726 18
## 2727 18
## 2728 18
## 2729 18
## 2730 18
## 2731 18
## 2732 18
## 2733 18
## 2734 18
## 2735 18
## 2736 18
## 2737 18
## 2738 18
## 2739 18
## 2740 18
## 2741 18
## 2742 18
## 2743 18
## 2744 18
## 2745 18
## 2746 18
## 2747 18
## 2748 18
## 2749 18
## 2750 18
## 2751 18
## 2752 18
## 2753 18
## 2754 18
## 2755 18
## 2756 18
## 2757 18
## 2758 18
## 2759 18
## 2760 18
## 2761 18
## 2762 18
## 2763 18
## 2764 18
## 2765 18
## 2766 18
## 2767 18
## 2768 18
## 2769 18
## 2770 18
## 2771 18
## 2772 18
## 2773 18
## 2774 18
## 2775 18
## 2776 18
## 2777 18
## 2778 18
## 2779 18
## 2780 18
## 2781 18
## 2782 18
## 2783 18
## 2784 18
## 2785 18
## 2786 18
## 2787 18
## 2788 18
## 2789 18
## 2790 18
## 2791 18
## 2792 18
## 2793 18
## 2794 18
## 2795 18
## 2796 18
## 2797 18
## 2798 18
## 2799 18
## 2800 18
## 2801 18
## 2802 18
## 2803 18
## 2804 18
## 2805 18
## 2806 18
## 2807 18
## 2808 18
## 2809 18
## 2810 18
## 2811 18
## 2812 18
## 2813 18
## 2814 18
## 2815 18
## 2816 18
## 2817 18
## 2818 18
## 2819 18
## 2820 18
## 2821 18
## 2822 18
## 2823 18
## 2824 18
## 2825 18
## 2826 18
## 2827 18
## 2828 18
## 2829 18
## 2830 18
## 2831 18
## 2832 18
## 2833 18
## 2834 18
## 2835 18
## 2836 18
## 2837 18
## 2838 18
## 2839 18
## 2840 18
## 2841 18
## 2842 18
## 2843 18
## 2844 18
## 2845 18
## 2846 18
## 2847 18
## 2848 18
## 2849 18
## 2850 18
## 2851 18
## 2852 18
## 2853 18
## 2854 18
## 2855 18
## 2856 18
## 2857 18
## 2858 18
## 2859 18
## 2860 18
## 2861 18
## 2862 18
## 2863 18
## 2864 18
## 2865 18
## 2866 18
## 2867 18
## 2868 18
## 2869 18
## 2870 18
## 2871 18
## 2872 18
## 2873 18
## 2874 18
## 2875 18
## 2876 18
## 2877 18
## 2878 18
## 2879 18
## 2880 18
## 2881 18
## 2882 18
## 2883 18
## 2884 18
## 2885 18
## 2886 18
## 2887 18
## 2888 18
## 2889 18
## 2890 18
## 2891 18
## 2892 18
## 2893 18
## 2894 18
## 2895 18
## 2896 18
## 2897 18
## 2898 18
## 2899 18
## 2900 18
## 2901 18
## 2902 18
## 2903 18
## 2904 18
## 2905 18
## 2906 18
## 2907 18
## 2908 18
## 2909 18
## 2910 18
## 2911 18
## 2912 18
## 2913 18
## 2914 18
## 2915 18
## 2916 18
## 2917 18
## 2918 18
## 2919 18
## 2920 18
## 2921 18
## 2922 18
## 2923 18
## 2924 18
## 2925 18
## 2926 18
## 2927 18
## 2928 18
## 2929 18
## 2930 18
## 2931 18
## 2932 18
## 2933 18
## 2934 18
## 2935 18
## 2936 18
## 2937 18
## 2938 18
## 2939 18
## 2940 18
## 2941 18
## 2942 18
## 2943 18
## 2944 18
## 2945 18
## 2946 18
## 2947 18
## 2948 18
## 2949 18
## 2950 18
## 2951 18
## 2952 18
## 2953 18
## 2954 18
## 2955 18
## 2956 18
## 2957 18
## 2958 18
## 2959 18
## 2960 18
## 2961 18
## 2962 19
## 2963 19
## 2964 19
## 2965 19
## 2966 19
## 2967 19
## 2968 19
## 2969 19
## 2970 19
## 2971 19
## 2972 19
## 2973 19
## 2974 19
## 2975 19
## 2976 19
## 2977 19
## 2978 19
## 2979 19
## 2980 19
## 2981 20
## 2982 20
## 2983 20
## 2984 20
## 2985 20
## 2986 20
## 2987 20
## 2988 20
## 2989 20
## 2990 20
## 2991 20
## 2992 20
## 2993 20
## 2994 20
## 2995 20
## 2996 20
## 2997 20
## 2998 20
## 2999 20
## 3000 20
## 3001 20
## 3002 20
## 3003 20
## 3004 20
## 3005 20
## 3006 20
## 3007 20
## 3008 20
## 3009 20
## 3010 20
## 3011 20
## 3012 20
## 3013 20
## 3014 20
## 3015 20
## 3016 20
## 3017 20
## 3018 20
## 3019 20
## 3020 20
## 3021 20
## 3022 20
## 3023 20
## 3024 20
## 3025 20
## 3026 20
## 3027 20
## 3028 20
## 3029 21
## 3030 21
## 3031 21
## 3032 21
## 3033 21
## 3034 21
## 3035 21
## 3036 21
## 3037 21
## 3038 21
## 3039 21
## 3040 21
## 3041 21
## 3042 21
## 3043 21
## 3044 21
## 3045 21
## 3046 21
## 3047 21
## 3048 21
## 3049 21
## 3050 21
## 3051 21
## 3052 21
## 3053 21
## 3054 21
## 3055 21
## 3056 21
## 3057 21
## 3058 21
## 3059 21
## 3060 21
## 3061 21
## 3062 21
## 3063 21
## 3064 21
## 3065 21
## 3066 21
## 3067 21
## 3068 21
## 3069 21
## 3070 21
## 3071 21
## 3072 21
## 3073 21
## 3074 21
## 3075 21
## 3076 21
## 3077 21
## 3078 21
## 3079 21
## 3080 21
## 3081 21
## 3082 21
## 3083 21
## 3084 21
## 3085 21
## 3086 21
## 3087 21
## 3088 21
## 3089 21
## 3090 21
## 3091 21
## 3092 21
## 3093 21
## 3094 21
## 3095 21
## 3096 21
## 3097 21
## 3098 21
## 3099 21
## 3100 21
## 3101 21
## 3102 21
## 3103 21
## 3104 21
## 3105 21
## 3106 21
## 3107 21
## 3108 21
## 3109 21
## 3110 21
## 3111 21
## 3112 21
## 3113 21
## 3114 21
## 3115 21
## 3116 21
## 3117 21
## 3118 21
## 3119 21
## 3120 21
## 3121 21
## 3122 21
## 3123 21
## 3124 21
## 3125 21
## 3126 21
## 3127 21
## 3128 21
## 3129 21
## 3130 21
## 3131 21
## 3132 21
## 3133 21
## 3134 21
## 3135 21
## 3136 21
## 3137 21
## 3138 21
## 3139 21
## 3140 21
## 3141 21
## 3142 21
## 3143 21
## 3144 21
## 3145 21
## 3146 21
## 3147 21
## 3148 21
## 3149 21
## 3150 21
## 3151 21
## 3152 21
## 3153 21
## 3154 21
## 3155 21
## 3156 21
## 3157 21
## 3158 21
## 3159 21
## 3160 21
## 3161 21
## 3162 21
## 3163 21
## 3164 21
## 3165 21
## 3166 21
## 3167 21
## 3168 21
## 3169 21
## 3170 21
## 3171 21
## 3172 21
## 3173 21
## 3174 21
## 3175 21
## 3176 21
## 3177 21
## 3178 21
## 3179 21
## 3180 21
## 3181 21
## 3182 21
## 3183 21
## 3184 21
## 3185 21
## 3186 21
## 3187 21
## 3188 21
## 3189 21
## 3190 21
## 3191 21
## 3192 21
## 3193 21
## 3194 21
## 3195 21
## 3196 21
## 3197 21
## 3198 21
## 3199 21
## 3200 21
## 3201 21
## 3202 21
## 3203 21
## 3204 21
## 3205 21
## 3206 22
## 3207 22
## 3208 22
## 3209 22
## 3210 22
## 3211 22
## 3212 22
## 3213 22
## 3214 22
## 3215 22
## 3216 22
## 3217 22
## 3218 22
## 3219 22
## 3220 22
## 3221 22
## 3222 22
## 3223 22
## 3224 22
## 3225 22
## 3226 22
## 3227 22
## 3228 22
## 3229 22
## 3230 22
## 3231 22
## 3232 22
## 3233 22
## 3234 22
## 3235 22
## 3236 22
## 3237 22
## 3238 22
## 3239 22
## 3240 22
## 3241 22
## 3242 22
## 3243 22
## 3244 22
## 3245 22
## 3246 22
## 3247 22
## 3248 22
## 3249 22
## 3250 22
## 3251 22
## 3252 22
## 3253 22
## 3254 22
## 3255 22
## 3256 22
## 3257 22
## 3258 22
## 3259 22
## 3260 22
## 3261 22
## 3262 22
## 3263 22
## 3264 22
## 3265 22
## 3266 22
## 3267 22
## 3268 22
## 3269 22
## 3270 22
## 3271 22
## 3272 22
## 3273 22
## 3274 22
## 3275 22
## 3276 22
## 3277 22
## 3278 22
## 3279 22
## 3280 22
## 3281 22
## 3282 22
## 3283 22
## 3284 22
## 3285 22
## 3286 22
## 3287 22
## 3288 22
## 3289 22
## 3290 22
## 3291 22
## 3292 22
## 3293 22
## 3294 22
## 3295 22
## 3296 22
## 3297 22
## 3298 22
## 3299 22
## 3300 22
## 3301 22
## 3302 22
## 3303 22
## 3304 22
## 3305 22
## 3306 22
## 3307 22
## 3308 22
## 3309 22
## 3310 22
## 3311 22
## 3312 22
## 3313 22
## 3314 22
## 3315 22
## 3316 22
## 3317 22
## 3318 22
## 3319 22
## 3320 22
## 3321 22
## 3322 22
## 3323 22
## 3324 22
## 3325 22
## 3326 22
## 3327 22
## 3328 22
## 3329 22
## 3330 22
## 3331 22
## 3332 22
## 3333 23
## 3334 23
## 3335 23
## 3336 23
## 3337 23
## 3338 23
## 3339 23
## 3340 23
## 3341 23
## 3342 23
## 3343 23
## 3344 23
## 3345 23
## 3346 23
## 3347 23
## 3348 23
## 3349 23
## 3350 23
## 3351 23
## 3352 23
## 3353 23
## 3354 23
## 3355 23
## 3356 23
## 3357 23
## 3358 23
## 3359 23
## 3360 23
## 3361 23
## 3362 23
## 3363 23
## 3364 23
## 3365 23
## 3366 23
## 3367 23
## 3368 23
## 3369 23
## 3370 23
## 3371 23
## 3372 23
## 3373 23
## 3374 23
## 3375 23
## 3376 23
## 3377 23
## 3378 23
## 3379 23
## 3380 23
## 3381 23
## 3382 23
## 3383 23
## 3384 23
## 3385 23
## 3386 23
## 3387 23
## 3388 23
## 3389 23
## 3390 23
## 3391 23
## 3392 23
## 3393 23
## 3394 23
## 3395 23
## 3396 23
## 3397 23
## 3398 23
## 3399 23
## 3400 23
## 3401 23
## 3402 23
## 3403 23
## 3404 23
## 3405 23
## 3406 23
## 3407 23
## 3408 23
## 3409 23
## 3410 23
## 3411 23
## 3412 23
## 3413 23
## 3414 23
## 3415 23
## 3416 23
## 3417 23
## 3418 23
## 3419 23
## 3420 23
## 3421 23
## 3422 23
## 3423 23
## 3424 23
## 3425 23
## 3426 23
## 3427 23
## 3428 23
## 3429 23
## 3430 23
## 3431 23
## 3432 23
## 3433 23
## 3434 23
## 3435 23
## 3436 23
## 3437 23
## 3438 23
## 3439 23
## 3440 23
## 3441 23
## 3442 23
## 3443 23
## 3444 23
## 3445 23
## 3446 23
## 3447 23
## 3448 23
## 3449 23
## 3450 23
## 3451 23
## 3452 23
## 3453 23
## 3454 23
## 3455 23
## 3456 23
## 3457 23
## 3458 23
## 3459 23
## 3460 23
## 3461 23
## 3462 23
## 3463 23
## 3464 23
## 3465 23
## 3466 23
## 3467 23
## 3468 23
## 3469 23
## 3470 23
## 3471 23
## 3472 23
## 3473 23
## 3474 23
## 3475 23
## 3476 23
## 3477 23
## 3478 23
## 3479 23
## 3480 23
## 3481 23
## 3482 23
## 3483 23
## 3484 24
## 3485 24
## 3486 24
## 3487 24
## 3488 24
## 3489 24
## 3490 24
## 3491 24
## 3492 24
## 3493 24
## 3494 24
## 3495 24
## 3496 24
## 3497 24
## 3498 24
## 3499 24
## 3500 24
## 3501 24
## 3502 24
## 3503 24
## 3504 24
## 3505 24
## 3506 24
## 3507 24
## 3508 24
## 3509 24
## 3510 24
## 3511 24
## 3512 24
## 3513 24
## 3514 24
## 3515 24
## 3516 24
## 3517 24
## 3518 24
## 3519 24
## 3520 24
## 3521 24
## 3522 24
## 3523 24
## 3524 24
## 3525 24
## 3526 24
## 3527 24
## 3528 24
## 3529 24
## 3530 24
## 3531 24
## 3532 24
## 3533 24
## 3534 24
## 3535 24
## 3536 24
## 3537 24
## 3538 24
## 3539 24
## 3540 24
## 3541 24
## 3542 24
## 3543 24
## 3544 24
## 3545 24
## 3546 24
## 3547 24
## 3548 24
## 3549 24
## 3550 24
## 3551 24
## 3552 25
## 3553 25
## 3554 25
## 3555 25
## 3556 25
## 3557 25
## 3558 25
## 3559 25
## 3560 25
## 3561 25
## 3562 25
## 3563 25
## 3564 25
## 3565 25
## 3566 25
## 3567 25
## 3568 25
## 3569 25
## 3570 25
## 3571 25
## 3572 25
## 3573 25
## 3574 25
## 3575 25
## 3576 25
## 3577 25
## 3578 25
## 3579 25
## 3580 25
## 3581 25
## 3582 25
## 3583 25
## 3584 25
## 3585 25
## 3586 25
## 3587 25
## 3588 25
## 3589 25
## 3590 25
## 3591 25
## 3592 25
## 3593 25
## 3594 25
## 3595 25
## 3596 25
## 3597 25
## 3598 25
## 3599 25
## 3600 25
## 3601 25
## 3602 25
## 3603 25
## 3604 25
## 3605 25
## 3606 25
## 3607 25
## 3608 25
## 3609 25
## 3610 25
## 3611 25
## 3612 25
## 3613 25
## 3614 25
## 3615 25
## 3616 25
## 3617 25
## 3618 25
## 3619 25
## 3620 25
## 3621 25
## 3622 25
## 3623 25
## 3624 25
## 3625 25
## 3626 25
## 3627 25
## 3628 25
## 3629 25
## 3630 26
## 3631 26
## 3632 26
## 3633 26
## 3634 26
## 3635 26
## 3636 26
## 3637 26
## 3638 26
## 3639 26
## 3640 26
## 3641 26
## 3642 26
## 3643 26
## 3644 26
## 3645 26
## 3646 26
## 3647 26
## 3648 26
## 3649 26
## 3650 26
## 3651 26
## 3652 26
## 3653 26
## 3654 26
## 3655 26
## 3656 26
## 3657 26
## 3658 26
## 3659 26
## 3660 26
## 3661 26
## 3662 26
## 3663 26
## 3664 26
## 3665 26
## 3666 26
## 3667 26
## 3668 26
## 3669 26
## 3670 26
## 3671 26
## 3672 26
## 3673 26
## 3674 26
## 3675 26
## 3676 26
## 3677 26
## 3678 26
## 3679 26
## 3680 26
## 3681 26
## 3682 26
## 3683 26
## 3684 26
## 3685 26
## 3686 26
## 3687 26
## 3688 26
## 3689 26
## 3690 26
## 3691 26
## 3692 26
## 3693 26
## 3694 26
## 3695 26
## 3696 26
## 3697 26
## 3698 26
## 3699 26
## 3700 26
## 3701 26
## 3702 26
## 3703 26
## 3704 26
## 3705 26
## 3706 26
## 3707 26
## 3708 26
## 3709 26
## 3710 26
## 3711 26
## 3712 26
## 3713 26
## 3714 26
## 3715 26
## 3716 26
## 3717 26
## 3718 26
## 3719 26
## 3720 26
## 3721 26
## 3722 26
## 3723 26
## 3724 26
## 3725 26
## 3726 26
## 3727 26
## 3728 26
## 3729 26
## 3730 26
## 3731 26
## 3732 26
## 3733 26
## 3734 26
## 3735 26
## 3736 26
## 3737 27
## 3738 27
## 3739 27
## 3740 27
## 3741 27
## 3742 27
## 3743 27
## 3744 27
## 3745 27
## 3746 27
## 3747 27
## 3748 27
## 3749 27
## 3750 27
## 3751 27
## 3752 27
## 3753 27
## 3754 27
## 3755 27
## 3756 27
## 3757 27
## 3758 27
## 3759 27
## 3760 27
## 3761 27
## 3762 28
## 3763 28
## 3764 28
## 3765 28
## 3766 28
## 3767 28
## 3768 28
## 3769 28
## 3770 28
## 3771 28
## 3772 28
## 3773 28
## 3774 28
## 3775 28
## 3776 28
## 3777 28
## 3778 28
## 3779 28
## 3780 28
## 3781 28
## 3782 28
## 3783 28
## 3784 28
## 3785 28
## 3786 28
## 3787 28
## 3788 28
## 3789 28
## 3790 28
## 3791 28
## 3792 28
## 3793 28
## 3794 28
## 3795 28
## 3796 28
## 3797 28
## 3798 28
## 3799 28
## 3800 28
## 3801 28
## 3802 28
## 3803 28
## 3804 28
## 3805 28
## 3806 28
## 3807 28
## 3808 28
## 3809 28
## 3810 28
## 3811 28
## 3812 28
## 3813 28
## 3814 28
## 3815 28
## 3816 28
## 3817 28
## 3818 28
## 3819 28
## 3820 28
## 3821 28
## 3822 28
## 3823 28
## 3824 28
## 3825 28
## 3826 28
## 3827 28
## 3828 28
## 3829 28
## 3830 28
## 3831 28
## 3832 28
## 3833 28
## 3834 28
## 3835 28
## 3836 28
## 3837 28
## 3838 28
## 3839 28
## 3840 29
## 3841 29
## 3842 29
## 3843 29
## 3844 29
## 3845 29
## 3846 29
## 3847 29
## 3848 29
## 3849 29
## 3850 29
## 3851 29
## 3852 29
## 3853 29
## 3854 29
## 3855 29
## 3856 29
## 3857 29
## 3858 29
## 3859 29
## 3860 29
## 3861 29
## 3862 29
## 3863 29
## 3864 29
## 3865 29
## 3866 29
## 3867 29
## 3868 29
## 3869 29
## 3870 29
## 3871 29
## 3872 30
## 3873 30
## 3874 30
## 3875 30
## 3876 30
## 3877 30
## 3878 30
## 3879 30
## 3880 30
## 3881 30
## 3882 30
## 3883 30
## 3884 30
## 3885 30
## 3886 30
## 3887 30
## 3888 30
## 3889 30
## 3890 30
## 3891 30
## 3892 30
## 3893 30
## 3894 30
## 3895 30
## 3896 30
## 3897 30
## 3898 30
## 3899 30
## 3900 30
## 3901 30
## 3902 30
## 3903 30
## 3904 30
## 3905 30
## 3906 30
## 3907 30
## 3908 30
## 3909 30
## 3910 30
## 3911 30
## 3912 30
## 3913 30
## 3914 30
## 3915 31
## 3916 31
## 3917 31
## 3918 31
## 3919 31
## 3920 31
## 3921 31
## 3922 31
## 3923 31
## 3924 31
## 3925 31
## 3926 31
## 3927 31
## 3928 31
## 3929 31
## 3930 31
## 3931 31
## 3932 31
## 3933 31
## 3934 31
## 3935 31
## 3936 31
## 3937 31
## 3938 31
## 3939 31
## 3940 31
## 3941 31
## 3942 31
## 3943 31
## 3944 31
## 3945 31
## 3946 31
## 3947 31
## 3948 31
## 3949 32
## 3950 32
## 3951 32
## 3952 32
## 3953 32
## 3954 32
## 3955 32
## 3956 32
## 3957 32
## 3958 32
## 3959 32
## 3960 32
## 3961 32
## 3962 32
## 3963 32
## 3964 32
## 3965 32
## 3966 32
## 3967 32
## 3968 32
## 3969 32
## 3970 32
## 3971 32
## 3972 32
## 3973 32
## 3974 32
## 3975 32
## 3976 32
## 3977 32
## 3978 32
## 3979 32
## 3980 32
## 3981 32
## 3982 32
## 3983 32
## 3984 32
## 3985 32
## 3986 32
## 3987 32
## 3988 32
## 3989 33
## 3990 33
## 3991 33
## 3992 33
## 3993 33
## 3994 33
## 3995 33
## 3996 33
## 3997 33
## 3998 33
## 3999 33
## 4000 33
## 4001 33
## 4002 33
## 4003 33
## 4004 33
## 4005 33
## 4006 33
## 4007 33
## 4008 33
## 4009 33
## 4010 33
## 4011 33
## 4012 34
## 4013 34
## 4014 34
## 4015 34
## 4016 34
## 4017 34
## 4018 34
## 4019 34
## 4020 34
## 4021 34
## 4022 34
## 4023 34
## 4024 34
## 4025 34
## 4026 34
## 4027 34
## 4028 34
## 4029 34
## 4030 34
## 4031 34
## 4032 35
## 4033 35
## 4034 35
## 4035 35
## 4036 35
## 4037 35
## 4038 35
## 4039 35
## 4040 35
## 4041 35
## 4042 35
## 4043 35
## 4044 35
## 4045 35
## 4046 35
## 4047 35
## 4048 35
## 4049 35
## 4050 35
## 4051 35
## 4052 35
## 4053 35
## 4054 35
## 4055 36
## 4056 36
## 4057 36
## 4058 36
## 4059 36
## 4060 36
## 4061 36
## 4062 36
## 4063 36
## 4064 36
## 4065 36
## 4066 36
## 4067 36
## 4068 36
## 4069 36
## 4070 36
## 4071 36
## 4072 36
## 4073 36
## 4074 37
## 4075 37
## 4076 37
## 4077 37
## 4078 37
## 4079 37
## 4080 37
## 4081 37
## 4082 37
## 4083 37
## 4084 37
## 4085 37
## 4086 37
## 4087 37
## 4088 37
## 4089 37
## 4090 37
## 4091 37
## 4092 37
## 4093 37
## 4094 37
## 4095 37
## 4096 37
## 4097 37
## 4098 37
## 4099 37
## 4100 37
## 4101 37
## 4102 37
## 4103 37
## 4104 37
## 4105 37
## 4106 37
## 4107 37
## 4108 37
## 4109 37
## 4110 37
## 4111 37
## 4112 37
## 4113 37
## 4114 37
## 4115 37
## 4116 37
## 4117 37
## 4118 37
## 4119 37
## 4120 37
## 4121 37
## 4122 37
## 4123 37
## 4124 37
## 4125 37
## 4126 37
## 4127 37
## 4128 37
## 4129 37
## 4130 37
## 4131 38
## 4132 38
## 4133 38
## 4134 38
## 4135 38
## 4136 38
## 4137 38
## 4138 38
## 4139 38
## 4140 38
## 4141 38
## 4142 38
## 4143 38
## 4144 38
## 4145 38
## 4146 38
## 4147 38
## 4148 38
## 4149 38
## 4150 38
## 4151 38
## 4152 38
## 4153 38
## 4154 38
## 4155 38
## 4156 38
## 4157 38
## 4158 38
## 4159 38
## 4160 38
## 4161 38
## 4162 38
## 4163 38
## 4164 38
## 4165 38
## 4166 38
## item
## 1 Toy Story (1995)
## 2 GoldenEye (1995)
## 3 Four Rooms (1995)
## 4 Get Shorty (1995)
## 5 Copycat (1995)
## 6 Shanghai Triad (Yao a yao yao dao waipo qiao) (1995)
## 7 Twelve Monkeys (1995)
## 8 Babe (1995)
## 9 Dead Man Walking (1995)
## 10 Richard III (1995)
## 11 Seven (Se7en) (1995)
## 12 Usual Suspects, The (1995)
## 13 Mighty Aphrodite (1995)
## 14 Postino, Il (1994)
## 15 Mr. Holland's Opus (1995)
## 16 French Twist (Gazon maudit) (1995)
## 17 From Dusk Till Dawn (1996)
## 18 White Balloon, The (1995)
## 19 Antonia's Line (1995)
## 20 Angels and Insects (1995)
## 21 Muppet Treasure Island (1996)
## 22 Braveheart (1995)
## 23 Taxi Driver (1976)
## 24 Rumble in the Bronx (1995)
## 25 Birdcage, The (1996)
## 26 Brothers McMullen, The (1995)
## 27 Bad Boys (1995)
## 28 Apollo 13 (1995)
## 29 Batman Forever (1995)
## 30 Belle de jour (1967)
## 31 Crimson Tide (1995)
## 32 Crumb (1994)
## 33 Desperado (1995)
## 34 Doom Generation, The (1995)
## 35 Free Willy 2: The Adventure Home (1995)
## 36 Mad Love (1995)
## 37 Nadja (1994)
## 38 Net, The (1995)
## 39 Strange Days (1995)
## 40 To Wong Foo, Thanks for Everything! Julie Newmar (1995)
## 41 Billy Madison (1995)
## 42 Clerks (1994)
## 43 Disclosure (1994)
## 44 Dolores Claiborne (1994)
## 45 Eat Drink Man Woman (1994)
## 46 Exotica (1994)
## 47 Ed Wood (1994)
## 48 Hoop Dreams (1994)
## 49 I.Q. (1994)
## 50 Star Wars (1977)
## 51 Legends of the Fall (1994)
## 52 Madness of King George, The (1994)
## 53 Natural Born Killers (1994)
## 54 Outbreak (1995)
## 55 Professional, The (1994)
## 56 Pulp Fiction (1994)
## 57 Priest (1994)
## 58 Quiz Show (1994)
## 59 Three Colors: Red (1994)
## 60 Three Colors: Blue (1993)
## 61 Three Colors: White (1994)
## 62 Stargate (1994)
## 63 Santa Clause, The (1994)
## 64 Shawshank Redemption, The (1994)
## 65 What's Eating Gilbert Grape (1993)
## 66 While You Were Sleeping (1995)
## 67 Ace Ventura: Pet Detective (1994)
## 68 Crow, The (1994)
## 69 Forrest Gump (1994)
## 70 Four Weddings and a Funeral (1994)
## 71 Lion King, The (1994)
## 72 Mask, The (1994)
## 73 Maverick (1994)
## 74 Faster Pussycat! Kill! Kill! (1965)
## 75 Brother Minister: The Assassination of Malcolm X (1994)
## 76 Carlito's Way (1993)
## 77 Firm, The (1993)
## 78 Free Willy (1993)
## 79 Fugitive, The (1993)
## 80 Hot Shots! Part Deux (1993)
## 81 Hudsucker Proxy, The (1994)
## 82 Jurassic Park (1993)
## 83 Much Ado About Nothing (1993)
## 84 Robert A. Heinlein's The Puppet Masters (1994)
## 85 Ref, The (1994)
## 86 Remains of the Day, The (1993)
## 87 Searching for Bobby Fischer (1993)
## 88 Sleepless in Seattle (1993)
## 89 Blade Runner (1982)
## 90 So I Married an Axe Murderer (1993)
## 91 Nightmare Before Christmas, The (1993)
## 92 True Romance (1993)
## 93 Welcome to the Dollhouse (1995)
## 94 Home Alone (1990)
## 95 Aladdin (1992)
## 96 Terminator 2: Judgment Day (1991)
## 97 Dances with Wolves (1990)
## 98 Silence of the Lambs, The (1991)
## 99 Snow White and the Seven Dwarfs (1937)
## 100 Fargo (1996)
## 101 Heavy Metal (1981)
## 102 Aristocats, The (1970)
## 103 All Dogs Go to Heaven 2 (1996)
## 104 Theodore Rex (1995)
## 105 Sgt. Bilko (1996)
## 106 Diabolique (1996)
## 107 Moll Flanders (1996)
## 108 Kids in the Hall: Brain Candy (1996)
## 109 Mystery Science Theater 3000: The Movie (1996)
## 110 Operation Dumbo Drop (1995)
## 111 Truth About Cats & Dogs, The (1996)
## 112 Flipper (1996)
## 113 Horseman on the Roof, The (Hussard sur le toit, Le) (1995)
## 114 Wallace & Gromit: The Best of Aardman Animation (1996)
## 115 Haunted World of Edward D. Wood Jr., The (1995)
## 116 Cold Comfort Farm (1995)
## 117 Rock, The (1996)
## 118 Twister (1996)
## 119 Maya Lin: A Strong Clear Vision (1994)
## 120 Striptease (1996)
## 121 Independence Day (ID4) (1996)
## 122 Cable Guy, The (1996)
## 123 Frighteners, The (1996)
## 124 Lone Star (1996)
## 125 Phenomenon (1996)
## 126 Spitfire Grill, The (1996)
## 127 Godfather, The (1972)
## 128 Supercop (1992)
## 129 Bound (1996)
## 130 Kansas City (1996)
## 131 Breakfast at Tiffany's (1961)
## 132 Wizard of Oz, The (1939)
## 133 Gone with the Wind (1939)
## 134 Citizen Kane (1941)
## 135 2001: A Space Odyssey (1968)
## 136 Mr. Smith Goes to Washington (1939)
## 137 Big Night (1996)
## 138 D3: The Mighty Ducks (1996)
## 139 Love Bug, The (1969)
## 140 Homeward Bound: The Incredible Journey (1993)
## 141 20,000 Leagues Under the Sea (1954)
## 142 Bedknobs and Broomsticks (1971)
## 143 Sound of Music, The (1965)
## 144 Die Hard (1988)
## 145 Lawnmower Man, The (1992)
## 146 Unhook the Stars (1996)
## 147 Long Kiss Goodnight, The (1996)
## 148 Ghost and the Darkness, The (1996)
## 149 Jude (1996)
## 150 Swingers (1996)
## 151 Willy Wonka and the Chocolate Factory (1971)
## 152 Sleeper (1973)
## 153 Fish Called Wanda, A (1988)
## 154 Monty Python's Life of Brian (1979)
## 155 Dirty Dancing (1987)
## 156 Reservoir Dogs (1992)
## 157 Platoon (1986)
## 158 Weekend at Bernie's (1989)
## 159 Basic Instinct (1992)
## 160 Glengarry Glen Ross (1992)
## 161 Top Gun (1986)
## 162 On Golden Pond (1981)
## 163 Return of the Pink Panther, The (1974)
## 164 Abyss, The (1989)
## 165 Jean de Florette (1986)
## 166 Manon of the Spring (Manon des sources) (1986)
## 167 Private Benjamin (1980)
## 168 Monty Python and the Holy Grail (1974)
## 169 Wrong Trousers, The (1993)
## 170 Cinema Paradiso (1988)
## 171 Delicatessen (1991)
## 172 Empire Strikes Back, The (1980)
## 173 Princess Bride, The (1987)
## 174 Raiders of the Lost Ark (1981)
## 175 Brazil (1985)
## 176 Aliens (1986)
## 177 Good, The Bad and The Ugly, The (1966)
## 178 12 Angry Men (1957)
## 179 Clockwork Orange, A (1971)
## 180 Apocalypse Now (1979)
## 181 Return of the Jedi (1983)
## 182 GoodFellas (1990)
## 183 Alien (1979)
## 184 Army of Darkness (1993)
## 185 Psycho (1960)
## 186 Blues Brothers, The (1980)
## 187 Godfather: Part II, The (1974)
## 188 Full Metal Jacket (1987)
## 189 Grand Day Out, A (1992)
## 190 Henry V (1989)
## 191 Amadeus (1984)
## 192 Raging Bull (1980)
## 193 Right Stuff, The (1983)
## 194 Sting, The (1973)
## 195 Terminator, The (1984)
## 196 Dead Poets Society (1989)
## 197 Graduate, The (1967)
## 198 Nikita (La Femme Nikita) (1990)
## 199 Bridge on the River Kwai, The (1957)
## 200 Shining, The (1980)
## 201 Evil Dead II (1987)
## 202 Groundhog Day (1993)
## 203 Unforgiven (1992)
## 204 Back to the Future (1985)
## 205 Patton (1970)
## 206 Akira (1988)
## 207 Cyrano de Bergerac (1990)
## 208 Young Frankenstein (1974)
## 209 This Is Spinal Tap (1984)
## 210 Indiana Jones and the Last Crusade (1989)
## 211 M*A*S*H (1970)
## 212 Unbearable Lightness of Being, The (1988)
## 213 Room with a View, A (1986)
## 214 Pink Floyd - The Wall (1982)
## 215 Field of Dreams (1989)
## 216 When Harry Met Sally... (1989)
## 217 Bram Stoker's Dracula (1992)
## 218 Cape Fear (1991)
## 219 Nightmare on Elm Street, A (1984)
## 220 Mirror Has Two Faces, The (1996)
## 221 Breaking the Waves (1996)
## 222 Star Trek: First Contact (1996)
## 223 Sling Blade (1996)
## 224 Ridicule (1996)
## 225 101 Dalmatians (1996)
## 226 Die Hard 2 (1990)
## 227 Star Trek VI: The Undiscovered Country (1991)
## 228 Star Trek: The Wrath of Khan (1982)
## 229 Star Trek III: The Search for Spock (1984)
## 230 Star Trek IV: The Voyage Home (1986)
## 231 Batman Returns (1992)
## 232 Young Guns (1988)
## 233 Under Siege (1992)
## 234 Jaws (1975)
## 235 Mars Attacks! (1996)
## 236 Citizen Ruth (1996)
## 237 Jerry Maguire (1996)
## 238 Raising Arizona (1987)
## 239 Sneakers (1992)
## 240 Beavis and Butt-head Do America (1996)
## 241 Last of the Mohicans, The (1992)
## 242 Kolya (1996)
## 243 Jungle2Jungle (1997)
## 244 Smilla's Sense of Snow (1997)
## 245 Devil's Own, The (1997)
## 246 Chasing Amy (1997)
## 247 Turbo: A Power Rangers Movie (1997)
## 248 Grosse Pointe Blank (1997)
## 249 Austin Powers: International Man of Mystery (1997)
## 250 Fifth Element, The (1997)
## 251 Shall We Dance? (1996)
## 252 Lost World: Jurassic Park, The (1997)
## 253 Pillow Book, The (1995)
## 254 Batman & Robin (1997)
## 255 My Best Friend's Wedding (1997)
## 256 When the Cats Away (Chacun cherche son chat) (1996)
## 257 Men in Black (1997)
## 258 Contact (1997)
## 259 George of the Jungle (1997)
## 260 Event Horizon (1997)
## 261 Air Bud (1997)
## 262 In the Company of Men (1997)
## 263 Steel (1997)
## 264 Mimic (1997)
## 265 Hunt for Red October, The (1990)
## 266 Kull the Conqueror (1997)
## 267 unknown
## 268 Full Monty, The (1997)
## 269 Gattaca (1997)
## 270 Starship Troopers (1997)
## 271 Good Will Hunting (1997)
## 272 Toy Story (1995)
## 273 Richard III (1995)
## 274 Mighty Aphrodite (1995)
## 275 Postino, Il (1994)
## 276 Antonia's Line (1995)
## 277 Birdcage, The (1996)
## 278 Star Wars (1977)
## 279 Fargo (1996)
## 280 Truth About Cats & Dogs, The (1996)
## 281 Godfather, The (1972)
## 282 Jerry Maguire (1996)
## 283 Kolya (1996)
## 284 Shall We Dance? (1996)
## 285 My Best Friend's Wedding (1997)
## 286 Men in Black (1997)
## 287 Contact (1997)
## 288 Full Monty, The (1997)
## 289 Good Will Hunting (1997)
## 290 Heat (1995)
## 291 Sabrina (1995)
## 292 Sense and Sensibility (1995)
## 293 Leaving Las Vegas (1995)
## 294 Restoration (1995)
## 295 Bed of Roses (1996)
## 296 Once Upon a Time... When We Were Colored (1995)
## 297 Up Close and Personal (1996)
## 298 River Wild, The (1994)
## 299 Time to Kill, A (1996)
## 300 Emma (1996)
## 301 Tin Cup (1996)
## 302 Secrets & Lies (1996)
## 303 English Patient, The (1996)
## 304 Marvin's Room (1996)
## 305 Scream (1996)
## 306 Evita (1996)
## 307 Fierce Creatures (1997)
## 308 Absolute Power (1997)
## 309 Rosewood (1997)
## 310 Donnie Brasco (1997)
## 311 Liar Liar (1997)
## 312 Breakdown (1997)
## 313 Promesse, La (1996)
## 314 Ulee's Gold (1997)
## 315 Face/Off (1997)
## 316 Hoodlum (1997)
## 317 Air Force One (1997)
## 318 In & Out (1997)
## 319 L.A. Confidential (1997)
## 320 Fly Away Home (1996)
## 321 Ice Storm, The (1997)
## 322 Mrs. Brown (Her Majesty, Mrs. Brown) (1997)
## 323 Devil's Advocate, The (1997)
## 324 FairyTale: A True Story (1997)
## 325 Deceiver (1997)
## 326 Rainmaker, The (1997)
## 327 Wings of the Dove, The (1997)
## 328 Midnight in the Garden of Good and Evil (1997)
## 329 Titanic (1997)
## 330 3 Ninjas: High Noon At Mega Mountain (1998)
## 331 Apt Pupil (1998)
## 332 As Good As It Gets (1997)
## 333 Return of the Jedi (1983)
## 334 Devil's Own, The (1997)
## 335 Contact (1997)
## 336 Event Horizon (1997)
## 337 Mimic (1997)
## 338 Starship Troopers (1997)
## 339 Good Will Hunting (1997)
## 340 Scream (1996)
## 341 Liar Liar (1997)
## 342 Hoodlum (1997)
## 343 Air Force One (1997)
## 344 L.A. Confidential (1997)
## 345 Devil's Advocate, The (1997)
## 346 In the Name of the Father (1993)
## 347 Schindler's List (1993)
## 348 Everyone Says I Love You (1996)
## 349 Paradise Lost: The Child Murders at Robin Hood Hills (1996)
## 350 Mother (1996)
## 351 Murder at 1600 (1997)
## 352 Dante's Peak (1997)
## 353 Lost Highway (1997)
## 354 Crash (1996)
## 355 G.I. Jane (1997)
## 356 Cop Land (1997)
## 357 Conspiracy Theory (1997)
## 358 Desperate Measures (1998)
## 359 187 (1997)
## 360 Edge, The (1997)
## 361 Kiss the Girls (1997)
## 362 Game, The (1997)
## 363 U Turn (1997)
## 364 How to Be a Player (1997)
## 365 Playing God (1997)
## 366 House of Yes, The (1997)
## 367 Bean (1997)
## 368 Mad City (1997)
## 369 Boogie Nights (1997)
## 370 Critical Care (1997)
## 371 Man Who Knew Too Little, The (1997)
## 372 Alien: Resurrection (1997)
## 373 Apostle, The (1997)
## 374 Deconstructing Harry (1997)
## 375 Jackie Brown (1997)
## 376 Wag the Dog (1997)
## 377 Hard Rain (1998)
## 378 Fallen (1998)
## 379 Prophecy II, The (1998)
## 380 Spice World (1997)
## 381 Deep Rising (1998)
## 382 Wedding Singer, The (1998)
## 383 Sphere (1998)
## 384 Seven (Se7en) (1995)
## 385 Star Wars (1977)
## 386 Indiana Jones and the Last Crusade (1989)
## 387 Contact (1997)
## 388 Event Horizon (1997)
## 389 Mimic (1997)
## 390 Starship Troopers (1997)
## 391 Scream (1996)
## 392 Liar Liar (1997)
## 393 Air Force One (1997)
## 394 In & Out (1997)
## 395 Lost Highway (1997)
## 396 Cop Land (1997)
## 397 Conspiracy Theory (1997)
## 398 Desperate Measures (1998)
## 399 Wedding Singer, The (1998)
## 400 Client, The (1994)
## 401 One Flew Over the Cuckoo's Nest (1975)
## 402 Spawn (1997)
## 403 Assignment, The (1997)
## 404 Wonderland (1997)
## 405 Incognito (1997)
## 406 Blues Brothers 2000 (1998)
## 407 Toy Story (1995)
## 408 GoldenEye (1995)
## 409 From Dusk Till Dawn (1996)
## 410 Muppet Treasure Island (1996)
## 411 Rumble in the Bronx (1995)
## 412 Birdcage, The (1996)
## 413 Batman Forever (1995)
## 414 To Wong Foo, Thanks for Everything! Julie Newmar (1995)
## 415 Clerks (1994)
## 416 Star Wars (1977)
## 417 Stargate (1994)
## 418 Santa Clause, The (1994)
## 419 While You Were Sleeping (1995)
## 420 Forrest Gump (1994)
## 421 Four Weddings and a Funeral (1994)
## 422 Fugitive, The (1993)
## 423 Hot Shots! Part Deux (1993)
## 424 Blade Runner (1982)
## 425 So I Married an Axe Murderer (1993)
## 426 Home Alone (1990)
## 427 Aladdin (1992)
## 428 Silence of the Lambs, The (1991)
## 429 Snow White and the Seven Dwarfs (1937)
## 430 Fargo (1996)
## 431 Heavy Metal (1981)
## 432 Aristocats, The (1970)
## 433 Sgt. Bilko (1996)
## 434 Mystery Science Theater 3000: The Movie (1996)
## 435 Operation Dumbo Drop (1995)
## 436 Independence Day (ID4) (1996)
## 437 2001: A Space Odyssey (1968)
## 438 Love Bug, The (1969)
## 439 Sound of Music, The (1965)
## 440 Die Hard (1988)
## 441 Lawnmower Man, The (1992)
## 442 Willy Wonka and the Chocolate Factory (1971)
## 443 Fish Called Wanda, A (1988)
## 444 Monty Python's Life of Brian (1979)
## 445 On Golden Pond (1981)
## 446 Return of the Pink Panther, The (1974)
## 447 Private Benjamin (1980)
## 448 Monty Python and the Holy Grail (1974)
## 449 Wrong Trousers, The (1993)
## 450 Empire Strikes Back, The (1980)
## 451 Princess Bride, The (1987)
## 452 Raiders of the Lost Ark (1981)
## 453 Aliens (1986)
## 454 Return of the Jedi (1983)
## 455 Alien (1979)
## 456 Psycho (1960)
## 457 Blues Brothers, The (1980)
## 458 Grand Day Out, A (1992)
## 459 Sting, The (1973)
## 460 Shining, The (1980)
## 461 Back to the Future (1985)
## 462 Young Frankenstein (1974)
## 463 This Is Spinal Tap (1984)
## 464 Indiana Jones and the Last Crusade (1989)
## 465 M*A*S*H (1970)
## 466 Pink Floyd - The Wall (1982)
## 467 When Harry Met Sally... (1989)
## 468 Nightmare on Elm Street, A (1984)
## 469 Star Trek: First Contact (1996)
## 470 101 Dalmatians (1996)
## 471 Die Hard 2 (1990)
## 472 Star Trek VI: The Undiscovered Country (1991)
## 473 Star Trek: The Wrath of Khan (1982)
## 474 Star Trek III: The Search for Spock (1984)
## 475 Star Trek IV: The Voyage Home (1986)
## 476 Batman Returns (1992)
## 477 Under Siege (1992)
## 478 Jaws (1975)
## 479 Mars Attacks! (1996)
## 480 Sneakers (1992)
## 481 Last of the Mohicans, The (1992)
## 482 Jungle2Jungle (1997)
## 483 Fifth Element, The (1997)
## 484 Men in Black (1997)
## 485 George of the Jungle (1997)
## 486 unknown
## 487 Sudden Death (1995)
## 488 Ace Ventura: When Nature Calls (1995)
## 489 Powder (1995)
## 490 Dangerous Minds (1995)
## 491 Clueless (1995)
## 492 Bio-Dome (1996)
## 493 Black Sheep (1996)
## 494 Mary Reilly (1996)
## 495 Bridges of Madison County, The (1995)
## 496 Jeffrey (1995)
## 497 Judge Dredd (1995)
## 498 Mighty Morphin Power Rangers: The Movie (1995)
## 499 Showgirls (1995)
## 500 Houseguest (1994)
## 501 Heavyweights (1994)
## 502 Miracle on 34th Street (1994)
## 503 Tales From the Crypt Presents: Demon Knight (1995)
## 504 Star Trek: Generations (1994)
## 505 Muriel's Wedding (1994)
## 506 Adventures of Priscilla, Queen of the Desert, The (1994)
## 507 Flintstones, The (1994)
## 508 Naked Gun 33 1/3: The Final Insult (1994)
## 509 True Lies (1994)
## 510 Addams Family Values (1993)
## 511 Age of Innocence, The (1993)
## 512 Beverly Hills Cop III (1994)
## 513 Black Beauty (1994)
## 514 Fear of a Black Hat (1993)
## 515 Last Action Hero (1993)
## 516 Man Without a Face, The (1993)
## 517 Mrs. Doubtfire (1993)
## 518 Radioland Murders (1994)
## 519 Robin Hood: Men in Tights (1993)
## 520 Serial Mom (1994)
## 521 Striking Distance (1993)
## 522 Super Mario Bros. (1993)
## 523 Three Musketeers, The (1993)
## 524 Little Rascals, The (1994)
## 525 Brady Bunch Movie, The (1995)
## 526 Ghost (1990)
## 527 Batman (1989)
## 528 Pinocchio (1940)
## 529 Mission: Impossible (1996)
## 530 Thinner (1996)
## 531 Spy Hard (1996)
## 532 Close Shave, A (1995)
## 533 Jack (1996)
## 534 Kingpin (1996)
## 535 Nutty Professor, The (1996)
## 536 Very Brady Sequel, A (1996)
## 537 Tales from the Crypt Presents: Bordello of Blood (1996)
## 538 My Favorite Year (1982)
## 539 Apple Dumpling Gang, The (1975)
## 540 Old Yeller (1957)
## 541 Parent Trap, The (1961)
## 542 Cinderella (1950)
## 543 Mary Poppins (1964)
## 544 Alice in Wonderland (1951)
## 545 William Shakespeare's Romeo and Juliet (1996)
## 546 Aladdin and the King of Thieves (1996)
## 547 E.T. the Extra-Terrestrial (1982)
## 548 Children of the Corn: The Gathering (1996)
## 549 Bob Roberts (1992)
## 550 Transformers: The Movie, The (1986)
## 551 To Kill a Mockingbird (1962)
## 552 Harold and Maude (1971)
## 553 Day the Earth Stood Still, The (1951)
## 554 Duck Soup (1933)
## 555 Highlander (1986)
## 556 Fantasia (1940)
## 557 Heathers (1989)
## 558 Forbidden Planet (1956)
## 559 Butch Cassidy and the Sundance Kid (1969)
## 560 American Werewolf in London, An (1981)
## 561 Amityville 1992: It's About Time (1992)
## 562 Amityville 3-D (1983)
## 563 Amityville: A New Generation (1993)
## 564 Amityville II: The Possession (1982)
## 565 Amityville Horror, The (1979)
## 566 Amityville Curse, The (1990)
## 567 Birds, The (1963)
## 568 Blob, The (1958)
## 569 Body Snatcher, The (1945)
## 570 Burnt Offerings (1976)
## 571 Carrie (1976)
## 572 Omen, The (1976)
## 573 Star Trek: The Motion Picture (1979)
## 574 Star Trek V: The Final Frontier (1989)
## 575 Grease (1978)
## 576 Jaws 2 (1978)
## 577 Jaws 3-D (1983)
## 578 Bastard Out of Carolina (1996)
## 579 Jackie Chan's First Strike (1996)
## 580 Beverly Hills Ninja (1997)
## 581 Free Willy 3: The Rescue (1997)
## 582 Toy Story (1995)
## 583 Twelve Monkeys (1995)
## 584 Babe (1995)
## 585 Dead Man Walking (1995)
## 586 Usual Suspects, The (1995)
## 587 Mighty Aphrodite (1995)
## 588 Postino, Il (1994)
## 589 Mr. Holland's Opus (1995)
## 590 Antonia's Line (1995)
## 591 Muppet Treasure Island (1996)
## 592 Braveheart (1995)
## 593 Taxi Driver (1976)
## 594 Apollo 13 (1995)
## 595 Crumb (1994)
## 596 Ed Wood (1994)
## 597 Star Wars (1977)
## 598 Pulp Fiction (1994)
## 599 Three Colors: Red (1994)
## 600 Shawshank Redemption, The (1994)
## 601 Forrest Gump (1994)
## 602 Four Weddings and a Funeral (1994)
## 603 Lion King, The (1994)
## 604 Fugitive, The (1993)
## 605 Hudsucker Proxy, The (1994)
## 606 Remains of the Day, The (1993)
## 607 Searching for Bobby Fischer (1993)
## 608 Blade Runner (1982)
## 609 Aladdin (1992)
## 610 Silence of the Lambs, The (1991)
## 611 Fargo (1996)
## 612 Truth About Cats & Dogs, The (1996)
## 613 Rock, The (1996)
## 614 Lone Star (1996)
## 615 Phenomenon (1996)
## 616 Godfather, The (1972)
## 617 Breakfast at Tiffany's (1961)
## 618 Wizard of Oz, The (1939)
## 619 Gone with the Wind (1939)
## 620 Citizen Kane (1941)
## 621 2001: A Space Odyssey (1968)
## 622 Mr. Smith Goes to Washington (1939)
## 623 Big Night (1996)
## 624 Sound of Music, The (1965)
## 625 Willy Wonka and the Chocolate Factory (1971)
## 626 Fish Called Wanda, A (1988)
## 627 Monty Python's Life of Brian (1979)
## 628 Reservoir Dogs (1992)
## 629 Jean de Florette (1986)
## 630 Manon of the Spring (Manon des sources) (1986)
## 631 Monty Python and the Holy Grail (1974)
## 632 Wrong Trousers, The (1993)
## 633 Cinema Paradiso (1988)
## 634 Princess Bride, The (1987)
## 635 Raiders of the Lost Ark (1981)
## 636 Brazil (1985)
## 637 Good, The Bad and The Ugly, The (1966)
## 638 12 Angry Men (1957)
## 639 Apocalypse Now (1979)
## 640 GoodFellas (1990)
## 641 Alien (1979)
## 642 Psycho (1960)
## 643 Blues Brothers, The (1980)
## 644 Godfather: Part II, The (1974)
## 645 Full Metal Jacket (1987)
## 646 Grand Day Out, A (1992)
## 647 Amadeus (1984)
## 648 Raging Bull (1980)
## 649 Right Stuff, The (1983)
## 650 Sting, The (1973)
## 651 Terminator, The (1984)
## 652 Graduate, The (1967)
## 653 Bridge on the River Kwai, The (1957)
## 654 Shining, The (1980)
## 655 Groundhog Day (1993)
## 656 Unforgiven (1992)
## 657 Back to the Future (1985)
## 658 Patton (1970)
## 659 Young Frankenstein (1974)
## 660 This Is Spinal Tap (1984)
## 661 M*A*S*H (1970)
## 662 Room with a View, A (1986)
## 663 When Harry Met Sally... (1989)
## 664 Breaking the Waves (1996)
## 665 Sling Blade (1996)
## 666 Jerry Maguire (1996)
## 667 Raising Arizona (1987)
## 668 Kolya (1996)
## 669 Chasing Amy (1997)
## 670 Grosse Pointe Blank (1997)
## 671 Men in Black (1997)
## 672 Contact (1997)
## 673 George of the Jungle (1997)
## 674 Air Bud (1997)
## 675 Full Monty, The (1997)
## 676 Good Will Hunting (1997)
## 677 Sabrina (1995)
## 678 Sense and Sensibility (1995)
## 679 Leaving Las Vegas (1995)
## 680 Tin Cup (1996)
## 681 Secrets & Lies (1996)
## 682 English Patient, The (1996)
## 683 Donnie Brasco (1997)
## 684 Liar Liar (1997)
## 685 Ulee's Gold (1997)
## 686 Face/Off (1997)
## 687 In & Out (1997)
## 688 L.A. Confidential (1997)
## 689 Fly Away Home (1996)
## 690 Mrs. Brown (Her Majesty, Mrs. Brown) (1997)
## 691 FairyTale: A True Story (1997)
## 692 Deceiver (1997)
## 693 Rainmaker, The (1997)
## 694 In the Name of the Father (1993)
## 695 Schindler's List (1993)
## 696 Mother (1996)
## 697 Boogie Nights (1997)
## 698 One Flew Over the Cuckoo's Nest (1975)
## 699 Clueless (1995)
## 700 Mission: Impossible (1996)
## 701 Close Shave, A (1995)
## 702 Kingpin (1996)
## 703 Mary Poppins (1964)
## 704 E.T. the Extra-Terrestrial (1982)
## 705 Bob Roberts (1992)
## 706 To Kill a Mockingbird (1962)
## 707 Fantasia (1940)
## 708 Butch Cassidy and the Sundance Kid (1969)
## 709 Nixon (1995)
## 710 Cry, the Beloved Country (1995)
## 711 Crossing Guard, The (1995)
## 712 Smoke (1995)
## 713 Like Water For Chocolate (Como agua para chocolate) (1992)
## 714 Secret of Roan Inish, The (1994)
## 715 Vanya on 42nd Street (1994)
## 716 Jungle Book, The (1994)
## 717 Red Rock West (1992)
## 718 Bronx Tale, A (1993)
## 719 Rudy (1993)
## 720 Short Cuts (1993)
## 721 Tombstone (1993)
## 722 Courage Under Fire (1996)
## 723 Dragonheart (1996)
## 724 James and the Giant Peach (1996)
## 725 Dr. Strangelove or: How I Learned to Stop Worrying and Love the Bomb (1963)
## 726 Trainspotting (1996)
## 727 First Wives Club, The (1996)
## 728 Matilda (1996)
## 729 Philadelphia Story, The (1940)
## 730 Vertigo (1958)
## 731 North by Northwest (1959)
## 732 Apartment, The (1960)
## 733 Some Like It Hot (1959)
## 734 Casablanca (1942)
## 735 Maltese Falcon, The (1941)
## 736 My Fair Lady (1964)
## 737 Sabrina (1954)
## 738 Roman Holiday (1953)
## 739 Sunset Blvd. (1950)
## 740 Notorious (1946)
## 741 To Catch a Thief (1955)
## 742 Adventures of Robin Hood, The (1938)
## 743 East of Eden (1955)
## 744 Thin Man, The (1934)
## 745 His Girl Friday (1940)
## 746 Around the World in 80 Days (1956)
## 747 It's a Wonderful Life (1946)
## 748 Bringing Up Baby (1938)
## 749 African Queen, The (1951)
## 750 Cat on a Hot Tin Roof (1958)
## 751 Dumbo (1941)
## 752 Bananas (1971)
## 753 Candidate, The (1972)
## 754 Bonnie and Clyde (1967)
## 755 Dial M for Murder (1954)
## 756 Rebel Without a Cause (1955)
## 757 Streetcar Named Desire, A (1951)
## 758 People vs. Larry Flynt, The (1996)
## 759 My Left Foot (1989)
## 760 Magnificent Seven, The (1954)
## 761 Lawrence of Arabia (1962)
## 762 Wings of Desire (1987)
## 763 Third Man, The (1949)
## 764 Annie Hall (1977)
## 765 Boot, Das (1981)
## 766 Local Hero (1983)
## 767 Manhattan (1979)
## 768 Miller's Crossing (1990)
## 769 Treasure of the Sierra Madre, The (1948)
## 770 Great Escape, The (1963)
## 771 Deer Hunter, The (1978)
## 772 Down by Law (1986)
## 773 Cool Hand Luke (1967)
## 774 Great Dictator, The (1940)
## 775 Big Sleep, The (1946)
## 776 Ben-Hur (1959)
## 777 Gandhi (1982)
## 778 Killing Fields, The (1984)
## 779 My Life as a Dog (Mitt liv som hund) (1985)
## 780 Man Who Would Be King, The (1975)
## 781 Shine (1996)
## 782 Kama Sutra: A Tale of Love (1996)
## 783 Daytrippers, The (1996)
## 784 Traveller (1997)
## 785 Addicted to Love (1997)
## 786 Ponette (1996)
## 787 My Own Private Idaho (1991)
## 788 Anastasia (1997)
## 789 Mouse Hunt (1997)
## 790 Get Shorty (1995)
## 791 Twelve Monkeys (1995)
## 792 Babe (1995)
## 793 Dead Man Walking (1995)
## 794 Richard III (1995)
## 795 Seven (Se7en) (1995)
## 796 Usual Suspects, The (1995)
## 797 Braveheart (1995)
## 798 Taxi Driver (1976)
## 799 Birdcage, The (1996)
## 800 Bad Boys (1995)
## 801 Apollo 13 (1995)
## 802 Batman Forever (1995)
## 803 Crimson Tide (1995)
## 804 Crumb (1994)
## 805 Strange Days (1995)
## 806 Dolores Claiborne (1994)
## 807 Ed Wood (1994)
## 808 Star Wars (1977)
## 809 Legends of the Fall (1994)
## 810 Madness of King George, The (1994)
## 811 Natural Born Killers (1994)
## 812 Outbreak (1995)
## 813 Pulp Fiction (1994)
## 814 Stargate (1994)
## 815 Shawshank Redemption, The (1994)
## 816 Crow, The (1994)
## 817 Forrest Gump (1994)
## 818 Four Weddings and a Funeral (1994)
## 819 Lion King, The (1994)
## 820 Mask, The (1994)
## 821 Maverick (1994)
## 822 Firm, The (1993)
## 823 Free Willy (1993)
## 824 Fugitive, The (1993)
## 825 Hot Shots! Part Deux (1993)
## 826 Hudsucker Proxy, The (1994)
## 827 Jurassic Park (1993)
## 828 Remains of the Day, The (1993)
## 829 Blade Runner (1982)
## 830 So I Married an Axe Murderer (1993)
## 831 Nightmare Before Christmas, The (1993)
## 832 True Romance (1993)
## 833 Welcome to the Dollhouse (1995)
## 834 Terminator 2: Judgment Day (1991)
## 835 Dances with Wolves (1990)
## 836 Silence of the Lambs, The (1991)
## 837 Snow White and the Seven Dwarfs (1937)
## 838 Fargo (1996)
## 839 Heavy Metal (1981)
## 840 Diabolique (1996)
## 841 Twister (1996)
## 842 Independence Day (ID4) (1996)
## 843 Phenomenon (1996)
## 844 Spitfire Grill, The (1996)
## 845 Godfather, The (1972)
## 846 Breakfast at Tiffany's (1961)
## 847 Wizard of Oz, The (1939)
## 848 Gone with the Wind (1939)
## 849 Citizen Kane (1941)
## 850 2001: A Space Odyssey (1968)
## 851 Mr. Smith Goes to Washington (1939)
## 852 Love Bug, The (1969)
## 853 Homeward Bound: The Incredible Journey (1993)
## 854 20,000 Leagues Under the Sea (1954)
## 855 Bedknobs and Broomsticks (1971)
## 856 Sound of Music, The (1965)
## 857 Die Hard (1988)
## 858 Lawnmower Man, The (1992)
## 859 Willy Wonka and the Chocolate Factory (1971)
## 860 Sleeper (1973)
## 861 Fish Called Wanda, A (1988)
## 862 Monty Python's Life of Brian (1979)
## 863 Reservoir Dogs (1992)
## 864 Platoon (1986)
## 865 Top Gun (1986)
## 866 On Golden Pond (1981)
## 867 Return of the Pink Panther, The (1974)
## 868 Abyss, The (1989)
## 869 Manon of the Spring (Manon des sources) (1986)
## 870 Monty Python and the Holy Grail (1974)
## 871 Delicatessen (1991)
## 872 Empire Strikes Back, The (1980)
## 873 Princess Bride, The (1987)
## 874 Raiders of the Lost Ark (1981)
## 875 Brazil (1985)
## 876 Aliens (1986)
## 877 Good, The Bad and The Ugly, The (1966)
## 878 12 Angry Men (1957)
## 879 Clockwork Orange, A (1971)
## 880 Apocalypse Now (1979)
## 881 Return of the Jedi (1983)
## 882 GoodFellas (1990)
## 883 Alien (1979)
## 884 Psycho (1960)
## 885 Blues Brothers, The (1980)
## 886 Godfather: Part II, The (1974)
## 887 Full Metal Jacket (1987)
## 888 Henry V (1989)
## 889 Amadeus (1984)
## 890 Raging Bull (1980)
## 891 Right Stuff, The (1983)
## 892 Sting, The (1973)
## 893 Terminator, The (1984)
## 894 Dead Poets Society (1989)
## 895 Graduate, The (1967)
## 896 Nikita (La Femme Nikita) (1990)
## 897 Bridge on the River Kwai, The (1957)
## 898 Shining, The (1980)
## 899 Evil Dead II (1987)
## 900 Groundhog Day (1993)
## 901 Unforgiven (1992)
## 902 Back to the Future (1985)
## 903 Patton (1970)
## 904 Cyrano de Bergerac (1990)
## 905 Young Frankenstein (1974)
## 906 Indiana Jones and the Last Crusade (1989)
## 907 M*A*S*H (1970)
## 908 Unbearable Lightness of Being, The (1988)
## 909 Room with a View, A (1986)
## 910 Pink Floyd - The Wall (1982)
## 911 Field of Dreams (1989)
## 912 When Harry Met Sally... (1989)
## 913 Bram Stoker's Dracula (1992)
## 914 Nightmare on Elm Street, A (1984)
## 915 Sling Blade (1996)
## 916 Die Hard 2 (1990)
## 917 Star Trek VI: The Undiscovered Country (1991)
## 918 Star Trek: The Wrath of Khan (1982)
## 919 Star Trek III: The Search for Spock (1984)
## 920 Star Trek IV: The Voyage Home (1986)
## 921 Batman Returns (1992)
## 922 Young Guns (1988)
## 923 Jaws (1975)
## 924 Jerry Maguire (1996)
## 925 Raising Arizona (1987)
## 926 Last of the Mohicans, The (1992)
## 927 Contact (1997)
## 928 George of the Jungle (1997)
## 929 Event Horizon (1997)
## 930 Mimic (1997)
## 931 Hunt for Red October, The (1990)
## 932 Kull the Conqueror (1997)
## 933 Full Monty, The (1997)
## 934 Heat (1995)
## 935 Sense and Sensibility (1995)
## 936 River Wild, The (1994)
## 937 Secrets & Lies (1996)
## 938 English Patient, The (1996)
## 939 Scream (1996)
## 940 Liar Liar (1997)
## 941 Air Force One (1997)
## 942 Devil's Advocate, The (1997)
## 943 Deceiver (1997)
## 944 In the Name of the Father (1993)
## 945 Schindler's List (1993)
## 946 Lost Highway (1997)
## 947 U Turn (1997)
## 948 Critical Care (1997)
## 949 Client, The (1994)
## 950 One Flew Over the Cuckoo's Nest (1975)
## 951 Powder (1995)
## 952 Clueless (1995)
## 953 Miracle on 34th Street (1994)
## 954 Tales From the Crypt Presents: Demon Knight (1995)
## 955 Star Trek: Generations (1994)
## 956 Adventures of Priscilla, Queen of the Desert, The (1994)
## 957 Naked Gun 33 1/3: The Final Insult (1994)
## 958 True Lies (1994)
## 959 Addams Family Values (1993)
## 960 Age of Innocence, The (1993)
## 961 Black Beauty (1994)
## 962 Last Action Hero (1993)
## 963 Mrs. Doubtfire (1993)
## 964 Serial Mom (1994)
## 965 Three Musketeers, The (1993)
## 966 Brady Bunch Movie, The (1995)
## 967 Ghost (1990)
## 968 Batman (1989)
## 969 Pinocchio (1940)
## 970 Mission: Impossible (1996)
## 971 Apple Dumpling Gang, The (1975)
## 972 Old Yeller (1957)
## 973 Parent Trap, The (1961)
## 974 Cinderella (1950)
## 975 Mary Poppins (1964)
## 976 Alice in Wonderland (1951)
## 977 William Shakespeare's Romeo and Juliet (1996)
## 978 E.T. the Extra-Terrestrial (1982)
## 979 To Kill a Mockingbird (1962)
## 980 Harold and Maude (1971)
## 981 Day the Earth Stood Still, The (1951)
## 982 Duck Soup (1933)
## 983 Highlander (1986)
## 984 Fantasia (1940)
## 985 Heathers (1989)
## 986 Forbidden Planet (1956)
## 987 Butch Cassidy and the Sundance Kid (1969)
## 988 American Werewolf in London, An (1981)
## 989 Amityville II: The Possession (1982)
## 990 Amityville Horror, The (1979)
## 991 Birds, The (1963)
## 992 Blob, The (1958)
## 993 Burnt Offerings (1976)
## 994 Carrie (1976)
## 995 Omen, The (1976)
## 996 Star Trek: The Motion Picture (1979)
## 997 Star Trek V: The Final Frontier (1989)
## 998 Grease (1978)
## 999 Jaws 2 (1978)
## 1000 Jackie Chan's First Strike (1996)
## 1001 Smoke (1995)
## 1002 Secret of Roan Inish, The (1994)
## 1003 Jungle Book, The (1994)
## 1004 Tombstone (1993)
## 1005 Courage Under Fire (1996)
## 1006 Dragonheart (1996)
## 1007 Dr. Strangelove or: How I Learned to Stop Worrying and Love the Bomb (1963)
## 1008 Vertigo (1958)
## 1009 North by Northwest (1959)
## 1010 Apartment, The (1960)
## 1011 Some Like It Hot (1959)
## 1012 Casablanca (1942)
## 1013 Maltese Falcon, The (1941)
## 1014 My Fair Lady (1964)
## 1015 Roman Holiday (1953)
## 1016 Sunset Blvd. (1950)
## 1017 Notorious (1946)
## 1018 Adventures of Robin Hood, The (1938)
## 1019 East of Eden (1955)
## 1020 Around the World in 80 Days (1956)
## 1021 It's a Wonderful Life (1946)
## 1022 Bringing Up Baby (1938)
## 1023 African Queen, The (1951)
## 1024 Cat on a Hot Tin Roof (1958)
## 1025 Dumbo (1941)
## 1026 Bananas (1971)
## 1027 Candidate, The (1972)
## 1028 Bonnie and Clyde (1967)
## 1029 Dial M for Murder (1954)
## 1030 Rebel Without a Cause (1955)
## 1031 Streetcar Named Desire, A (1951)
## 1032 My Left Foot (1989)
## 1033 Magnificent Seven, The (1954)
## 1034 Lawrence of Arabia (1962)
## 1035 Third Man, The (1949)
## 1036 Annie Hall (1977)
## 1037 Boot, Das (1981)
## 1038 Treasure of the Sierra Madre, The (1948)
## 1039 Great Escape, The (1963)
## 1040 Deer Hunter, The (1978)
## 1041 Cool Hand Luke (1967)
## 1042 Ben-Hur (1959)
## 1043 Gandhi (1982)
## 1044 Killing Fields, The (1984)
## 1045 My Life as a Dog (Mitt liv som hund) (1985)
## 1046 Man Who Would Be King, The (1975)
## 1047 My Own Private Idaho (1991)
## 1048 Money Train (1995)
## 1049 Mortal Kombat (1995)
## 1050 Pocahontas (1995)
## 1051 Miserables, Les (1995)
## 1052 Things to Do in Denver when You're Dead (1995)
## 1053 Vampire in Brooklyn (1995)
## 1054 Broken Arrow (1996)
## 1055 Young Poisoner's Handbook, The (1995)
## 1056 NeverEnding Story III, The (1994)
## 1057 Rob Roy (1995)
## 1058 Die Hard: With a Vengeance (1995)
## 1059 Lord of Illusions (1995)
## 1060 Species (1995)
## 1061 Walk in the Clouds, A (1995)
## 1062 Waterworld (1995)
## 1063 White Man's Burden (1995)
## 1064 Wild Bill (1995)
## 1065 Farinelli: il castrato (1994)
## 1066 Heavenly Creatures (1994)
## 1067 Interview with the Vampire (1994)
## 1068 Kid in King Arthur's Court, A (1995)
## 1069 Mary Shelley's Frankenstein (1994)
## 1070 Quick and the Dead, The (1995)
## 1071 Stephen King's The Langoliers (1995)
## 1072 Tales from the Hood (1995)
## 1073 Village of the Damned (1995)
## 1074 Clear and Present Danger (1994)
## 1075 Wes Craven's New Nightmare (1994)
## 1076 Speed (1994)
## 1077 Wolf (1994)
## 1078 Wyatt Earp (1994)
## 1079 Another Stakeout (1993)
## 1080 Blown Away (1994)
## 1081 Body Snatchers (1993)
## 1082 Boxing Helena (1993)
## 1083 City Slickers II: The Legend of Curly's Gold (1994)
## 1084 Cliffhanger (1993)
## 1085 Coneheads (1993)
## 1086 Demolition Man (1993)
## 1087 Fatal Instinct (1993)
## 1088 Englishman Who Went Up a Hill, But Came Down a Mountain, The (1995)
## 1089 Kalifornia (1993)
## 1090 Piano, The (1993)
## 1091 Romeo Is Bleeding (1993)
## 1092 Secret Garden, The (1993)
## 1093 Son in Law (1993)
## 1094 Terminal Velocity (1994)
## 1095 Hour of the Pig, The (1993)
## 1096 Beauty and the Beast (1991)
## 1097 Wild Bunch, The (1969)
## 1098 Hellraiser: Bloodline (1996)
## 1099 Primal Fear (1996)
## 1100 True Crime (1995)
## 1101 Stalingrad (1993)
## 1102 Heavy (1995)
## 1103 Fan, The (1996)
## 1104 Hunchback of Notre Dame, The (1996)
## 1105 Eraser (1996)
## 1106 Big Squeeze, The (1996)
## 1107 Police Story 4: Project S (Chao ji ji hua) (1993)
## 1108 Daniel Defoe's Robinson Crusoe (1996)
## 1109 For Whom the Bell Tolls (1943)
## 1110 American in Paris, An (1951)
## 1111 Rear Window (1954)
## 1112 It Happened One Night (1934)
## 1113 Meet Me in St. Louis (1944)
## 1114 All About Eve (1950)
## 1115 Rebecca (1940)
## 1116 Spellbound (1945)
## 1117 Father of the Bride (1950)
## 1118 Gigi (1958)
## 1119 Laura (1944)
## 1120 Lost Horizon (1937)
## 1121 My Man Godfrey (1936)
## 1122 Giant (1956)
## 1123 39 Steps, The (1935)
## 1124 Night of the Living Dead (1968)
## 1125 Blue Angel, The (Blaue Engel, Der) (1930)
## 1126 Picnic (1955)
## 1127 Extreme Measures (1996)
## 1128 Chamber, The (1996)
## 1129 Davy Crockett, King of the Wild Frontier (1955)
## 1130 Swiss Family Robinson (1960)
## 1131 Angels in the Outfield (1994)
## 1132 Three Caballeros, The (1945)
## 1133 Sword in the Stone, The (1963)
## 1134 So Dear to My Heart (1949)
## 1135 Robin Hood: Prince of Thieves (1991)
## 1136 Sleepers (1996)
## 1137 Victor/Victoria (1982)
## 1138 Great Race, The (1965)
## 1139 Crying Game, The (1992)
## 1140 Sophie's Choice (1982)
## 1141 Christmas Carol, A (1938)
## 1142 Microcosmos: Le peuple de l'herbe (1996)
## 1143 Fog, The (1980)
## 1144 Escape from New York (1981)
## 1145 Howling, The (1981)
## 1146 Return of Martin Guerre, The (Retour de Martin Guerre, Le) (1982)
## 1147 Tin Drum, The (Blechtrommel, Die) (1979)
## 1148 Cook the Thief His Wife & Her Lover, The (1989)
## 1149 Paths of Glory (1957)
## 1150 Grifters, The (1990)
## 1151 The Innocent (1994)
## 1152 Thin Blue Line, The (1988)
## 1153 Paris Is Burning (1990)
## 1154 Once Upon a Time in the West (1969)
## 1155 Ran (1985)
## 1156 Quiet Man, The (1952)
## 1157 Once Upon a Time in America (1984)
## 1158 Seventh Seal, The (Sjunde inseglet, Det) (1957)
## 1159 Glory (1989)
## 1160 Rosencrantz and Guildenstern Are Dead (1990)
## 1161 Touch of Evil (1958)
## 1162 Chinatown (1974)
## 1163 Stand by Me (1986)
## 1164 M (1931)
## 1165 Manchurian Candidate, The (1962)
## 1166 Pump Up the Volume (1990)
## 1167 Arsenic and Old Lace (1944)
## 1168 Fried Green Tomatoes (1991)
## 1169 High Noon (1952)
## 1170 Somewhere in Time (1980)
## 1171 Being There (1979)
## 1172 Paris, Texas (1984)
## 1173 Alien 3 (1992)
## 1174 Blood For Dracula (Andy Warhol's Dracula) (1974)
## 1175 Audrey Rose (1977)
## 1176 Blood Beach (1981)
## 1177 Body Parts (1991)
## 1178 Bride of Frankenstein (1935)
## 1179 Candyman (1992)
## 1180 Cape Fear (1962)
## 1181 Cat People (1982)
## 1182 Nosferatu (Nosferatu, eine Symphonie des Grauens) (1922)
## 1183 Crucible, The (1996)
## 1184 Fire on the Mountain (1996)
## 1185 Volcano (1997)
## 1186 Conan the Barbarian (1981)
## 1187 Wishmaster (1997)
## 1188 I Know What You Did Last Summer (1997)
## 1189 Rocket Man (1997)
## 1190 Twelve Monkeys (1995)
## 1191 Seven (Se7en) (1995)
## 1192 Braveheart (1995)
## 1193 Star Wars (1977)
## 1194 Professional, The (1994)
## 1195 Pulp Fiction (1994)
## 1196 Fugitive, The (1993)
## 1197 Jurassic Park (1993)
## 1198 Blade Runner (1982)
## 1199 Terminator 2: Judgment Day (1991)
## 1200 Godfather, The (1972)
## 1201 Die Hard (1988)
## 1202 Empire Strikes Back, The (1980)
## 1203 Raiders of the Lost Ark (1981)
## 1204 Aliens (1986)
## 1205 Good, The Bad and The Ugly, The (1966)
## 1206 Return of the Jedi (1983)
## 1207 GoodFellas (1990)
## 1208 Alien (1979)
## 1209 Godfather: Part II, The (1974)
## 1210 Full Metal Jacket (1987)
## 1211 Henry V (1989)
## 1212 Terminator, The (1984)
## 1213 Indiana Jones and the Last Crusade (1989)
## 1214 Star Trek: First Contact (1996)
## 1215 Star Trek VI: The Undiscovered Country (1991)
## 1216 Star Trek: The Wrath of Khan (1982)
## 1217 Star Trek III: The Search for Spock (1984)
## 1218 Under Siege (1992)
## 1219 Last of the Mohicans, The (1992)
## 1220 Jungle2Jungle (1997)
## 1221 Contact (1997)
## 1222 George of the Jungle (1997)
## 1223 Event Horizon (1997)
## 1224 Heat (1995)
## 1225 Liar Liar (1997)
## 1226 In & Out (1997)
## 1227 Playing God (1997)
## 1228 Bean (1997)
## 1229 Critical Care (1997)
## 1230 Spawn (1997)
## 1231 True Lies (1994)
## 1232 Batman (1989)
## 1233 Highlander (1986)
## 1234 Butch Cassidy and the Sundance Kid (1969)
## 1235 Free Willy 3: The Rescue (1997)
## 1236 Magnificent Seven, The (1954)
## 1237 Lawrence of Arabia (1962)
## 1238 Miller's Crossing (1990)
## 1239 Die Hard: With a Vengeance (1995)
## 1240 Clear and Present Danger (1994)
## 1241 Speed (1994)
## 1242 Glory (1989)
## 1243 In the Line of Fire (1993)
## 1244 Executive Decision (1996)
## 1245 Perfect World, A (1993)
## 1246 McHale's Navy (1997)
## 1247 Leave It to Beaver (1997)
## 1248 Jackal, The (1997)
## 1249 Shanghai Triad (Yao a yao yao dao waipo qiao) (1995)
## 1250 Twelve Monkeys (1995)
## 1251 Star Wars (1977)
## 1252 Evil Dead II (1987)
## 1253 Kolya (1996)
## 1254 Leaving Las Vegas (1995)
## 1255 English Patient, The (1996)
## 1256 Liar Liar (1997)
## 1257 Face/Off (1997)
## 1258 Boogie Nights (1997)
## 1259 Bridges of Madison County, The (1995)
## 1260 True Lies (1994)
## 1261 Ghost (1990)
## 1262 Vertigo (1958)
## 1263 Casablanca (1942)
## 1264 Roman Holiday (1953)
## 1265 Streetcar Named Desire, A (1951)
## 1266 Deer Hunter, The (1978)
## 1267 Gandhi (1982)
## 1268 39 Steps, The (1935)
## 1269 Seven Years in Tibet (1997)
## 1270 Dark City (1998)
## 1271 Toy Story (1995)
## 1272 Get Shorty (1995)
## 1273 Twelve Monkeys (1995)
## 1274 Dead Man Walking (1995)
## 1275 Seven (Se7en) (1995)
## 1276 Usual Suspects, The (1995)
## 1277 Mighty Aphrodite (1995)
## 1278 French Twist (Gazon maudit) (1995)
## 1279 Braveheart (1995)
## 1280 Taxi Driver (1976)
## 1281 Crumb (1994)
## 1282 Desperado (1995)
## 1283 To Wong Foo, Thanks for Everything! Julie Newmar (1995)
## 1284 Hoop Dreams (1994)
## 1285 Star Wars (1977)
## 1286 Pulp Fiction (1994)
## 1287 Three Colors: Red (1994)
## 1288 Three Colors: Blue (1993)
## 1289 Shawshank Redemption, The (1994)
## 1290 Forrest Gump (1994)
## 1291 Four Weddings and a Funeral (1994)
## 1292 Jurassic Park (1993)
## 1293 Ref, The (1994)
## 1294 Welcome to the Dollhouse (1995)
## 1295 Silence of the Lambs, The (1991)
## 1296 Snow White and the Seven Dwarfs (1937)
## 1297 Fargo (1996)
## 1298 Cold Comfort Farm (1995)
## 1299 Lone Star (1996)
## 1300 Godfather, The (1972)
## 1301 Bound (1996)
## 1302 Wizard of Oz, The (1939)
## 1303 Gone with the Wind (1939)
## 1304 Citizen Kane (1941)
## 1305 2001: A Space Odyssey (1968)
## 1306 Big Night (1996)
## 1307 Die Hard (1988)
## 1308 Fish Called Wanda, A (1988)
## 1309 Dirty Dancing (1987)
## 1310 Reservoir Dogs (1992)
## 1311 Platoon (1986)
## 1312 Glengarry Glen Ross (1992)
## 1313 Top Gun (1986)
## 1314 On Golden Pond (1981)
## 1315 Abyss, The (1989)
## 1316 Monty Python and the Holy Grail (1974)
## 1317 Cinema Paradiso (1988)
## 1318 Raiders of the Lost Ark (1981)
## 1319 Brazil (1985)
## 1320 Aliens (1986)
## 1321 12 Angry Men (1957)
## 1322 Clockwork Orange, A (1971)
## 1323 Apocalypse Now (1979)
## 1324 GoodFellas (1990)
## 1325 Alien (1979)
## 1326 Psycho (1960)
## 1327 Blues Brothers, The (1980)
## 1328 Amadeus (1984)
## 1329 Raging Bull (1980)
## 1330 Sting, The (1973)
## 1331 Terminator, The (1984)
## 1332 Graduate, The (1967)
## 1333 Nikita (La Femme Nikita) (1990)
## 1334 Bridge on the River Kwai, The (1957)
## 1335 Shining, The (1980)
## 1336 Unforgiven (1992)
## 1337 Patton (1970)
## 1338 M*A*S*H (1970)
## 1339 When Harry Met Sally... (1989)
## 1340 Cape Fear (1991)
## 1341 Breaking the Waves (1996)
## 1342 Sling Blade (1996)
## 1343 Star Trek IV: The Voyage Home (1986)
## 1344 Jaws (1975)
## 1345 Raising Arizona (1987)
## 1346 Devil's Own, The (1997)
## 1347 Full Monty, The (1997)
## 1348 Heat (1995)
## 1349 Sabrina (1995)
## 1350 Sense and Sensibility (1995)
## 1351 Leaving Las Vegas (1995)
## 1352 Emma (1996)
## 1353 Secrets & Lies (1996)
## 1354 English Patient, The (1996)
## 1355 Evita (1996)
## 1356 Liar Liar (1997)
## 1357 L.A. Confidential (1997)
## 1358 Everyone Says I Love You (1996)
## 1359 Mother (1996)
## 1360 Game, The (1997)
## 1361 U Turn (1997)
## 1362 Boogie Nights (1997)
## 1363 One Flew Over the Cuckoo's Nest (1975)
## 1364 Clueless (1995)
## 1365 Bridges of Madison County, The (1995)
## 1366 True Lies (1994)
## 1367 Pinocchio (1940)
## 1368 My Favorite Year (1982)
## 1369 Cinderella (1950)
## 1370 Alice in Wonderland (1951)
## 1371 Duck Soup (1933)
## 1372 Fantasia (1940)
## 1373 Butch Cassidy and the Sundance Kid (1969)
## 1374 Carrie (1976)
## 1375 Smoke (1995)
## 1376 Like Water For Chocolate (Como agua para chocolate) (1992)
## 1377 Secret of Roan Inish, The (1994)
## 1378 Bronx Tale, A (1993)
## 1379 Tombstone (1993)
## 1380 Dr. Strangelove or: How I Learned to Stop Worrying and Love the Bomb (1963)
## 1381 Trainspotting (1996)
## 1382 Philadelphia Story, The (1940)
## 1383 Vertigo (1958)
## 1384 North by Northwest (1959)
## 1385 Some Like It Hot (1959)
## 1386 Casablanca (1942)
## 1387 Maltese Falcon, The (1941)
## 1388 Sabrina (1954)
## 1389 Sunset Blvd. (1950)
## 1390 Notorious (1946)
## 1391 Thin Man, The (1934)
## 1392 Around the World in 80 Days (1956)
## 1393 It's a Wonderful Life (1946)
## 1394 Bringing Up Baby (1938)
## 1395 African Queen, The (1951)
## 1396 Cat on a Hot Tin Roof (1958)
## 1397 Bananas (1971)
## 1398 Bonnie and Clyde (1967)
## 1399 Dial M for Murder (1954)
## 1400 My Left Foot (1989)
## 1401 Magnificent Seven, The (1954)
## 1402 Lawrence of Arabia (1962)
## 1403 Third Man, The (1949)
## 1404 Miller's Crossing (1990)
## 1405 Treasure of the Sierra Madre, The (1948)
## 1406 Deer Hunter, The (1978)
## 1407 Big Sleep, The (1946)
## 1408 Gandhi (1982)
## 1409 My Life as a Dog (Mitt liv som hund) (1985)
## 1410 Man Who Would Be King, The (1975)
## 1411 Shine (1996)
## 1412 Heavenly Creatures (1994)
## 1413 Piano, The (1993)
## 1414 Beauty and the Beast (1991)
## 1415 Wild Bunch, The (1969)
## 1416 American in Paris, An (1951)
## 1417 Rear Window (1954)
## 1418 It Happened One Night (1934)
## 1419 All About Eve (1950)
## 1420 Gigi (1958)
## 1421 Laura (1944)
## 1422 39 Steps, The (1935)
## 1423 Blue Angel, The (Blaue Engel, Der) (1930)
## 1424 Victor/Victoria (1982)
## 1425 Glory (1989)
## 1426 Rosencrantz and Guildenstern Are Dead (1990)
## 1427 Chinatown (1974)
## 1428 Stand by Me (1986)
## 1429 M (1931)
## 1430 Manchurian Candidate, The (1962)
## 1431 Being There (1979)
## 1432 Paris, Texas (1984)
## 1433 Perfect World, A (1993)
## 1434 American President, The (1995)
## 1435 Casino (1995)
## 1436 Persuasion (1995)
## 1437 Kicking and Screaming (1995)
## 1438 City Hall (1996)
## 1439 Basketball Diaries, The (1995)
## 1440 Browning Version, The (1994)
## 1441 Little Women (1994)
## 1442 Miami Rhapsody (1995)
## 1443 Wonderful, Horrible Life of Leni Riefenstahl, The (1993)
## 1444 Barcelona (1994)
## 1445 Widows' Peak (1994)
## 1446 House of the Spirits, The (1993)
## 1447 Singin' in the Rain (1952)
## 1448 Bad Moon (1996)
## 1449 Enchanted April (1991)
## 1450 Sex, Lies, and Videotape (1989)
## 1451 Strictly Ballroom (1992)
## 1452 Better Off Dead... (1985)
## 1453 Substance of Fire, The (1996)
## 1454 Tin Men (1987)
## 1455 Babe (1995)
## 1456 Dead Man Walking (1995)
## 1457 Seven (Se7en) (1995)
## 1458 Usual Suspects, The (1995)
## 1459 Mr. Holland's Opus (1995)
## 1460 Braveheart (1995)
## 1461 Rumble in the Bronx (1995)
## 1462 Birdcage, The (1996)
## 1463 Apollo 13 (1995)
## 1464 Batman Forever (1995)
## 1465 Net, The (1995)
## 1466 Strange Days (1995)
## 1467 To Wong Foo, Thanks for Everything! Julie Newmar (1995)
## 1468 Clerks (1994)
## 1469 Ed Wood (1994)
## 1470 Legends of the Fall (1994)
## 1471 Madness of King George, The (1994)
## 1472 Outbreak (1995)
## 1473 Pulp Fiction (1994)
## 1474 Priest (1994)
## 1475 Quiz Show (1994)
## 1476 Forrest Gump (1994)
## 1477 Four Weddings and a Funeral (1994)
## 1478 Fugitive, The (1993)
## 1479 Much Ado About Nothing (1993)
## 1480 Remains of the Day, The (1993)
## 1481 Sleepless in Seattle (1993)
## 1482 So I Married an Axe Murderer (1993)
## 1483 Home Alone (1990)
## 1484 Dances with Wolves (1990)
## 1485 Silence of the Lambs, The (1991)
## 1486 Fargo (1996)
## 1487 Moll Flanders (1996)
## 1488 Mystery Science Theater 3000: The Movie (1996)
## 1489 Operation Dumbo Drop (1995)
## 1490 Truth About Cats & Dogs, The (1996)
## 1491 Striptease (1996)
## 1492 Independence Day (ID4) (1996)
## 1493 Frighteners, The (1996)
## 1494 Phenomenon (1996)
## 1495 2001: A Space Odyssey (1968)
## 1496 Monty Python and the Holy Grail (1974)
## 1497 Princess Bride, The (1987)
## 1498 Brazil (1985)
## 1499 Aliens (1986)
## 1500 Apocalypse Now (1979)
## 1501 Psycho (1960)
## 1502 Henry V (1989)
## 1503 Amadeus (1984)
## 1504 Sting, The (1973)
## 1505 Dead Poets Society (1989)
## 1506 Unforgiven (1992)
## 1507 Back to the Future (1985)
## 1508 Young Frankenstein (1974)
## 1509 M*A*S*H (1970)
## 1510 Room with a View, A (1986)
## 1511 Field of Dreams (1989)
## 1512 When Harry Met Sally... (1989)
## 1513 Star Trek: First Contact (1996)
## 1514 Star Trek VI: The Undiscovered Country (1991)
## 1515 Star Trek: The Wrath of Khan (1982)
## 1516 Star Trek III: The Search for Spock (1984)
## 1517 Star Trek IV: The Voyage Home (1986)
## 1518 Jerry Maguire (1996)
## 1519 Raising Arizona (1987)
## 1520 Sneakers (1992)
## 1521 Last of the Mohicans, The (1992)
## 1522 Contact (1997)
## 1523 George of the Jungle (1997)
## 1524 Event Horizon (1997)
## 1525 Sabrina (1995)
## 1526 Restoration (1995)
## 1527 English Patient, The (1996)
## 1528 Fierce Creatures (1997)
## 1529 Absolute Power (1997)
## 1530 Air Force One (1997)
## 1531 In & Out (1997)
## 1532 Midnight in the Garden of Good and Evil (1997)
## 1533 In the Name of the Father (1993)
## 1534 Schindler's List (1993)
## 1535 Lost Highway (1997)
## 1536 Kiss the Girls (1997)
## 1537 Fallen (1998)
## 1538 Client, The (1994)
## 1539 One Flew Over the Cuckoo's Nest (1975)
## 1540 Powder (1995)
## 1541 Clueless (1995)
## 1542 Mary Reilly (1996)
## 1543 Jeffrey (1995)
## 1544 Adventures of Priscilla, Queen of the Desert, The (1994)
## 1545 Flintstones, The (1994)
## 1546 Addams Family Values (1993)
## 1547 Mrs. Doubtfire (1993)
## 1548 Robin Hood: Men in Tights (1993)
## 1549 Three Musketeers, The (1993)
## 1550 Brady Bunch Movie, The (1995)
## 1551 Ghost (1990)
## 1552 Mission: Impossible (1996)
## 1553 My Favorite Year (1982)
## 1554 E.T. the Extra-Terrestrial (1982)
## 1555 Bob Roberts (1992)
## 1556 To Kill a Mockingbird (1962)
## 1557 Harold and Maude (1971)
## 1558 Day the Earth Stood Still, The (1951)
## 1559 Duck Soup (1933)
## 1560 Highlander (1986)
## 1561 Heathers (1989)
## 1562 Forbidden Planet (1956)
## 1563 Butch Cassidy and the Sundance Kid (1969)
## 1564 Star Trek: The Motion Picture (1979)
## 1565 Grease (1978)
## 1566 Jackie Chan's First Strike (1996)
## 1567 Bonnie and Clyde (1967)
## 1568 People vs. Larry Flynt, The (1996)
## 1569 Manhattan (1979)
## 1570 Deer Hunter, The (1978)
## 1571 Great Dictator, The (1940)
## 1572 Ben-Hur (1959)
## 1573 Gandhi (1982)
## 1574 Things to Do in Denver when You're Dead (1995)
## 1575 Rob Roy (1995)
## 1576 Heavenly Creatures (1994)
## 1577 Mary Shelley's Frankenstein (1994)
## 1578 Body Snatchers (1993)
## 1579 Coneheads (1993)
## 1580 Englishman Who Went Up a Hill, But Came Down a Mountain, The (1995)
## 1581 Eraser (1996)
## 1582 Rear Window (1954)
## 1583 Once Upon a Time in the West (1969)
## 1584 Rosencrantz and Guildenstern Are Dead (1990)
## 1585 Chinatown (1974)
## 1586 Arsenic and Old Lace (1944)
## 1587 Fried Green Tomatoes (1991)
## 1588 Somewhere in Time (1980)
## 1589 Being There (1979)
## 1590 Seven Years in Tibet (1997)
## 1591 American President, The (1995)
## 1592 Little Women (1994)
## 1593 Enchanted April (1991)
## 1594 Better Off Dead... (1985)
## 1595 Othello (1995)
## 1596 Carrington (1995)
## 1597 To Die For (1995)
## 1598 Home for the Holidays (1995)
## 1599 Juror, The (1996)
## 1600 In the Bleak Midwinter (1995)
## 1601 Canadian Bacon (1994)
## 1602 First Knight (1995)
## 1603 Mallrats (1995)
## 1604 Nine Months (1995)
## 1605 Boys on the Side (1995)
## 1606 Circle of Friends (1995)
## 1607 Exit to Eden (1994)
## 1608 Fluke (1995)
## 1609 Immortal Beloved (1994)
## 1610 Junior (1994)
## 1611 Nell (1994)
## 1612 Queen Margot (Reine Margot, La) (1994)
## 1613 Corrina, Corrina (1994)
## 1614 Dave (1993)
## 1615 Go Fish (1994)
## 1616 Made in America (1993)
## 1617 Philadelphia (1993)
## 1618 Shadowlands (1993)
## 1619 Sirens (1994)
## 1620 Threesome (1994)
## 1621 Pretty Woman (1990)
## 1622 Jane Eyre (1996)
## 1623 Last Supper, The (1995)
## 1624 Ransom (1996)
## 1625 Crow: City of Angels, The (1996)
## 1626 Michael Collins (1996)
## 1627 Ruling Class, The (1972)
## 1628 Real Genius (1985)
## 1629 Benny & Joon (1993)
## 1630 Saint, The (1997)
## 1631 MatchMaker, The (1997)
## 1632 Amistad (1997)
## 1633 Tomorrow Never Dies (1997)
## 1634 Replacement Killers, The (1998)
## 1635 Get Shorty (1995)
## 1636 Mr. Holland's Opus (1995)
## 1637 Apollo 13 (1995)
## 1638 Star Wars (1977)
## 1639 Forrest Gump (1994)
## 1640 Lion King, The (1994)
## 1641 Jurassic Park (1993)
## 1642 Sleepless in Seattle (1993)
## 1643 Terminator 2: Judgment Day (1991)
## 1644 Dances with Wolves (1990)
## 1645 Silence of the Lambs, The (1991)
## 1646 Godfather, The (1972)
## 1647 Wizard of Oz, The (1939)
## 1648 Gone with the Wind (1939)
## 1649 Sound of Music, The (1965)
## 1650 Platoon (1986)
## 1651 Basic Instinct (1992)
## 1652 Top Gun (1986)
## 1653 Monty Python and the Holy Grail (1974)
## 1654 Cinema Paradiso (1988)
## 1655 Empire Strikes Back, The (1980)
## 1656 Raiders of the Lost Ark (1981)
## 1657 Amadeus (1984)
## 1658 Terminator, The (1984)
## 1659 Dead Poets Society (1989)
## 1660 Shining, The (1980)
## 1661 Groundhog Day (1993)
## 1662 Unforgiven (1992)
## 1663 Back to the Future (1985)
## 1664 Field of Dreams (1989)
## 1665 When Harry Met Sally... (1989)
## 1666 Star Trek: The Wrath of Khan (1982)
## 1667 Raising Arizona (1987)
## 1668 Kolya (1996)
## 1669 Leaving Las Vegas (1995)
## 1670 Time to Kill, A (1996)
## 1671 Air Force One (1997)
## 1672 Schindler's List (1993)
## 1673 Conspiracy Theory (1997)
## 1674 Muriel's Wedding (1994)
## 1675 Man Without a Face, The (1993)
## 1676 Ghost (1990)
## 1677 Old Yeller (1957)
## 1678 Courage Under Fire (1996)
## 1679 North by Northwest (1959)
## 1680 Primal Fear (1996)
## 1681 In the Line of Fire (1993)
## 1682 Sex, Lies, and Videotape (1989)
## 1683 Philadelphia (1993)
## 1684 Burnt By the Sun (1994)
## 1685 Red Corner (1997)
## 1686 Toy Story (1995)
## 1687 GoldenEye (1995)
## 1688 Get Shorty (1995)
## 1689 Copycat (1995)
## 1690 Twelve Monkeys (1995)
## 1691 Babe (1995)
## 1692 Dead Man Walking (1995)
## 1693 Seven (Se7en) (1995)
## 1694 Usual Suspects, The (1995)
## 1695 Mighty Aphrodite (1995)
## 1696 Postino, Il (1994)
## 1697 From Dusk Till Dawn (1996)
## 1698 Muppet Treasure Island (1996)
## 1699 Braveheart (1995)
## 1700 Taxi Driver (1976)
## 1701 Rumble in the Bronx (1995)
## 1702 Birdcage, The (1996)
## 1703 Bad Boys (1995)
## 1704 Apollo 13 (1995)
## 1705 Batman Forever (1995)
## 1706 Crumb (1994)
## 1707 Desperado (1995)
## 1708 Nadja (1994)
## 1709 Net, The (1995)
## 1710 Strange Days (1995)
## 1711 To Wong Foo, Thanks for Everything! Julie Newmar (1995)
## 1712 Clerks (1994)
## 1713 Eat Drink Man Woman (1994)
## 1714 Hoop Dreams (1994)
## 1715 I.Q. (1994)
## 1716 Star Wars (1977)
## 1717 Legends of the Fall (1994)
## 1718 Natural Born Killers (1994)
## 1719 Pulp Fiction (1994)
## 1720 Quiz Show (1994)
## 1721 Three Colors: Red (1994)
## 1722 Three Colors: Blue (1993)
## 1723 Three Colors: White (1994)
## 1724 Stargate (1994)
## 1725 Shawshank Redemption, The (1994)
## 1726 While You Were Sleeping (1995)
## 1727 Ace Ventura: Pet Detective (1994)
## 1728 Crow, The (1994)
## 1729 Forrest Gump (1994)
## 1730 Four Weddings and a Funeral (1994)
## 1731 Lion King, The (1994)
## 1732 Mask, The (1994)
## 1733 Maverick (1994)
## 1734 Free Willy (1993)
## 1735 Fugitive, The (1993)
## 1736 Jurassic Park (1993)
## 1737 Much Ado About Nothing (1993)
## 1738 Remains of the Day, The (1993)
## 1739 Searching for Bobby Fischer (1993)
## 1740 Sleepless in Seattle (1993)
## 1741 Blade Runner (1982)
## 1742 So I Married an Axe Murderer (1993)
## 1743 Nightmare Before Christmas, The (1993)
## 1744 True Romance (1993)
## 1745 Home Alone (1990)
## 1746 Aladdin (1992)
## 1747 Terminator 2: Judgment Day (1991)
## 1748 Dances with Wolves (1990)
## 1749 Silence of the Lambs, The (1991)
## 1750 Snow White and the Seven Dwarfs (1937)
## 1751 Fargo (1996)
## 1752 Mystery Science Theater 3000: The Movie (1996)
## 1753 Operation Dumbo Drop (1995)
## 1754 Truth About Cats & Dogs, The (1996)
## 1755 Cold Comfort Farm (1995)
## 1756 Rock, The (1996)
## 1757 Twister (1996)
## 1758 Independence Day (ID4) (1996)
## 1759 Lone Star (1996)
## 1760 Godfather, The (1972)
## 1761 Supercop (1992)
## 1762 Wizard of Oz, The (1939)
## 1763 2001: A Space Odyssey (1968)
## 1764 Big Night (1996)
## 1765 D3: The Mighty Ducks (1996)
## 1766 20,000 Leagues Under the Sea (1954)
## 1767 Sound of Music, The (1965)
## 1768 Die Hard (1988)
## 1769 Lawnmower Man, The (1992)
## 1770 Long Kiss Goodnight, The (1996)
## 1771 Swingers (1996)
## 1772 Sleeper (1973)
## 1773 Fish Called Wanda, A (1988)
## 1774 Monty Python's Life of Brian (1979)
## 1775 Dirty Dancing (1987)
## 1776 Platoon (1986)
## 1777 Weekend at Bernie's (1989)
## 1778 Glengarry Glen Ross (1992)
## 1779 Top Gun (1986)
## 1780 Return of the Pink Panther, The (1974)
## 1781 Abyss, The (1989)
## 1782 Jean de Florette (1986)
## 1783 Manon of the Spring (Manon des sources) (1986)
## 1784 Private Benjamin (1980)
## 1785 Monty Python and the Holy Grail (1974)
## 1786 Cinema Paradiso (1988)
## 1787 Empire Strikes Back, The (1980)
## 1788 Princess Bride, The (1987)
## 1789 Raiders of the Lost Ark (1981)
## 1790 Brazil (1985)
## 1791 Aliens (1986)
## 1792 Good, The Bad and The Ugly, The (1966)
## 1793 12 Angry Men (1957)
## 1794 Clockwork Orange, A (1971)
## 1795 Apocalypse Now (1979)
## 1796 Return of the Jedi (1983)
## 1797 GoodFellas (1990)
## 1798 Alien (1979)
## 1799 Army of Darkness (1993)
## 1800 Psycho (1960)
## 1801 Blues Brothers, The (1980)
## 1802 Godfather: Part II, The (1974)
## 1803 Full Metal Jacket (1987)
## 1804 Henry V (1989)
## 1805 Amadeus (1984)
## 1806 Right Stuff, The (1983)
## 1807 Sting, The (1973)
## 1808 Terminator, The (1984)
## 1809 Dead Poets Society (1989)
## 1810 Graduate, The (1967)
## 1811 Nikita (La Femme Nikita) (1990)
## 1812 Bridge on the River Kwai, The (1957)
## 1813 Shining, The (1980)
## 1814 Evil Dead II (1987)
## 1815 Groundhog Day (1993)
## 1816 Back to the Future (1985)
## 1817 Patton (1970)
## 1818 Young Frankenstein (1974)
## 1819 This Is Spinal Tap (1984)
## 1820 Indiana Jones and the Last Crusade (1989)
## 1821 M*A*S*H (1970)
## 1822 Unbearable Lightness of Being, The (1988)
## 1823 Field of Dreams (1989)
## 1824 When Harry Met Sally... (1989)
## 1825 Bram Stoker's Dracula (1992)
## 1826 Cape Fear (1991)
## 1827 Nightmare on Elm Street, A (1984)
## 1828 Star Trek: First Contact (1996)
## 1829 Sling Blade (1996)
## 1830 Ridicule (1996)
## 1831 101 Dalmatians (1996)
## 1832 Die Hard 2 (1990)
## 1833 Star Trek VI: The Undiscovered Country (1991)
## 1834 Star Trek: The Wrath of Khan (1982)
## 1835 Star Trek III: The Search for Spock (1984)
## 1836 Star Trek IV: The Voyage Home (1986)
## 1837 Batman Returns (1992)
## 1838 Young Guns (1988)
## 1839 Under Siege (1992)
## 1840 Jaws (1975)
## 1841 Mars Attacks! (1996)
## 1842 Jerry Maguire (1996)
## 1843 Raising Arizona (1987)
## 1844 Sneakers (1992)
## 1845 Last of the Mohicans, The (1992)
## 1846 Kolya (1996)
## 1847 Jungle2Jungle (1997)
## 1848 Contact (1997)
## 1849 Event Horizon (1997)
## 1850 Air Bud (1997)
## 1851 In the Company of Men (1997)
## 1852 Steel (1997)
## 1853 Mimic (1997)
## 1854 Hunt for Red October, The (1990)
## 1855 Full Monty, The (1997)
## 1856 Gattaca (1997)
## 1857 Starship Troopers (1997)
## 1858 Good Will Hunting (1997)
## 1859 Heat (1995)
## 1860 Sabrina (1995)
## 1861 Sense and Sensibility (1995)
## 1862 Leaving Las Vegas (1995)
## 1863 Once Upon a Time... When We Were Colored (1995)
## 1864 Up Close and Personal (1996)
## 1865 River Wild, The (1994)
## 1866 Secrets & Lies (1996)
## 1867 English Patient, The (1996)
## 1868 Marvin's Room (1996)
## 1869 Scream (1996)
## 1870 Evita (1996)
## 1871 Fierce Creatures (1997)
## 1872 Rosewood (1997)
## 1873 Liar Liar (1997)
## 1874 Hoodlum (1997)
## 1875 Air Force One (1997)
## 1876 In & Out (1997)
## 1877 L.A. Confidential (1997)
## 1878 Ice Storm, The (1997)
## 1879 Mrs. Brown (Her Majesty, Mrs. Brown) (1997)
## 1880 Devil's Advocate, The (1997)
## 1881 FairyTale: A True Story (1997)
## 1882 Rainmaker, The (1997)
## 1883 Wings of the Dove, The (1997)
## 1884 Midnight in the Garden of Good and Evil (1997)
## 1885 Titanic (1997)
## 1886 3 Ninjas: High Noon At Mega Mountain (1998)
## 1887 Apt Pupil (1998)
## 1888 As Good As It Gets (1997)
## 1889 In the Name of the Father (1993)
## 1890 Schindler's List (1993)
## 1891 Everyone Says I Love You (1996)
## 1892 Paradise Lost: The Child Murders at Robin Hood Hills (1996)
## 1893 Mother (1996)
## 1894 Murder at 1600 (1997)
## 1895 Dante's Peak (1997)
## 1896 G.I. Jane (1997)
## 1897 Cop Land (1997)
## 1898 Conspiracy Theory (1997)
## 1899 Desperate Measures (1998)
## 1900 Edge, The (1997)
## 1901 Kiss the Girls (1997)
## 1902 Game, The (1997)
## 1903 U Turn (1997)
## 1904 Playing God (1997)
## 1905 Bean (1997)
## 1906 Mad City (1997)
## 1907 Boogie Nights (1997)
## 1908 Critical Care (1997)
## 1909 Man Who Knew Too Little, The (1997)
## 1910 Alien: Resurrection (1997)
## 1911 Apostle, The (1997)
## 1912 Deconstructing Harry (1997)
## 1913 Jackie Brown (1997)
## 1914 Wag the Dog (1997)
## 1915 Hard Rain (1998)
## 1916 Fallen (1998)
## 1917 Prophecy II, The (1998)
## 1918 Deep Rising (1998)
## 1919 Wedding Singer, The (1998)
## 1920 Sphere (1998)
## 1921 One Flew Over the Cuckoo's Nest (1975)
## 1922 Spawn (1997)
## 1923 Wonderland (1997)
## 1924 Blues Brothers 2000 (1998)
## 1925 Sudden Death (1995)
## 1926 Clueless (1995)
## 1927 Mary Reilly (1996)
## 1928 Bridges of Madison County, The (1995)
## 1929 Heavyweights (1994)
## 1930 Tales From the Crypt Presents: Demon Knight (1995)
## 1931 Adventures of Priscilla, Queen of the Desert, The (1994)
## 1932 Naked Gun 33 1/3: The Final Insult (1994)
## 1933 True Lies (1994)
## 1934 Age of Innocence, The (1993)
## 1935 Last Action Hero (1993)
## 1936 Mrs. Doubtfire (1993)
## 1937 Radioland Murders (1994)
## 1938 Serial Mom (1994)
## 1939 Super Mario Bros. (1993)
## 1940 Little Rascals, The (1994)
## 1941 Brady Bunch Movie, The (1995)
## 1942 Ghost (1990)
## 1943 Batman (1989)
## 1944 Pinocchio (1940)
## 1945 Mission: Impossible (1996)
## 1946 Thinner (1996)
## 1947 Jack (1996)
## 1948 Kingpin (1996)
## 1949 Nutty Professor, The (1996)
## 1950 Tales from the Crypt Presents: Bordello of Blood (1996)
## 1951 My Favorite Year (1982)
## 1952 Old Yeller (1957)
## 1953 Parent Trap, The (1961)
## 1954 Cinderella (1950)
## 1955 Mary Poppins (1964)
## 1956 Alice in Wonderland (1951)
## 1957 William Shakespeare's Romeo and Juliet (1996)
## 1958 E.T. the Extra-Terrestrial (1982)
## 1959 Children of the Corn: The Gathering (1996)
## 1960 To Kill a Mockingbird (1962)
## 1961 Harold and Maude (1971)
## 1962 Day the Earth Stood Still, The (1951)
## 1963 Duck Soup (1933)
## 1964 Highlander (1986)
## 1965 Fantasia (1940)
## 1966 Heathers (1989)
## 1967 Butch Cassidy and the Sundance Kid (1969)
## 1968 American Werewolf in London, An (1981)
## 1969 Amityville 1992: It's About Time (1992)
## 1970 Amityville 3-D (1983)
## 1971 Amityville: A New Generation (1993)
## 1972 Amityville II: The Possession (1982)
## 1973 Amityville Horror, The (1979)
## 1974 Amityville Curse, The (1990)
## 1975 Birds, The (1963)
## 1976 Blob, The (1958)
## 1977 Body Snatcher, The (1945)
## 1978 Burnt Offerings (1976)
## 1979 Carrie (1976)
## 1980 Omen, The (1976)
## 1981 Star Trek: The Motion Picture (1979)
## 1982 Star Trek V: The Final Frontier (1989)
## 1983 Grease (1978)
## 1984 Jaws 2 (1978)
## 1985 Jaws 3-D (1983)
## 1986 Jackie Chan's First Strike (1996)
## 1987 Free Willy 3: The Rescue (1997)
## 1988 Like Water For Chocolate (Como agua para chocolate) (1992)
## 1989 Secret of Roan Inish, The (1994)
## 1990 Bronx Tale, A (1993)
## 1991 Courage Under Fire (1996)
## 1992 Dragonheart (1996)
## 1993 James and the Giant Peach (1996)
## 1994 Dr. Strangelove or: How I Learned to Stop Worrying and Love the Bomb (1963)
## 1995 Trainspotting (1996)
## 1996 First Wives Club, The (1996)
## 1997 Matilda (1996)
## 1998 Philadelphia Story, The (1940)
## 1999 North by Northwest (1959)
## 2000 Apartment, The (1960)
## 2001 Some Like It Hot (1959)
## 2002 Casablanca (1942)
## 2003 Maltese Falcon, The (1941)
## 2004 My Fair Lady (1964)
## 2005 Sunset Blvd. (1950)
## 2006 Adventures of Robin Hood, The (1938)
## 2007 East of Eden (1955)
## 2008 Thin Man, The (1934)
## 2009 His Girl Friday (1940)
## 2010 Bringing Up Baby (1938)
## 2011 African Queen, The (1951)
## 2012 Dumbo (1941)
## 2013 Bananas (1971)
## 2014 Bonnie and Clyde (1967)
## 2015 Dial M for Murder (1954)
## 2016 Rebel Without a Cause (1955)
## 2017 Streetcar Named Desire, A (1951)
## 2018 People vs. Larry Flynt, The (1996)
## 2019 My Left Foot (1989)
## 2020 Magnificent Seven, The (1954)
## 2021 Lawrence of Arabia (1962)
## 2022 Annie Hall (1977)
## 2023 Boot, Das (1981)
## 2024 Local Hero (1983)
## 2025 Manhattan (1979)
## 2026 Miller's Crossing (1990)
## 2027 Treasure of the Sierra Madre, The (1948)
## 2028 Great Escape, The (1963)
## 2029 Down by Law (1986)
## 2030 Cool Hand Luke (1967)
## 2031 Great Dictator, The (1940)
## 2032 Big Sleep, The (1946)
## 2033 Ben-Hur (1959)
## 2034 Gandhi (1982)
## 2035 My Life as a Dog (Mitt liv som hund) (1985)
## 2036 Man Who Would Be King, The (1975)
## 2037 Shine (1996)
## 2038 Anastasia (1997)
## 2039 Mouse Hunt (1997)
## 2040 Money Train (1995)
## 2041 Mortal Kombat (1995)
## 2042 Broken Arrow (1996)
## 2043 Young Poisoner's Handbook, The (1995)
## 2044 NeverEnding Story III, The (1994)
## 2045 Rob Roy (1995)
## 2046 Die Hard: With a Vengeance (1995)
## 2047 Lord of Illusions (1995)
## 2048 Walk in the Clouds, A (1995)
## 2049 Waterworld (1995)
## 2050 Heavenly Creatures (1994)
## 2051 Interview with the Vampire (1994)
## 2052 Mary Shelley's Frankenstein (1994)
## 2053 Stephen King's The Langoliers (1995)
## 2054 Tales from the Hood (1995)
## 2055 Village of the Damned (1995)
## 2056 Clear and Present Danger (1994)
## 2057 Wes Craven's New Nightmare (1994)
## 2058 Speed (1994)
## 2059 Wolf (1994)
## 2060 Wyatt Earp (1994)
## 2061 Blown Away (1994)
## 2062 Body Snatchers (1993)
## 2063 Cliffhanger (1993)
## 2064 Demolition Man (1993)
## 2065 Son in Law (1993)
## 2066 Terminal Velocity (1994)
## 2067 Beauty and the Beast (1991)
## 2068 Wild Bunch, The (1969)
## 2069 Hellraiser: Bloodline (1996)
## 2070 Hunchback of Notre Dame, The (1996)
## 2071 Eraser (1996)
## 2072 For Whom the Bell Tolls (1943)
## 2073 American in Paris, An (1951)
## 2074 Rear Window (1954)
## 2075 It Happened One Night (1934)
## 2076 All About Eve (1950)
## 2077 Gigi (1958)
## 2078 Lost Horizon (1937)
## 2079 My Man Godfrey (1936)
## 2080 Giant (1956)
## 2081 39 Steps, The (1935)
## 2082 Blue Angel, The (Blaue Engel, Der) (1930)
## 2083 Extreme Measures (1996)
## 2084 Davy Crockett, King of the Wild Frontier (1955)
## 2085 Three Caballeros, The (1945)
## 2086 Sword in the Stone, The (1963)
## 2087 Victor/Victoria (1982)
## 2088 Great Race, The (1965)
## 2089 Crying Game, The (1992)
## 2090 Sophie's Choice (1982)
## 2091 Fog, The (1980)
## 2092 Escape from New York (1981)
## 2093 Howling, The (1981)
## 2094 Return of Martin Guerre, The (Retour de Martin Guerre, Le) (1982)
## 2095 Tin Drum, The (Blechtrommel, Die) (1979)
## 2096 Once Upon a Time in the West (1969)
## 2097 Ran (1985)
## 2098 Seventh Seal, The (Sjunde inseglet, Det) (1957)
## 2099 Glory (1989)
## 2100 Rosencrantz and Guildenstern Are Dead (1990)
## 2101 Chinatown (1974)
## 2102 Stand by Me (1986)
## 2103 M (1931)
## 2104 Manchurian Candidate, The (1962)
## 2105 Arsenic and Old Lace (1944)
## 2106 High Noon (1952)
## 2107 Somewhere in Time (1980)
## 2108 Being There (1979)
## 2109 Alien 3 (1992)
## 2110 Audrey Rose (1977)
## 2111 Blood Beach (1981)
## 2112 Body Parts (1991)
## 2113 Bride of Frankenstein (1935)
## 2114 Candyman (1992)
## 2115 Cape Fear (1962)
## 2116 Cat People (1982)
## 2117 Nosferatu (Nosferatu, eine Symphonie des Grauens) (1922)
## 2118 Volcano (1997)
## 2119 Conan the Barbarian (1981)
## 2120 I Know What You Did Last Summer (1997)
## 2121 Rocket Man (1997)
## 2122 In the Line of Fire (1993)
## 2123 Executive Decision (1996)
## 2124 Perfect World, A (1993)
## 2125 McHale's Navy (1997)
## 2126 Leave It to Beaver (1997)
## 2127 Jackal, The (1997)
## 2128 Seven Years in Tibet (1997)
## 2129 Dark City (1998)
## 2130 American President, The (1995)
## 2131 Persuasion (1995)
## 2132 Singin' in the Rain (1952)
## 2133 Bad Moon (1996)
## 2134 Strictly Ballroom (1992)
## 2135 Tin Men (1987)
## 2136 Home for the Holidays (1995)
## 2137 First Knight (1995)
## 2138 Nine Months (1995)
## 2139 Dave (1993)
## 2140 Go Fish (1994)
## 2141 Philadelphia (1993)
## 2142 Shadowlands (1993)
## 2143 Sirens (1994)
## 2144 Pretty Woman (1990)
## 2145 Jane Eyre (1996)
## 2146 Real Genius (1985)
## 2147 Benny & Joon (1993)
## 2148 Saint, The (1997)
## 2149 MatchMaker, The (1997)
## 2150 Amistad (1997)
## 2151 Tomorrow Never Dies (1997)
## 2152 Replacement Killers, The (1998)
## 2153 Red Corner (1997)
## 2154 Jumanji (1995)
## 2155 Father of the Bride Part II (1995)
## 2156 Across the Sea of Time (1995)
## 2157 Lawnmower Man 2: Beyond Cyberspace (1996)
## 2158 Fair Game (1995)
## 2159 Screamers (1995)
## 2160 Nick of Time (1995)
## 2161 Beautiful Girls (1996)
## 2162 Happy Gilmore (1996)
## 2163 If Lucy Fell (1996)
## 2164 Boomerang (1992)
## 2165 Man of the Year (1995)
## 2166 Addiction, The (1995)
## 2167 Casper (1995)
## 2168 Congo (1995)
## 2169 Devil in a Blue Dress (1995)
## 2170 Johnny Mnemonic (1995)
## 2171 Kids (1995)
## 2172 Mute Witness (1994)
## 2173 Prophecy, The (1995)
## 2174 Something to Talk About (1995)
## 2175 Three Wishes (1995)
## 2176 Castle Freak (1995)
## 2177 Don Juan DeMarco (1995)
## 2178 Drop Zone (1994)
## 2179 Dumb & Dumber (1994)
## 2180 French Kiss (1995)
## 2181 Little Odessa (1994)
## 2182 Milk Money (1994)
## 2183 Beyond Bedlam (1993)
## 2184 Only You (1994)
## 2185 Perez Family, The (1995)
## 2186 Roommates (1995)
## 2187 Relative Fear (1994)
## 2188 Swimming with Sharks (1995)
## 2189 Tommy Boy (1995)
## 2190 Baby-Sitters Club, The (1995)
## 2191 Bullets Over Broadway (1994)
## 2192 Crooklyn (1994)
## 2193 It Could Happen to You (1994)
## 2194 Richie Rich (1994)
## 2195 Speechless (1994)
## 2196 Timecop (1994)
## 2197 Bad Company (1995)
## 2198 Boys Life (1995)
## 2199 In the Mouth of Madness (1995)
## 2200 Air Up There, The (1994)
## 2201 Hard Target (1993)
## 2202 Heaven & Earth (1993)
## 2203 Jimmy Hollywood (1994)
## 2204 Manhattan Murder Mystery (1993)
## 2205 Menace II Society (1993)
## 2206 Poetic Justice (1993)
## 2207 Program, The (1993)
## 2208 Rising Sun (1993)
## 2209 Shadow, The (1994)
## 2210 Thirty-Two Short Films About Glenn Gould (1993)
## 2211 Andre (1994)
## 2212 Celluloid Closet, The (1995)
## 2213 Great Day in Harlem, A (1994)
## 2214 One Fine Day (1996)
## 2215 Candyman: Farewell to the Flesh (1995)
## 2216 Frisk (1995)
## 2217 Girl 6 (1996)
## 2218 Eddie (1996)
## 2219 Space Jam (1996)
## 2220 Mrs. Winterbourne (1996)
## 2221 Faces (1968)
## 2222 Mulholland Falls (1996)
## 2223 Great White Hype, The (1996)
## 2224 Arrival, The (1996)
## 2225 Phantom, The (1996)
## 2226 Daylight (1996)
## 2227 Alaska (1996)
## 2228 Fled (1996)
## 2229 Power 98 (1995)
## 2230 Escape from L.A. (1996)
## 2231 Bogus (1996)
## 2232 Bulletproof (1996)
## 2233 Halloween: The Curse of Michael Myers (1995)
## 2234 Gay Divorcee, The (1934)
## 2235 Ninotchka (1939)
## 2236 Meet John Doe (1941)
## 2237 In the Line of Duty 2 (1987)
## 2238 Loch Ness (1995)
## 2239 Last Man Standing (1996)
## 2240 Glimmer Man, The (1996)
## 2241 Pollyanna (1960)
## 2242 Shaggy Dog, The (1959)
## 2243 Freeway (1996)
## 2244 That Thing You Do! (1996)
## 2245 To Gillian on Her 37th Birthday (1996)
## 2246 Looking for Richard (1996)
## 2247 Murder, My Sweet (1944)
## 2248 Days of Thunder (1990)
## 2249 Perfect Candidate, A (1996)
## 2250 Two or Three Things I Know About Her (1966)
## 2251 Bloody Child, The (1996)
## 2252 Braindead (1992)
## 2253 Bad Taste (1987)
## 2254 Diva (1981)
## 2255 Night on Earth (1991)
## 2256 Paris Was a Woman (1995)
## 2257 Amityville: Dollhouse (1996)
## 2258 April Fool's Day (1986)
## 2259 Believers, The (1987)
## 2260 Nosferatu a Venezia (1986)
## 2261 Jingle All the Way (1996)
## 2262 Garden of Finzi-Contini, The (Giardino dei Finzi-Contini, Il) (1970)
## 2263 My Fellow Americans (1996)
## 2264 Michael (1996)
## 2265 Whole Wide World, The (1996)
## 2266 Hearts and Minds (1996)
## 2267 Fools Rush In (1997)
## 2268 Touch (1997)
## 2269 Vegas Vacation (1997)
## 2270 Love Jones (1997)
## 2271 Picture Perfect (1997)
## 2272 Career Girls (1997)
## 2273 She's So Lovely (1997)
## 2274 Money Talks (1997)
## 2275 Excess Baggage (1997)
## 2276 That Darn Cat! (1997)
## 2277 Peacemaker, The (1997)
## 2278 Soul Food (1997)
## 2279 Washington Square (1997)
## 2280 Telling Lies in America (1997)
## 2281 Year of the Horse (1997)
## 2282 Phantoms (1998)
## 2283 Life Less Ordinary, A (1997)
## 2284 Eve's Bayou (1997)
## 2285 One Night Stand (1997)
## 2286 Tango Lesson, The (1997)
## 2287 Mortal Kombat: Annihilation (1997)
## 2288 Bent (1997)
## 2289 Flubber (1997)
## 2290 For Richer or Poorer (1997)
## 2291 Home Alone 3 (1997)
## 2292 Scream 2 (1997)
## 2293 Sweet Hereafter, The (1997)
## 2294 Time Tracers (1995)
## 2295 Postman, The (1997)
## 2296 Winter Guest, The (1997)
## 2297 Kundun (1997)
## 2298 Mr. Magoo (1997)
## 2299 Big Lebowski, The (1998)
## 2300 Afterglow (1997)
## 2301 Ma vie en rose (My Life in Pink) (1997)
## 2302 Great Expectations (1998)
## 2303 Oscar & Lucinda (1997)
## 2304 Vermin (1998)
## 2305 Half Baked (1998)
## 2306 Dangerous Beauty (1998)
## 2307 Nil By Mouth (1997)
## 2308 Twilight (1998)
## 2309 U.S. Marshalls (1998)
## 2310 Love and Death on Long Island (1997)
## 2311 Wild Things (1998)
## 2312 Primary Colors (1998)
## 2313 Lost in Space (1998)
## 2314 Mercury Rising (1998)
## 2315 City of Angels (1998)
## 2316 Twelve Monkeys (1995)
## 2317 Dead Man Walking (1995)
## 2318 Usual Suspects, The (1995)
## 2319 Mighty Aphrodite (1995)
## 2320 Postino, Il (1994)
## 2321 Mr. Holland's Opus (1995)
## 2322 White Balloon, The (1995)
## 2323 Antonia's Line (1995)
## 2324 Braveheart (1995)
## 2325 Taxi Driver (1976)
## 2326 Birdcage, The (1996)
## 2327 Crumb (1994)
## 2328 Clerks (1994)
## 2329 Star Wars (1977)
## 2330 Pulp Fiction (1994)
## 2331 Four Weddings and a Funeral (1994)
## 2332 Hudsucker Proxy, The (1994)
## 2333 Welcome to the Dollhouse (1995)
## 2334 Terminator 2: Judgment Day (1991)
## 2335 Silence of the Lambs, The (1991)
## 2336 Fargo (1996)
## 2337 Truth About Cats & Dogs, The (1996)
## 2338 Cold Comfort Farm (1995)
## 2339 Independence Day (ID4) (1996)
## 2340 Lone Star (1996)
## 2341 Godfather, The (1972)
## 2342 Willy Wonka and the Chocolate Factory (1971)
## 2343 Monty Python and the Holy Grail (1974)
## 2344 Empire Strikes Back, The (1980)
## 2345 Princess Bride, The (1987)
## 2346 Raiders of the Lost Ark (1981)
## 2347 Brazil (1985)
## 2348 Aliens (1986)
## 2349 Return of the Jedi (1983)
## 2350 Blues Brothers, The (1980)
## 2351 Amadeus (1984)
## 2352 Terminator, The (1984)
## 2353 Groundhog Day (1993)
## 2354 Back to the Future (1985)
## 2355 Indiana Jones and the Last Crusade (1989)
## 2356 M*A*S*H (1970)
## 2357 Room with a View, A (1986)
## 2358 Star Trek: First Contact (1996)
## 2359 Raising Arizona (1987)
## 2360 Beavis and Butt-head Do America (1996)
## 2361 Kolya (1996)
## 2362 Hunt for Red October, The (1990)
## 2363 Full Monty, The (1997)
## 2364 Sense and Sensibility (1995)
## 2365 Leaving Las Vegas (1995)
## 2366 Emma (1996)
## 2367 Secrets & Lies (1996)
## 2368 Scream (1996)
## 2369 L.A. Confidential (1997)
## 2370 Titanic (1997)
## 2371 Everyone Says I Love You (1996)
## 2372 One Flew Over the Cuckoo's Nest (1975)
## 2373 Adventures of Priscilla, Queen of the Desert, The (1994)
## 2374 Close Shave, A (1995)
## 2375 To Kill a Mockingbird (1962)
## 2376 Harold and Maude (1971)
## 2377 Duck Soup (1933)
## 2378 Jackie Chan's First Strike (1996)
## 2379 James and the Giant Peach (1996)
## 2380 Dr. Strangelove or: How I Learned to Stop Worrying and Love the Bomb (1963)
## 2381 Trainspotting (1996)
## 2382 Matilda (1996)
## 2383 East of Eden (1955)
## 2384 African Queen, The (1951)
## 2385 Streetcar Named Desire, A (1951)
## 2386 My Left Foot (1989)
## 2387 Annie Hall (1977)
## 2388 Manhattan (1979)
## 2389 Treasure of the Sierra Madre, The (1948)
## 2390 Cool Hand Luke (1967)
## 2391 Great Dictator, The (1940)
## 2392 Big Sleep, The (1946)
## 2393 Man Who Would Be King, The (1975)
## 2394 Beauty and the Beast (1991)
## 2395 Hunchback of Notre Dame, The (1996)
## 2396 Rear Window (1954)
## 2397 Sleepers (1996)
## 2398 Chinatown (1974)
## 2399 Stand by Me (1986)
## 2400 Being There (1979)
## 2401 Strictly Ballroom (1992)
## 2402 Home for the Holidays (1995)
## 2403 Amistad (1997)
## 2404 Beautiful Girls (1996)
## 2405 Bullets Over Broadway (1994)
## 2406 Celluloid Closet, The (1995)
## 2407 Space Jam (1996)
## 2408 That Thing You Do! (1996)
## 2409 City of Lost Children, The (1995)
## 2410 Two Bits (1995)
## 2411 Farewell My Concubine (1993)
## 2412 Dead Man (1995)
## 2413 Raise the Red Lantern (1991)
## 2414 Toy Story (1995)
## 2415 Twelve Monkeys (1995)
## 2416 Dead Man Walking (1995)
## 2417 Mighty Aphrodite (1995)
## 2418 Postino, Il (1994)
## 2419 Mr. Holland's Opus (1995)
## 2420 White Balloon, The (1995)
## 2421 Angels and Insects (1995)
## 2422 Birdcage, The (1996)
## 2423 Star Wars (1977)
## 2424 Truth About Cats & Dogs, The (1996)
## 2425 Twister (1996)
## 2426 Independence Day (ID4) (1996)
## 2427 Phenomenon (1996)
## 2428 Godfather, The (1972)
## 2429 Big Night (1996)
## 2430 Ghost and the Darkness, The (1996)
## 2431 Return of the Jedi (1983)
## 2432 Mirror Has Two Faces, The (1996)
## 2433 Star Trek: First Contact (1996)
## 2434 101 Dalmatians (1996)
## 2435 Mars Attacks! (1996)
## 2436 Jerry Maguire (1996)
## 2437 Jungle2Jungle (1997)
## 2438 Smilla's Sense of Snow (1997)
## 2439 Grosse Pointe Blank (1997)
## 2440 Austin Powers: International Man of Mystery (1997)
## 2441 Shall We Dance? (1996)
## 2442 Lost World: Jurassic Park, The (1997)
## 2443 My Best Friend's Wedding (1997)
## 2444 Men in Black (1997)
## 2445 Contact (1997)
## 2446 Full Monty, The (1997)
## 2447 Sabrina (1995)
## 2448 Sense and Sensibility (1995)
## 2449 Bed of Roses (1996)
## 2450 Up Close and Personal (1996)
## 2451 Time to Kill, A (1996)
## 2452 Emma (1996)
## 2453 Secrets & Lies (1996)
## 2454 English Patient, The (1996)
## 2455 Evita (1996)
## 2456 Absolute Power (1997)
## 2457 Rosewood (1997)
## 2458 Ulee's Gold (1997)
## 2459 Air Force One (1997)
## 2460 In & Out (1997)
## 2461 L.A. Confidential (1997)
## 2462 Mrs. Brown (Her Majesty, Mrs. Brown) (1997)
## 2463 Devil's Advocate, The (1997)
## 2464 FairyTale: A True Story (1997)
## 2465 Rainmaker, The (1997)
## 2466 Murder at 1600 (1997)
## 2467 Dante's Peak (1997)
## 2468 Conspiracy Theory (1997)
## 2469 Edge, The (1997)
## 2470 Game, The (1997)
## 2471 Mission: Impossible (1996)
## 2472 Jack (1996)
## 2473 Nutty Professor, The (1996)
## 2474 Jackie Chan's First Strike (1996)
## 2475 Nixon (1995)
## 2476 Cry, the Beloved Country (1995)
## 2477 Courage Under Fire (1996)
## 2478 Dragonheart (1996)
## 2479 James and the Giant Peach (1996)
## 2480 First Wives Club, The (1996)
## 2481 People vs. Larry Flynt, The (1996)
## 2482 Broken Arrow (1996)
## 2483 Primal Fear (1996)
## 2484 Chamber, The (1996)
## 2485 Crucible, The (1996)
## 2486 Volcano (1997)
## 2487 Executive Decision (1996)
## 2488 Seven Years in Tibet (1997)
## 2489 City Hall (1996)
## 2490 Ransom (1996)
## 2491 Michael Collins (1996)
## 2492 Saint, The (1997)
## 2493 MatchMaker, The (1997)
## 2494 Red Corner (1997)
## 2495 One Fine Day (1996)
## 2496 Mulholland Falls (1996)
## 2497 That Thing You Do! (1996)
## 2498 My Fellow Americans (1996)
## 2499 Michael (1996)
## 2500 Peacemaker, The (1997)
## 2501 Tango Lesson, The (1997)
## 2502 White Squall (1996)
## 2503 Unforgettable (1996)
## 2504 Down Periscope (1996)
## 2505 Flower of My Secret, The (Flor de mi secreto, La) (1995)
## 2506 Craft, The (1996)
## 2507 Harriet the Spy (1996)
## 2508 Chain Reaction (1996)
## 2509 Island of Dr. Moreau, The (1996)
## 2510 First Kid (1996)
## 2511 Funeral, The (1996)
## 2512 Preacher's Wife, The (1996)
## 2513 Paradise Road (1997)
## 2514 Brassed Off (1996)
## 2515 Thousand Acres, A (1997)
## 2516 Smile Like Yours, A (1997)
## 2517 Toy Story (1995)
## 2518 Get Shorty (1995)
## 2519 Twelve Monkeys (1995)
## 2520 Babe (1995)
## 2521 Dead Man Walking (1995)
## 2522 Seven (Se7en) (1995)
## 2523 Usual Suspects, The (1995)
## 2524 Mr. Holland's Opus (1995)
## 2525 Braveheart (1995)
## 2526 Bad Boys (1995)
## 2527 Apollo 13 (1995)
## 2528 Crimson Tide (1995)
## 2529 Desperado (1995)
## 2530 Strange Days (1995)
## 2531 Legends of the Fall (1994)
## 2532 Professional, The (1994)
## 2533 Pulp Fiction (1994)
## 2534 Quiz Show (1994)
## 2535 Shawshank Redemption, The (1994)
## 2536 While You Were Sleeping (1995)
## 2537 Forrest Gump (1994)
## 2538 Four Weddings and a Funeral (1994)
## 2539 Lion King, The (1994)
## 2540 Carlito's Way (1993)
## 2541 Fugitive, The (1993)
## 2542 Searching for Bobby Fischer (1993)
## 2543 Blade Runner (1982)
## 2544 True Romance (1993)
## 2545 Aladdin (1992)
## 2546 Terminator 2: Judgment Day (1991)
## 2547 Silence of the Lambs, The (1991)
## 2548 Snow White and the Seven Dwarfs (1937)
## 2549 Fargo (1996)
## 2550 Mystery Science Theater 3000: The Movie (1996)
## 2551 Phenomenon (1996)
## 2552 Godfather, The (1972)
## 2553 Citizen Kane (1941)
## 2554 2001: A Space Odyssey (1968)
## 2555 Sound of Music, The (1965)
## 2556 Die Hard (1988)
## 2557 Willy Wonka and the Chocolate Factory (1971)
## 2558 Sleeper (1973)
## 2559 Dirty Dancing (1987)
## 2560 Reservoir Dogs (1992)
## 2561 Weekend at Bernie's (1989)
## 2562 Glengarry Glen Ross (1992)
## 2563 Top Gun (1986)
## 2564 Abyss, The (1989)
## 2565 Monty Python and the Holy Grail (1974)
## 2566 Empire Strikes Back, The (1980)
## 2567 Raiders of the Lost Ark (1981)
## 2568 12 Angry Men (1957)
## 2569 Apocalypse Now (1979)
## 2570 GoodFellas (1990)
## 2571 Alien (1979)
## 2572 Amadeus (1984)
## 2573 Sting, The (1973)
## 2574 Terminator, The (1984)
## 2575 Graduate, The (1967)
## 2576 Bridge on the River Kwai, The (1957)
## 2577 Shining, The (1980)
## 2578 Groundhog Day (1993)
## 2579 Back to the Future (1985)
## 2580 Young Frankenstein (1974)
## 2581 This Is Spinal Tap (1984)
## 2582 When Harry Met Sally... (1989)
## 2583 Star Trek VI: The Undiscovered Country (1991)
## 2584 Star Trek: The Wrath of Khan (1982)
## 2585 Star Trek IV: The Voyage Home (1986)
## 2586 Under Siege (1992)
## 2587 Jaws (1975)
## 2588 Jerry Maguire (1996)
## 2589 Beavis and Butt-head Do America (1996)
## 2590 Heat (1995)
## 2591 Time to Kill, A (1996)
## 2592 Tin Cup (1996)
## 2593 English Patient, The (1996)
## 2594 Scream (1996)
## 2595 Liar Liar (1997)
## 2596 Air Force One (1997)
## 2597 L.A. Confidential (1997)
## 2598 Schindler's List (1993)
## 2599 Mother (1996)
## 2600 One Flew Over the Cuckoo's Nest (1975)
## 2601 Clueless (1995)
## 2602 True Lies (1994)
## 2603 Pinocchio (1940)
## 2604 Kingpin (1996)
## 2605 Cinderella (1950)
## 2606 E.T. the Extra-Terrestrial (1982)
## 2607 To Kill a Mockingbird (1962)
## 2608 Birds, The (1963)
## 2609 Carrie (1976)
## 2610 Omen, The (1976)
## 2611 Bronx Tale, A (1993)
## 2612 Short Cuts (1993)
## 2613 Courage Under Fire (1996)
## 2614 First Wives Club, The (1996)
## 2615 Vertigo (1958)
## 2616 North by Northwest (1959)
## 2617 Some Like It Hot (1959)
## 2618 It's a Wonderful Life (1946)
## 2619 African Queen, The (1951)
## 2620 Bananas (1971)
## 2621 Bonnie and Clyde (1967)
## 2622 My Left Foot (1989)
## 2623 Magnificent Seven, The (1954)
## 2624 Shine (1996)
## 2625 Broken Arrow (1996)
## 2626 Tales from the Hood (1995)
## 2627 Romeo Is Bleeding (1993)
## 2628 Primal Fear (1996)
## 2629 American in Paris, An (1951)
## 2630 Rear Window (1954)
## 2631 All About Eve (1950)
## 2632 Victor/Victoria (1982)
## 2633 Grifters, The (1990)
## 2634 Chinatown (1974)
## 2635 Stand by Me (1986)
## 2636 Manchurian Candidate, The (1962)
## 2637 High Noon (1952)
## 2638 In the Line of Fire (1993)
## 2639 American President, The (1995)
## 2640 Casino (1995)
## 2641 Singin' in the Rain (1952)
## 2642 Dave (1993)
## 2643 Philadelphia (1993)
## 2644 Nick of Time (1995)
## 2645 Devil in a Blue Dress (1995)
## 2646 Andre (1994)
## 2647 Murder in the First (1995)
## 2648 Airheads (1994)
## 2649 With Honors (1994)
## 2650 What's Love Got to Do with It (1993)
## 2651 Killing Zoe (1994)
## 2652 Renaissance Man (1994)
## 2653 Charade (1963)
## 2654 Fox and the Hound, The (1981)
## 2655 Big Blue, The (Grand bleu, Le) (1988)
## 2656 Booty Call (1997)
## 2657 Toy Story (1995)
## 2658 Twelve Monkeys (1995)
## 2659 Dead Man Walking (1995)
## 2660 Mighty Aphrodite (1995)
## 2661 Fargo (1996)
## 2662 Truth About Cats & Dogs, The (1996)
## 2663 Rock, The (1996)
## 2664 Phenomenon (1996)
## 2665 Spitfire Grill, The (1996)
## 2666 Big Night (1996)
## 2667 Swingers (1996)
## 2668 Willy Wonka and the Chocolate Factory (1971)
## 2669 Breaking the Waves (1996)
## 2670 Star Trek: First Contact (1996)
## 2671 Jerry Maguire (1996)
## 2672 Jungle2Jungle (1997)
## 2673 Devil's Own, The (1997)
## 2674 Full Monty, The (1997)
## 2675 Leaving Las Vegas (1995)
## 2676 English Patient, The (1996)
## 2677 Liar Liar (1997)
## 2678 Dante's Peak (1997)
## 2679 Courage Under Fire (1996)
## 2680 Trainspotting (1996)
## 2681 People vs. Larry Flynt, The (1996)
## 2682 Sleepers (1996)
## 2683 Michael Collins (1996)
## 2684 City of Lost Children, The (1995)
## 2685 Toy Story (1995)
## 2686 Get Shorty (1995)
## 2687 Shanghai Triad (Yao a yao yao dao waipo qiao) (1995)
## 2688 Babe (1995)
## 2689 Dead Man Walking (1995)
## 2690 Usual Suspects, The (1995)
## 2691 Mighty Aphrodite (1995)
## 2692 Postino, Il (1994)
## 2693 Mr. Holland's Opus (1995)
## 2694 Antonia's Line (1995)
## 2695 Braveheart (1995)
## 2696 Taxi Driver (1976)
## 2697 Birdcage, The (1996)
## 2698 Brothers McMullen, The (1995)
## 2699 Apollo 13 (1995)
## 2700 Crumb (1994)
## 2701 Clerks (1994)
## 2702 Eat Drink Man Woman (1994)
## 2703 Ed Wood (1994)
## 2704 Hoop Dreams (1994)
## 2705 Star Wars (1977)
## 2706 Madness of King George, The (1994)
## 2707 Pulp Fiction (1994)
## 2708 Priest (1994)
## 2709 Quiz Show (1994)
## 2710 Three Colors: Red (1994)
## 2711 Three Colors: Blue (1993)
## 2712 Three Colors: White (1994)
## 2713 Shawshank Redemption, The (1994)
## 2714 What's Eating Gilbert Grape (1993)
## 2715 While You Were Sleeping (1995)
## 2716 Forrest Gump (1994)
## 2717 Four Weddings and a Funeral (1994)
## 2718 Lion King, The (1994)
## 2719 Mask, The (1994)
## 2720 Fugitive, The (1993)
## 2721 Hudsucker Proxy, The (1994)
## 2722 Jurassic Park (1993)
## 2723 Much Ado About Nothing (1993)
## 2724 Remains of the Day, The (1993)
## 2725 Sleepless in Seattle (1993)
## 2726 Blade Runner (1982)
## 2727 Nightmare Before Christmas, The (1993)
## 2728 Home Alone (1990)
## 2729 Aladdin (1992)
## 2730 Dances with Wolves (1990)
## 2731 Silence of the Lambs, The (1991)
## 2732 Snow White and the Seven Dwarfs (1937)
## 2733 Fargo (1996)
## 2734 Truth About Cats & Dogs, The (1996)
## 2735 Horseman on the Roof, The (Hussard sur le toit, Le) (1995)
## 2736 Cold Comfort Farm (1995)
## 2737 Phenomenon (1996)
## 2738 Spitfire Grill, The (1996)
## 2739 Godfather, The (1972)
## 2740 Breakfast at Tiffany's (1961)
## 2741 Wizard of Oz, The (1939)
## 2742 Gone with the Wind (1939)
## 2743 Citizen Kane (1941)
## 2744 2001: A Space Odyssey (1968)
## 2745 Mr. Smith Goes to Washington (1939)
## 2746 Big Night (1996)
## 2747 Bedknobs and Broomsticks (1971)
## 2748 Sound of Music, The (1965)
## 2749 Willy Wonka and the Chocolate Factory (1971)
## 2750 Sleeper (1973)
## 2751 Fish Called Wanda, A (1988)
## 2752 Monty Python's Life of Brian (1979)
## 2753 Platoon (1986)
## 2754 On Golden Pond (1981)
## 2755 Jean de Florette (1986)
## 2756 Manon of the Spring (Manon des sources) (1986)
## 2757 Monty Python and the Holy Grail (1974)
## 2758 Wrong Trousers, The (1993)
## 2759 Cinema Paradiso (1988)
## 2760 Empire Strikes Back, The (1980)
## 2761 Raiders of the Lost Ark (1981)
## 2762 Brazil (1985)
## 2763 Good, The Bad and The Ugly, The (1966)
## 2764 12 Angry Men (1957)
## 2765 Clockwork Orange, A (1971)
## 2766 Apocalypse Now (1979)
## 2767 Return of the Jedi (1983)
## 2768 GoodFellas (1990)
## 2769 Psycho (1960)
## 2770 Blues Brothers, The (1980)
## 2771 Godfather: Part II, The (1974)
## 2772 Full Metal Jacket (1987)
## 2773 Grand Day Out, A (1992)
## 2774 Henry V (1989)
## 2775 Amadeus (1984)
## 2776 Right Stuff, The (1983)
## 2777 Sting, The (1973)
## 2778 Terminator, The (1984)
## 2779 Dead Poets Society (1989)
## 2780 Graduate, The (1967)
## 2781 Nikita (La Femme Nikita) (1990)
## 2782 Bridge on the River Kwai, The (1957)
## 2783 Shining, The (1980)
## 2784 Groundhog Day (1993)
## 2785 Back to the Future (1985)
## 2786 Young Frankenstein (1974)
## 2787 This Is Spinal Tap (1984)
## 2788 Indiana Jones and the Last Crusade (1989)
## 2789 M*A*S*H (1970)
## 2790 Unbearable Lightness of Being, The (1988)
## 2791 Room with a View, A (1986)
## 2792 Pink Floyd - The Wall (1982)
## 2793 Field of Dreams (1989)
## 2794 When Harry Met Sally... (1989)
## 2795 Breaking the Waves (1996)
## 2796 Sling Blade (1996)
## 2797 Ridicule (1996)
## 2798 Jaws (1975)
## 2799 Citizen Ruth (1996)
## 2800 Jerry Maguire (1996)
## 2801 Raising Arizona (1987)
## 2802 Last of the Mohicans, The (1992)
## 2803 Kolya (1996)
## 2804 Full Monty, The (1997)
## 2805 Sense and Sensibility (1995)
## 2806 Leaving Las Vegas (1995)
## 2807 Emma (1996)
## 2808 Tin Cup (1996)
## 2809 Secrets & Lies (1996)
## 2810 English Patient, The (1996)
## 2811 Marvin's Room (1996)
## 2812 In the Name of the Father (1993)
## 2813 Schindler's List (1993)
## 2814 Everyone Says I Love You (1996)
## 2815 One Flew Over the Cuckoo's Nest (1975)
## 2816 Clueless (1995)
## 2817 Miracle on 34th Street (1994)
## 2818 Muriel's Wedding (1994)
## 2819 Adventures of Priscilla, Queen of the Desert, The (1994)
## 2820 Addams Family Values (1993)
## 2821 Age of Innocence, The (1993)
## 2822 Man Without a Face, The (1993)
## 2823 Mrs. Doubtfire (1993)
## 2824 Ghost (1990)
## 2825 Batman (1989)
## 2826 Pinocchio (1940)
## 2827 Close Shave, A (1995)
## 2828 Nutty Professor, The (1996)
## 2829 My Favorite Year (1982)
## 2830 Old Yeller (1957)
## 2831 Cinderella (1950)
## 2832 Mary Poppins (1964)
## 2833 E.T. the Extra-Terrestrial (1982)
## 2834 Bob Roberts (1992)
## 2835 To Kill a Mockingbird (1962)
## 2836 Harold and Maude (1971)
## 2837 Duck Soup (1933)
## 2838 Fantasia (1940)
## 2839 Forbidden Planet (1956)
## 2840 Butch Cassidy and the Sundance Kid (1969)
## 2841 Birds, The (1963)
## 2842 Grease (1978)
## 2843 Smoke (1995)
## 2844 Like Water For Chocolate (Como agua para chocolate) (1992)
## 2845 Secret of Roan Inish, The (1994)
## 2846 Dr. Strangelove or: How I Learned to Stop Worrying and Love the Bomb (1963)
## 2847 First Wives Club, The (1996)
## 2848 Philadelphia Story, The (1940)
## 2849 Vertigo (1958)
## 2850 North by Northwest (1959)
## 2851 Some Like It Hot (1959)
## 2852 Casablanca (1942)
## 2853 My Fair Lady (1964)
## 2854 Sabrina (1954)
## 2855 Roman Holiday (1953)
## 2856 Sunset Blvd. (1950)
## 2857 Notorious (1946)
## 2858 East of Eden (1955)
## 2859 Thin Man, The (1934)
## 2860 His Girl Friday (1940)
## 2861 It's a Wonderful Life (1946)
## 2862 Bringing Up Baby (1938)
## 2863 African Queen, The (1951)
## 2864 Bonnie and Clyde (1967)
## 2865 My Left Foot (1989)
## 2866 Magnificent Seven, The (1954)
## 2867 Wings of Desire (1987)
## 2868 Third Man, The (1949)
## 2869 Annie Hall (1977)
## 2870 Boot, Das (1981)
## 2871 Local Hero (1983)
## 2872 Manhattan (1979)
## 2873 Treasure of the Sierra Madre, The (1948)
## 2874 Great Escape, The (1963)
## 2875 Cool Hand Luke (1967)
## 2876 Great Dictator, The (1940)
## 2877 Ben-Hur (1959)
## 2878 Gandhi (1982)
## 2879 Killing Fields, The (1984)
## 2880 My Life as a Dog (Mitt liv som hund) (1985)
## 2881 Man Who Would Be King, The (1975)
## 2882 Rob Roy (1995)
## 2883 Piano, The (1993)
## 2884 Beauty and the Beast (1991)
## 2885 American in Paris, An (1951)
## 2886 Rear Window (1954)
## 2887 It Happened One Night (1934)
## 2888 Rebecca (1940)
## 2889 Father of the Bride (1950)
## 2890 Gigi (1958)
## 2891 Lost Horizon (1937)
## 2892 My Man Godfrey (1936)
## 2893 Giant (1956)
## 2894 Robin Hood: Prince of Thieves (1991)
## 2895 Victor/Victoria (1982)
## 2896 Great Race, The (1965)
## 2897 Crying Game, The (1992)
## 2898 Christmas Carol, A (1938)
## 2899 Tin Drum, The (Blechtrommel, Die) (1979)
## 2900 Ran (1985)
## 2901 Once Upon a Time in America (1984)
## 2902 Chinatown (1974)
## 2903 Arsenic and Old Lace (1944)
## 2904 Fried Green Tomatoes (1991)
## 2905 Being There (1979)
## 2906 American President, The (1995)
## 2907 Little Women (1994)
## 2908 Barcelona (1994)
## 2909 House of the Spirits, The (1993)
## 2910 Singin' in the Rain (1952)
## 2911 Enchanted April (1991)
## 2912 Sex, Lies, and Videotape (1989)
## 2913 Strictly Ballroom (1992)
## 2914 Carrington (1995)
## 2915 Home for the Holidays (1995)
## 2916 Circle of Friends (1995)
## 2917 Nell (1994)
## 2918 Dave (1993)
## 2919 Philadelphia (1993)
## 2920 Shadowlands (1993)
## 2921 Sirens (1994)
## 2922 Pretty Woman (1990)
## 2923 Benny & Joon (1993)
## 2924 Burnt By the Sun (1994)
## 2925 Beautiful Girls (1996)
## 2926 Something to Talk About (1995)
## 2927 Don Juan DeMarco (1995)
## 2928 French Kiss (1995)
## 2929 Bullets Over Broadway (1994)
## 2930 It Could Happen to You (1994)
## 2931 Manhattan Murder Mystery (1993)
## 2932 That Thing You Do! (1996)
## 2933 Night on Earth (1991)
## 2934 Garden of Finzi-Contini, The (Giardino dei Finzi-Contini, Il) (1970)
## 2935 Farewell My Concubine (1993)
## 2936 Raise the Red Lantern (1991)
## 2937 How to Make an American Quilt (1995)
## 2938 Georgia (1995)
## 2939 Indian in the Cupboard, The (1995)
## 2940 Blue in the Face (1995)
## 2941 Unstrung Heroes (1995)
## 2942 Unzipped (1995)
## 2943 Before Sunrise (1995)
## 2944 Nobody's Fool (1994)
## 2945 Pushing Hands (1992)
## 2946 To Live (Huozhe) (1994)
## 2947 Dazed and Confused (1993)
## 2948 Naked (1993)
## 2949 Orlando (1993)
## 2950 Ruby in Paradise (1993)
## 2951 Some Folks Call It a Sling Blade (1993)
## 2952 Month by the Lake, A (1995)
## 2953 Funny Face (1957)
## 2954 Affair to Remember, An (1957)
## 2955 Little Lord Fauntleroy (1936)
## 2956 Inspector General, The (1949)
## 2957 Winnie the Pooh and the Blustery Day (1968)
## 2958 Hear My Song (1991)
## 2959 Mediterraneo (1991)
## 2960 Passion Fish (1992)
## 2961 Grateful Dead (1995)
## 2962 Get Shorty (1995)
## 2963 Babe (1995)
## 2964 Fish Called Wanda, A (1988)
## 2965 Evil Dead II (1987)
## 2966 Groundhog Day (1993)
## 2967 Indiana Jones and the Last Crusade (1989)
## 2968 M*A*S*H (1970)
## 2969 Contact (1997)
## 2970 Scream (1996)
## 2971 Liar Liar (1997)
## 2972 Rainmaker, The (1997)
## 2973 Titanic (1997)
## 2974 Everyone Says I Love You (1996)
## 2975 Crash (1996)
## 2976 Adventures of Priscilla, Queen of the Desert, The (1994)
## 2977 Butch Cassidy and the Sundance Kid (1969)
## 2978 Stand by Me (1986)
## 2979 American President, The (1995)
## 2980 Eve's Bayou (1997)
## 2981 Toy Story (1995)
## 2982 Seven (Se7en) (1995)
## 2983 Mr. Holland's Opus (1995)
## 2984 Braveheart (1995)
## 2985 Star Wars (1977)
## 2986 Forrest Gump (1994)
## 2987 Jurassic Park (1993)
## 2988 Searching for Bobby Fischer (1993)
## 2989 Home Alone (1990)
## 2990 Aladdin (1992)
## 2991 Silence of the Lambs, The (1991)
## 2992 Twister (1996)
## 2993 Independence Day (ID4) (1996)
## 2994 Sound of Music, The (1965)
## 2995 Die Hard (1988)
## 2996 Ghost and the Darkness, The (1996)
## 2997 Willy Wonka and the Chocolate Factory (1971)
## 2998 Empire Strikes Back, The (1980)
## 2999 Raiders of the Lost Ark (1981)
## 3000 Aliens (1986)
## 3001 Return of the Jedi (1983)
## 3002 Blues Brothers, The (1980)
## 3003 Sting, The (1973)
## 3004 Back to the Future (1985)
## 3005 Young Frankenstein (1974)
## 3006 Indiana Jones and the Last Crusade (1989)
## 3007 Jungle2Jungle (1997)
## 3008 Lost World: Jurassic Park, The (1997)
## 3009 Sabrina (1995)
## 3010 Scream (1996)
## 3011 Dante's Peak (1997)
## 3012 One Flew Over the Cuckoo's Nest (1975)
## 3013 Miracle on 34th Street (1994)
## 3014 Mission: Impossible (1996)
## 3015 E.T. the Extra-Terrestrial (1982)
## 3016 It's a Wonderful Life (1946)
## 3017 African Queen, The (1951)
## 3018 Speed (1994)
## 3019 Beauty and the Beast (1991)
## 3020 Eraser (1996)
## 3021 Christmas Carol, A (1938)
## 3022 Volcano (1997)
## 3023 Ransom (1996)
## 3024 Happy Gilmore (1996)
## 3025 Space Jam (1996)
## 3026 Michael (1996)
## 3027 Island of Dr. Moreau, The (1996)
## 3028 Preacher's Wife, The (1996)
## 3029 Toy Story (1995)
## 3030 Copycat (1995)
## 3031 Twelve Monkeys (1995)
## 3032 Dead Man Walking (1995)
## 3033 Mr. Holland's Opus (1995)
## 3034 From Dusk Till Dawn (1996)
## 3035 Star Wars (1977)
## 3036 Natural Born Killers (1994)
## 3037 Pulp Fiction (1994)
## 3038 Silence of the Lambs, The (1991)
## 3039 Fargo (1996)
## 3040 All Dogs Go to Heaven 2 (1996)
## 3041 Diabolique (1996)
## 3042 Twister (1996)
## 3043 Independence Day (ID4) (1996)
## 3044 Frighteners, The (1996)
## 3045 Godfather, The (1972)
## 3046 Bound (1996)
## 3047 Lawnmower Man, The (1992)
## 3048 Ghost and the Darkness, The (1996)
## 3049 Abyss, The (1989)
## 3050 Army of Darkness (1993)
## 3051 Psycho (1960)
## 3052 Shining, The (1980)
## 3053 Evil Dead II (1987)
## 3054 Bram Stoker's Dracula (1992)
## 3055 Cape Fear (1991)
## 3056 Nightmare on Elm Street, A (1984)
## 3057 Star Trek: First Contact (1996)
## 3058 Jaws (1975)
## 3059 Beavis and Butt-head Do America (1996)
## 3060 Kolya (1996)
## 3061 Jungle2Jungle (1997)
## 3062 Smilla's Sense of Snow (1997)
## 3063 Devil's Own, The (1997)
## 3064 Contact (1997)
## 3065 George of the Jungle (1997)
## 3066 Event Horizon (1997)
## 3067 Air Bud (1997)
## 3068 In the Company of Men (1997)
## 3069 Steel (1997)
## 3070 Mimic (1997)
## 3071 Heat (1995)
## 3072 River Wild, The (1994)
## 3073 English Patient, The (1996)
## 3074 Scream (1996)
## 3075 Evita (1996)
## 3076 Absolute Power (1997)
## 3077 Rosewood (1997)
## 3078 Liar Liar (1997)
## 3079 Breakdown (1997)
## 3080 Face/Off (1997)
## 3081 Hoodlum (1997)
## 3082 Air Force One (1997)
## 3083 In & Out (1997)
## 3084 Everyone Says I Love You (1996)
## 3085 Paradise Lost: The Child Murders at Robin Hood Hills (1996)
## 3086 Mother (1996)
## 3087 Murder at 1600 (1997)
## 3088 Dante's Peak (1997)
## 3089 Lost Highway (1997)
## 3090 Crash (1996)
## 3091 G.I. Jane (1997)
## 3092 Cop Land (1997)
## 3093 Conspiracy Theory (1997)
## 3094 187 (1997)
## 3095 Spawn (1997)
## 3096 Mary Reilly (1996)
## 3097 Tales From the Crypt Presents: Demon Knight (1995)
## 3098 Serial Mom (1994)
## 3099 Thinner (1996)
## 3100 Close Shave, A (1995)
## 3101 Tales from the Crypt Presents: Bordello of Blood (1996)
## 3102 Children of the Corn: The Gathering (1996)
## 3103 American Werewolf in London, An (1981)
## 3104 Amityville 1992: It's About Time (1992)
## 3105 Amityville 3-D (1983)
## 3106 Amityville: A New Generation (1993)
## 3107 Amityville II: The Possession (1982)
## 3108 Amityville Horror, The (1979)
## 3109 Birds, The (1963)
## 3110 Blob, The (1958)
## 3111 Body Snatcher, The (1945)
## 3112 Carrie (1976)
## 3113 Omen, The (1976)
## 3114 Jaws 2 (1978)
## 3115 Jaws 3-D (1983)
## 3116 Free Willy 3: The Rescue (1997)
## 3117 James and the Giant Peach (1996)
## 3118 Young Poisoner's Handbook, The (1995)
## 3119 Lord of Illusions (1995)
## 3120 Heavenly Creatures (1994)
## 3121 Interview with the Vampire (1994)
## 3122 Mary Shelley's Frankenstein (1994)
## 3123 Stephen King's The Langoliers (1995)
## 3124 Tales from the Hood (1995)
## 3125 Village of the Damned (1995)
## 3126 Wes Craven's New Nightmare (1994)
## 3127 Wolf (1994)
## 3128 Body Snatchers (1993)
## 3129 Hellraiser: Bloodline (1996)
## 3130 Primal Fear (1996)
## 3131 Fan, The (1996)
## 3132 Hunchback of Notre Dame, The (1996)
## 3133 Extreme Measures (1996)
## 3134 Sleepers (1996)
## 3135 Fog, The (1980)
## 3136 Howling, The (1981)
## 3137 M (1931)
## 3138 Alien 3 (1992)
## 3139 Blood Beach (1981)
## 3140 Body Parts (1991)
## 3141 Bride of Frankenstein (1935)
## 3142 Candyman (1992)
## 3143 Cat People (1982)
## 3144 Nosferatu (Nosferatu, eine Symphonie des Grauens) (1922)
## 3145 Volcano (1997)
## 3146 McHale's Navy (1997)
## 3147 Leave It to Beaver (1997)
## 3148 City Hall (1996)
## 3149 Bad Moon (1996)
## 3150 Juror, The (1996)
## 3151 Last Supper, The (1995)
## 3152 Ransom (1996)
## 3153 Saint, The (1997)
## 3154 Lawnmower Man 2: Beyond Cyberspace (1996)
## 3155 Screamers (1995)
## 3156 Addiction, The (1995)
## 3157 Congo (1995)
## 3158 Mute Witness (1994)
## 3159 Prophecy, The (1995)
## 3160 In the Mouth of Madness (1995)
## 3161 Candyman: Farewell to the Flesh (1995)
## 3162 Frisk (1995)
## 3163 Space Jam (1996)
## 3164 Halloween: The Curse of Michael Myers (1995)
## 3165 Loch Ness (1995)
## 3166 Freeway (1996)
## 3167 Braindead (1992)
## 3168 Bad Taste (1987)
## 3169 Amityville: Dollhouse (1996)
## 3170 April Fool's Day (1986)
## 3171 Believers, The (1987)
## 3172 Love Jones (1997)
## 3173 Picture Perfect (1997)
## 3174 Career Girls (1997)
## 3175 She's So Lovely (1997)
## 3176 Money Talks (1997)
## 3177 Excess Baggage (1997)
## 3178 That Darn Cat! (1997)
## 3179 Unforgettable (1996)
## 3180 Craft, The (1996)
## 3181 Chain Reaction (1996)
## 3182 Island of Dr. Moreau, The (1996)
## 3183 Booty Call (1997)
## 3184 Eye for an Eye (1996)
## 3185 Fear (1996)
## 3186 Solo (1996)
## 3187 Substitute, The (1996)
## 3188 Heaven's Prisoners (1996)
## 3189 Trigger Effect, The (1996)
## 3190 Mother Night (1996)
## 3191 Dangerous Ground (1997)
## 3192 Maximum Risk (1996)
## 3193 Rich Man's Wife, The (1996)
## 3194 Shadow Conspiracy (1997)
## 3195 Blood & Wine (1997)
## 3196 Turbulence (1997)
## 3197 Underworld (1997)
## 3198 Beautician and the Beast, The (1997)
## 3199 Cats Don't Dance (1997)
## 3200 Anna Karenina (1997)
## 3201 Keys to Tulsa (1997)
## 3202 Head Above Water (1996)
## 3203 Hercules (1997)
## 3204 Last Time I Committed Suicide, The (1997)
## 3205 Kiss Me, Guido (1997)
## 3206 GoldenEye (1995)
## 3207 Get Shorty (1995)
## 3208 From Dusk Till Dawn (1996)
## 3209 Muppet Treasure Island (1996)
## 3210 Rumble in the Bronx (1995)
## 3211 Batman Forever (1995)
## 3212 Star Wars (1977)
## 3213 Natural Born Killers (1994)
## 3214 Stargate (1994)
## 3215 Crow, The (1994)
## 3216 Fugitive, The (1993)
## 3217 Hot Shots! Part Deux (1993)
## 3218 Ref, The (1994)
## 3219 Blade Runner (1982)
## 3220 Home Alone (1990)
## 3221 Terminator 2: Judgment Day (1991)
## 3222 Sgt. Bilko (1996)
## 3223 Mystery Science Theater 3000: The Movie (1996)
## 3224 Operation Dumbo Drop (1995)
## 3225 Rock, The (1996)
## 3226 Twister (1996)
## 3227 Independence Day (ID4) (1996)
## 3228 Godfather, The (1972)
## 3229 Supercop (1992)
## 3230 Die Hard (1988)
## 3231 Fish Called Wanda, A (1988)
## 3232 Monty Python's Life of Brian (1979)
## 3233 Top Gun (1986)
## 3234 Return of the Pink Panther, The (1974)
## 3235 Private Benjamin (1980)
## 3236 Monty Python and the Holy Grail (1974)
## 3237 Empire Strikes Back, The (1980)
## 3238 Princess Bride, The (1987)
## 3239 Raiders of the Lost Ark (1981)
## 3240 Brazil (1985)
## 3241 Aliens (1986)
## 3242 Return of the Jedi (1983)
## 3243 Army of Darkness (1993)
## 3244 Blues Brothers, The (1980)
## 3245 Godfather: Part II, The (1974)
## 3246 Sting, The (1973)
## 3247 Terminator, The (1984)
## 3248 Evil Dead II (1987)
## 3249 Groundhog Day (1993)
## 3250 Back to the Future (1985)
## 3251 Young Frankenstein (1974)
## 3252 This Is Spinal Tap (1984)
## 3253 Indiana Jones and the Last Crusade (1989)
## 3254 M*A*S*H (1970)
## 3255 When Harry Met Sally... (1989)
## 3256 Star Trek: First Contact (1996)
## 3257 Die Hard 2 (1990)
## 3258 Star Trek VI: The Undiscovered Country (1991)
## 3259 Star Trek: The Wrath of Khan (1982)
## 3260 Star Trek III: The Search for Spock (1984)
## 3261 Star Trek IV: The Voyage Home (1986)
## 3262 Batman Returns (1992)
## 3263 Under Siege (1992)
## 3264 Raising Arizona (1987)
## 3265 Last of the Mohicans, The (1992)
## 3266 Fifth Element, The (1997)
## 3267 Contact (1997)
## 3268 Hunt for Red October, The (1990)
## 3269 Fierce Creatures (1997)
## 3270 Liar Liar (1997)
## 3271 Spawn (1997)
## 3272 Clueless (1995)
## 3273 Houseguest (1994)
## 3274 Heavyweights (1994)
## 3275 Naked Gun 33 1/3: The Final Insult (1994)
## 3276 True Lies (1994)
## 3277 Addams Family Values (1993)
## 3278 Mrs. Doubtfire (1993)
## 3279 Three Musketeers, The (1993)
## 3280 Batman (1989)
## 3281 Mission: Impossible (1996)
## 3282 Spy Hard (1996)
## 3283 Nutty Professor, The (1996)
## 3284 Duck Soup (1933)
## 3285 Highlander (1986)
## 3286 Heathers (1989)
## 3287 Butch Cassidy and the Sundance Kid (1969)
## 3288 Star Trek: The Motion Picture (1979)
## 3289 Grease (1978)
## 3290 Jackie Chan's First Strike (1996)
## 3291 Beverly Hills Ninja (1997)
## 3292 Bananas (1971)
## 3293 Magnificent Seven, The (1954)
## 3294 Lawrence of Arabia (1962)
## 3295 Boot, Das (1981)
## 3296 Cool Hand Luke (1967)
## 3297 Ben-Hur (1959)
## 3298 Broken Arrow (1996)
## 3299 Die Hard: With a Vengeance (1995)
## 3300 Waterworld (1995)
## 3301 Clear and Present Danger (1994)
## 3302 Speed (1994)
## 3303 Escape from New York (1981)
## 3304 Quiet Man, The (1952)
## 3305 Glory (1989)
## 3306 Alien 3 (1992)
## 3307 Rocket Man (1997)
## 3308 In the Line of Fire (1993)
## 3309 McHale's Navy (1997)
## 3310 Leave It to Beaver (1997)
## 3311 American President, The (1995)
## 3312 Tin Men (1987)
## 3313 Corrina, Corrina (1994)
## 3314 Dave (1993)
## 3315 Dumb & Dumber (1994)
## 3316 Baby-Sitters Club, The (1995)
## 3317 Bullets Over Broadway (1994)
## 3318 Last Man Standing (1996)
## 3319 Jingle All the Way (1996)
## 3320 Vegas Vacation (1997)
## 3321 That Darn Cat! (1997)
## 3322 Down Periscope (1996)
## 3323 First Kid (1996)
## 3324 Booty Call (1997)
## 3325 Beautician and the Beast, The (1997)
## 3326 Big Green, The (1995)
## 3327 Stuart Saves His Family (1995)
## 3328 Cabin Boy (1994)
## 3329 Clean Slate (1994)
## 3330 Lightning Jack (1994)
## 3331 Stupids, The (1996)
## 3332 Pest, The (1997)
## 3333 Toy Story (1995)
## 3334 Twelve Monkeys (1995)
## 3335 Babe (1995)
## 3336 Mighty Aphrodite (1995)
## 3337 Postino, Il (1994)
## 3338 Antonia's Line (1995)
## 3339 Apollo 13 (1995)
## 3340 Crumb (1994)
## 3341 Star Wars (1977)
## 3342 Professional, The (1994)
## 3343 Pulp Fiction (1994)
## 3344 Three Colors: Red (1994)
## 3345 Stargate (1994)
## 3346 Four Weddings and a Funeral (1994)
## 3347 Lion King, The (1994)
## 3348 Maverick (1994)
## 3349 Fugitive, The (1993)
## 3350 Jurassic Park (1993)
## 3351 Much Ado About Nothing (1993)
## 3352 Sleepless in Seattle (1993)
## 3353 Blade Runner (1982)
## 3354 So I Married an Axe Murderer (1993)
## 3355 Nightmare Before Christmas, The (1993)
## 3356 Aladdin (1992)
## 3357 Terminator 2: Judgment Day (1991)
## 3358 Silence of the Lambs, The (1991)
## 3359 Snow White and the Seven Dwarfs (1937)
## 3360 Fargo (1996)
## 3361 Aristocats, The (1970)
## 3362 Mystery Science Theater 3000: The Movie (1996)
## 3363 Cold Comfort Farm (1995)
## 3364 Lone Star (1996)
## 3365 Breakfast at Tiffany's (1961)
## 3366 Wizard of Oz, The (1939)
## 3367 Gone with the Wind (1939)
## 3368 Citizen Kane (1941)
## 3369 Sound of Music, The (1965)
## 3370 Die Hard (1988)
## 3371 Lawnmower Man, The (1992)
## 3372 Willy Wonka and the Chocolate Factory (1971)
## 3373 Fish Called Wanda, A (1988)
## 3374 Monty Python's Life of Brian (1979)
## 3375 Dirty Dancing (1987)
## 3376 Reservoir Dogs (1992)
## 3377 Top Gun (1986)
## 3378 On Golden Pond (1981)
## 3379 Cinema Paradiso (1988)
## 3380 Delicatessen (1991)
## 3381 Empire Strikes Back, The (1980)
## 3382 Princess Bride, The (1987)
## 3383 Raiders of the Lost Ark (1981)
## 3384 Brazil (1985)
## 3385 Aliens (1986)
## 3386 Good, The Bad and The Ugly, The (1966)
## 3387 Return of the Jedi (1983)
## 3388 Alien (1979)
## 3389 Psycho (1960)
## 3390 Full Metal Jacket (1987)
## 3391 Grand Day Out, A (1992)
## 3392 Amadeus (1984)
## 3393 Sting, The (1973)
## 3394 Terminator, The (1984)
## 3395 Dead Poets Society (1989)
## 3396 Groundhog Day (1993)
## 3397 Unforgiven (1992)
## 3398 Back to the Future (1985)
## 3399 This Is Spinal Tap (1984)
## 3400 M*A*S*H (1970)
## 3401 Room with a View, A (1986)
## 3402 Pink Floyd - The Wall (1982)
## 3403 Field of Dreams (1989)
## 3404 When Harry Met Sally... (1989)
## 3405 Bram Stoker's Dracula (1992)
## 3406 Nightmare on Elm Street, A (1984)
## 3407 Star Trek: First Contact (1996)
## 3408 Ridicule (1996)
## 3409 Star Trek VI: The Undiscovered Country (1991)
## 3410 Star Trek: The Wrath of Khan (1982)
## 3411 Star Trek III: The Search for Spock (1984)
## 3412 Star Trek IV: The Voyage Home (1986)
## 3413 Jaws (1975)
## 3414 Mars Attacks! (1996)
## 3415 Raising Arizona (1987)
## 3416 Fifth Element, The (1997)
## 3417 Men in Black (1997)
## 3418 Contact (1997)
## 3419 Full Monty, The (1997)
## 3420 Sense and Sensibility (1995)
## 3421 Emma (1996)
## 3422 Liar Liar (1997)
## 3423 Apt Pupil (1998)
## 3424 Dante's Peak (1997)
## 3425 One Flew Over the Cuckoo's Nest (1975)
## 3426 Clueless (1995)
## 3427 Star Trek: Generations (1994)
## 3428 Muriel's Wedding (1994)
## 3429 True Lies (1994)
## 3430 Addams Family Values (1993)
## 3431 Age of Innocence, The (1993)
## 3432 Pinocchio (1940)
## 3433 Mission: Impossible (1996)
## 3434 Close Shave, A (1995)
## 3435 My Favorite Year (1982)
## 3436 Cinderella (1950)
## 3437 Mary Poppins (1964)
## 3438 William Shakespeare's Romeo and Juliet (1996)
## 3439 E.T. the Extra-Terrestrial (1982)
## 3440 To Kill a Mockingbird (1962)
## 3441 Fantasia (1940)
## 3442 Heathers (1989)
## 3443 Star Trek: The Motion Picture (1979)
## 3444 Grease (1978)
## 3445 Secret of Roan Inish, The (1994)
## 3446 Dragonheart (1996)
## 3447 Vertigo (1958)
## 3448 Casablanca (1942)
## 3449 Bonnie and Clyde (1967)
## 3450 Lawrence of Arabia (1962)
## 3451 Wings of Desire (1987)
## 3452 Local Hero (1983)
## 3453 Miller's Crossing (1990)
## 3454 Down by Law (1986)
## 3455 Ben-Hur (1959)
## 3456 Gandhi (1982)
## 3457 Killing Fields, The (1984)
## 3458 Man Who Would Be King, The (1975)
## 3459 Mortal Kombat (1995)
## 3460 Broken Arrow (1996)
## 3461 Rob Roy (1995)
## 3462 Beauty and the Beast (1991)
## 3463 Eraser (1996)
## 3464 Rear Window (1954)
## 3465 Victor/Victoria (1982)
## 3466 Grifters, The (1990)
## 3467 Rosencrantz and Guildenstern Are Dead (1990)
## 3468 Stand by Me (1986)
## 3469 Somewhere in Time (1980)
## 3470 Conan the Barbarian (1981)
## 3471 Persuasion (1995)
## 3472 Singin' in the Rain (1952)
## 3473 Better Off Dead... (1985)
## 3474 Othello (1995)
## 3475 Pretty Woman (1990)
## 3476 Benny & Joon (1993)
## 3477 Dumb & Dumber (1994)
## 3478 Night on Earth (1991)
## 3479 City of Lost Children, The (1995)
## 3480 Orlando (1993)
## 3481 Geronimo: An American Legend (1993)
## 3482 Double vie de Veronique, La (Double Life of Veronique, The) (1991)
## 3483 Until the End of the World (Bis ans Ende der Welt) (1991)
## 3484 Twelve Monkeys (1995)
## 3485 Babe (1995)
## 3486 Dead Man Walking (1995)
## 3487 Seven (Se7en) (1995)
## 3488 Usual Suspects, The (1995)
## 3489 Birdcage, The (1996)
## 3490 Billy Madison (1995)
## 3491 Professional, The (1994)
## 3492 Pulp Fiction (1994)
## 3493 Quiz Show (1994)
## 3494 Shawshank Redemption, The (1994)
## 3495 Forrest Gump (1994)
## 3496 Lion King, The (1994)
## 3497 Fugitive, The (1993)
## 3498 True Romance (1993)
## 3499 Dances with Wolves (1990)
## 3500 Silence of the Lambs, The (1991)
## 3501 Fargo (1996)
## 3502 Mystery Science Theater 3000: The Movie (1996)
## 3503 Rock, The (1996)
## 3504 Godfather, The (1972)
## 3505 Bound (1996)
## 3506 Wizard of Oz, The (1939)
## 3507 Willy Wonka and the Chocolate Factory (1971)
## 3508 Fish Called Wanda, A (1988)
## 3509 Princess Bride, The (1987)
## 3510 Aliens (1986)
## 3511 12 Angry Men (1957)
## 3512 Apocalypse Now (1979)
## 3513 Amadeus (1984)
## 3514 Shining, The (1980)
## 3515 When Harry Met Sally... (1989)
## 3516 Sling Blade (1996)
## 3517 Jerry Maguire (1996)
## 3518 Raising Arizona (1987)
## 3519 Austin Powers: International Man of Mystery (1997)
## 3520 Contact (1997)
## 3521 Sense and Sensibility (1995)
## 3522 Leaving Las Vegas (1995)
## 3523 English Patient, The (1996)
## 3524 Scream (1996)
## 3525 Evita (1996)
## 3526 Liar Liar (1997)
## 3527 Air Force One (1997)
## 3528 Schindler's List (1993)
## 3529 Lost Highway (1997)
## 3530 One Flew Over the Cuckoo's Nest (1975)
## 3531 Spawn (1997)
## 3532 Clueless (1995)
## 3533 Jeffrey (1995)
## 3534 Ghost (1990)
## 3535 William Shakespeare's Romeo and Juliet (1996)
## 3536 To Kill a Mockingbird (1962)
## 3537 Trainspotting (1996)
## 3538 Matilda (1996)
## 3539 Sabrina (1954)
## 3540 People vs. Larry Flynt, The (1996)
## 3541 Miller's Crossing (1990)
## 3542 Piano, The (1993)
## 3543 Stand by Me (1986)
## 3544 Somewhere in Time (1980)
## 3545 Little Women (1994)
## 3546 Immortal Beloved (1994)
## 3547 Nell (1994)
## 3548 Ransom (1996)
## 3549 Happy Gilmore (1996)
## 3550 City of Lost Children, The (1995)
## 3551 Waiting for Guffman (1996)
## 3552 Toy Story (1995)
## 3553 Twelve Monkeys (1995)
## 3554 Babe (1995)
## 3555 Mighty Aphrodite (1995)
## 3556 Taxi Driver (1976)
## 3557 Birdcage, The (1996)
## 3558 Star Wars (1977)
## 3559 Fugitive, The (1993)
## 3560 Jurassic Park (1993)
## 3561 Remains of the Day, The (1993)
## 3562 Silence of the Lambs, The (1991)
## 3563 Wallace & Gromit: The Best of Aardman Animation (1996)
## 3564 Cold Comfort Farm (1995)
## 3565 Independence Day (ID4) (1996)
## 3566 Phenomenon (1996)
## 3567 Godfather, The (1972)
## 3568 Breakfast at Tiffany's (1961)
## 3569 Gone with the Wind (1939)
## 3570 Citizen Kane (1941)
## 3571 2001: A Space Odyssey (1968)
## 3572 20,000 Leagues Under the Sea (1954)
## 3573 Sound of Music, The (1965)
## 3574 Willy Wonka and the Chocolate Factory (1971)
## 3575 Wrong Trousers, The (1993)
## 3576 Princess Bride, The (1987)
## 3577 Raiders of the Lost Ark (1981)
## 3578 Aliens (1986)
## 3579 Good, The Bad and The Ugly, The (1966)
## 3580 Return of the Jedi (1983)
## 3581 Alien (1979)
## 3582 Blues Brothers, The (1980)
## 3583 Grand Day Out, A (1992)
## 3584 Terminator, The (1984)
## 3585 Graduate, The (1967)
## 3586 Back to the Future (1985)
## 3587 Young Frankenstein (1974)
## 3588 Star Trek: First Contact (1996)
## 3589 Star Trek: The Wrath of Khan (1982)
## 3590 Raising Arizona (1987)
## 3591 Sneakers (1992)
## 3592 Men in Black (1997)
## 3593 Contact (1997)
## 3594 Hunt for Red October, The (1990)
## 3595 Full Monty, The (1997)
## 3596 Sense and Sensibility (1995)
## 3597 One Flew Over the Cuckoo's Nest (1975)
## 3598 Pinocchio (1940)
## 3599 Close Shave, A (1995)
## 3600 Mary Poppins (1964)
## 3601 To Kill a Mockingbird (1962)
## 3602 Duck Soup (1933)
## 3603 Fantasia (1940)
## 3604 Jackie Chan's First Strike (1996)
## 3605 Secret of Roan Inish, The (1994)
## 3606 Dr. Strangelove or: How I Learned to Stop Worrying and Love the Bomb (1963)
## 3607 Matilda (1996)
## 3608 Philadelphia Story, The (1940)
## 3609 Vertigo (1958)
## 3610 North by Northwest (1959)
## 3611 Around the World in 80 Days (1956)
## 3612 African Queen, The (1951)
## 3613 Dumbo (1941)
## 3614 Great Escape, The (1963)
## 3615 Gandhi (1982)
## 3616 Speed (1994)
## 3617 It Happened One Night (1934)
## 3618 Lost Horizon (1937)
## 3619 39 Steps, The (1935)
## 3620 Christmas Carol, A (1938)
## 3621 Stand by Me (1986)
## 3622 Manchurian Candidate, The (1962)
## 3623 American President, The (1995)
## 3624 Nell (1994)
## 3625 Ransom (1996)
## 3626 Meet John Doe (1941)
## 3627 Harriet the Spy (1996)
## 3628 Inspector General, The (1949)
## 3629 Winnie the Pooh and the Blustery Day (1968)
## 3630 Toy Story (1995)
## 3631 Twelve Monkeys (1995)
## 3632 Dead Man Walking (1995)
## 3633 Mighty Aphrodite (1995)
## 3634 Postino, Il (1994)
## 3635 Mr. Holland's Opus (1995)
## 3636 Rumble in the Bronx (1995)
## 3637 Birdcage, The (1996)
## 3638 Star Wars (1977)
## 3639 Fargo (1996)
## 3640 Mystery Science Theater 3000: The Movie (1996)
## 3641 Truth About Cats & Dogs, The (1996)
## 3642 Cold Comfort Farm (1995)
## 3643 Rock, The (1996)
## 3644 Twister (1996)
## 3645 Independence Day (ID4) (1996)
## 3646 Cable Guy, The (1996)
## 3647 Phenomenon (1996)
## 3648 Spitfire Grill, The (1996)
## 3649 Godfather, The (1972)
## 3650 Bound (1996)
## 3651 Ghost and the Darkness, The (1996)
## 3652 Swingers (1996)
## 3653 Willy Wonka and the Chocolate Factory (1971)
## 3654 Return of the Jedi (1983)
## 3655 Star Trek: First Contact (1996)
## 3656 Mars Attacks! (1996)
## 3657 Jerry Maguire (1996)
## 3658 Beavis and Butt-head Do America (1996)
## 3659 Chasing Amy (1997)
## 3660 Grosse Pointe Blank (1997)
## 3661 Austin Powers: International Man of Mystery (1997)
## 3662 Fifth Element, The (1997)
## 3663 Lost World: Jurassic Park, The (1997)
## 3664 My Best Friend's Wedding (1997)
## 3665 Men in Black (1997)
## 3666 Contact (1997)
## 3667 Full Monty, The (1997)
## 3668 Starship Troopers (1997)
## 3669 Sabrina (1995)
## 3670 Leaving Las Vegas (1995)
## 3671 Time to Kill, A (1996)
## 3672 Emma (1996)
## 3673 Tin Cup (1996)
## 3674 English Patient, The (1996)
## 3675 Scream (1996)
## 3676 Absolute Power (1997)
## 3677 Rosewood (1997)
## 3678 Donnie Brasco (1997)
## 3679 Liar Liar (1997)
## 3680 Face/Off (1997)
## 3681 Air Force One (1997)
## 3682 L.A. Confidential (1997)
## 3683 Fly Away Home (1996)
## 3684 Titanic (1997)
## 3685 Apt Pupil (1998)
## 3686 As Good As It Gets (1997)
## 3687 Mother (1996)
## 3688 Murder at 1600 (1997)
## 3689 Dante's Peak (1997)
## 3690 Conspiracy Theory (1997)
## 3691 Game, The (1997)
## 3692 Alien: Resurrection (1997)
## 3693 Black Sheep (1996)
## 3694 Mission: Impossible (1996)
## 3695 Kingpin (1996)
## 3696 Tales from the Crypt Presents: Bordello of Blood (1996)
## 3697 Jackie Chan's First Strike (1996)
## 3698 Beverly Hills Ninja (1997)
## 3699 Nixon (1995)
## 3700 Courage Under Fire (1996)
## 3701 Trainspotting (1996)
## 3702 First Wives Club, The (1996)
## 3703 People vs. Larry Flynt, The (1996)
## 3704 Boot, Das (1981)
## 3705 Broken Arrow (1996)
## 3706 Primal Fear (1996)
## 3707 Eraser (1996)
## 3708 Sleepers (1996)
## 3709 Volcano (1997)
## 3710 Rocket Man (1997)
## 3711 Executive Decision (1996)
## 3712 Ransom (1996)
## 3713 Saint, The (1997)
## 3714 Amistad (1997)
## 3715 Tomorrow Never Dies (1997)
## 3716 Screamers (1995)
## 3717 One Fine Day (1996)
## 3718 Escape from L.A. (1996)
## 3719 Last Man Standing (1996)
## 3720 Glimmer Man, The (1996)
## 3721 That Thing You Do! (1996)
## 3722 My Fellow Americans (1996)
## 3723 Vegas Vacation (1997)
## 3724 Down Periscope (1996)
## 3725 Chain Reaction (1996)
## 3726 Brassed Off (1996)
## 3727 Trigger Effect, The (1996)
## 3728 I Shot Andy Warhol (1996)
## 3729 Stealing Beauty (1996)
## 3730 Basquiat (1996)
## 3731 2 Days in the Valley (1996)
## 3732 Private Parts (1997)
## 3733 Anaconda (1997)
## 3734 Romy and Michele's High School Reunion (1997)
## 3735 Shiloh (1997)
## 3736 Con Air (1997)
## 3737 Dead Man Walking (1995)
## 3738 Star Wars (1977)
## 3739 Fargo (1996)
## 3740 Twister (1996)
## 3741 Independence Day (ID4) (1996)
## 3742 Frighteners, The (1996)
## 3743 Ghost and the Darkness, The (1996)
## 3744 Smilla's Sense of Snow (1997)
## 3745 Chasing Amy (1997)
## 3746 River Wild, The (1994)
## 3747 English Patient, The (1996)
## 3748 Scream (1996)
## 3749 Breakdown (1997)
## 3750 Face/Off (1997)
## 3751 Crash (1996)
## 3752 Mary Reilly (1996)
## 3753 Trainspotting (1996)
## 3754 People vs. Larry Flynt, The (1996)
## 3755 Boot, Das (1981)
## 3756 Hunchback of Notre Dame, The (1996)
## 3757 Ransom (1996)
## 3758 Unforgettable (1996)
## 3759 Chain Reaction (1996)
## 3760 Heaven's Prisoners (1996)
## 3761 Trees Lounge (1996)
## 3762 Copycat (1995)
## 3763 Twelve Monkeys (1995)
## 3764 Seven (Se7en) (1995)
## 3765 Usual Suspects, The (1995)
## 3766 Apollo 13 (1995)
## 3767 Crimson Tide (1995)
## 3768 Star Wars (1977)
## 3769 Pulp Fiction (1994)
## 3770 Four Weddings and a Funeral (1994)
## 3771 Fugitive, The (1993)
## 3772 Blade Runner (1982)
## 3773 Aladdin (1992)
## 3774 Terminator 2: Judgment Day (1991)
## 3775 Silence of the Lambs, The (1991)
## 3776 Fargo (1996)
## 3777 Rock, The (1996)
## 3778 Sound of Music, The (1965)
## 3779 Lawnmower Man, The (1992)
## 3780 Fish Called Wanda, A (1988)
## 3781 Abyss, The (1989)
## 3782 Princess Bride, The (1987)
## 3783 Raiders of the Lost Ark (1981)
## 3784 Aliens (1986)
## 3785 Army of Darkness (1993)
## 3786 Psycho (1960)
## 3787 Terminator, The (1984)
## 3788 Dead Poets Society (1989)
## 3789 Shining, The (1980)
## 3790 Evil Dead II (1987)
## 3791 This Is Spinal Tap (1984)
## 3792 Bram Stoker's Dracula (1992)
## 3793 Cape Fear (1991)
## 3794 Nightmare on Elm Street, A (1984)
## 3795 Star Trek: First Contact (1996)
## 3796 Sling Blade (1996)
## 3797 Star Trek VI: The Undiscovered Country (1991)
## 3798 Star Trek: The Wrath of Khan (1982)
## 3799 Star Trek III: The Search for Spock (1984)
## 3800 Star Trek IV: The Voyage Home (1986)
## 3801 Jaws (1975)
## 3802 Contact (1997)
## 3803 Starship Troopers (1997)
## 3804 Time to Kill, A (1996)
## 3805 English Patient, The (1996)
## 3806 Scream (1996)
## 3807 Liar Liar (1997)
## 3808 Murder at 1600 (1997)
## 3809 Dante's Peak (1997)
## 3810 Kiss the Girls (1997)
## 3811 Star Trek: Generations (1994)
## 3812 E.T. the Extra-Terrestrial (1982)
## 3813 Day the Earth Stood Still, The (1951)
## 3814 Forbidden Planet (1956)
## 3815 American Werewolf in London, An (1981)
## 3816 Amityville Horror, The (1979)
## 3817 Birds, The (1963)
## 3818 Blob, The (1958)
## 3819 Carrie (1976)
## 3820 Omen, The (1976)
## 3821 Star Trek: The Motion Picture (1979)
## 3822 Star Trek V: The Final Frontier (1989)
## 3823 Vertigo (1958)
## 3824 North by Northwest (1959)
## 3825 My Life as a Dog (Mitt liv som hund) (1985)
## 3826 Wes Craven's New Nightmare (1994)
## 3827 Speed (1994)
## 3828 Body Snatchers (1993)
## 3829 Beauty and the Beast (1991)
## 3830 Rear Window (1954)
## 3831 Father of the Bride (1950)
## 3832 Once Upon a Time in the West (1969)
## 3833 Alien 3 (1992)
## 3834 Candyman (1992)
## 3835 Volcano (1997)
## 3836 Screamers (1995)
## 3837 In the Mouth of Madness (1995)
## 3838 April Fool's Day (1986)
## 3839 Scream 2 (1997)
## 3840 Usual Suspects, The (1995)
## 3841 Fugitive, The (1993)
## 3842 Silence of the Lambs, The (1991)
## 3843 Apocalypse Now (1979)
## 3844 GoodFellas (1990)
## 3845 Grand Day Out, A (1992)
## 3846 Devil's Own, The (1997)
## 3847 George of the Jungle (1997)
## 3848 Mimic (1997)
## 3849 Full Monty, The (1997)
## 3850 Gattaca (1997)
## 3851 English Patient, The (1996)
## 3852 Liar Liar (1997)
## 3853 Air Force One (1997)
## 3854 L.A. Confidential (1997)
## 3855 Mrs. Brown (Her Majesty, Mrs. Brown) (1997)
## 3856 Midnight in the Garden of Good and Evil (1997)
## 3857 G.I. Jane (1997)
## 3858 Kiss the Girls (1997)
## 3859 Alien: Resurrection (1997)
## 3860 Spawn (1997)
## 3861 North by Northwest (1959)
## 3862 Mouse Hunt (1997)
## 3863 Manchurian Candidate, The (1962)
## 3864 High Noon (1952)
## 3865 Volcano (1997)
## 3866 Jackal, The (1997)
## 3867 Saint, The (1997)
## 3868 Career Girls (1997)
## 3869 Peacemaker, The (1997)
## 3870 Tie Me Up! Tie Me Down! (1990)
## 3871 Die xue shuang xiong (Killer, The) (1989)
## 3872 GoldenEye (1995)
## 3873 Twelve Monkeys (1995)
## 3874 Apollo 13 (1995)
## 3875 Batman Forever (1995)
## 3876 Star Wars (1977)
## 3877 Forrest Gump (1994)
## 3878 Jurassic Park (1993)
## 3879 2001: A Space Odyssey (1968)
## 3880 Top Gun (1986)
## 3881 Abyss, The (1989)
## 3882 Empire Strikes Back, The (1980)
## 3883 Raiders of the Lost Ark (1981)
## 3884 Return of the Jedi (1983)
## 3885 Batman Returns (1992)
## 3886 Kolya (1996)
## 3887 Lost World: Jurassic Park, The (1997)
## 3888 My Best Friend's Wedding (1997)
## 3889 Men in Black (1997)
## 3890 Contact (1997)
## 3891 George of the Jungle (1997)
## 3892 English Patient, The (1996)
## 3893 Evita (1996)
## 3894 Liar Liar (1997)
## 3895 In & Out (1997)
## 3896 Fly Away Home (1996)
## 3897 Titanic (1997)
## 3898 Apt Pupil (1998)
## 3899 Everyone Says I Love You (1996)
## 3900 Mother (1996)
## 3901 Batman (1989)
## 3902 Butch Cassidy and the Sundance Kid (1969)
## 3903 Shine (1996)
## 3904 Anastasia (1997)
## 3905 Mouse Hunt (1997)
## 3906 Volcano (1997)
## 3907 Rocket Man (1997)
## 3908 Leave It to Beaver (1997)
## 3909 Tomorrow Never Dies (1997)
## 3910 Dumb & Dumber (1994)
## 3911 Picture Perfect (1997)
## 3912 Flubber (1997)
## 3913 Waiting for Guffman (1996)
## 3914 Anaconda (1997)
## 3915 Crumb (1994)
## 3916 Fugitive, The (1993)
## 3917 Lone Star (1996)
## 3918 2001: A Space Odyssey (1968)
## 3919 Mr. Smith Goes to Washington (1939)
## 3920 Fish Called Wanda, A (1988)
## 3921 Brazil (1985)
## 3922 Raging Bull (1980)
## 3923 In the Company of Men (1997)
## 3924 Starship Troopers (1997)
## 3925 Hoodlum (1997)
## 3926 L.A. Confidential (1997)
## 3927 Mrs. Brown (Her Majesty, Mrs. Brown) (1997)
## 3928 Everyone Says I Love You (1996)
## 3929 Mother (1996)
## 3930 Conspiracy Theory (1997)
## 3931 Boogie Nights (1997)
## 3932 Maltese Falcon, The (1941)
## 3933 To Catch a Thief (1955)
## 3934 Thin Man, The (1934)
## 3935 African Queen, The (1951)
## 3936 Bonnie and Clyde (1967)
## 3937 Annie Hall (1977)
## 3938 Treasure of the Sierra Madre, The (1948)
## 3939 Laura (1944)
## 3940 I Know What You Did Last Summer (1997)
## 3941 Singin' in the Rain (1952)
## 3942 Thirty-Two Short Films About Glenn Gould (1993)
## 3943 She's So Lovely (1997)
## 3944 Life Less Ordinary, A (1997)
## 3945 Die xue shuang xiong (Killer, The) (1989)
## 3946 Gaslight (1944)
## 3947 8 1/2 (1963)
## 3948 Fast, Cheap & Out of Control (1997)
## 3949 Twelve Monkeys (1995)
## 3950 Dead Man Walking (1995)
## 3951 Star Wars (1977)
## 3952 Fargo (1996)
## 3953 Truth About Cats & Dogs, The (1996)
## 3954 Rock, The (1996)
## 3955 Twister (1996)
## 3956 Cable Guy, The (1996)
## 3957 Willy Wonka and the Chocolate Factory (1971)
## 3958 Return of the Jedi (1983)
## 3959 Star Trek: First Contact (1996)
## 3960 Mars Attacks! (1996)
## 3961 Beavis and Butt-head Do America (1996)
## 3962 Devil's Own, The (1997)
## 3963 Chasing Amy (1997)
## 3964 Grosse Pointe Blank (1997)
## 3965 Austin Powers: International Man of Mystery (1997)
## 3966 Fifth Element, The (1997)
## 3967 Men in Black (1997)
## 3968 George of the Jungle (1997)
## 3969 Starship Troopers (1997)
## 3970 Leaving Las Vegas (1995)
## 3971 Scream (1996)
## 3972 Fierce Creatures (1997)
## 3973 Liar Liar (1997)
## 3974 Face/Off (1997)
## 3975 Devil's Advocate, The (1997)
## 3976 Titanic (1997)
## 3977 Mission: Impossible (1996)
## 3978 Close Shave, A (1995)
## 3979 Jackie Chan's First Strike (1996)
## 3980 Trainspotting (1996)
## 3981 People vs. Larry Flynt, The (1996)
## 3982 Primal Fear (1996)
## 3983 Sleepers (1996)
## 3984 Ransom (1996)
## 3985 Michael (1996)
## 3986 Private Parts (1997)
## 3987 Con Air (1997)
## 3988 Fathers' Day (1997)
## 3989 Devil's Own, The (1997)
## 3990 Contact (1997)
## 3991 Event Horizon (1997)
## 3992 Starship Troopers (1997)
## 3993 Scream (1996)
## 3994 Rosewood (1997)
## 3995 Liar Liar (1997)
## 3996 Air Force One (1997)
## 3997 Devil's Advocate, The (1997)
## 3998 Titanic (1997)
## 3999 Dante's Peak (1997)
## 4000 Conspiracy Theory (1997)
## 4001 Desperate Measures (1998)
## 4002 Game, The (1997)
## 4003 Mad City (1997)
## 4004 Alien: Resurrection (1997)
## 4005 Volcano (1997)
## 4006 I Know What You Did Last Summer (1997)
## 4007 Tomorrow Never Dies (1997)
## 4008 Love Jones (1997)
## 4009 Peacemaker, The (1997)
## 4010 Soul Food (1997)
## 4011 Scream 2 (1997)
## 4012 Kolya (1996)
## 4013 Devil's Own, The (1997)
## 4014 George of the Jungle (1997)
## 4015 English Patient, The (1996)
## 4016 Scream (1996)
## 4017 Evita (1996)
## 4018 Rosewood (1997)
## 4019 Liar Liar (1997)
## 4020 Hoodlum (1997)
## 4021 Rainmaker, The (1997)
## 4022 Midnight in the Garden of Good and Evil (1997)
## 4023 Lost Highway (1997)
## 4024 Desperate Measures (1998)
## 4025 Kiss the Girls (1997)
## 4026 Seven Years in Tibet (1997)
## 4027 Postman, The (1997)
## 4028 Winter Guest, The (1997)
## 4029 Anna Karenina (1997)
## 4030 Keys to Tulsa (1997)
## 4031 Mrs. Dalloway (1997)
## 4032 Kolya (1996)
## 4033 Jungle2Jungle (1997)
## 4034 Contact (1997)
## 4035 George of the Jungle (1997)
## 4036 Air Bud (1997)
## 4037 Mimic (1997)
## 4038 Kull the Conqueror (1997)
## 4039 Air Force One (1997)
## 4040 Mother (1996)
## 4041 Murder at 1600 (1997)
## 4042 G.I. Jane (1997)
## 4043 Cop Land (1997)
## 4044 Conspiracy Theory (1997)
## 4045 Kiss the Girls (1997)
## 4046 Game, The (1997)
## 4047 Spawn (1997)
## 4048 Volcano (1997)
## 4049 Saint, The (1997)
## 4050 Money Talks (1997)
## 4051 Excess Baggage (1997)
## 4052 Peacemaker, The (1997)
## 4053 Thousand Acres, A (1997)
## 4054 Fire Down Below (1997)
## 4055 Air Bud (1997)
## 4056 Full Monty, The (1997)
## 4057 Scream (1996)
## 4058 Evita (1996)
## 4059 Devil's Advocate, The (1997)
## 4060 Rainmaker, The (1997)
## 4061 Everyone Says I Love You (1996)
## 4062 Game, The (1997)
## 4063 Mad City (1997)
## 4064 Spawn (1997)
## 4065 I Know What You Did Last Summer (1997)
## 4066 Saint, The (1997)
## 4067 Picture Perfect (1997)
## 4068 She's So Lovely (1997)
## 4069 That Darn Cat! (1997)
## 4070 Washington Square (1997)
## 4071 Telling Lies in America (1997)
## 4072 Phantoms (1998)
## 4073 Lay of the Land, The (1997)
## 4074 Twelve Monkeys (1995)
## 4075 Seven (Se7en) (1995)
## 4076 Braveheart (1995)
## 4077 Rumble in the Bronx (1995)
## 4078 Bad Boys (1995)
## 4079 Star Wars (1977)
## 4080 Professional, The (1994)
## 4081 Pulp Fiction (1994)
## 4082 Stargate (1994)
## 4083 Crow, The (1994)
## 4084 Fugitive, The (1993)
## 4085 Jurassic Park (1993)
## 4086 Blade Runner (1982)
## 4087 True Romance (1993)
## 4088 Terminator 2: Judgment Day (1991)
## 4089 Rock, The (1996)
## 4090 Twister (1996)
## 4091 Independence Day (ID4) (1996)
## 4092 Godfather, The (1972)
## 4093 Long Kiss Goodnight, The (1996)
## 4094 Top Gun (1986)
## 4095 Empire Strikes Back, The (1980)
## 4096 Raiders of the Lost Ark (1981)
## 4097 Aliens (1986)
## 4098 Alien (1979)
## 4099 Terminator, The (1984)
## 4100 Indiana Jones and the Last Crusade (1989)
## 4101 Star Trek: First Contact (1996)
## 4102 Die Hard 2 (1990)
## 4103 Star Trek IV: The Voyage Home (1986)
## 4104 Batman Returns (1992)
## 4105 Under Siege (1992)
## 4106 Hunt for Red October, The (1990)
## 4107 Heat (1995)
## 4108 Scream (1996)
## 4109 Sudden Death (1995)
## 4110 True Lies (1994)
## 4111 Batman (1989)
## 4112 Mission: Impossible (1996)
## 4113 Dragonheart (1996)
## 4114 Money Train (1995)
## 4115 Broken Arrow (1996)
## 4116 Die Hard: With a Vengeance (1995)
## 4117 Clear and Present Danger (1994)
## 4118 Speed (1994)
## 4119 Demolition Man (1993)
## 4120 Eraser (1996)
## 4121 Alien 3 (1992)
## 4122 Executive Decision (1996)
## 4123 Arrival, The (1996)
## 4124 Daylight (1996)
## 4125 Escape from L.A. (1996)
## 4126 Bulletproof (1996)
## 4127 Glimmer Man, The (1996)
## 4128 Chain Reaction (1996)
## 4129 Booty Call (1997)
## 4130 Shooter, The (1995)
## 4131 Toy Story (1995)
## 4132 Braveheart (1995)
## 4133 Apollo 13 (1995)
## 4134 Free Willy 2: The Adventure Home (1995)
## 4135 Ace Ventura: Pet Detective (1994)
## 4136 Forrest Gump (1994)
## 4137 Four Weddings and a Funeral (1994)
## 4138 Lion King, The (1994)
## 4139 Free Willy (1993)
## 4140 Fugitive, The (1993)
## 4141 Jurassic Park (1993)
## 4142 Robert A. Heinlein's The Puppet Masters (1994)
## 4143 Sleepless in Seattle (1993)
## 4144 Home Alone (1990)
## 4145 Aladdin (1992)
## 4146 Dances with Wolves (1990)
## 4147 Snow White and the Seven Dwarfs (1937)
## 4148 Sgt. Bilko (1996)
## 4149 Flipper (1996)
## 4150 Twister (1996)
## 4151 Cable Guy, The (1996)
## 4152 Godfather, The (1972)
## 4153 Gone with the Wind (1939)
## 4154 Love Bug, The (1969)
## 4155 Homeward Bound: The Incredible Journey (1993)
## 4156 Die Hard (1988)
## 4157 Lawnmower Man, The (1992)
## 4158 Fish Called Wanda, A (1988)
## 4159 Dirty Dancing (1987)
## 4160 Top Gun (1986)
## 4161 On Golden Pond (1981)
## 4162 Psycho (1960)
## 4163 Full Metal Jacket (1987)
## 4164 Terminator, The (1984)
## 4165 Shining, The (1980)
## 4166 Groundhog Day (1993)
## rating year
## 1 5 1995
## 2 3 1995
## 3 4 1995
## 4 3 1995
## 5 3 1995
## 6 5 1995
## 7 4 1995
## 8 1 1995
## 9 5 1995
## 10 3 1996
## 11 2 1995
## 12 5 1995
## 13 5 1995
## 14 5 1994
## 15 5 1996
## 16 5 1995
## 17 3 1996
## 18 4 1995
## 19 5 1995
## 20 4 1995
## 21 1 1996
## 22 4 1996
## 23 4 1996
## 24 3 1996
## 25 4 1996
## 26 3 1995
## 27 2 1995
## 28 4 1995
## 29 1 1995
## 30 3 1967
## 31 3 1995
## 32 5 1994
## 33 4 1995
## 34 2 1995
## 35 1 1995
## 36 2 1995
## 37 2 1994
## 38 3 1995
## 39 4 1995
## 40 3 1995
## 41 2 1995
## 42 5 1994
## 43 4 1994
## 44 5 1994
## 45 5 1994
## 46 4 1994
## 47 4 1994
## 48 5 1994
## 49 3 1994
## 50 5 1977
## 51 4 1994
## 52 4 1994
## 53 3 1994
## 54 3 1995
## 55 5 1994
## 56 4 1994
## 57 5 1994
## 58 4 1994
## 59 5 1994
## 60 5 1993
## 61 4 1994
## 62 3 1994
## 63 2 1994
## 64 5 1994
## 65 4 1993
## 66 4 1995
## 67 3 1994
## 68 4 1994
## 69 3 1994
## 70 3 1994
## 71 3 1994
## 72 4 1994
## 73 3 1994
## 74 1 1965
## 75 4 1994
## 76 4 1993
## 77 4 1993
## 78 1 1993
## 79 4 1993
## 80 4 1993
## 81 5 1994
## 82 5 1993
## 83 3 1993
## 84 4 1994
## 85 3 1994
## 86 5 1993
## 87 5 1993
## 88 4 1993
## 89 5 1982
## 90 4 1993
## 91 5 1993
## 92 3 1993
## 93 5 1996
## 94 2 1990
## 95 4 1992
## 96 5 1991
## 97 3 1990
## 98 4 1991
## 99 3 1937
## 100 5 1997
## 101 2 1981
## 102 2 1970
## 103 1 1996
## 104 1 1996
## 105 2 1996
## 106 4 1996
## 107 4 1996
## 108 5 1996
## 109 5 1996
## 110 1 1995
## 111 5 1996
## 112 1 1996
## 113 5 1996
## 114 5 1996
## 115 5 1996
## 116 3 1996
## 117 3 1996
## 118 3 1996
## 119 5 1994
## 120 1 1996
## 121 4 1996
## 122 3 1996
## 123 4 1996
## 124 5 1996
## 125 3 1996
## 126 2 1996
## 127 5 1972
## 128 4 1996
## 129 5 1996
## 130 3 1996
## 131 1 1961
## 132 4 1939
## 133 4 1939
## 134 4 1941
## 135 4 1968
## 136 3 1939
## 137 5 1996
## 138 1 1996
## 139 3 1969
## 140 1 1993
## 141 3 1954
## 142 2 1971
## 143 1 1965
## 144 4 1988
## 145 2 1992
## 146 4 1996
## 147 3 1996
## 148 2 1996
## 149 2 1996
## 150 5 1996
## 151 4 1971
## 152 5 1973
## 153 3 1988
## 154 5 1979
## 155 2 1987
## 156 4 1992
## 157 4 1986
## 158 3 1989
## 159 3 1992
## 160 4 1992
## 161 4 1986
## 162 4 1981
## 163 4 1974
## 164 3 1989
## 165 5 1986
## 166 5 1986
## 167 2 1980
## 168 5 1974
## 169 5 1993
## 170 5 1988
## 171 5 1991
## 172 5 1980
## 173 5 1987
## 174 5 1981
## 175 5 1985
## 176 5 1986
## 177 5 1966
## 178 5 1957
## 179 3 1971
## 180 3 1979
## 181 5 1997
## 182 4 1990
## 183 5 1979
## 184 4 1993
## 185 4 1960
## 186 4 1980
## 187 4 1974
## 188 3 1987
## 189 3 1992
## 190 5 1989
## 191 5 1984
## 192 4 1980
## 193 4 1983
## 194 4 1973
## 195 5 1984
## 196 5 1989
## 197 5 1967
## 198 5 1990
## 199 4 1957
## 200 3 1980
## 201 3 1987
## 202 5 1993
## 203 4 1992
## 204 5 1985
## 205 3 1970
## 206 4 1988
## 207 5 1990
## 208 5 1974
## 209 4 1984
## 210 4 1989
## 211 3 1970
## 212 4 1988
## 213 2 1986
## 214 4 1982
## 215 3 1989
## 216 5 1989
## 217 3 1992
## 218 3 1991
## 219 1 1984
## 220 3 1996
## 221 5 1996
## 222 4 1996
## 223 5 1996
## 224 5 1996
## 225 2 1996
## 226 3 1990
## 227 4 1991
## 228 5 1982
## 229 4 1984
## 230 4 1986
## 231 1 1992
## 232 3 1988
## 233 2 1992
## 234 4 1975
## 235 5 1996
## 236 4 1996
## 237 2 1996
## 238 4 1987
## 239 4 1992
## 240 3 1996
## 241 4 1992
## 242 5 1997
## 243 1 1997
## 244 2 1997
## 245 2 1997
## 246 5 1997
## 247 1 1997
## 248 4 1997
## 249 4 1997
## 250 4 1997
## 251 4 1997
## 252 2 1997
## 253 5 1997
## 254 1 1997
## 255 2 1997
## 256 4 1997
## 257 4 1997
## 258 5 1997
## 259 1 1997
## 260 1 1997
## 261 1 1997
## 262 3 1997
## 263 1 1997
## 264 2 1997
## 265 4 1990
## 266 1 1997
## 267 4 NA
## 268 5 1997
## 269 5 1997
## 270 2 1997
## 271 3 1997
## 272 4 1995
## 273 2 1996
## 274 4 1995
## 275 4 1994
## 276 3 1995
## 277 4 1996
## 278 5 1977
## 279 5 1997
## 280 4 1996
## 281 5 1972
## 282 4 1996
## 283 5 1997
## 284 5 1997
## 285 4 1997
## 286 4 1997
## 287 3 1997
## 288 4 1997
## 289 5 1997
## 290 4 1995
## 291 3 1995
## 292 5 1995
## 293 4 1995
## 294 4 1995
## 295 3 1996
## 296 4 1995
## 297 3 1996
## 298 3 1994
## 299 4 1996
## 300 5 1996
## 301 4 1996
## 302 5 1996
## 303 4 1996
## 304 3 1996
## 305 3 1996
## 306 3 1996
## 307 3 1997
## 308 3 1997
## 309 4 1997
## 310 4 1997
## 311 1 1997
## 312 4 1997
## 313 3 1997
## 314 4 1997
## 315 3 1997
## 316 4 1997
## 317 4 1997
## 318 4 1997
## 319 5 1997
## 320 4 1996
## 321 3 1997
## 322 4 1997
## 323 3 1997
## 324 3 1997
## 325 1 1997
## 326 4 1997
## 327 5 1997
## 328 3 1997
## 329 5 1997
## 330 1 1997
## 331 1 1998
## 332 5 1997
## 333 4 1997
## 334 1 1997
## 335 2 1997
## 336 4 1997
## 337 2 1997
## 338 3 1997
## 339 2 1997
## 340 2 1996
## 341 2 1997
## 342 3 1997
## 343 2 1997
## 344 2 1997
## 345 3 1997
## 346 2 1993
## 347 4 1993
## 348 2 1996
## 349 5 1996
## 350 5 1996
## 351 3 1997
## 352 2 1997
## 353 2 1997
## 354 1 1997
## 355 2 1997
## 356 4 1997
## 357 5 1997
## 358 4 1998
## 359 2 1997
## 360 4 1997
## 361 1 1997
## 362 2 1997
## 363 3 1997
## 364 1 1997
## 365 1 1997
## 366 1 1997
## 367 2 1997
## 368 3 1997
## 369 5 1997
## 370 1 1997
## 371 4 1997
## 372 3 1997
## 373 4 1997
## 374 3 1997
## 375 5 1997
## 376 5 1998
## 377 3 1998
## 378 3 1998
## 379 3 1998
## 380 2 1997
## 381 1 1998
## 382 3 1998
## 383 3 1998
## 384 4 1995
## 385 5 1977
## 386 3 1989
## 387 5 1997
## 388 4 1997
## 389 3 1997
## 390 4 1997
## 391 4 1996
## 392 5 1997
## 393 5 1997
## 394 5 1997
## 395 5 1997
## 396 5 1997
## 397 3 1997
## 398 5 1998
## 399 5 1998
## 400 3 1994
## 401 4 1975
## 402 2 1997
## 403 5 1997
## 404 5 1997
## 405 5 1997
## 406 5 1998
## 407 4 1995
## 408 3 1995
## 409 4 1996
## 410 3 1996
## 411 4 1996
## 412 3 1996
## 413 4 1995
## 414 4 1995
## 415 5 1994
## 416 4 1977
## 417 4 1994
## 418 1 1994
## 419 1 1995
## 420 1 1994
## 421 4 1994
## 422 3 1993
## 423 2 1993
## 424 5 1982
## 425 3 1993
## 426 3 1990
## 427 4 1992
## 428 3 1991
## 429 3 1937
## 430 5 1997
## 431 5 1981
## 432 3 1970
## 433 3 1996
## 434 5 1996
## 435 1 1995
## 436 4 1996
## 437 4 1968
## 438 3 1969
## 439 3 1965
## 440 3 1988
## 441 1 1992
## 442 3 1971
## 443 5 1988
## 444 3 1979
## 445 1 1981
## 446 5 1974
## 447 2 1980
## 448 3 1974
## 449 5 1993
## 450 5 1980
## 451 4 1987
## 452 5 1981
## 453 3 1986
## 454 5 1997
## 455 4 1979
## 456 3 1960
## 457 5 1980
## 458 5 1992
## 459 4 1973
## 460 2 1980
## 461 4 1985
## 462 4 1974
## 463 5 1984
## 464 3 1989
## 465 4 1970
## 466 3 1982
## 467 1 1989
## 468 3 1984
## 469 4 1996
## 470 2 1996
## 471 3 1990
## 472 4 1991
## 473 5 1982
## 474 2 1984
## 475 3 1986
## 476 2 1992
## 477 4 1992
## 478 2 1975
## 479 4 1996
## 480 4 1992
## 481 1 1992
## 482 1 1997
## 483 3 1997
## 484 5 1997
## 485 1 1997
## 486 4 NA
## 487 3 1995
## 488 1 1995
## 489 1 1995
## 490 3 1995
## 491 3 1995
## 492 1 1996
## 493 1 1996
## 494 1 1996
## 495 1 1996
## 496 3 1995
## 497 3 1995
## 498 3 1995
## 499 3 1995
## 500 2 1994
## 501 1 1994
## 502 1 1994
## 503 3 1995
## 504 3 1994
## 505 1 1994
## 506 5 1994
## 507 3 1994
## 508 3 1994
## 509 4 1994
## 510 2 1993
## 511 3 1993
## 512 2 1994
## 513 1 1994
## 514 5 1993
## 515 4 1993
## 516 2 1993
## 517 2 1993
## 518 2 1994
## 519 2 1993
## 520 5 1994
## 521 2 1993
## 522 2 1993
## 523 3 1993
## 524 1 1994
## 525 5 1995
## 526 1 1990
## 527 3 1989
## 528 2 1940
## 529 3 1996
## 530 1 1996
## 531 3 1996
## 532 5 1996
## 533 2 1996
## 534 1 1996
## 535 1 1996
## 536 3 1996
## 537 3 1996
## 538 3 1982
## 539 1 1975
## 540 1 1957
## 541 3 1961
## 542 3 1950
## 543 3 1964
## 544 3 1951
## 545 1 1996
## 546 4 1996
## 547 4 1982
## 548 1 1996
## 549 2 1992
## 550 3 1986
## 551 3 1962
## 552 5 1971
## 553 3 1951
## 554 5 1933
## 555 3 1986
## 556 4 1940
## 557 5 1989
## 558 5 1956
## 559 4 1969
## 560 5 1981
## 561 1 1992
## 562 1 1983
## 563 1 1993
## 564 1 1982
## 565 1 1979
## 566 1 1990
## 567 4 1963
## 568 2 1958
## 569 3 1945
## 570 4 1976
## 571 3 1976
## 572 2 1976
## 573 2 1979
## 574 1 1989
## 575 1 1978
## 576 1 1978
## 577 1 1983
## 578 1 1996
## 579 4 1997
## 580 1 1997
## 581 1 1997
## 582 4 1995
## 583 2 1995
## 584 4 1995
## 585 4 1995
## 586 4 1995
## 587 2 1995
## 588 5 1994
## 589 3 1996
## 590 4 1995
## 591 3 1996
## 592 3 1996
## 593 4 1996
## 594 2 1995
## 595 4 1994
## 596 3 1994
## 597 4 1977
## 598 4 1994
## 599 5 1994
## 600 4 1994
## 601 3 1994
## 602 3 1994
## 603 4 1994
## 604 3 1993
## 605 4 1994
## 606 3 1993
## 607 4 1993
## 608 4 1982
## 609 2 1992
## 610 5 1991
## 611 5 1997
## 612 2 1996
## 613 2 1996
## 614 5 1996
## 615 3 1996
## 616 5 1972
## 617 5 1961
## 618 5 1939
## 619 4 1939
## 620 5 1941
## 621 5 1968
## 622 5 1939
## 623 5 1996
## 624 2 1965
## 625 3 1971
## 626 4 1988
## 627 3 1979
## 628 3 1992
## 629 5 1986
## 630 4 1986
## 631 4 1974
## 632 4 1993
## 633 4 1988
## 634 5 1987
## 635 4 1981
## 636 4 1985
## 637 4 1966
## 638 4 1957
## 639 4 1979
## 640 4 1990
## 641 4 1979
## 642 5 1960
## 643 4 1980
## 644 4 1974
## 645 3 1987
## 646 3 1992
## 647 4 1984
## 648 4 1980
## 649 3 1983
## 650 4 1973
## 651 4 1984
## 652 5 1967
## 653 4 1957
## 654 3 1980
## 655 3 1993
## 656 3 1992
## 657 3 1985
## 658 3 1970
## 659 4 1974
## 660 4 1984
## 661 5 1970
## 662 4 1986
## 663 5 1989
## 664 4 1996
## 665 4 1996
## 666 2 1996
## 667 5 1987
## 668 4 1997
## 669 3 1997
## 670 3 1997
## 671 2 1997
## 672 2 1997
## 673 1 1997
## 674 3 1997
## 675 4 1997
## 676 4 1997
## 677 4 1995
## 678 4 1995
## 679 2 1995
## 680 2 1996
## 681 3 1996
## 682 2 1996
## 683 3 1997
## 684 2 1997
## 685 3 1997
## 686 3 1997
## 687 2 1997
## 688 4 1997
## 689 4 1996
## 690 4 1997
## 691 3 1997
## 692 2 1997
## 693 2 1997
## 694 3 1993
## 695 4 1993
## 696 3 1996
## 697 2 1997
## 698 4 1975
## 699 2 1995
## 700 1 1996
## 701 4 1996
## 702 4 1996
## 703 4 1964
## 704 3 1982
## 705 3 1992
## 706 4 1962
## 707 4 1940
## 708 4 1969
## 709 1 1995
## 710 2 1995
## 711 2 1995
## 712 4 1995
## 713 5 1992
## 714 4 1994
## 715 2 1994
## 716 1 1994
## 717 4 1992
## 718 4 1993
## 719 3 1993
## 720 5 1993
## 721 3 1993
## 722 2 1996
## 723 1 1996
## 724 2 1996
## 725 5 1963
## 726 5 1996
## 727 1 1996
## 728 1 1996
## 729 4 1940
## 730 5 1958
## 731 4 1959
## 732 5 1960
## 733 4 1959
## 734 5 1942
## 735 5 1941
## 736 5 1964
## 737 4 1954
## 738 5 1953
## 739 5 1950
## 740 5 1946
## 741 5 1955
## 742 4 1938
## 743 5 1955
## 744 5 1934
## 745 4 1940
## 746 4 1956
## 747 4 1946
## 748 4 1938
## 749 4 1951
## 750 4 1958
## 751 5 1941
## 752 4 1971
## 753 3 1972
## 754 3 1967
## 755 4 1954
## 756 4 1955
## 757 4 1951
## 758 3 1996
## 759 4 1989
## 760 4 1954
## 761 5 1962
## 762 4 1987
## 763 4 1949
## 764 5 1977
## 765 4 1997
## 766 4 1983
## 767 4 1979
## 768 3 1990
## 769 5 1948
## 770 4 1963
## 771 4 1978
## 772 5 1986
## 773 5 1967
## 774 3 1940
## 775 5 1946
## 776 3 1959
## 777 4 1982
## 778 4 1984
## 779 4 1985
## 780 4 1975
## 781 4 1996
## 782 3 1997
## 783 4 1997
## 784 4 1997
## 785 2 1997
## 786 4 1997
## 787 4 1991
## 788 2 1997
## 789 2 1997
## 790 5 1995
## 791 5 1995
## 792 5 1995
## 793 5 1995
## 794 4 1996
## 795 3 1995
## 796 5 1995
## 797 5 1996
## 798 3 1996
## 799 3 1996
## 800 4 1995
## 801 5 1995
## 802 3 1995
## 803 4 1995
## 804 4 1994
## 805 5 1995
## 806 5 1994
## 807 5 1994
## 808 5 1977
## 809 2 1994
## 810 4 1994
## 811 5 1994
## 812 3 1995
## 813 5 1994
## 814 3 1994
## 815 5 1994
## 816 4 1994
## 817 5 1994
## 818 1 1994
## 819 5 1994
## 820 5 1994
## 821 3 1994
## 822 5 1993
## 823 3 1993
## 824 4 1993
## 825 4 1993
## 826 5 1994
## 827 3 1993
## 828 4 1993
## 829 5 1982
## 830 3 1993
## 831 3 1993
## 832 5 1993
## 833 5 1996
## 834 5 1991
## 835 5 1990
## 836 4 1991
## 837 5 1937
## 838 5 1997
## 839 5 1981
## 840 4 1996
## 841 2 1996
## 842 5 1996
## 843 4 1996
## 844 3 1996
## 845 5 1972
## 846 5 1961
## 847 5 1939
## 848 5 1939
## 849 4 1941
## 850 5 1968
## 851 5 1939
## 852 3 1969
## 853 5 1993
## 854 5 1954
## 855 3 1971
## 856 3 1965
## 857 5 1988
## 858 1 1992
## 859 4 1971
## 860 4 1973
## 861 5 1988
## 862 5 1979
## 863 5 1992
## 864 5 1986
## 865 3 1986
## 866 5 1981
## 867 4 1974
## 868 5 1989
## 869 3 1986
## 870 5 1974
## 871 3 1991
## 872 4 1980
## 873 5 1987
## 874 5 1981
## 875 5 1985
## 876 3 1986
## 877 4 1966
## 878 4 1957
## 879 5 1971
## 880 5 1979
## 881 3 1997
## 882 4 1990
## 883 4 1979
## 884 5 1960
## 885 4 1980
## 886 4 1974
## 887 5 1987
## 888 5 1989
## 889 5 1984
## 890 4 1980
## 891 5 1983
## 892 5 1973
## 893 5 1984
## 894 5 1989
## 895 4 1967
## 896 3 1990
## 897 5 1957
## 898 5 1980
## 899 2 1987
## 900 3 1993
## 901 5 1992
## 902 5 1985
## 903 5 1970
## 904 4 1990
## 905 5 1974
## 906 4 1989
## 907 5 1970
## 908 1 1988
## 909 3 1986
## 910 5 1982
## 911 4 1989
## 912 4 1989
## 913 4 1992
## 914 1 1984
## 915 5 1996
## 916 5 1990
## 917 3 1991
## 918 4 1982
## 919 3 1984
## 920 3 1986
## 921 3 1992
## 922 3 1988
## 923 5 1975
## 924 5 1996
## 925 5 1987
## 926 4 1992
## 927 4 1997
## 928 3 1997
## 929 1 1997
## 930 4 1997
## 931 5 1990
## 932 4 1997
## 933 3 1997
## 934 3 1995
## 935 4 1995
## 936 3 1994
## 937 5 1996
## 938 4 1996
## 939 4 1996
## 940 1 1997
## 941 4 1997
## 942 5 1997
## 943 3 1997
## 944 4 1993
## 945 5 1993
## 946 1 1997
## 947 5 1997
## 948 3 1997
## 949 4 1994
## 950 5 1975
## 951 4 1995
## 952 5 1995
## 953 5 1994
## 954 4 1995
## 955 4 1994
## 956 4 1994
## 957 3 1994
## 958 5 1994
## 959 4 1993
## 960 3 1993
## 961 4 1994
## 962 3 1993
## 963 4 1993
## 964 4 1994
## 965 4 1993
## 966 4 1995
## 967 5 1990
## 968 4 1989
## 969 5 1940
## 970 3 1996
## 971 2 1975
## 972 5 1957
## 973 3 1961
## 974 4 1950
## 975 3 1964
## 976 5 1951
## 977 3 1996
## 978 5 1982
## 979 5 1962
## 980 5 1971
## 981 5 1951
## 982 3 1933
## 983 4 1986
## 984 4 1940
## 985 5 1989
## 986 4 1956
## 987 5 1969
## 988 5 1981
## 989 1 1982
## 990 2 1979
## 991 5 1963
## 992 5 1958
## 993 2 1976
## 994 5 1976
## 995 3 1976
## 996 3 1979
## 997 4 1989
## 998 5 1978
## 999 5 1978
## 1000 4 1997
## 1001 4 1995
## 1002 4 1994
## 1003 4 1994
## 1004 3 1993
## 1005 4 1996
## 1006 2 1996
## 1007 5 1963
## 1008 4 1958
## 1009 4 1959
## 1010 5 1960
## 1011 3 1959
## 1012 4 1942
## 1013 5 1941
## 1014 5 1964
## 1015 3 1953
## 1016 4 1950
## 1017 3 1946
## 1018 5 1938
## 1019 5 1955
## 1020 5 1956
## 1021 5 1946
## 1022 4 1938
## 1023 5 1951
## 1024 4 1958
## 1025 5 1941
## 1026 5 1971
## 1027 4 1972
## 1028 5 1967
## 1029 3 1954
## 1030 5 1955
## 1031 5 1951
## 1032 5 1989
## 1033 5 1954
## 1034 5 1962
## 1035 4 1949
## 1036 2 1977
## 1037 3 1997
## 1038 4 1948
## 1039 5 1963
## 1040 5 1978
## 1041 4 1967
## 1042 5 1959
## 1043 5 1982
## 1044 5 1984
## 1045 2 1985
## 1046 5 1975
## 1047 3 1991
## 1048 3 1995
## 1049 2 1995
## 1050 4 1995
## 1051 3 1995
## 1052 3 1996
## 1053 2 1995
## 1054 4 1996
## 1055 3 1996
## 1056 5 1996
## 1057 4 1995
## 1058 4 1995
## 1059 1 1995
## 1060 4 1995
## 1061 3 1995
## 1062 3 1995
## 1063 4 1995
## 1064 3 1995
## 1065 4 1994
## 1066 4 1994
## 1067 5 1994
## 1068 3 1995
## 1069 4 1994
## 1070 5 1995
## 1071 2 1995
## 1072 3 1995
## 1073 4 1995
## 1074 4 1994
## 1075 1 1994
## 1076 5 1994
## 1077 4 1994
## 1078 3 1994
## 1079 3 1993
## 1080 3 1994
## 1081 5 1993
## 1082 5 1993
## 1083 3 1994
## 1084 5 1993
## 1085 2 1993
## 1086 3 1993
## 1087 4 1993
## 1088 3 1995
## 1089 5 1993
## 1090 5 1993
## 1091 2 1993
## 1092 4 1993
## 1093 4 1993
## 1094 3 1994
## 1095 4 1993
## 1096 4 1991
## 1097 5 1969
## 1098 2 1996
## 1099 3 1996
## 1100 5 1995
## 1101 5 1993
## 1102 3 1996
## 1103 2 1996
## 1104 5 1996
## 1105 3 1996
## 1106 3 1996
## 1107 1 1996
## 1108 4 1996
## 1109 5 1943
## 1110 3 1951
## 1111 4 1954
## 1112 3 1934
## 1113 4 1944
## 1114 3 1950
## 1115 3 1940
## 1116 4 1945
## 1117 3 1950
## 1118 5 1958
## 1119 3 1944
## 1120 5 1937
## 1121 4 1936
## 1122 5 1956
## 1123 4 1935
## 1124 4 1968
## 1125 5 1930
## 1126 4 1955
## 1127 3 1996
## 1128 4 1996
## 1129 5 1955
## 1130 4 1960
## 1131 3 1994
## 1132 4 1945
## 1133 3 1963
## 1134 5 1949
## 1135 3 1991
## 1136 3 1996
## 1137 3 1982
## 1138 5 1965
## 1139 4 1992
## 1140 5 1982
## 1141 5 1938
## 1142 5 1996
## 1143 3 1980
## 1144 4 1981
## 1145 4 1981
## 1146 4 1982
## 1147 5 1979
## 1148 3 1989
## 1149 5 1957
## 1150 3 1990
## 1151 4 1994
## 1152 5 1988
## 1153 4 1990
## 1154 5 1969
## 1155 5 1985
## 1156 5 1952
## 1157 5 1984
## 1158 3 1957
## 1159 5 1989
## 1160 3 1990
## 1161 4 1958
## 1162 5 1974
## 1163 5 1986
## 1164 3 1931
## 1165 4 1962
## 1166 3 1990
## 1167 5 1944
## 1168 5 1991
## 1169 5 1952
## 1170 3 1980
## 1171 5 1979
## 1172 3 1984
## 1173 4 1992
## 1174 4 1974
## 1175 5 1977
## 1176 4 1981
## 1177 1 1991
## 1178 5 1935
## 1179 1 1992
## 1180 3 1962
## 1181 2 1982
## 1182 5 1922
## 1183 3 1996
## 1184 3 1997
## 1185 3 1997
## 1186 5 1981
## 1187 1 1997
## 1188 2 1997
## 1189 4 1997
## 1190 3 1995
## 1191 3 1995
## 1192 5 1996
## 1193 5 1977
## 1194 5 1994
## 1195 5 1994
## 1196 4 1993
## 1197 5 1993
## 1198 4 1982
## 1199 3 1991
## 1200 5 1972
## 1201 5 1988
## 1202 5 1980
## 1203 5 1981
## 1204 5 1986
## 1205 4 1966
## 1206 4 1997
## 1207 5 1990
## 1208 5 1979
## 1209 4 1974
## 1210 5 1987
## 1211 4 1989
## 1212 5 1984
## 1213 4 1989
## 1214 5 1996
## 1215 4 1991
## 1216 5 1982
## 1217 5 1984
## 1218 4 1992
## 1219 4 1992
## 1220 2 1997
## 1221 5 1997
## 1222 1 1997
## 1223 3 1997
## 1224 3 1995
## 1225 3 1997
## 1226 4 1997
## 1227 3 1997
## 1228 4 1997
## 1229 2 1997
## 1230 2 1997
## 1231 1 1994
## 1232 4 1989
## 1233 2 1986
## 1234 5 1969
## 1235 1 1997
## 1236 4 1954
## 1237 5 1962
## 1238 4 1990
## 1239 3 1995
## 1240 3 1994
## 1241 4 1994
## 1242 5 1989
## 1243 4 1993
## 1244 4 1996
## 1245 3 1993
## 1246 1 1997
## 1247 1 1997
## 1248 4 1997
## 1249 5 1995
## 1250 4 1995
## 1251 5 1977
## 1252 5 1987
## 1253 4 1997
## 1254 4 1995
## 1255 5 1996
## 1256 4 1997
## 1257 5 1997
## 1258 4 1997
## 1259 5 1996
## 1260 5 1994
## 1261 4 1990
## 1262 4 1958
## 1263 5 1942
## 1264 5 1953
## 1265 4 1951
## 1266 4 1978
## 1267 3 1982
## 1268 4 1935
## 1269 1 1997
## 1270 5 1998
## 1271 4 1995
## 1272 4 1995
## 1273 4 1995
## 1274 4 1995
## 1275 4 1995
## 1276 5 1995
## 1277 3 1995
## 1278 4 1995
## 1279 5 1996
## 1280 5 1996
## 1281 4 1994
## 1282 4 1995
## 1283 4 1995
## 1284 4 1994
## 1285 5 1977
## 1286 5 1994
## 1287 4 1994
## 1288 3 1993
## 1289 4 1994
## 1290 4 1994
## 1291 4 1994
## 1292 4 1993
## 1293 4 1994
## 1294 4 1996
## 1295 4 1991
## 1296 5 1937
## 1297 5 1997
## 1298 4 1996
## 1299 5 1996
## 1300 5 1972
## 1301 4 1996
## 1302 5 1939
## 1303 5 1939
## 1304 5 1941
## 1305 5 1968
## 1306 4 1996
## 1307 4 1988
## 1308 4 1988
## 1309 4 1987
## 1310 4 1992
## 1311 5 1986
## 1312 4 1992
## 1313 4 1986
## 1314 4 1981
## 1315 4 1989
## 1316 4 1974
## 1317 4 1988
## 1318 4 1981
## 1319 3 1985
## 1320 4 1986
## 1321 5 1957
## 1322 5 1971
## 1323 5 1979
## 1324 5 1990
## 1325 5 1979
## 1326 5 1960
## 1327 4 1980
## 1328 5 1984
## 1329 4 1980
## 1330 4 1973
## 1331 4 1984
## 1332 5 1967
## 1333 3 1990
## 1334 4 1957
## 1335 5 1980
## 1336 4 1992
## 1337 5 1970
## 1338 5 1970
## 1339 4 1989
## 1340 4 1991
## 1341 4 1996
## 1342 5 1996
## 1343 4 1986
## 1344 4 1975
## 1345 4 1987
## 1346 4 1997
## 1347 4 1997
## 1348 4 1995
## 1349 4 1995
## 1350 4 1995
## 1351 4 1995
## 1352 4 1996
## 1353 5 1996
## 1354 4 1996
## 1355 4 1996
## 1356 3 1997
## 1357 4 1997
## 1358 3 1996
## 1359 4 1996
## 1360 4 1997
## 1361 4 1997
## 1362 4 1997
## 1363 5 1975
## 1364 4 1995
## 1365 4 1996
## 1366 4 1994
## 1367 4 1940
## 1368 4 1982
## 1369 4 1950
## 1370 4 1951
## 1371 3 1933
## 1372 4 1940
## 1373 5 1969
## 1374 4 1976
## 1375 3 1995
## 1376 3 1992
## 1377 4 1994
## 1378 4 1993
## 1379 4 1993
## 1380 4 1963
## 1381 4 1996
## 1382 5 1940
## 1383 5 1958
## 1384 5 1959
## 1385 4 1959
## 1386 5 1942
## 1387 5 1941
## 1388 4 1954
## 1389 5 1950
## 1390 4 1946
## 1391 4 1934
## 1392 4 1956
## 1393 5 1946
## 1394 4 1938
## 1395 5 1951
## 1396 4 1958
## 1397 4 1971
## 1398 5 1967
## 1399 4 1954
## 1400 4 1989
## 1401 5 1954
## 1402 4 1962
## 1403 4 1949
## 1404 4 1990
## 1405 5 1948
## 1406 4 1978
## 1407 5 1946
## 1408 4 1982
## 1409 3 1985
## 1410 4 1975
## 1411 5 1996
## 1412 4 1994
## 1413 4 1993
## 1414 4 1991
## 1415 5 1969
## 1416 5 1951
## 1417 5 1954
## 1418 4 1934
## 1419 5 1950
## 1420 4 1958
## 1421 5 1944
## 1422 4 1935
## 1423 5 1930
## 1424 4 1982
## 1425 4 1989
## 1426 3 1990
## 1427 5 1974
## 1428 5 1986
## 1429 5 1931
## 1430 4 1962
## 1431 3 1979
## 1432 4 1984
## 1433 4 1993
## 1434 4 1995
## 1435 4 1995
## 1436 5 1995
## 1437 3 1995
## 1438 4 1996
## 1439 3 1995
## 1440 4 1994
## 1441 4 1994
## 1442 4 1995
## 1443 4 1993
## 1444 3 1994
## 1445 5 1994
## 1446 3 1993
## 1447 4 1952
## 1448 4 1996
## 1449 5 1991
## 1450 4 1989
## 1451 4 1992
## 1452 4 1985
## 1453 4 1996
## 1454 4 1987
## 1455 4 1995
## 1456 5 1995
## 1457 2 1995
## 1458 2 1995
## 1459 5 1996
## 1460 4 1996
## 1461 3 1996
## 1462 3 1996
## 1463 5 1995
## 1464 3 1995
## 1465 3 1995
## 1466 3 1995
## 1467 3 1995
## 1468 3 1994
## 1469 4 1994
## 1470 4 1994
## 1471 3 1994
## 1472 3 1995
## 1473 4 1994
## 1474 2 1994
## 1475 3 1994
## 1476 3 1994
## 1477 4 1994
## 1478 4 1993
## 1479 5 1993
## 1480 4 1993
## 1481 3 1993
## 1482 2 1993
## 1483 3 1990
## 1484 4 1990
## 1485 2 1991
## 1486 4 1997
## 1487 4 1996
## 1488 3 1996
## 1489 3 1995
## 1490 4 1996
## 1491 2 1996
## 1492 3 1996
## 1493 3 1996
## 1494 4 1996
## 1495 4 1968
## 1496 3 1974
## 1497 5 1987
## 1498 3 1985
## 1499 3 1986
## 1500 2 1979
## 1501 4 1960
## 1502 3 1989
## 1503 4 1984
## 1504 4 1973
## 1505 5 1989
## 1506 4 1992
## 1507 3 1985
## 1508 4 1974
## 1509 3 1970
## 1510 4 1986
## 1511 3 1989
## 1512 3 1989
## 1513 3 1996
## 1514 3 1991
## 1515 3 1982
## 1516 4 1984
## 1517 4 1986
## 1518 4 1996
## 1519 3 1987
## 1520 4 1992
## 1521 4 1992
## 1522 5 1997
## 1523 3 1997
## 1524 1 1997
## 1525 3 1995
## 1526 5 1995
## 1527 5 1996
## 1528 3 1997
## 1529 4 1997
## 1530 3 1997
## 1531 4 1997
## 1532 4 1997
## 1533 4 1993
## 1534 5 1993
## 1535 1 1997
## 1536 5 1997
## 1537 4 1998
## 1538 4 1994
## 1539 5 1975
## 1540 3 1995
## 1541 3 1995
## 1542 3 1996
## 1543 4 1995
## 1544 3 1994
## 1545 2 1994
## 1546 3 1993
## 1547 4 1993
## 1548 2 1993
## 1549 3 1993
## 1550 3 1995
## 1551 4 1990
## 1552 3 1996
## 1553 3 1982
## 1554 5 1982
## 1555 4 1992
## 1556 4 1962
## 1557 4 1971
## 1558 5 1951
## 1559 3 1933
## 1560 2 1986
## 1561 4 1989
## 1562 4 1956
## 1563 4 1969
## 1564 3 1979
## 1565 2 1978
## 1566 3 1997
## 1567 3 1967
## 1568 4 1996
## 1569 2 1979
## 1570 2 1978
## 1571 4 1940
## 1572 3 1959
## 1573 4 1982
## 1574 4 1996
## 1575 4 1995
## 1576 3 1994
## 1577 2 1994
## 1578 3 1993
## 1579 3 1993
## 1580 5 1995
## 1581 2 1996
## 1582 4 1954
## 1583 3 1969
## 1584 4 1990
## 1585 3 1974
## 1586 5 1944
## 1587 3 1991
## 1588 3 1980
## 1589 4 1979
## 1590 4 1997
## 1591 4 1995
## 1592 4 1994
## 1593 5 1991
## 1594 2 1985
## 1595 5 1995
## 1596 4 1995
## 1597 3 1995
## 1598 3 1995
## 1599 2 1996
## 1600 5 1996
## 1601 3 1994
## 1602 1 1995
## 1603 3 1995
## 1604 3 1995
## 1605 5 1995
## 1606 3 1995
## 1607 3 1994
## 1608 3 1995
## 1609 3 1994
## 1610 3 1994
## 1611 4 1994
## 1612 3 1996
## 1613 4 1994
## 1614 3 1993
## 1615 4 1994
## 1616 3 1993
## 1617 3 1993
## 1618 4 1993
## 1619 4 1994
## 1620 3 1994
## 1621 3 1990
## 1622 4 1996
## 1623 5 1996
## 1624 3 1996
## 1625 2 1996
## 1626 4 1996
## 1627 5 1972
## 1628 4 1985
## 1629 3 1993
## 1630 1 1997
## 1631 5 1997
## 1632 5 1997
## 1633 2 1997
## 1634 4 1998
## 1635 5 1995
## 1636 5 1996
## 1637 5 1995
## 1638 4 1977
## 1639 5 1994
## 1640 4 1994
## 1641 4 1993
## 1642 5 1993
## 1643 4 1991
## 1644 5 1990
## 1645 5 1991
## 1646 4 1972
## 1647 5 1939
## 1648 4 1939
## 1649 5 1965
## 1650 5 1986
## 1651 4 1992
## 1652 5 1986
## 1653 4 1974
## 1654 4 1988
## 1655 4 1980
## 1656 5 1981
## 1657 5 1984
## 1658 4 1984
## 1659 5 1989
## 1660 1 1980
## 1661 4 1993
## 1662 3 1992
## 1663 5 1985
## 1664 4 1989
## 1665 5 1989
## 1666 4 1982
## 1667 5 1987
## 1668 5 1997
## 1669 4 1995
## 1670 5 1996
## 1671 4 1997
## 1672 5 1993
## 1673 4 1997
## 1674 4 1994
## 1675 4 1993
## 1676 5 1990
## 1677 3 1957
## 1678 5 1996
## 1679 4 1959
## 1680 5 1996
## 1681 5 1993
## 1682 3 1989
## 1683 5 1993
## 1684 5 1994
## 1685 4 1997
## 1686 3 1995
## 1687 3 1995
## 1688 5 1995
## 1689 1 1995
## 1690 2 1995
## 1691 4 1995
## 1692 3 1995
## 1693 1 1995
## 1694 5 1995
## 1695 5 1995
## 1696 4 1994
## 1697 1 1996
## 1698 3 1996
## 1699 4 1996
## 1700 5 1996
## 1701 1 1996
## 1702 1 1996
## 1703 3 1995
## 1704 5 1995
## 1705 2 1995
## 1706 4 1994
## 1707 5 1995
## 1708 1 1994
## 1709 3 1995
## 1710 3 1995
## 1711 2 1995
## 1712 4 1994
## 1713 3 1994
## 1714 5 1994
## 1715 4 1994
## 1716 5 1977
## 1717 3 1994
## 1718 1 1994
## 1719 5 1994
## 1720 4 1994
## 1721 4 1994
## 1722 4 1993
## 1723 4 1994
## 1724 5 1994
## 1725 5 1994
## 1726 3 1995
## 1727 1 1994
## 1728 3 1994
## 1729 4 1994
## 1730 3 1994
## 1731 4 1994
## 1732 4 1994
## 1733 3 1994
## 1734 1 1993
## 1735 3 1993
## 1736 2 1993
## 1737 2 1993
## 1738 1 1993
## 1739 5 1993
## 1740 4 1993
## 1741 4 1982
## 1742 3 1993
## 1743 2 1993
## 1744 3 1993
## 1745 3 1990
## 1746 5 1992
## 1747 4 1991
## 1748 4 1990
## 1749 4 1991
## 1750 4 1937
## 1751 5 1997
## 1752 4 1996
## 1753 3 1995
## 1754 5 1996
## 1755 5 1996
## 1756 3 1996
## 1757 4 1996
## 1758 5 1996
## 1759 5 1996
## 1760 5 1972
## 1761 1 1996
## 1762 4 1939
## 1763 5 1968
## 1764 5 1996
## 1765 1 1996
## 1766 2 1954
## 1767 1 1965
## 1768 4 1988
## 1769 2 1992
## 1770 3 1996
## 1771 5 1996
## 1772 5 1973
## 1773 4 1988
## 1774 5 1979
## 1775 2 1987
## 1776 3 1986
## 1777 1 1989
## 1778 4 1992
## 1779 5 1986
## 1780 3 1974
## 1781 3 1989
## 1782 3 1986
## 1783 5 1986
## 1784 4 1980
## 1785 4 1974
## 1786 5 1988
## 1787 5 1980
## 1788 2 1987
## 1789 4 1981
## 1790 4 1985
## 1791 3 1986
## 1792 5 1966
## 1793 4 1957
## 1794 2 1971
## 1795 5 1979
## 1796 5 1997
## 1797 5 1990
## 1798 4 1979
## 1799 1 1993
## 1800 3 1960
## 1801 4 1980
## 1802 5 1974
## 1803 4 1987
## 1804 4 1989
## 1805 3 1984
## 1806 5 1983
## 1807 5 1973
## 1808 3 1984
## 1809 4 1989
## 1810 4 1967
## 1811 3 1990
## 1812 5 1957
## 1813 3 1980
## 1814 1 1987
## 1815 5 1993
## 1816 5 1985
## 1817 2 1970
## 1818 5 1974
## 1819 3 1984
## 1820 3 1989
## 1821 4 1970
## 1822 5 1988
## 1823 5 1989
## 1824 3 1989
## 1825 1 1992
## 1826 1 1991
## 1827 1 1984
## 1828 3 1996
## 1829 5 1996
## 1830 4 1996
## 1831 2 1996
## 1832 4 1990
## 1833 5 1991
## 1834 4 1982
## 1835 4 1984
## 1836 3 1986
## 1837 3 1992
## 1838 3 1988
## 1839 4 1992
## 1840 5 1975
## 1841 2 1996
## 1842 5 1996
## 1843 3 1987
## 1844 4 1992
## 1845 3 1992
## 1846 2 1997
## 1847 3 1997
## 1848 4 1997
## 1849 1 1997
## 1850 1 1997
## 1851 4 1997
## 1852 5 1997
## 1853 4 1997
## 1854 4 1990
## 1855 2 1997
## 1856 4 1997
## 1857 1 1997
## 1858 4 1997
## 1859 3 1995
## 1860 3 1995
## 1861 3 1995
## 1862 5 1995
## 1863 5 1995
## 1864 4 1996
## 1865 3 1994
## 1866 5 1996
## 1867 3 1996
## 1868 1 1996
## 1869 1 1996
## 1870 2 1996
## 1871 4 1997
## 1872 5 1997
## 1873 2 1997
## 1874 3 1997
## 1875 1 1997
## 1876 1 1997
## 1877 5 1997
## 1878 4 1997
## 1879 3 1997
## 1880 2 1997
## 1881 3 1997
## 1882 4 1997
## 1883 3 1997
## 1884 1 1997
## 1885 4 1997
## 1886 1 1997
## 1887 5 1998
## 1888 5 1997
## 1889 5 1993
## 1890 3 1993
## 1891 4 1996
## 1892 1 1996
## 1893 2 1996
## 1894 3 1997
## 1895 3 1997
## 1896 3 1997
## 1897 3 1997
## 1898 3 1997
## 1899 2 1998
## 1900 3 1997
## 1901 3 1997
## 1902 3 1997
## 1903 1 1997
## 1904 2 1997
## 1905 1 1997
## 1906 3 1997
## 1907 2 1997
## 1908 2 1997
## 1909 4 1997
## 1910 1 1997
## 1911 2 1997
## 1912 4 1997
## 1913 4 1997
## 1914 5 1998
## 1915 1 1998
## 1916 2 1998
## 1917 1 1998
## 1918 4 1998
## 1919 2 1998
## 1920 3 1998
## 1921 3 1975
## 1922 3 1997
## 1923 4 1997
## 1924 4 1998
## 1925 3 1995
## 1926 3 1995
## 1927 1 1996
## 1928 3 1996
## 1929 1 1994
## 1930 1 1995
## 1931 1 1994
## 1932 2 1994
## 1933 3 1994
## 1934 3 1993
## 1935 3 1993
## 1936 3 1993
## 1937 2 1994
## 1938 3 1994
## 1939 2 1993
## 1940 4 1994
## 1941 1 1995
## 1942 4 1990
## 1943 2 1989
## 1944 5 1940
## 1945 2 1996
## 1946 1 1996
## 1947 3 1996
## 1948 1 1996
## 1949 2 1996
## 1950 1 1996
## 1951 5 1982
## 1952 3 1957
## 1953 2 1961
## 1954 2 1950
## 1955 3 1964
## 1956 4 1951
## 1957 2 1996
## 1958 5 1982
## 1959 1 1996
## 1960 5 1962
## 1961 5 1971
## 1962 5 1951
## 1963 5 1933
## 1964 1 1986
## 1965 4 1940
## 1966 4 1989
## 1967 5 1969
## 1968 2 1981
## 1969 1 1992
## 1970 1 1983
## 1971 1 1993
## 1972 1 1982
## 1973 1 1979
## 1974 1 1990
## 1975 4 1963
## 1976 4 1958
## 1977 4 1945
## 1978 1 1976
## 1979 2 1976
## 1980 1 1976
## 1981 4 1979
## 1982 3 1989
## 1983 1 1978
## 1984 3 1978
## 1985 2 1983
## 1986 3 1997
## 1987 1 1997
## 1988 5 1992
## 1989 5 1994
## 1990 5 1993
## 1991 1 1996
## 1992 5 1996
## 1993 4 1996
## 1994 4 1963
## 1995 3 1996
## 1996 2 1996
## 1997 4 1996
## 1998 4 1940
## 1999 3 1959
## 2000 3 1960
## 2001 5 1959
## 2002 5 1942
## 2003 5 1941
## 2004 1 1964
## 2005 3 1950
## 2006 4 1938
## 2007 5 1955
## 2008 5 1934
## 2009 4 1940
## 2010 5 1938
## 2011 4 1951
## 2012 5 1941
## 2013 5 1971
## 2014 5 1967
## 2015 3 1954
## 2016 5 1955
## 2017 1 1951
## 2018 3 1996
## 2019 5 1989
## 2020 5 1954
## 2021 5 1962
## 2022 5 1977
## 2023 2 1997
## 2024 5 1983
## 2025 5 1979
## 2026 4 1990
## 2027 5 1948
## 2028 4 1963
## 2029 5 1986
## 2030 4 1967
## 2031 4 1940
## 2032 5 1946
## 2033 3 1959
## 2034 5 1982
## 2035 4 1985
## 2036 5 1975
## 2037 3 1996
## 2038 1 1997
## 2039 1 1997
## 2040 3 1995
## 2041 1 1995
## 2042 3 1996
## 2043 1 1996
## 2044 3 1996
## 2045 4 1995
## 2046 4 1995
## 2047 1 1995
## 2048 2 1995
## 2049 2 1995
## 2050 1 1994
## 2051 1 1994
## 2052 1 1994
## 2053 1 1995
## 2054 1 1995
## 2055 1 1995
## 2056 5 1994
## 2057 1 1994
## 2058 3 1994
## 2059 2 1994
## 2060 5 1994
## 2061 2 1994
## 2062 3 1993
## 2063 3 1993
## 2064 3 1993
## 2065 4 1993
## 2066 3 1994
## 2067 4 1991
## 2068 3 1969
## 2069 2 1996
## 2070 3 1996
## 2071 3 1996
## 2072 4 1943
## 2073 4 1951
## 2074 4 1954
## 2075 5 1934
## 2076 4 1950
## 2077 2 1958
## 2078 4 1937
## 2079 4 1936
## 2080 4 1956
## 2081 4 1935
## 2082 3 1930
## 2083 3 1996
## 2084 4 1955
## 2085 5 1945
## 2086 2 1963
## 2087 1 1982
## 2088 2 1965
## 2089 3 1992
## 2090 3 1982
## 2091 1 1980
## 2092 2 1981
## 2093 2 1981
## 2094 3 1982
## 2095 3 1979
## 2096 4 1969
## 2097 5 1985
## 2098 2 1957
## 2099 5 1989
## 2100 5 1990
## 2101 5 1974
## 2102 5 1986
## 2103 5 1931
## 2104 4 1962
## 2105 3 1944
## 2106 5 1952
## 2107 5 1980
## 2108 5 1979
## 2109 2 1992
## 2110 1 1977
## 2111 1 1981
## 2112 1 1991
## 2113 3 1935
## 2114 1 1992
## 2115 3 1962
## 2116 3 1982
## 2117 5 1922
## 2118 3 1997
## 2119 4 1981
## 2120 1 1997
## 2121 1 1997
## 2122 5 1993
## 2123 5 1996
## 2124 5 1993
## 2125 1 1997
## 2126 1 1997
## 2127 2 1997
## 2128 3 1997
## 2129 4 1998
## 2130 4 1995
## 2131 4 1995
## 2132 5 1952
## 2133 1 1996
## 2134 4 1992
## 2135 4 1987
## 2136 4 1995
## 2137 4 1995
## 2138 3 1995
## 2139 5 1993
## 2140 5 1994
## 2141 3 1993
## 2142 4 1993
## 2143 4 1994
## 2144 4 1990
## 2145 1 1996
## 2146 3 1985
## 2147 4 1993
## 2148 4 1997
## 2149 3 1997
## 2150 5 1997
## 2151 5 1997
## 2152 1 1998
## 2153 4 1997
## 2154 3 1995
## 2155 2 1995
## 2156 3 1995
## 2157 1 1996
## 2158 2 1995
## 2159 1 1995
## 2160 4 1995
## 2161 5 1996
## 2162 1 1996
## 2163 2 1996
## 2164 2 1992
## 2165 4 1996
## 2166 1 1995
## 2167 4 1995
## 2168 3 1995
## 2169 4 1995
## 2170 3 1995
## 2171 1 1995
## 2172 1 1994
## 2173 1 1995
## 2174 4 1995
## 2175 2 1995
## 2176 1 1995
## 2177 3 1995
## 2178 3 1994
## 2179 1 1994
## 2180 3 1995
## 2181 3 1994
## 2182 3 1994
## 2183 1 1993
## 2184 3 1994
## 2185 3 1995
## 2186 3 1995
## 2187 1 1994
## 2188 5 1995
## 2189 2 1995
## 2190 5 1995
## 2191 5 1994
## 2192 5 1994
## 2193 4 1994
## 2194 2 1994
## 2195 3 1994
## 2196 5 1994
## 2197 2 1995
## 2198 4 1995
## 2199 1 1995
## 2200 3 1994
## 2201 2 1993
## 2202 3 1993
## 2203 2 1994
## 2204 4 1993
## 2205 5 1993
## 2206 1 1993
## 2207 2 1993
## 2208 4 1993
## 2209 5 1994
## 2210 5 1993
## 2211 2 1994
## 2212 1 1996
## 2213 5 1994
## 2214 4 1996
## 2215 1 1995
## 2216 1 1996
## 2217 3 1996
## 2218 1 1996
## 2219 4 1996
## 2220 3 1996
## 2221 3 1968
## 2222 5 1996
## 2223 3 1996
## 2224 1 1996
## 2225 5 1996
## 2226 3 1996
## 2227 1 1996
## 2228 3 1996
## 2229 1 1996
## 2230 3 1996
## 2231 4 1996
## 2232 2 1996
## 2233 1 1995
## 2234 3 1934
## 2235 2 1939
## 2236 4 1941
## 2237 1 1996
## 2238 1 1995
## 2239 3 1996
## 2240 1 1996
## 2241 2 1960
## 2242 5 1959
## 2243 1 1996
## 2244 3 1996
## 2245 2 1996
## 2246 4 1996
## 2247 5 1944
## 2248 1 1990
## 2249 4 1996
## 2250 5 1966
## 2251 1 1996
## 2252 1 1992
## 2253 1 1987
## 2254 4 1981
## 2255 5 1991
## 2256 3 1996
## 2257 1 1996
## 2258 1 1986
## 2259 1 1987
## 2260 3 1986
## 2261 3 1996
## 2262 4 1996
## 2263 4 1996
## 2264 3 1996
## 2265 5 1996
## 2266 5 1997
## 2267 3 1997
## 2268 3 1997
## 2269 2 1997
## 2270 3 1997
## 2271 1 1997
## 2272 5 1997
## 2273 1 1997
## 2274 2 1997
## 2275 2 1997
## 2276 1 1997
## 2277 2 1997
## 2278 3 1997
## 2279 3 1997
## 2280 3 1997
## 2281 2 1997
## 2282 1 1998
## 2283 5 1997
## 2284 5 1997
## 2285 2 1997
## 2286 3 1997
## 2287 1 1997
## 2288 1 1997
## 2289 3 1997
## 2290 3 1997
## 2291 1 1997
## 2292 1 1997
## 2293 5 1997
## 2294 1 1995
## 2295 1 1997
## 2296 1 1997
## 2297 5 1997
## 2298 1 1997
## 2299 3 1997
## 2300 3 1997
## 2301 1 1997
## 2302 2 1998
## 2303 3 1997
## 2304 1 1997
## 2305 1 1998
## 2306 5 1998
## 2307 2 1998
## 2308 2 1998
## 2309 2 1998
## 2310 1 1998
## 2311 2 1998
## 2312 5 1998
## 2313 4 1998
## 2314 4 1998
## 2315 3 1998
## 2316 5 1995
## 2317 4 1995
## 2318 5 1995
## 2319 4 1995
## 2320 3 1994
## 2321 4 1996
## 2322 3 1995
## 2323 5 1995
## 2324 3 1996
## 2325 5 1996
## 2326 2 1996
## 2327 5 1994
## 2328 4 1994
## 2329 5 1977
## 2330 5 1994
## 2331 1 1994
## 2332 5 1994
## 2333 3 1996
## 2334 4 1991
## 2335 3 1991
## 2336 5 1997
## 2337 3 1996
## 2338 5 1996
## 2339 3 1996
## 2340 5 1996
## 2341 2 1972
## 2342 5 1971
## 2343 4 1974
## 2344 5 1980
## 2345 4 1987
## 2346 5 1981
## 2347 5 1985
## 2348 1 1986
## 2349 5 1997
## 2350 4 1980
## 2351 4 1984
## 2352 5 1984
## 2353 3 1993
## 2354 5 1985
## 2355 5 1989
## 2356 4 1970
## 2357 5 1986
## 2358 4 1996
## 2359 5 1987
## 2360 5 1996
## 2361 4 1997
## 2362 3 1990
## 2363 4 1997
## 2364 4 1995
## 2365 4 1995
## 2366 4 1996
## 2367 5 1996
## 2368 4 1996
## 2369 5 1997
## 2370 2 1997
## 2371 1 1996
## 2372 2 1975
## 2373 5 1994
## 2374 5 1996
## 2375 5 1962
## 2376 4 1971
## 2377 5 1933
## 2378 4 1997
## 2379 5 1996
## 2380 4 1963
## 2381 3 1996
## 2382 4 1996
## 2383 4 1955
## 2384 5 1951
## 2385 4 1951
## 2386 5 1989
## 2387 4 1977
## 2388 4 1979
## 2389 5 1948
## 2390 4 1967
## 2391 5 1940
## 2392 5 1946
## 2393 5 1975
## 2394 4 1991
## 2395 3 1996
## 2396 4 1954
## 2397 5 1996
## 2398 4 1974
## 2399 5 1986
## 2400 5 1979
## 2401 5 1992
## 2402 5 1995
## 2403 3 1997
## 2404 3 1996
## 2405 5 1994
## 2406 2 1996
## 2407 3 1996
## 2408 3 1996
## 2409 4 1995
## 2410 4 1995
## 2411 5 1993
## 2412 4 1996
## 2413 5 1991
## 2414 1 1995
## 2415 1 1995
## 2416 4 1995
## 2417 1 1995
## 2418 4 1994
## 2419 4 1996
## 2420 1 1995
## 2421 3 1995
## 2422 3 1996
## 2423 5 1977
## 2424 4 1996
## 2425 1 1996
## 2426 3 1996
## 2427 5 1996
## 2428 2 1972
## 2429 4 1996
## 2430 3 1996
## 2431 5 1997
## 2432 4 1996
## 2433 3 1996
## 2434 3 1996
## 2435 1 1996
## 2436 3 1996
## 2437 1 1997
## 2438 2 1997
## 2439 1 1997
## 2440 1 1997
## 2441 2 1997
## 2442 2 1997
## 2443 5 1997
## 2444 4 1997
## 2445 3 1997
## 2446 5 1997
## 2447 4 1995
## 2448 4 1995
## 2449 1 1996
## 2450 3 1996
## 2451 3 1996
## 2452 4 1996
## 2453 4 1996
## 2454 2 1996
## 2455 3 1996
## 2456 3 1997
## 2457 5 1997
## 2458 3 1997
## 2459 4 1997
## 2460 4 1997
## 2461 4 1997
## 2462 5 1997
## 2463 1 1997
## 2464 5 1997
## 2465 4 1997
## 2466 3 1997
## 2467 1 1997
## 2468 3 1997
## 2469 3 1997
## 2470 1 1997
## 2471 2 1996
## 2472 3 1996
## 2473 2 1996
## 2474 1 1997
## 2475 5 1995
## 2476 5 1995
## 2477 4 1996
## 2478 3 1996
## 2479 1 1996
## 2480 4 1996
## 2481 2 1996
## 2482 2 1996
## 2483 2 1996
## 2484 4 1996
## 2485 4 1996
## 2486 1 1997
## 2487 4 1996
## 2488 4 1997
## 2489 2 1996
## 2490 2 1996
## 2491 4 1996
## 2492 3 1997
## 2493 1 1997
## 2494 5 1997
## 2495 1 1996
## 2496 2 1996
## 2497 2 1996
## 2498 4 1996
## 2499 4 1996
## 2500 3 1997
## 2501 3 1997
## 2502 3 1996
## 2503 2 1996
## 2504 1 1996
## 2505 4 1996
## 2506 1 1996
## 2507 1 1996
## 2508 2 1996
## 2509 1 1996
## 2510 1 1996
## 2511 1 1996
## 2512 4 1996
## 2513 3 1997
## 2514 5 1997
## 2515 4 1997
## 2516 3 1997
## 2517 5 1995
## 2518 5 1995
## 2519 5 1995
## 2520 5 1995
## 2521 5 1995
## 2522 5 1995
## 2523 5 1995
## 2524 5 1996
## 2525 5 1996
## 2526 2 1995
## 2527 5 1995
## 2528 5 1995
## 2529 2 1995
## 2530 5 1995
## 2531 4 1994
## 2532 5 1994
## 2533 5 1994
## 2534 4 1994
## 2535 5 1994
## 2536 4 1995
## 2537 5 1994
## 2538 4 1994
## 2539 5 1994
## 2540 5 1993
## 2541 5 1993
## 2542 4 1993
## 2543 2 1982
## 2544 4 1993
## 2545 5 1992
## 2546 5 1991
## 2547 5 1991
## 2548 5 1937
## 2549 5 1997
## 2550 4 1996
## 2551 3 1996
## 2552 5 1972
## 2553 4 1941
## 2554 4 1968
## 2555 5 1965
## 2556 5 1988
## 2557 5 1971
## 2558 4 1973
## 2559 3 1987
## 2560 4 1992
## 2561 4 1989
## 2562 4 1992
## 2563 5 1986
## 2564 5 1989
## 2565 4 1974
## 2566 5 1980
## 2567 5 1981
## 2568 5 1957
## 2569 5 1979
## 2570 5 1990
## 2571 5 1979
## 2572 5 1984
## 2573 5 1973
## 2574 5 1984
## 2575 5 1967
## 2576 5 1957
## 2577 5 1980
## 2578 5 1993
## 2579 5 1985
## 2580 5 1974
## 2581 5 1984
## 2582 5 1989
## 2583 5 1991
## 2584 5 1982
## 2585 5 1986
## 2586 5 1992
## 2587 5 1975
## 2588 5 1996
## 2589 4 1996
## 2590 5 1995
## 2591 5 1996
## 2592 1 1996
## 2593 2 1996
## 2594 3 1996
## 2595 4 1997
## 2596 5 1997
## 2597 5 1997
## 2598 5 1993
## 2599 3 1996
## 2600 5 1975
## 2601 3 1995
## 2602 5 1994
## 2603 5 1940
## 2604 5 1996
## 2605 5 1950
## 2606 5 1982
## 2607 5 1962
## 2608 5 1963
## 2609 5 1976
## 2610 5 1976
## 2611 5 1993
## 2612 3 1993
## 2613 3 1996
## 2614 3 1996
## 2615 5 1958
## 2616 5 1959
## 2617 5 1959
## 2618 5 1946
## 2619 5 1951
## 2620 4 1971
## 2621 5 1967
## 2622 2 1989
## 2623 4 1954
## 2624 5 1996
## 2625 4 1996
## 2626 1 1995
## 2627 4 1993
## 2628 4 1996
## 2629 5 1951
## 2630 5 1954
## 2631 4 1950
## 2632 4 1982
## 2633 5 1990
## 2634 5 1974
## 2635 5 1986
## 2636 5 1962
## 2637 4 1952
## 2638 5 1993
## 2639 4 1995
## 2640 4 1995
## 2641 5 1952
## 2642 5 1993
## 2643 3 1993
## 2644 2 1995
## 2645 3 1995
## 2646 2 1994
## 2647 4 1995
## 2648 2 1994
## 2649 1 1994
## 2650 4 1993
## 2651 3 1994
## 2652 1 1994
## 2653 4 1963
## 2654 5 1981
## 2655 4 1988
## 2656 3 1997
## 2657 4 1995
## 2658 4 1995
## 2659 3 1995
## 2660 3 1995
## 2661 4 1997
## 2662 3 1996
## 2663 3 1996
## 2664 1 1996
## 2665 4 1996
## 2666 4 1996
## 2667 5 1996
## 2668 4 1971
## 2669 2 1996
## 2670 3 1996
## 2671 2 1996
## 2672 1 1997
## 2673 2 1997
## 2674 4 1997
## 2675 4 1995
## 2676 3 1996
## 2677 4 1997
## 2678 1 1997
## 2679 2 1996
## 2680 4 1996
## 2681 3 1996
## 2682 1 1996
## 2683 3 1996
## 2684 4 1995
## 2685 5 1995
## 2686 3 1995
## 2687 5 1995
## 2688 5 1995
## 2689 5 1995
## 2690 5 1995
## 2691 5 1995
## 2692 5 1994
## 2693 4 1996
## 2694 3 1995
## 2695 5 1996
## 2696 4 1996
## 2697 3 1996
## 2698 4 1995
## 2699 3 1995
## 2700 2 1994
## 2701 3 1994
## 2702 5 1994
## 2703 3 1994
## 2704 4 1994
## 2705 4 1977
## 2706 5 1994
## 2707 5 1994
## 2708 4 1994
## 2709 4 1994
## 2710 4 1994
## 2711 4 1993
## 2712 4 1994
## 2713 5 1994
## 2714 5 1993
## 2715 3 1995
## 2716 3 1994
## 2717 4 1994
## 2718 4 1994
## 2719 3 1994
## 2720 4 1993
## 2721 3 1994
## 2722 3 1993
## 2723 5 1993
## 2724 4 1993
## 2725 3 1993
## 2726 3 1982
## 2727 3 1993
## 2728 3 1990
## 2729 4 1992
## 2730 4 1990
## 2731 5 1991
## 2732 5 1937
## 2733 5 1997
## 2734 3 1996
## 2735 5 1996
## 2736 5 1996
## 2737 3 1996
## 2738 5 1996
## 2739 5 1972
## 2740 4 1961
## 2741 5 1939
## 2742 5 1939
## 2743 5 1941
## 2744 3 1968
## 2745 5 1939
## 2746 5 1996
## 2747 4 1971
## 2748 4 1965
## 2749 3 1971
## 2750 3 1973
## 2751 4 1988
## 2752 4 1979
## 2753 3 1986
## 2754 4 1981
## 2755 4 1986
## 2756 4 1986
## 2757 3 1974
## 2758 5 1993
## 2759 5 1988
## 2760 3 1980
## 2761 4 1981
## 2762 4 1985
## 2763 3 1966
## 2764 3 1957
## 2765 4 1971
## 2766 4 1979
## 2767 3 1997
## 2768 4 1990
## 2769 3 1960
## 2770 4 1980
## 2771 5 1974
## 2772 3 1987
## 2773 5 1992
## 2774 4 1989
## 2775 4 1984
## 2776 5 1983
## 2777 3 1973
## 2778 3 1984
## 2779 3 1989
## 2780 4 1967
## 2781 3 1990
## 2782 3 1957
## 2783 3 1980
## 2784 3 1993
## 2785 3 1985
## 2786 4 1974
## 2787 4 1984
## 2788 5 1989
## 2789 5 1970
## 2790 5 1988
## 2791 5 1986
## 2792 4 1982
## 2793 3 1989
## 2794 4 1989
## 2795 5 1996
## 2796 5 1996
## 2797 5 1996
## 2798 3 1975
## 2799 3 1996
## 2800 3 1996
## 2801 5 1987
## 2802 3 1992
## 2803 5 1997
## 2804 5 1997
## 2805 5 1995
## 2806 5 1995
## 2807 5 1996
## 2808 3 1996
## 2809 5 1996
## 2810 5 1996
## 2811 4 1996
## 2812 5 1993
## 2813 5 1993
## 2814 4 1996
## 2815 4 1975
## 2816 4 1995
## 2817 3 1994
## 2818 4 1994
## 2819 3 1994
## 2820 2 1993
## 2821 4 1993
## 2822 3 1993
## 2823 3 1993
## 2824 3 1990
## 2825 3 1989
## 2826 4 1940
## 2827 5 1996
## 2828 3 1996
## 2829 4 1982
## 2830 5 1957
## 2831 3 1950
## 2832 3 1964
## 2833 5 1982
## 2834 3 1992
## 2835 5 1962
## 2836 3 1971
## 2837 4 1933
## 2838 4 1940
## 2839 3 1956
## 2840 4 1969
## 2841 3 1963
## 2842 3 1978
## 2843 4 1995
## 2844 3 1992
## 2845 4 1994
## 2846 4 1963
## 2847 3 1996
## 2848 5 1940
## 2849 4 1958
## 2850 4 1959
## 2851 5 1959
## 2852 4 1942
## 2853 5 1964
## 2854 3 1954
## 2855 4 1953
## 2856 3 1950
## 2857 4 1946
## 2858 4 1955
## 2859 5 1934
## 2860 3 1940
## 2861 5 1946
## 2862 4 1938
## 2863 4 1951
## 2864 5 1967
## 2865 4 1989
## 2866 4 1954
## 2867 5 1987
## 2868 4 1949
## 2869 5 1977
## 2870 5 1997
## 2871 5 1983
## 2872 2 1979
## 2873 4 1948
## 2874 4 1963
## 2875 4 1967
## 2876 4 1940
## 2877 4 1959
## 2878 4 1982
## 2879 4 1984
## 2880 5 1985
## 2881 4 1975
## 2882 4 1995
## 2883 5 1993
## 2884 4 1991
## 2885 3 1951
## 2886 3 1954
## 2887 5 1934
## 2888 3 1940
## 2889 4 1950
## 2890 4 1958
## 2891 4 1937
## 2892 5 1936
## 2893 4 1956
## 2894 3 1991
## 2895 3 1982
## 2896 3 1965
## 2897 5 1992
## 2898 5 1938
## 2899 4 1979
## 2900 4 1985
## 2901 3 1984
## 2902 4 1974
## 2903 4 1944
## 2904 5 1991
## 2905 4 1979
## 2906 3 1995
## 2907 5 1994
## 2908 3 1994
## 2909 3 1993
## 2910 3 1952
## 2911 3 1991
## 2912 3 1989
## 2913 5 1992
## 2914 4 1995
## 2915 5 1995
## 2916 4 1995
## 2917 3 1994
## 2918 3 1993
## 2919 4 1993
## 2920 4 1993
## 2921 3 1994
## 2922 3 1990
## 2923 3 1993
## 2924 4 1994
## 2925 3 1996
## 2926 3 1995
## 2927 2 1995
## 2928 3 1995
## 2929 5 1994
## 2930 3 1994
## 2931 4 1993
## 2932 3 1996
## 2933 5 1991
## 2934 3 1996
## 2935 5 1993
## 2936 5 1991
## 2937 3 1995
## 2938 3 1995
## 2939 3 1995
## 2940 2 1995
## 2941 3 1995
## 2942 3 1995
## 2943 4 1995
## 2944 5 1994
## 2945 3 1992
## 2946 5 1994
## 2947 3 1993
## 2948 4 1993
## 2949 3 1993
## 2950 4 1993
## 2951 5 1993
## 2952 3 1995
## 2953 4 1957
## 2954 2 1957
## 2955 3 1936
## 2956 3 1949
## 2957 3 1968
## 2958 3 1991
## 2959 4 1991
## 2960 3 1992
## 2961 3 1996
## 2962 4 1995
## 2963 5 1995
## 2964 4 1988
## 2965 3 1987
## 2966 4 1993
## 2967 3 1989
## 2968 4 1970
## 2969 4 1997
## 2970 3 1996
## 2971 3 1997
## 2972 4 1997
## 2973 2 1997
## 2974 4 1996
## 2975 4 1997
## 2976 3 1994
## 2977 5 1969
## 2978 3 1986
## 2979 3 1995
## 2980 4 1997
## 2981 3 1995
## 2982 2 1995
## 2983 4 1996
## 2984 5 1996
## 2985 3 1977
## 2986 1 1994
## 2987 4 1993
## 2988 5 1993
## 2989 2 1990
## 2990 3 1992
## 2991 3 1991
## 2992 4 1996
## 2993 3 1996
## 2994 3 1965
## 2995 2 1988
## 2996 5 1996
## 2997 3 1971
## 2998 3 1980
## 2999 4 1981
## 3000 2 1986
## 3001 4 1997
## 3002 3 1980
## 3003 3 1973
## 3004 3 1985
## 3005 2 1974
## 3006 4 1989
## 3007 4 1997
## 3008 4 1997
## 3009 4 1995
## 3010 1 1996
## 3011 4 1997
## 3012 1 1975
## 3013 3 1994
## 3014 3 1996
## 3015 2 1982
## 3016 5 1946
## 3017 3 1951
## 3018 4 1994
## 3019 4 1991
## 3020 3 1996
## 3021 4 1938
## 3022 4 1997
## 3023 4 1996
## 3024 1 1996
## 3025 2 1996
## 3026 1 1996
## 3027 1 1996
## 3028 4 1996
## 3029 5 1995
## 3030 2 1995
## 3031 5 1995
## 3032 5 1995
## 3033 4 1996
## 3034 4 1996
## 3035 3 1977
## 3036 4 1994
## 3037 5 1994
## 3038 5 1991
## 3039 5 1997
## 3040 1 1996
## 3041 2 1996
## 3042 1 1996
## 3043 1 1996
## 3044 4 1996
## 3045 5 1972
## 3046 4 1996
## 3047 1 1992
## 3048 1 1996
## 3049 5 1989
## 3050 4 1993
## 3051 5 1960
## 3052 5 1980
## 3053 5 1987
## 3054 3 1992
## 3055 4 1991
## 3056 5 1984
## 3057 2 1996
## 3058 5 1975
## 3059 4 1996
## 3060 3 1997
## 3061 2 1997
## 3062 4 1997
## 3063 1 1997
## 3064 4 1997
## 3065 2 1997
## 3066 2 1997
## 3067 1 1997
## 3068 4 1997
## 3069 1 1997
## 3070 3 1997
## 3071 4 1995
## 3072 2 1994
## 3073 3 1996
## 3074 3 1996
## 3075 3 1996
## 3076 3 1997
## 3077 3 1997
## 3078 3 1997
## 3079 3 1997
## 3080 5 1997
## 3081 1 1997
## 3082 3 1997
## 3083 4 1997
## 3084 2 1996
## 3085 3 1996
## 3086 3 1996
## 3087 3 1997
## 3088 2 1997
## 3089 4 1997
## 3090 4 1997
## 3091 5 1997
## 3092 3 1997
## 3093 3 1997
## 3094 4 1997
## 3095 3 1997
## 3096 1 1996
## 3097 3 1995
## 3098 2 1994
## 3099 1 1996
## 3100 5 1996
## 3101 2 1996
## 3102 1 1996
## 3103 4 1981
## 3104 1 1992
## 3105 1 1983
## 3106 1 1993
## 3107 1 1982
## 3108 3 1979
## 3109 4 1963
## 3110 3 1958
## 3111 3 1945
## 3112 5 1976
## 3113 4 1976
## 3114 4 1978
## 3115 2 1983
## 3116 1 1997
## 3117 3 1996
## 3118 2 1996
## 3119 3 1995
## 3120 5 1994
## 3121 1 1994
## 3122 1 1994
## 3123 2 1995
## 3124 3 1995
## 3125 3 1995
## 3126 2 1994
## 3127 3 1994
## 3128 2 1993
## 3129 1 1996
## 3130 3 1996
## 3131 3 1996
## 3132 3 1996
## 3133 2 1996
## 3134 3 1996
## 3135 4 1980
## 3136 4 1981
## 3137 5 1931
## 3138 3 1992
## 3139 1 1981
## 3140 1 1991
## 3141 5 1935
## 3142 3 1992
## 3143 2 1982
## 3144 5 1922
## 3145 2 1997
## 3146 2 1997
## 3147 1 1997
## 3148 2 1996
## 3149 2 1996
## 3150 1 1996
## 3151 3 1996
## 3152 3 1996
## 3153 1 1997
## 3154 1 1996
## 3155 1 1995
## 3156 1 1995
## 3157 1 1995
## 3158 3 1994
## 3159 2 1995
## 3160 1 1995
## 3161 1 1995
## 3162 3 1996
## 3163 3 1996
## 3164 1 1995
## 3165 1 1995
## 3166 4 1996
## 3167 5 1992
## 3168 5 1987
## 3169 1 1996
## 3170 2 1986
## 3171 2 1987
## 3172 2 1997
## 3173 2 1997
## 3174 2 1997
## 3175 4 1997
## 3176 2 1997
## 3177 2 1997
## 3178 2 1997
## 3179 2 1996
## 3180 3 1996
## 3181 1 1996
## 3182 2 1996
## 3183 1 1997
## 3184 3 1996
## 3185 3 1996
## 3186 1 1996
## 3187 2 1996
## 3188 1 1996
## 3189 2 1996
## 3190 2 1996
## 3191 2 1996
## 3192 1 1996
## 3193 2 1996
## 3194 1 1997
## 3195 2 1996
## 3196 1 1997
## 3197 3 1997
## 3198 1 1997
## 3199 3 1997
## 3200 2 1997
## 3201 2 1997
## 3202 2 1997
## 3203 4 1997
## 3204 2 1997
## 3205 2 1997
## 3206 2 1995
## 3207 5 1995
## 3208 4 1996
## 3209 4 1996
## 3210 5 1996
## 3211 1 1995
## 3212 5 1977
## 3213 3 1994
## 3214 4 1994
## 3215 4 1994
## 3216 4 1993
## 3217 4 1993
## 3218 5 1994
## 3219 5 1982
## 3220 3 1990
## 3221 5 1991
## 3222 1 1996
## 3223 4 1996
## 3224 1 1995
## 3225 4 1996
## 3226 4 1996
## 3227 3 1996
## 3228 5 1972
## 3229 5 1996
## 3230 5 1988
## 3231 5 1988
## 3232 4 1979
## 3233 4 1986
## 3234 1 1974
## 3235 3 1980
## 3236 5 1974
## 3237 4 1980
## 3238 5 1987
## 3239 5 1981
## 3240 4 1985
## 3241 5 1986
## 3242 5 1997
## 3243 5 1993
## 3244 5 1980
## 3245 5 1974
## 3246 5 1973
## 3247 4 1984
## 3248 4 1987
## 3249 5 1993
## 3250 5 1985
## 3251 5 1974
## 3252 4 1984
## 3253 3 1989
## 3254 3 1970
## 3255 4 1989
## 3256 4 1996
## 3257 4 1990
## 3258 4 1991
## 3259 4 1982
## 3260 2 1984
## 3261 4 1986
## 3262 2 1992
## 3263 3 1992
## 3264 5 1987
## 3265 3 1992
## 3266 5 1997
## 3267 5 1997
## 3268 3 1990
## 3269 5 1997
## 3270 1 1997
## 3271 5 1997
## 3272 1 1995
## 3273 3 1994
## 3274 1 1994
## 3275 3 1994
## 3276 4 1994
## 3277 3 1993
## 3278 4 1993
## 3279 4 1993
## 3280 5 1989
## 3281 1 1996
## 3282 3 1996
## 3283 1 1996
## 3284 4 1933
## 3285 4 1986
## 3286 3 1989
## 3287 5 1969
## 3288 1 1979
## 3289 4 1978
## 3290 5 1997
## 3291 1 1997
## 3292 4 1971
## 3293 5 1954
## 3294 4 1962
## 3295 5 1997
## 3296 5 1967
## 3297 4 1959
## 3298 3 1996
## 3299 5 1995
## 3300 1 1995
## 3301 3 1994
## 3302 4 1994
## 3303 3 1981
## 3304 4 1952
## 3305 4 1989
## 3306 1 1992
## 3307 1 1997
## 3308 3 1993
## 3309 1 1997
## 3310 1 1997
## 3311 4 1995
## 3312 4 1987
## 3313 3 1994
## 3314 4 1993
## 3315 1 1994
## 3316 1 1995
## 3317 4 1994
## 3318 4 1996
## 3319 1 1996
## 3320 3 1997
## 3321 1 1997
## 3322 1 1996
## 3323 1 1996
## 3324 1 1997
## 3325 1 1997
## 3326 1 1995
## 3327 1 1995
## 3328 1 1994
## 3329 4 1994
## 3330 3 1994
## 3331 1 1996
## 3332 1 1997
## 3333 5 1995
## 3334 4 1995
## 3335 4 1995
## 3336 4 1995
## 3337 4 1994
## 3338 4 1995
## 3339 3 1995
## 3340 3 1994
## 3341 4 1977
## 3342 4 1994
## 3343 4 1994
## 3344 4 1994
## 3345 3 1994
## 3346 2 1994
## 3347 3 1994
## 3348 3 1994
## 3349 4 1993
## 3350 3 1993
## 3351 4 1993
## 3352 3 1993
## 3353 5 1982
## 3354 2 1993
## 3355 4 1993
## 3356 4 1992
## 3357 4 1991
## 3358 5 1991
## 3359 4 1937
## 3360 5 1997
## 3361 3 1970
## 3362 3 1996
## 3363 5 1996
## 3364 5 1996
## 3365 4 1961
## 3366 4 1939
## 3367 4 1939
## 3368 4 1941
## 3369 3 1965
## 3370 3 1988
## 3371 3 1992
## 3372 3 1971
## 3373 4 1988
## 3374 3 1979
## 3375 3 1987
## 3376 3 1992
## 3377 2 1986
## 3378 3 1981
## 3379 4 1988
## 3380 5 1991
## 3381 4 1980
## 3382 5 1987
## 3383 4 1981
## 3384 5 1985
## 3385 3 1986
## 3386 4 1966
## 3387 4 1997
## 3388 3 1979
## 3389 4 1960
## 3390 3 1987
## 3391 5 1992
## 3392 3 1984
## 3393 4 1973
## 3394 4 1984
## 3395 2 1989
## 3396 3 1993
## 3397 4 1992
## 3398 3 1985
## 3399 5 1984
## 3400 4 1970
## 3401 3 1986
## 3402 3 1982
## 3403 2 1989
## 3404 4 1989
## 3405 2 1992
## 3406 1 1984
## 3407 4 1996
## 3408 5 1996
## 3409 3 1991
## 3410 4 1982
## 3411 3 1984
## 3412 4 1986
## 3413 2 1975
## 3414 1 1996
## 3415 5 1987
## 3416 4 1997
## 3417 3 1997
## 3418 5 1997
## 3419 5 1997
## 3420 5 1995
## 3421 4 1996
## 3422 1 1997
## 3423 3 1998
## 3424 2 1997
## 3425 3 1975
## 3426 4 1995
## 3427 5 1994
## 3428 4 1994
## 3429 4 1994
## 3430 4 1993
## 3431 3 1993
## 3432 4 1940
## 3433 4 1996
## 3434 5 1996
## 3435 3 1982
## 3436 4 1950
## 3437 3 1964
## 3438 5 1996
## 3439 3 1982
## 3440 5 1962
## 3441 4 1940
## 3442 5 1989
## 3443 2 1979
## 3444 2 1978
## 3445 4 1994
## 3446 2 1996
## 3447 5 1958
## 3448 4 1942
## 3449 4 1967
## 3450 5 1962
## 3451 5 1987
## 3452 4 1983
## 3453 5 1990
## 3454 4 1986
## 3455 3 1959
## 3456 4 1982
## 3457 4 1984
## 3458 4 1975
## 3459 4 1995
## 3460 3 1996
## 3461 3 1995
## 3462 4 1991
## 3463 3 1996
## 3464 4 1954
## 3465 4 1982
## 3466 3 1990
## 3467 4 1990
## 3468 3 1986
## 3469 3 1980
## 3470 3 1981
## 3471 4 1995
## 3472 4 1952
## 3473 4 1985
## 3474 4 1995
## 3475 2 1990
## 3476 3 1993
## 3477 1 1994
## 3478 4 1991
## 3479 5 1995
## 3480 5 1993
## 3481 3 1993
## 3482 3 1991
## 3483 3 1991
## 3484 4 1995
## 3485 5 1995
## 3486 5 1995
## 3487 5 1995
## 3488 5 1995
## 3489 4 1996
## 3490 5 1995
## 3491 5 1994
## 3492 4 1994
## 3493 3 1994
## 3494 5 1994
## 3495 5 1994
## 3496 5 1994
## 3497 4 1993
## 3498 5 1993
## 3499 4 1990
## 3500 5 1991
## 3501 5 1997
## 3502 3 1996
## 3503 4 1996
## 3504 5 1972
## 3505 3 1996
## 3506 3 1939
## 3507 5 1971
## 3508 4 1988
## 3509 5 1987
## 3510 5 1986
## 3511 5 1957
## 3512 5 1979
## 3513 5 1984
## 3514 5 1980
## 3515 4 1989
## 3516 5 1996
## 3517 4 1996
## 3518 5 1987
## 3519 4 1997
## 3520 4 1997
## 3521 5 1995
## 3522 5 1995
## 3523 5 1996
## 3524 3 1996
## 3525 3 1996
## 3526 3 1997
## 3527 4 1997
## 3528 5 1993
## 3529 5 1997
## 3530 5 1975
## 3531 3 1997
## 3532 2 1995
## 3533 4 1995
## 3534 4 1990
## 3535 5 1996
## 3536 5 1962
## 3537 4 1996
## 3538 5 1996
## 3539 3 1954
## 3540 4 1996
## 3541 4 1990
## 3542 4 1993
## 3543 5 1986
## 3544 5 1980
## 3545 3 1994
## 3546 3 1994
## 3547 5 1994
## 3548 4 1996
## 3549 5 1996
## 3550 3 1995
## 3551 5 1997
## 3552 5 1995
## 3553 4 1995
## 3554 4 1995
## 3555 4 1995
## 3556 4 1996
## 3557 5 1996
## 3558 5 1977
## 3559 4 1993
## 3560 4 1993
## 3561 4 1993
## 3562 5 1991
## 3563 5 1996
## 3564 4 1996
## 3565 4 1996
## 3566 5 1996
## 3567 3 1972
## 3568 4 1961
## 3569 3 1939
## 3570 4 1941
## 3571 3 1968
## 3572 4 1954
## 3573 3 1965
## 3574 4 1971
## 3575 5 1993
## 3576 4 1987
## 3577 5 1981
## 3578 4 1986
## 3579 3 1966
## 3580 5 1997
## 3581 4 1979
## 3582 4 1980
## 3583 5 1992
## 3584 4 1984
## 3585 3 1967
## 3586 5 1985
## 3587 4 1974
## 3588 4 1996
## 3589 4 1982
## 3590 4 1987
## 3591 4 1992
## 3592 4 1997
## 3593 5 1997
## 3594 4 1990
## 3595 4 1997
## 3596 4 1995
## 3597 4 1975
## 3598 3 1940
## 3599 5 1996
## 3600 4 1964
## 3601 4 1962
## 3602 4 1933
## 3603 2 1940
## 3604 4 1997
## 3605 4 1994
## 3606 4 1963
## 3607 4 1996
## 3608 5 1940
## 3609 5 1958
## 3610 4 1959
## 3611 4 1956
## 3612 4 1951
## 3613 3 1941
## 3614 3 1963
## 3615 4 1982
## 3616 4 1994
## 3617 4 1934
## 3618 4 1937
## 3619 5 1935
## 3620 4 1938
## 3621 4 1986
## 3622 4 1962
## 3623 4 1995
## 3624 4 1994
## 3625 4 1996
## 3626 4 1941
## 3627 4 1996
## 3628 4 1949
## 3629 3 1968
## 3630 3 1995
## 3631 3 1995
## 3632 4 1995
## 3633 3 1995
## 3634 3 1994
## 3635 4 1996
## 3636 3 1996
## 3637 3 1996
## 3638 4 1977
## 3639 5 1997
## 3640 3 1996
## 3641 3 1996
## 3642 2 1996
## 3643 3 1996
## 3644 3 1996
## 3645 3 1996
## 3646 1 1996
## 3647 4 1996
## 3648 4 1996
## 3649 5 1972
## 3650 4 1996
## 3651 3 1996
## 3652 3 1996
## 3653 3 1971
## 3654 4 1997
## 3655 3 1996
## 3656 2 1996
## 3657 3 1996
## 3658 3 1996
## 3659 4 1997
## 3660 3 1997
## 3661 2 1997
## 3662 3 1997
## 3663 3 1997
## 3664 3 1997
## 3665 3 1997
## 3666 3 1997
## 3667 4 1997
## 3668 3 1997
## 3669 3 1995
## 3670 4 1995
## 3671 4 1996
## 3672 3 1996
## 3673 3 1996
## 3674 3 1996
## 3675 4 1996
## 3676 3 1997
## 3677 3 1997
## 3678 3 1997
## 3679 3 1997
## 3680 3 1997
## 3681 4 1997
## 3682 5 1997
## 3683 4 1996
## 3684 5 1997
## 3685 3 1998
## 3686 3 1997
## 3687 3 1996
## 3688 3 1997
## 3689 2 1997
## 3690 2 1997
## 3691 3 1997
## 3692 3 1997
## 3693 2 1996
## 3694 2 1996
## 3695 2 1996
## 3696 2 1996
## 3697 3 1997
## 3698 1 1997
## 3699 3 1995
## 3700 2 1996
## 3701 3 1996
## 3702 3 1996
## 3703 3 1996
## 3704 4 1997
## 3705 2 1996
## 3706 3 1996
## 3707 2 1996
## 3708 3 1996
## 3709 2 1997
## 3710 3 1997
## 3711 3 1996
## 3712 3 1996
## 3713 1 1997
## 3714 4 1997
## 3715 4 1997
## 3716 1 1995
## 3717 2 1996
## 3718 2 1996
## 3719 2 1996
## 3720 2 1996
## 3721 3 1996
## 3722 2 1996
## 3723 2 1997
## 3724 2 1996
## 3725 2 1996
## 3726 4 1997
## 3727 3 1996
## 3728 3 1996
## 3729 2 1996
## 3730 2 1996
## 3731 3 1996
## 3732 4 1997
## 3733 1 1997
## 3734 3 1997
## 3735 3 1997
## 3736 3 1997
## 3737 4 1995
## 3738 3 1977
## 3739 5 1997
## 3740 3 1996
## 3741 4 1996
## 3742 5 1996
## 3743 3 1996
## 3744 3 1997
## 3745 4 1997
## 3746 3 1994
## 3747 3 1996
## 3748 3 1996
## 3749 3 1997
## 3750 4 1997
## 3751 2 1997
## 3752 4 1996
## 3753 2 1996
## 3754 3 1996
## 3755 4 1997
## 3756 2 1996
## 3757 3 1996
## 3758 3 1996
## 3759 2 1996
## 3760 2 1996
## 3761 4 1996
## 3762 3 1995
## 3763 5 1995
## 3764 4 1995
## 3765 4 1995
## 3766 4 1995
## 3767 4 1995
## 3768 4 1977
## 3769 5 1994
## 3770 4 1994
## 3771 4 1993
## 3772 4 1982
## 3773 3 1992
## 3774 5 1991
## 3775 5 1991
## 3776 5 1997
## 3777 4 1996
## 3778 4 1965
## 3779 3 1992
## 3780 3 1988
## 3781 4 1989
## 3782 3 1987
## 3783 5 1981
## 3784 5 1986
## 3785 4 1993
## 3786 5 1960
## 3787 4 1984
## 3788 4 1989
## 3789 2 1980
## 3790 3 1987
## 3791 4 1984
## 3792 3 1992
## 3793 3 1991
## 3794 5 1984
## 3795 5 1996
## 3796 5 1996
## 3797 4 1991
## 3798 5 1982
## 3799 2 1984
## 3800 4 1986
## 3801 4 1975
## 3802 5 1997
## 3803 4 1997
## 3804 4 1996
## 3805 3 1996
## 3806 5 1996
## 3807 3 1997
## 3808 2 1997
## 3809 3 1997
## 3810 2 1997
## 3811 4 1994
## 3812 2 1982
## 3813 5 1951
## 3814 4 1956
## 3815 5 1981
## 3816 2 1979
## 3817 4 1963
## 3818 3 1958
## 3819 3 1976
## 3820 4 1976
## 3821 2 1979
## 3822 1 1989
## 3823 4 1958
## 3824 5 1959
## 3825 4 1985
## 3826 4 1994
## 3827 4 1994
## 3828 4 1993
## 3829 3 1991
## 3830 3 1954
## 3831 3 1950
## 3832 4 1969
## 3833 3 1992
## 3834 3 1992
## 3835 2 1997
## 3836 3 1995
## 3837 4 1995
## 3838 3 1986
## 3839 4 1997
## 3840 5 1995
## 3841 4 1993
## 3842 4 1991
## 3843 4 1979
## 3844 4 1990
## 3845 4 1992
## 3846 3 1997
## 3847 4 1997
## 3848 3 1997
## 3849 4 1997
## 3850 4 1997
## 3851 5 1996
## 3852 4 1997
## 3853 3 1997
## 3854 4 1997
## 3855 4 1997
## 3856 4 1997
## 3857 2 1997
## 3858 4 1997
## 3859 3 1997
## 3860 2 1997
## 3861 4 1959
## 3862 2 1997
## 3863 4 1962
## 3864 5 1952
## 3865 3 1997
## 3866 2 1997
## 3867 2 1997
## 3868 4 1997
## 3869 3 1997
## 3870 4 1990
## 3871 4 1989
## 3872 3 1995
## 3873 4 1995
## 3874 4 1995
## 3875 3 1995
## 3876 3 1977
## 3877 5 1994
## 3878 4 1993
## 3879 5 1968
## 3880 4 1986
## 3881 4 1989
## 3882 4 1980
## 3883 5 1981
## 3884 4 1997
## 3885 2 1992
## 3886 5 1997
## 3887 3 1997
## 3888 4 1997
## 3889 4 1997
## 3890 5 1997
## 3891 4 1997
## 3892 5 1996
## 3893 2 1996
## 3894 4 1997
## 3895 4 1997
## 3896 4 1996
## 3897 5 1997
## 3898 4 1998
## 3899 4 1996
## 3900 4 1996
## 3901 2 1989
## 3902 5 1969
## 3903 5 1996
## 3904 4 1997
## 3905 3 1997
## 3906 2 1997
## 3907 3 1997
## 3908 3 1997
## 3909 3 1997
## 3910 4 1994
## 3911 1 1997
## 3912 4 1997
## 3913 5 1997
## 3914 3 1997
## 3915 5 1994
## 3916 2 1993
## 3917 4 1996
## 3918 4 1968
## 3919 5 1939
## 3920 4 1988
## 3921 5 1985
## 3922 4 1980
## 3923 5 1997
## 3924 4 1997
## 3925 4 1997
## 3926 4 1997
## 3927 3 1997
## 3928 4 1996
## 3929 4 1996
## 3930 2 1997
## 3931 3 1997
## 3932 5 1941
## 3933 4 1955
## 3934 5 1934
## 3935 4 1951
## 3936 5 1967
## 3937 5 1977
## 3938 4 1948
## 3939 4 1944
## 3940 2 1997
## 3941 5 1952
## 3942 4 1993
## 3943 4 1997
## 3944 2 1997
## 3945 5 1989
## 3946 3 1944
## 3947 3 1963
## 3948 5 1997
## 3949 4 1995
## 3950 3 1995
## 3951 4 1977
## 3952 3 1997
## 3953 3 1996
## 3954 3 1996
## 3955 3 1996
## 3956 2 1996
## 3957 3 1971
## 3958 4 1997
## 3959 3 1996
## 3960 3 1996
## 3961 2 1996
## 3962 2 1997
## 3963 4 1997
## 3964 4 1997
## 3965 4 1997
## 3966 4 1997
## 3967 4 1997
## 3968 2 1997
## 3969 3 1997
## 3970 4 1995
## 3971 4 1996
## 3972 3 1997
## 3973 3 1997
## 3974 5 1997
## 3975 2 1997
## 3976 4 1997
## 3977 4 1996
## 3978 3 1996
## 3979 2 1997
## 3980 5 1996
## 3981 4 1996
## 3982 3 1996
## 3983 4 1996
## 3984 3 1996
## 3985 3 1996
## 3986 4 1997
## 3987 1 1997
## 3988 3 1997
## 3989 3 1997
## 3990 4 1997
## 3991 4 1997
## 3992 4 1997
## 3993 4 1996
## 3994 4 1997
## 3995 3 1997
## 3996 4 1997
## 3997 3 1997
## 3998 5 1997
## 3999 4 1997
## 4000 4 1997
## 4001 4 1998
## 4002 4 1997
## 4003 3 1997
## 4004 4 1997
## 4005 4 1997
## 4006 4 1997
## 4007 4 1997
## 4008 3 1997
## 4009 3 1997
## 4010 3 1997
## 4011 3 1997
## 4012 5 1997
## 4013 4 1997
## 4014 2 1997
## 4015 5 1996
## 4016 2 1996
## 4017 1 1996
## 4018 5 1997
## 4019 1 1997
## 4020 5 1997
## 4021 4 1997
## 4022 4 1997
## 4023 5 1997
## 4024 5 1998
## 4025 5 1997
## 4026 4 1997
## 4027 5 1997
## 4028 5 1997
## 4029 5 1997
## 4030 4 1997
## 4031 5 1997
## 4032 2 1997
## 4033 2 1997
## 4034 2 1997
## 4035 4 1997
## 4036 3 1997
## 4037 2 1997
## 4038 3 1997
## 4039 5 1997
## 4040 3 1996
## 4041 3 1997
## 4042 3 1997
## 4043 3 1997
## 4044 3 1997
## 4045 4 1997
## 4046 4 1997
## 4047 1 1997
## 4048 3 1997
## 4049 4 1997
## 4050 2 1997
## 4051 2 1997
## 4052 4 1997
## 4053 4 1997
## 4054 3 1997
## 4055 5 1997
## 4056 3 1997
## 4057 4 1996
## 4058 2 1996
## 4059 4 1997
## 4060 4 1997
## 4061 2 1996
## 4062 4 1997
## 4063 5 1997
## 4064 5 1997
## 4065 1 1997
## 4066 4 1997
## 4067 3 1997
## 4068 3 1997
## 4069 5 1997
## 4070 5 1997
## 4071 5 1997
## 4072 5 1998
## 4073 5 1997
## 4074 4 1995
## 4075 4 1995
## 4076 5 1996
## 4077 4 1996
## 4078 4 1995
## 4079 5 1977
## 4080 3 1994
## 4081 5 1994
## 4082 5 1994
## 4083 5 1994
## 4084 4 1993
## 4085 1 1993
## 4086 4 1982
## 4087 4 1993
## 4088 4 1991
## 4089 4 1996
## 4090 2 1996
## 4091 2 1996
## 4092 4 1972
## 4093 3 1996
## 4094 5 1986
## 4095 4 1980
## 4096 5 1981
## 4097 4 1986
## 4098 4 1979
## 4099 5 1984
## 4100 4 1989
## 4101 3 1996
## 4102 5 1990
## 4103 4 1986
## 4104 2 1992
## 4105 4 1992
## 4106 4 1990
## 4107 3 1995
## 4108 4 1996
## 4109 3 1995
## 4110 4 1994
## 4111 5 1989
## 4112 4 1996
## 4113 2 1996
## 4114 2 1995
## 4115 3 1996
## 4116 4 1995
## 4117 4 1994
## 4118 3 1994
## 4119 3 1993
## 4120 5 1996
## 4121 3 1992
## 4122 3 1996
## 4123 2 1996
## 4124 3 1996
## 4125 2 1996
## 4126 4 1996
## 4127 3 1996
## 4128 3 1996
## 4129 4 1997
## 4130 3 1995
## 4131 5 1995
## 4132 5 1996
## 4133 4 1995
## 4134 5 1995
## 4135 4 1994
## 4136 5 1994
## 4137 5 1994
## 4138 5 1994
## 4139 5 1993
## 4140 3 1993
## 4141 5 1993
## 4142 5 1994
## 4143 5 1993
## 4144 5 1990
## 4145 5 1992
## 4146 5 1990
## 4147 5 1937
## 4148 3 1996
## 4149 5 1996
## 4150 5 1996
## 4151 1 1996
## 4152 2 1972
## 4153 2 1939
## 4154 2 1969
## 4155 5 1993
## 4156 5 1988
## 4157 1 1992
## 4158 5 1988
## 4159 5 1987
## 4160 5 1986
## 4161 5 1981
## 4162 2 1960
## 4163 2 1987
## 4164 1 1984
## 4165 5 1980
## 4166 2 1993
## url
## 1 http://us.imdb.com/M/title-exact?Toy%20Story%20(1995)
## 2 http://us.imdb.com/M/title-exact?GoldenEye%20(1995)
## 3 http://us.imdb.com/M/title-exact?Four%20Rooms%20(1995)
## 4 http://us.imdb.com/M/title-exact?Get%20Shorty%20(1995)
## 5 http://us.imdb.com/M/title-exact?Copycat%20(1995)
## 6 http://us.imdb.com/Title?Yao+a+yao+yao+dao+waipo+qiao+(1995)
## 7 http://us.imdb.com/M/title-exact?Twelve%20Monkeys%20(1995)
## 8 http://us.imdb.com/M/title-exact?Babe%20(1995)
## 9 http://us.imdb.com/M/title-exact?Dead%20Man%20Walking%20(1995)
## 10 http://us.imdb.com/M/title-exact?Richard%20III%20(1995)
## 11 http://us.imdb.com/M/title-exact?Se7en%20(1995)
## 12 http://us.imdb.com/M/title-exact?Usual%20Suspects,%20The%20(1995)
## 13 http://us.imdb.com/M/title-exact?Mighty%20Aphrodite%20(1995)
## 14 http://us.imdb.com/M/title-exact?Postino,%20Il%20(1994)
## 15 http://us.imdb.com/M/title-exact?Mr.%20Holland's%20Opus%20(1995)
## 16 http://us.imdb.com/M/title-exact?Gazon%20maudit%20(1995)
## 17 http://us.imdb.com/M/title-exact?From%20Dusk%20Till%20Dawn%20(1996)
## 18 http://us.imdb.com/M/title-exact?Badkonake%20Sefid%20(1995)
## 19 http://us.imdb.com/M/title-exact?Antonia%20(1995)
## 20 http://us.imdb.com/M/title-exact?Angels%20and%20Insects%20(1995)
## 21 http://us.imdb.com/M/title-exact?Muppet%20Treasure%20Island%20(1996)
## 22 http://us.imdb.com/M/title-exact?Braveheart%20(1995)
## 23 http://us.imdb.com/M/title-exact?Taxi%20Driver%20(1976)
## 24 http://us.imdb.com/M/title-exact?Hong%20Faan%20Kui%20(1995)
## 25 http://us.imdb.com/M/title-exact?Birdcage,%20The%20(1996)
## 26 http://us.imdb.com/M/title-exact?Brothers%20McMullen,%20The%20(1995)
## 27 http://us.imdb.com/M/title-exact?Bad%20Boys%20(1995)
## 28 http://us.imdb.com/M/title-exact?Apollo%2013%20(1995)
## 29 http://us.imdb.com/M/title-exact?Batman%20Forever%20(1995)
## 30 http://us.imdb.com/M/title-exact?Belle%20de%20jour%20(1967)
## 31 http://us.imdb.com/M/title-exact?Crimson%20Tide%20(1995)
## 32 http://us.imdb.com/M/title-exact?Crumb%20(1994)
## 33 http://us.imdb.com/M/title-exact?Desperado%20(1995)
## 34 http://us.imdb.com/M/title-exact?Doom%20Generation,%20The%20(1995)
## 35 http://us.imdb.com/M/title-exact?Free%20Willy%202:%20The%20Adventure%20Home%20(1995)
## 36 http://us.imdb.com/M/title-exact?Mad%20Love%20(1995)
## 37 http://us.imdb.com/M/title-exact?Nadja%20(1994)
## 38 http://us.imdb.com/M/title-exact?Net,%20The%20(1995)
## 39 http://us.imdb.com/M/title-exact?Strange%20Days%20(1995)
## 40 http://us.imdb.com/M/title-exact?To%20Wong%20Foo,%20Thanks%20for%20Everything!%20Julie%20Newmar%20(1995)
## 41 http://us.imdb.com/M/title-exact?Billy%20Madison%20(1995)
## 42 http://us.imdb.com/M/title-exact?Clerks%20(1994)
## 43 http://us.imdb.com/M/title-exact?Disclosure%20(1994)
## 44 http://us.imdb.com/M/title-exact?Dolores%20Claiborne%20(1994)
## 45 http://us.imdb.com/M/title-exact?Yinshi%20Nan%20Nu%20(1994)
## 46 http://us.imdb.com/M/title-exact?Exotica%20(1994)
## 47 http://us.imdb.com/M/title-exact?Ed%20Wood%20(1994)
## 48 http://us.imdb.com/M/title-exact?Hoop%20Dreams%20(1994)
## 49 http://us.imdb.com/M/title-exact?I.Q.%20(1994)
## 50 http://us.imdb.com/M/title-exact?Star%20Wars%20(1977)
## 51 http://us.imdb.com/M/title-exact?Legends%20of%20the%20Fall%20(1994)
## 52 http://us.imdb.com/M/title-exact?Madness%20of%20King%20George,%20The%20(1994)
## 53 http://us.imdb.com/M/title-exact?Natural%20Born%20Killers%20(1994)
## 54 http://us.imdb.com/M/title-exact?Outbreak%20(1995)
## 55 http://us.imdb.com/Title?L%E9on+(1994)
## 56 http://us.imdb.com/M/title-exact?Pulp%20Fiction%20(1994)
## 57 http://us.imdb.com/M/title-exact?Priest%20(1994)
## 58 http://us.imdb.com/M/title-exact?Quiz%20Show%20(1994)
## 59 http://us.imdb.com/M/title-exact?Trzy%20kolory:%20Czerwony%20(1994)
## 60 http://us.imdb.com/M/title-exact?Trzy%20kolory:%20Niebieski%20(1993)
## 61 http://us.imdb.com/M/title-exact?Trzy%20kolory:%20Bialy%20(1994)
## 62 http://us.imdb.com/M/title-exact?Stargate%20(1994)
## 63 http://us.imdb.com/M/title-exact?Santa%20Clause,%20The%20(1994)
## 64 http://us.imdb.com/M/title-exact?Shawshank%20Redemption,%20The%20(1994)
## 65 http://us.imdb.com/M/title-exact?What's%20Eating%20Gilbert%20Grape%20(1993)
## 66 http://us.imdb.com/M/title-exact?While%20You%20Were%20Sleeping%20(1995)
## 67 http://us.imdb.com/M/title-exact?Ace%20Ventura:%20Pet%20Detective%20(1994)
## 68 http://us.imdb.com/M/title-exact?Crow,%20The%20(1994)
## 69 http://us.imdb.com/M/title-exact?Forrest%20Gump%20(1994)
## 70 http://us.imdb.com/M/title-exact?Four%20Weddings%20and%20a%20Funeral%20(1994)
## 71 http://us.imdb.com/M/title-exact?Lion%20King,%20The%20(1994)
## 72 http://us.imdb.com/M/title-exact?Mask,%20The%20(1994)
## 73 http://us.imdb.com/M/title-exact?Maverick%20(1994)
## 74 http://us.imdb.com/M/title-exact?Faster%20Pussycat!%20Kill!%20Kill!%20(1965)
## 75 http://us.imdb.com/M/title-exact?Brother%20Minister:%20The%20Assassination%20of%20Malcolm%20X%20(1994)
## 76 http://us.imdb.com/M/title-exact?Carlito's%20Way%20(1993)
## 77 http://us.imdb.com/M/title-exact?Firm,%20The%20(1993)
## 78 http://us.imdb.com/M/title-exact?Free%20Willy%20(1993)
## 79 http://us.imdb.com/M/title-exact?Fugitive,%20The%20(1993)
## 80 http://us.imdb.com/M/title-exact?Hot%20Shots!%20Part%20Deux%20(1993)
## 81 http://us.imdb.com/M/title-exact?Hudsucker%20Proxy,%20The%20(1994)
## 82 http://us.imdb.com/M/title-exact?Jurassic%20Park%20(1993)
## 83 http://us.imdb.com/M/title-exact?Much%20Ado%20About%20Nothing%20(1993)
## 84 http://us.imdb.com/M/title-exact?Robert%20A.%20Heinlein's%20The%20Puppet%20Masters%20(1994)
## 85 http://us.imdb.com/M/title-exact?Ref,%20The%20(1994)
## 86 http://us.imdb.com/M/title-exact?Remains%20of%20the%20Day,%20The%20(1993)
## 87 http://us.imdb.com/M/title-exact?Searching%20for%20Bobby%20Fischer%20(1993)
## 88 http://us.imdb.com/M/title-exact?Sleepless%20in%20Seattle%20(1993)
## 89 http://us.imdb.com/M/title-exact?Blade%20Runner%20(1982)
## 90 http://us.imdb.com/M/title-exact?So%20I%20Married%20an%20Axe%20Murderer%20(1993)
## 91 http://us.imdb.com/M/title-exact?Nightmare%20Before%20Christmas,%20The%20(1993)
## 92 http://us.imdb.com/M/title-exact?True%20Romance%20(1993)
## 93 http://us.imdb.com/Title?Welcome+to+the+Dollhouse+(1995)
## 94 http://us.imdb.com/M/title-exact?Home%20Alone%20(1990)
## 95 http://us.imdb.com/M/title-exact?Aladdin%20(1992)
## 96 http://us.imdb.com/M/title-exact?Terminator%202:%20Judgment%20Day%20(1991)
## 97 http://us.imdb.com/M/title-exact?Dances%20with%20Wolves%20(1990)
## 98 http://us.imdb.com/M/title-exact?Silence%20of%20the%20Lambs,%20The%20(1991)
## 99 http://us.imdb.com/M/title-exact?Snow%20White%20and%20the%20Seven%20Dwarfs%20(1937)
## 100 http://us.imdb.com/M/title-exact?Fargo%20(1996)
## 101 http://us.imdb.com/M/title-exact?Heavy%20Metal%20(1981)
## 102 http://us.imdb.com/M/title-exact?Aristocats,%20The%20(1970)
## 103 http://us.imdb.com/M/title-exact?All%20Dogs%20Go%20to%20Heaven%202%20(1996)
## 104 http://us.imdb.com/M/title-exact?Theodore%20Rex%20(1995)
## 105 http://us.imdb.com/M/title-exact?Sgt.%20Bilko%20(1996)
## 106 http://us.imdb.com/M/title-exact?Diabolique%20(1996)
## 107 http://us.imdb.com/M/title-exact?Moll%20Flanders%20(1996)
## 108 http://us.imdb.com/M/title-exact?Kids%20in%20the%20Hall:%20Brain%20Candy%20(1996)
## 109 http://us.imdb.com/M/title-exact?Mystery%20Science%20Theater%203000:%20The%20Movie%20(1996)
## 110 http://us.imdb.com/M/title-exact?Operation%20Dumbo%20Drop%20(1995)
## 111 http://us.imdb.com/M/title-exact?Truth%20About%20Cats%20&%20Dogs,%20The%20(1996)
## 112 http://us.imdb.com/M/title-exact?Flipper%20(1996)
## 113 http://us.imdb.com/M/title-exact?Hussard%20sur%20le%20toit,%20Le%20(1995)
## 114 http://us.imdb.com/Title?Wallace+%26+Gromit%3A+The+Best+of+Aardman+Animation+(1996)
## 115 http://us.imdb.com/Title?Haunted+World+of+Edward+D.+Wood+Jr.,+The+(1995)
## 116 http://us.imdb.com/M/title-exact?Cold%20Comfort%20Farm%20(1995)%20(TV)
## 117 http://us.imdb.com/M/title-exact?Rock,%20The%20(1996)
## 118 http://us.imdb.com/M/title-exact?Twister%20(1996)
## 119 http://us.imdb.com/M/title-exact?Maya%20Lin:%20A%20Strong%20Clear%20Vision%20(1994)
## 120 http://us.imdb.com/M/title-exact?Striptease%20(1996)
## 121 http://us.imdb.com/M/title-exact?Independence%20Day%20(1996)
## 122 http://us.imdb.com/M/title-exact?Cable%20Guy,%20The%20(1996)
## 123 http://us.imdb.com/M/title-exact?Frighteners,%20The%20(1996)
## 124 http://us.imdb.com/M/title-exact?Lone%20Star%20(1996)
## 125 http://us.imdb.com/M/title-exact?Phenomenon%20(1996)
## 126 http://us.imdb.com/M/title-exact?Spitfire%20Grill,%20The%20(1996)
## 127 http://us.imdb.com/M/title-exact?Godfather,%20The%20(1972)
## 128 http://us.imdb.com/M/title-exact?Police%20Story%20III:%20Supercop%20(1992)
## 129 http://us.imdb.com/M/title-exact?Bound%20(1996)
## 130 http://us.imdb.com/M/title-exact?Kansas%20City%20(1996)
## 131 http://us.imdb.com/M/title-exact?Breakfast%20at%20Tiffany's%20(1961)
## 132 http://us.imdb.com/M/title-exact?Wizard%20of%20Oz,%20The%20(1939)
## 133 http://us.imdb.com/M/title-exact?Gone%20with%20the%20Wind%20(1939)
## 134 http://us.imdb.com/M/title-exact?Citizen%20Kane%20(1941)
## 135 http://us.imdb.com/M/title-exact?2001:%20A%20Space%20Odyssey%20(1968)
## 136 http://us.imdb.com/M/title-exact?Mr.%20Smith%20Goes%20to%20Washington%20(1939)
## 137 http://us.imdb.com/M/title-exact?Big%20Night%20(1996)
## 138 http://us.imdb.com/M/title-exact?D3:%20The%20Mighty%20Ducks%20(1996)
## 139 http://us.imdb.com/M/title-exact?Love%20Bug,%20The%20(1969)
## 140 http://us.imdb.com/M/title-exact?Homeward%20Bound:%20The%20Incredible%20Journey%20(1993)
## 141 http://us.imdb.com/M/title-exact?20,000%20Leagues%20Under%20the%20Sea%20(1954)
## 142 http://us.imdb.com/M/title-exact?Bedknobs%20and%20Broomsticks%20(1971)
## 143 http://us.imdb.com/M/title-exact?Sound%20of%20Music,%20The%20(1965)
## 144 http://us.imdb.com/M/title-exact?Die%20Hard%20(1988)
## 145 http://us.imdb.com/M/title-exact?Lawnmower%20Man,%20The%20(1992)
## 146 http://us.imdb.com/M/title-exact?Unhook%20the%20Stars%20(1996)
## 147 http://us.imdb.com/M/title-exact?Long%20Kiss%20Goodnight,%20The%20(1996)
## 148 http://us.imdb.com/M/title-exact?Ghost%20and%20the%20Darkness,%20The%20(1996)
## 149 http://us.imdb.com/M/title-exact?Jude%20(1996)
## 150 http://us.imdb.com/M/title-exact?Swingers%20(1996)
## 151 http://us.imdb.com/M/title-exact?Willy%20Wonka%20and%20the%20Chocolate%20Factory%20(1971)
## 152 http://us.imdb.com/M/title-exact?Sleeper%20(1973)
## 153 http://us.imdb.com/M/title-exact?Fish%20Called%20Wanda,%20A%20(1988)
## 154 http://us.imdb.com/M/title-exact?Life%20of%20Brian%20(1979)
## 155 http://us.imdb.com/M/title-exact?Dirty%20Dancing%20(1987)
## 156 http://us.imdb.com/M/title-exact?Reservoir%20Dogs%20(1992)
## 157 http://us.imdb.com/M/title-exact?Platoon%20(1986)
## 158 http://us.imdb.com/M/title-exact?Weekend%20at%20Bernie's%20(1989)
## 159 http://us.imdb.com/M/title-exact?Basic%20Instinct%20(1992)
## 160 http://us.imdb.com/M/title-exact?Glengarry%20Glen%20Ross%20(1992)
## 161 http://us.imdb.com/M/title-exact?Top%20Gun%20(1986)
## 162 http://us.imdb.com/M/title-exact?On%20Golden%20Pond%20(1981)
## 163 http://us.imdb.com/M/title-exact?Return%20of%20the%20Pink%20Panther,%20The%20(1974)
## 164 http://us.imdb.com/M/title-exact?Abyss,%20The%20(1989)
## 165 http://us.imdb.com/M/title-exact?Jean%20de%20Florette%20(1986)
## 166 http://us.imdb.com/M/title-exact?Manon%20des%20sources%20(1986)
## 167 http://us.imdb.com/M/title-exact?Private%20Benjamin%20(1980)
## 168 http://us.imdb.com/M/title-exact?Monty%20Python%20and%20the%20Holy%20Grail%20(1974)
## 169 http://us.imdb.com/M/title-exact?Wrong%20Trousers,%20The%20(1993)
## 170 http://us.imdb.com/M/title-exact?Nuovo%20cinema%20Paradiso%20(1988)
## 171 http://us.imdb.com/M/title-exact?Delicatessen%20(1991)
## 172 http://us.imdb.com/M/title-exact?Empire%20Strikes%20Back,%20The%20(1980)
## 173 http://us.imdb.com/M/title-exact?Princess%20Bride,%20The%20(1987)
## 174 http://us.imdb.com/M/title-exact?Raiders%20of%20the%20Lost%20Ark%20(1981)
## 175 http://us.imdb.com/M/title-exact?Brazil%20(1985)
## 176 http://us.imdb.com/M/title-exact?Aliens%20(1986)
## 177 http://us.imdb.com/M/title-exact?Buono,%20il%20brutto,%20il%20cattivo,%20Il%20(1966)
## 178 http://us.imdb.com/M/title-exact?12%20Angry%20Men%20(1957)
## 179 http://us.imdb.com/M/title-exact?Clockwork%20Orange,%20A%20(1971)
## 180 http://us.imdb.com/M/title-exact?Apocalypse%20Now%20(1979)
## 181 http://us.imdb.com/M/title-exact?Return%20of%20the%20Jedi%20(1983)
## 182 http://us.imdb.com/M/title-exact?GoodFellas%20(1990)
## 183 http://us.imdb.com/M/title-exact?Alien%20(1979)
## 184 http://us.imdb.com/M/title-exact?Army%20of%20Darkness%20(1993)
## 185 http://us.imdb.com/M/title-exact?Psycho%20(1960)
## 186 http://us.imdb.com/M/title-exact?Blues%20Brothers,%20The%20(1980)
## 187 http://us.imdb.com/M/title-exact?Godfather:%20Part%20II,%20The%20(1974)
## 188 http://us.imdb.com/M/title-exact?Full%20Metal%20Jacket%20(1987)
## 189 http://us.imdb.com/M/title-exact?Grand%20Day%20Out,%20A%20(1992)
## 190 http://us.imdb.com/M/title-exact?Henry%20V%20(1989)
## 191 http://us.imdb.com/M/title-exact?Amadeus%20(1984)
## 192 http://us.imdb.com/M/title-exact?Raging%20Bull%20(1980)
## 193 http://us.imdb.com/M/title-exact?Right%20Stuff,%20The%20(1983)
## 194 http://us.imdb.com/M/title-exact?Sting,%20The%20(1973)
## 195 http://us.imdb.com/M/title-exact?Terminator,%20The%20(1984)
## 196 http://us.imdb.com/M/title-exact?Dead%20Poets%20Society%20(1989)
## 197 http://us.imdb.com/M/title-exact?Graduate,%20The%20(1967)
## 198 http://us.imdb.com/M/title-exact?Nikita%20(1990)
## 199 http://us.imdb.com/M/title-exact?Bridge%20on%20the%20River%20Kwai,%20The%20(1957)
## 200 http://us.imdb.com/M/title-exact?Shining,%20The%20(1980)
## 201 http://us.imdb.com/M/title-exact?Evil%20Dead%20II%20(1987)
## 202 http://us.imdb.com/M/title-exact?Groundhog%20Day%20(1993)
## 203 http://us.imdb.com/M/title-exact?Unforgiven%20(1992)
## 204 http://us.imdb.com/M/title-exact?Back%20to%20the%20Future%20(1985)
## 205 http://us.imdb.com/M/title-exact?Patton%20(1970)
## 206 http://us.imdb.com/M/title-exact?Akira%20(1988)
## 207 http://us.imdb.com/M/title-exact?Cyrano%20de%20Bergerac%20(1990)
## 208 http://us.imdb.com/M/title-exact?Young%20Frankenstein%20(1974)
## 209 http://us.imdb.com/M/title-exact?This%20Is%20Spinal%20Tap%20(1984)
## 210 http://us.imdb.com/M/title-exact?Indiana%20Jones%20and%20the%20Last%20Crusade%20(1989)
## 211 http://us.imdb.com/M/title-exact?MASH%20(1970)
## 212 http://us.imdb.com/M/title-exact?Unbearable%20Lightness%20of%20Being,%20The%20(1988)
## 213 http://us.imdb.com/M/title-exact?Room%20with%20a%20View,%20A%20(1986)
## 214 http://us.imdb.com/M/title-exact?Pink%20Floyd%20-%20The%20Wall%20(1982)
## 215 http://us.imdb.com/M/title-exact?Field%20of%20Dreams%20(1989)
## 216 http://us.imdb.com/M/title-exact?When%20Harry%20Met%20Sally...%20(1989)
## 217 http://us.imdb.com/M/title-exact?Bram%20Stoker's%20Dracula%20(1992)
## 218 http://us.imdb.com/M/title-exact?Cape%20Fear%20(1991)
## 219 http://us.imdb.com/M/title-exact?Nightmare%20on%20Elm%20Street,%20A%20(1984)
## 220 http://us.imdb.com/M/title-exact?Mirror%20Has%20Two%20Faces,%20The%20(1996)
## 221 http://us.imdb.com/M/title-exact?Breaking%20the%20Waves%20(1996)
## 222 http://us.imdb.com/M/title-exact?Star%20Trek:%20First%20Contact%20(1996)
## 223 http://us.imdb.com/M/title-exact?Sling%20Blade%20(1996)
## 224 http://us.imdb.com/M/title-exact?Ridicule%20(1996)
## 225 http://us.imdb.com/M/title-exact?101%20Dalmatians%20(1996)
## 226 http://us.imdb.com/M/title-exact?Die%20Hard%202%20(1990)
## 227 http://us.imdb.com/M/title-exact?Star%20Trek%20VI:%20The%20Undiscovered%20Country%20(1991)
## 228 http://us.imdb.com/M/title-exact?Star%20Trek:%20The%20Wrath%20of%20Khan%20(1982)
## 229 http://us.imdb.com/M/title-exact?Star%20Trek%20III:%20The%20Search%20for%20Spock%20(1984)
## 230 http://us.imdb.com/M/title-exact?Star%20Trek%20IV:%20The%20Voyage%20Home%20(1986)
## 231 http://us.imdb.com/M/title-exact?Batman%20Returns%20(1992)
## 232 http://us.imdb.com/M/title-exact?Young%20Guns%20(1988)
## 233 http://us.imdb.com/M/title-exact?Under%20Siege%20(1992)
## 234 http://us.imdb.com/M/title-exact?Jaws%20(1975)
## 235 http://us.imdb.com/M/title-exact?Mars%20Attacks!%20(1996)
## 236 http://us.imdb.com/M/title-exact?Citizen%20Ruth%20(1996)
## 237 http://us.imdb.com/M/title-exact?Jerry%20Maguire%20(1996)
## 238 http://us.imdb.com/M/title-exact?Raising%20Arizona%20(1987)
## 239 http://us.imdb.com/M/title-exact?Sneakers%20(1992)
## 240 http://us.imdb.com/M/title-exact?Beavis%20and%20Butt-head%20Do%20America%20(1996)
## 241 http://us.imdb.com/M/title-exact?Last%20of%20the%20Mohicans,%20The%20(1992)
## 242 http://us.imdb.com/M/title-exact?Kolya%20(1996)
## 243 http://us.imdb.com/M/title-exact?Jungle2Jungle%20(1997)
## 244 http://us.imdb.com/M/title-exact?Smilla%27s%20Sense%20of%20Snow%20(1997)
## 245 http://us.imdb.com/M/title-exact?Devil%27s%20Own%2C%20The%20(1997)
## 246 http://us.imdb.com/M/title-exact?Chasing+Amy+(1997)
## 247 http://us.imdb.com/M/title-exact?Turbo%3A%20A%20Power%20Rangers%20Movie%20%281997%29
## 248 http://us.imdb.com/M/title-exact?Grosse%20Pointe%20Blank%20%281997%29
## 249 http://us.imdb.com/M/title-exact?Austin%20Powers%3A%20International%20Man%20of%20Mystery%20%281997%29
## 250 http://us.imdb.com/M/title-exact?Fifth%20Element%2C%20The%20%281997%29
## 251 http://us.imdb.com/M/title-exact?Shall%20we%20DANSU%3F%20%281996%29
## 252 http://us.imdb.com/M/title-exact?Lost%20World%3A%20Jurassic%20Park%2C%20The%20%281997%29
## 253 http://us.imdb.com/M/title-exact?Pillow%20Book%2C%20The%20%281995%29
## 254 http://us.imdb.com/M/title-exact?Batman+%26+Robin+(1997)
## 255 http://us.imdb.com/M/title-exact?My+Best+Friend%27s+Wedding+(1997)
## 256 http://us.imdb.com/M/title-exact?Chacun+cherche+son+chat+(1996)
## 257 http://us.imdb.com/M/title-exact?Men+in+Black+(1997)
## 258 http://us.imdb.com/Title?Contact+(1997/I)
## 259 http://us.imdb.com/M/title-exact?George+of+the+Jungle+(1997)
## 260 http://us.imdb.com/M/title-exact?Event+Horizon+(1997)
## 261 http://us.imdb.com/M/title-exact?Air+Bud+(1997)
## 262 http://us.imdb.com/M/title-exact?In+the+Company+of+Men+(1997)
## 263 http://us.imdb.com/M/title-exact?Steel+(1997)
## 264 http://us.imdb.com/M/title-exact?Mimic+(1997)
## 265 http://us.imdb.com/M/title-exact?Hunt+for+Red+October%2C+The+(1990)
## 266 http://us.imdb.com/M/title-exact?Kull+the+Conqueror+(1997)
## 267
## 268 http://us.imdb.com/M/title-exact?Full+Monty%2C+The+(1997)
## 269 http://us.imdb.com/M/title-exact?Gattaca+(1997)
## 270 http://us.imdb.com/M/title-exact?Starship+Troopers+(1997)
## 271 http://us.imdb.com/M/title-exact?imdb-title-119217
## 272 http://us.imdb.com/M/title-exact?Toy%20Story%20(1995)
## 273 http://us.imdb.com/M/title-exact?Richard%20III%20(1995)
## 274 http://us.imdb.com/M/title-exact?Mighty%20Aphrodite%20(1995)
## 275 http://us.imdb.com/M/title-exact?Postino,%20Il%20(1994)
## 276 http://us.imdb.com/M/title-exact?Antonia%20(1995)
## 277 http://us.imdb.com/M/title-exact?Birdcage,%20The%20(1996)
## 278 http://us.imdb.com/M/title-exact?Star%20Wars%20(1977)
## 279 http://us.imdb.com/M/title-exact?Fargo%20(1996)
## 280 http://us.imdb.com/M/title-exact?Truth%20About%20Cats%20&%20Dogs,%20The%20(1996)
## 281 http://us.imdb.com/M/title-exact?Godfather,%20The%20(1972)
## 282 http://us.imdb.com/M/title-exact?Jerry%20Maguire%20(1996)
## 283 http://us.imdb.com/M/title-exact?Kolya%20(1996)
## 284 http://us.imdb.com/M/title-exact?Shall%20we%20DANSU%3F%20%281996%29
## 285 http://us.imdb.com/M/title-exact?My+Best+Friend%27s+Wedding+(1997)
## 286 http://us.imdb.com/M/title-exact?Men+in+Black+(1997)
## 287 http://us.imdb.com/Title?Contact+(1997/I)
## 288 http://us.imdb.com/M/title-exact?Full+Monty%2C+The+(1997)
## 289 http://us.imdb.com/M/title-exact?imdb-title-119217
## 290 http://us.imdb.com/M/title-exact?Heat%20(1995)
## 291 http://us.imdb.com/M/title-exact?Sabrina%20(1995)
## 292 http://us.imdb.com/M/title-exact?Sense%20and%20Sensibility%20(1995)
## 293 http://us.imdb.com/M/title-exact?Leaving%20Las%20Vegas%20(1995)
## 294 http://us.imdb.com/M/title-exact?Restoration%20(1995)
## 295 http://us.imdb.com/M/title-exact?Bed%20of%20Roses%20(1996)
## 296 http://us.imdb.com/M/title-exact?Once%20Upon%20a%20Time... When%20We%20Were%20Colored%20(1995)
## 297 http://us.imdb.com/M/title-exact?Up%20Close%20and%20Personal%20(1996)
## 298 http://us.imdb.com/M/title-exact?River%20Wild,%20The%20(1994)
## 299 http://us.imdb.com/M/title-exact?Time%20to%20Kill,%20A%20(1996)
## 300 http://us.imdb.com/M/title-exact?Emma%20(1996)
## 301 http://us.imdb.com/M/title-exact?Tin%20Cup%20(1996)
## 302 http://us.imdb.com/M/title-exact?Secrets%20&%20Lies%20(1996)
## 303 http://us.imdb.com/M/title-exact?English%20Patient,%20The%20(1996)
## 304 http://us.imdb.com/M/title-exact?Marvin's%20Room%20(1996)
## 305 http://us.imdb.com/M/title-exact?Scream%20(1996)
## 306 http://us.imdb.com/M/title-exact?Evita%20(1996)
## 307 http://us.imdb.com/M/title-exact?Fierce%20Creatures%20(1997)
## 308 http://us.imdb.com/M/title-exact?Absolute%20Power%20(1997)
## 309 http://us.imdb.com/M/title-exact?Rosewood%20(1997)
## 310 http://us.imdb.com/M/title-exact?Donnie%20Brasco%20(1997)
## 311 http://us.imdb.com/Title?Liar+Liar+(1997)
## 312 http://us.imdb.com/M/title-exact?Breakdown%20%281997%29
## 313 http://us.imdb.com/M/title-exact?Promesse%2C%20La%20%281996%29
## 314 http://us.imdb.com/M/title-exact?Ulee%27s+Gold+(1997)
## 315 http://us.imdb.com/M/title-exact?Face/Off+(1997)
## 316 http://us.imdb.com/M/title-exact?Hoodlum+(1997)
## 317 http://us.imdb.com/M/title-exact?Air+Force+One+(1997)
## 318 http://us.imdb.com/Title?In+%26+Out+(1997)
## 319 http://us.imdb.com/M/title-exact?L%2EA%2E+Confidential+(1997)
## 320 http://us.imdb.com/M/title-exact?Fly%20Away%20Home%20(1996)
## 321 http://us.imdb.com/M/title-exact?Ice+Storm%2C+The+(1997)
## 322 http://us.imdb.com/M/title-exact?Her+Majesty%2C+Mrs%2E+Brown+(1997)
## 323 http://us.imdb.com/M/title-exact?Devil's+Advocate,+The+(1997)
## 324 http://us.imdb.com/M/title-exact?Fairytale:+A+True+Story+(1997)
## 325 http://us.imdb.com/M/title-exact?Liar+(1997)
## 326 http://us.imdb.com/M/title-exact?Rainmaker,+The+(1997)
## 327 http://us.imdb.com/M/title-exact?Wings+of+the+Dove%2C+The+(1997)
## 328 http://us.imdb.com/M/title-exact?Midnight+in+the+Garden+of+Good+and+Evil+(1997)
## 329 http://us.imdb.com/M/title-exact?imdb-title-120338
## 330 http://us.imdb.com/M/title-exact?imdb-title-118539
## 331 http://us.imdb.com/Title?Apt+Pupil+(1998)
## 332 http://us.imdb.com/Title?As+Good+As+It+Gets+(1997)
## 333 http://us.imdb.com/M/title-exact?Return%20of%20the%20Jedi%20(1983)
## 334 http://us.imdb.com/M/title-exact?Devil%27s%20Own%2C%20The%20(1997)
## 335 http://us.imdb.com/Title?Contact+(1997/I)
## 336 http://us.imdb.com/M/title-exact?Event+Horizon+(1997)
## 337 http://us.imdb.com/M/title-exact?Mimic+(1997)
## 338 http://us.imdb.com/M/title-exact?Starship+Troopers+(1997)
## 339 http://us.imdb.com/M/title-exact?imdb-title-119217
## 340 http://us.imdb.com/M/title-exact?Scream%20(1996)
## 341 http://us.imdb.com/Title?Liar+Liar+(1997)
## 342 http://us.imdb.com/M/title-exact?Hoodlum+(1997)
## 343 http://us.imdb.com/M/title-exact?Air+Force+One+(1997)
## 344 http://us.imdb.com/M/title-exact?L%2EA%2E+Confidential+(1997)
## 345 http://us.imdb.com/M/title-exact?Devil's+Advocate,+The+(1997)
## 346 http://us.imdb.com/M/title-exact?In%20the%20Name%20of%20the%20Father%20(1993)
## 347 http://us.imdb.com/M/title-exact?Schindler's%20List%20(1993)
## 348 http://us.imdb.com/M/title-exact?Everyone%20Says%20I%20Love%20You%20(1996)
## 349 http://us.imdb.com/M/title-exact?Paradise%20Lost%3a%20The%20Child%20Murders%20at%20Robin%20Hood%20Hills%20(1996)
## 350 http://us.imdb.com/M/title-exact?Mother%20(1996/I)
## 351 http://us.imdb.com/M/title-exact?Murder%20at%201600%20(1997)
## 352 http://us.imdb.com/M/title-exact?Dante's%20Peak%20(1997)
## 353 http://us.imdb.com/Title?Lost+Highway+(1997)
## 354 http://us.imdb.com/M/title-exact?Crash%20(1996)
## 355 http://us.imdb.com/M/title-exact?G%2EI%2E+Jane+(1997)
## 356 http://us.imdb.com/M/title-exact?Cop+Land+(1997)
## 357 http://us.imdb.com/M/title-exact?Conspiracy+Theory+(1997)
## 358 http://us.imdb.com/Title?Desperate+Measures+(1998)
## 359 http://us.imdb.com/M/title-exact?187+(1997)
## 360 http://us.imdb.com/M/title-exact?Edge%2C+The+(1997/I)
## 361 http://us.imdb.com/M/title-exact?Kiss+the+Girls+(1997)
## 362 http://us.imdb.com/M/title-exact?Game%2C+The+(1997)
## 363 http://us.imdb.com/Title?U+Turn+(1997)
## 364 http://us.imdb.com/M/title-exact?How+to+Be+a+Player+(1997)
## 365 http://us.imdb.com/M/title-exact?Playing+God+(1997)
## 366 http://us.imdb.com/M/title-exact?House+of+Yes,+The+(1997)
## 367 http://us.imdb.com/M/title-exact?Bean+(1997)
## 368 http://us.imdb.com/M/title-exact?Mad+City+(1997)
## 369 http://us.imdb.com/M/title-exact?Boogie+Nights+(1997)
## 370 http://us.imdb.com/M/title-exact?Critical+Care+(1997)
## 371 http://us.imdb.com/M/title-exact?Man+Who+Knew+Too+Little%2C+The+(1997)
## 372 http://us.imdb.com/M/title-exact?Alien%3A+Resurrection+(1997)
## 373 http://us.imdb.com/M/title-exact?imdb-title-118632
## 374 http://us.imdb.com/M/title-exact?imdb-title-118954
## 375 http://us.imdb.com/M/title-exact?imdb-title-119396
## 376 http://us.imdb.com/M/title-exact?imdb-title-120885
## 377 http://us.imdb.com/M/title-exact?imdb-title-120696
## 378 http://us.imdb.com/Title?Fallen+(1998)
## 379 http://us.imdb.com/M/title-exact?imdb-title-119959
## 380 http://us.imdb.com/M/title-exact?imdb-title-120185
## 381 http://us.imdb.com/M/title-exact?imdb-title-118956
## 382 http://us.imdb.com/M/title-exact?Wedding+Singer%2C+The+(1998)
## 383 http://us.imdb.com/M/title-exact?Sphere+(1998)
## 384 http://us.imdb.com/M/title-exact?Se7en%20(1995)
## 385 http://us.imdb.com/M/title-exact?Star%20Wars%20(1977)
## 386 http://us.imdb.com/M/title-exact?Indiana%20Jones%20and%20the%20Last%20Crusade%20(1989)
## 387 http://us.imdb.com/Title?Contact+(1997/I)
## 388 http://us.imdb.com/M/title-exact?Event+Horizon+(1997)
## 389 http://us.imdb.com/M/title-exact?Mimic+(1997)
## 390 http://us.imdb.com/M/title-exact?Starship+Troopers+(1997)
## 391 http://us.imdb.com/M/title-exact?Scream%20(1996)
## 392 http://us.imdb.com/Title?Liar+Liar+(1997)
## 393 http://us.imdb.com/M/title-exact?Air+Force+One+(1997)
## 394 http://us.imdb.com/Title?In+%26+Out+(1997)
## 395 http://us.imdb.com/Title?Lost+Highway+(1997)
## 396 http://us.imdb.com/M/title-exact?Cop+Land+(1997)
## 397 http://us.imdb.com/M/title-exact?Conspiracy+Theory+(1997)
## 398 http://us.imdb.com/Title?Desperate+Measures+(1998)
## 399 http://us.imdb.com/M/title-exact?Wedding+Singer%2C+The+(1998)
## 400 http://us.imdb.com/M/title-exact?Client,%20The%20(1994)
## 401 http://us.imdb.com/M/title-exact?One%20Flew%20Over%20the%20Cuckoo's%20Nest%20(1975)
## 402 http://us.imdb.com/M/title-exact?Spawn+(1997/I)
## 403 http://us.imdb.com/M/title-exact?Assignment%2C+The+(1997)
## 404 http://us.imdb.com/M/title-exact?Wonderland+(1997)
## 405 http://us.imdb.com/M/title-exact?Incognito+(1997)
## 406 http://us.imdb.com/M/title-exact?Blues+Brothers+2000+(1998)
## 407 http://us.imdb.com/M/title-exact?Toy%20Story%20(1995)
## 408 http://us.imdb.com/M/title-exact?GoldenEye%20(1995)
## 409 http://us.imdb.com/M/title-exact?From%20Dusk%20Till%20Dawn%20(1996)
## 410 http://us.imdb.com/M/title-exact?Muppet%20Treasure%20Island%20(1996)
## 411 http://us.imdb.com/M/title-exact?Hong%20Faan%20Kui%20(1995)
## 412 http://us.imdb.com/M/title-exact?Birdcage,%20The%20(1996)
## 413 http://us.imdb.com/M/title-exact?Batman%20Forever%20(1995)
## 414 http://us.imdb.com/M/title-exact?To%20Wong%20Foo,%20Thanks%20for%20Everything!%20Julie%20Newmar%20(1995)
## 415 http://us.imdb.com/M/title-exact?Clerks%20(1994)
## 416 http://us.imdb.com/M/title-exact?Star%20Wars%20(1977)
## 417 http://us.imdb.com/M/title-exact?Stargate%20(1994)
## 418 http://us.imdb.com/M/title-exact?Santa%20Clause,%20The%20(1994)
## 419 http://us.imdb.com/M/title-exact?While%20You%20Were%20Sleeping%20(1995)
## 420 http://us.imdb.com/M/title-exact?Forrest%20Gump%20(1994)
## 421 http://us.imdb.com/M/title-exact?Four%20Weddings%20and%20a%20Funeral%20(1994)
## 422 http://us.imdb.com/M/title-exact?Fugitive,%20The%20(1993)
## 423 http://us.imdb.com/M/title-exact?Hot%20Shots!%20Part%20Deux%20(1993)
## 424 http://us.imdb.com/M/title-exact?Blade%20Runner%20(1982)
## 425 http://us.imdb.com/M/title-exact?So%20I%20Married%20an%20Axe%20Murderer%20(1993)
## 426 http://us.imdb.com/M/title-exact?Home%20Alone%20(1990)
## 427 http://us.imdb.com/M/title-exact?Aladdin%20(1992)
## 428 http://us.imdb.com/M/title-exact?Silence%20of%20the%20Lambs,%20The%20(1991)
## 429 http://us.imdb.com/M/title-exact?Snow%20White%20and%20the%20Seven%20Dwarfs%20(1937)
## 430 http://us.imdb.com/M/title-exact?Fargo%20(1996)
## 431 http://us.imdb.com/M/title-exact?Heavy%20Metal%20(1981)
## 432 http://us.imdb.com/M/title-exact?Aristocats,%20The%20(1970)
## 433 http://us.imdb.com/M/title-exact?Sgt.%20Bilko%20(1996)
## 434 http://us.imdb.com/M/title-exact?Mystery%20Science%20Theater%203000:%20The%20Movie%20(1996)
## 435 http://us.imdb.com/M/title-exact?Operation%20Dumbo%20Drop%20(1995)
## 436 http://us.imdb.com/M/title-exact?Independence%20Day%20(1996)
## 437 http://us.imdb.com/M/title-exact?2001:%20A%20Space%20Odyssey%20(1968)
## 438 http://us.imdb.com/M/title-exact?Love%20Bug,%20The%20(1969)
## 439 http://us.imdb.com/M/title-exact?Sound%20of%20Music,%20The%20(1965)
## 440 http://us.imdb.com/M/title-exact?Die%20Hard%20(1988)
## 441 http://us.imdb.com/M/title-exact?Lawnmower%20Man,%20The%20(1992)
## 442 http://us.imdb.com/M/title-exact?Willy%20Wonka%20and%20the%20Chocolate%20Factory%20(1971)
## 443 http://us.imdb.com/M/title-exact?Fish%20Called%20Wanda,%20A%20(1988)
## 444 http://us.imdb.com/M/title-exact?Life%20of%20Brian%20(1979)
## 445 http://us.imdb.com/M/title-exact?On%20Golden%20Pond%20(1981)
## 446 http://us.imdb.com/M/title-exact?Return%20of%20the%20Pink%20Panther,%20The%20(1974)
## 447 http://us.imdb.com/M/title-exact?Private%20Benjamin%20(1980)
## 448 http://us.imdb.com/M/title-exact?Monty%20Python%20and%20the%20Holy%20Grail%20(1974)
## 449 http://us.imdb.com/M/title-exact?Wrong%20Trousers,%20The%20(1993)
## 450 http://us.imdb.com/M/title-exact?Empire%20Strikes%20Back,%20The%20(1980)
## 451 http://us.imdb.com/M/title-exact?Princess%20Bride,%20The%20(1987)
## 452 http://us.imdb.com/M/title-exact?Raiders%20of%20the%20Lost%20Ark%20(1981)
## 453 http://us.imdb.com/M/title-exact?Aliens%20(1986)
## 454 http://us.imdb.com/M/title-exact?Return%20of%20the%20Jedi%20(1983)
## 455 http://us.imdb.com/M/title-exact?Alien%20(1979)
## 456 http://us.imdb.com/M/title-exact?Psycho%20(1960)
## 457 http://us.imdb.com/M/title-exact?Blues%20Brothers,%20The%20(1980)
## 458 http://us.imdb.com/M/title-exact?Grand%20Day%20Out,%20A%20(1992)
## 459 http://us.imdb.com/M/title-exact?Sting,%20The%20(1973)
## 460 http://us.imdb.com/M/title-exact?Shining,%20The%20(1980)
## 461 http://us.imdb.com/M/title-exact?Back%20to%20the%20Future%20(1985)
## 462 http://us.imdb.com/M/title-exact?Young%20Frankenstein%20(1974)
## 463 http://us.imdb.com/M/title-exact?This%20Is%20Spinal%20Tap%20(1984)
## 464 http://us.imdb.com/M/title-exact?Indiana%20Jones%20and%20the%20Last%20Crusade%20(1989)
## 465 http://us.imdb.com/M/title-exact?MASH%20(1970)
## 466 http://us.imdb.com/M/title-exact?Pink%20Floyd%20-%20The%20Wall%20(1982)
## 467 http://us.imdb.com/M/title-exact?When%20Harry%20Met%20Sally...%20(1989)
## 468 http://us.imdb.com/M/title-exact?Nightmare%20on%20Elm%20Street,%20A%20(1984)
## 469 http://us.imdb.com/M/title-exact?Star%20Trek:%20First%20Contact%20(1996)
## 470 http://us.imdb.com/M/title-exact?101%20Dalmatians%20(1996)
## 471 http://us.imdb.com/M/title-exact?Die%20Hard%202%20(1990)
## 472 http://us.imdb.com/M/title-exact?Star%20Trek%20VI:%20The%20Undiscovered%20Country%20(1991)
## 473 http://us.imdb.com/M/title-exact?Star%20Trek:%20The%20Wrath%20of%20Khan%20(1982)
## 474 http://us.imdb.com/M/title-exact?Star%20Trek%20III:%20The%20Search%20for%20Spock%20(1984)
## 475 http://us.imdb.com/M/title-exact?Star%20Trek%20IV:%20The%20Voyage%20Home%20(1986)
## 476 http://us.imdb.com/M/title-exact?Batman%20Returns%20(1992)
## 477 http://us.imdb.com/M/title-exact?Under%20Siege%20(1992)
## 478 http://us.imdb.com/M/title-exact?Jaws%20(1975)
## 479 http://us.imdb.com/M/title-exact?Mars%20Attacks!%20(1996)
## 480 http://us.imdb.com/M/title-exact?Sneakers%20(1992)
## 481 http://us.imdb.com/M/title-exact?Last%20of%20the%20Mohicans,%20The%20(1992)
## 482 http://us.imdb.com/M/title-exact?Jungle2Jungle%20(1997)
## 483 http://us.imdb.com/M/title-exact?Fifth%20Element%2C%20The%20%281997%29
## 484 http://us.imdb.com/M/title-exact?Men+in+Black+(1997)
## 485 http://us.imdb.com/M/title-exact?George+of+the+Jungle+(1997)
## 486
## 487 http://us.imdb.com/M/title-exact?Sudden%20Death%20(1995)
## 488 http://us.imdb.com/M/title-exact?Ace%20Ventura:%20When%20Nature%20Calls%20(1995)
## 489 http://us.imdb.com/M/title-exact?Powder%20(1995)
## 490 http://us.imdb.com/M/title-exact?Dangerous%20Minds%20(1995)
## 491 http://us.imdb.com/M/title-exact?Clueless%20(1995)
## 492 http://us.imdb.com/M/title-exact?Bio-Dome%20(1996)
## 493 http://us.imdb.com/M/title-exact?Black%20Sheep%20(1996)
## 494 http://us.imdb.com/M/title-exact?Mary%20Reilly%20(1996)
## 495 http://us.imdb.com/M/title-exact?Bridges%20of%20Madison%20County,%20The%20(1995)
## 496 http://us.imdb.com/M/title-exact?Jeffrey%20(1995)
## 497 http://us.imdb.com/M/title-exact?Judge%20Dredd%20(1995)
## 498 http://us.imdb.com/M/title-exact?Mighty%20Morphin%20Power%20Rangers:%20The%20Movie%20(1995)
## 499 http://us.imdb.com/M/title-exact?Showgirls%20(1995)
## 500 http://us.imdb.com/M/title-exact?Houseguest%20(1994)
## 501 http://us.imdb.com/M/title-exact?Heavyweights%20(1994)
## 502 http://us.imdb.com/M/title-exact?Miracle%20on%2034th%20Street%20(1994)
## 503 http://us.imdb.com/M/title-exact?Tales%20From%20the%20Crypt%20Presents:%20Demon%20Knight%20(1995)
## 504 http://us.imdb.com/M/title-exact?Star%20Trek:%20Generations%20(1994)
## 505 http://us.imdb.com/M/title-exact?Muriel's%20Wedding%20(1994)
## 506 http://us.imdb.com/M/title-exact?Adventures%20of%20Priscilla,%20Queen%20of%20the%20Desert,%20The%20(1994)
## 507 http://us.imdb.com/M/title-exact?Flintstones,%20The%20(1994)
## 508 http://us.imdb.com/M/title-exact?Naked%20Gun%2033%201/3:%20The%20Final%20Insult%20(1994)
## 509 http://us.imdb.com/M/title-exact?True%20Lies%20(1994)
## 510 http://us.imdb.com/M/title-exact?Addams%20Family%20Values%20(1993)
## 511 http://us.imdb.com/M/title-exact?Age%20of%20Innocence,%20The%20(1993)
## 512 http://us.imdb.com/M/title-exact?Beverly%20Hills%20Cop%20III%20(1994)
## 513 http://us.imdb.com/Title?Black+Beauty+(1994/I)
## 514 http://us.imdb.com/M/title-exact?Fear%20of%20a%20Black%20Hat%20(1993)
## 515 http://us.imdb.com/M/title-exact?Last%20Action%20Hero%20(1993)
## 516 http://us.imdb.com/M/title-exact?Man%20Without%20a%20Face,%20The%20(1993)
## 517 http://us.imdb.com/M/title-exact?Mrs.%20Doubtfire%20(1993)
## 518 http://us.imdb.com/M/title-exact?Radioland%20Murders%20(1994)
## 519 http://us.imdb.com/M/title-exact?Robin%20Hood:%20Men%20in%20Tights%20(1993)
## 520 http://us.imdb.com/M/title-exact?Serial%20Mom%20(1994)
## 521 http://us.imdb.com/M/title-exact?Striking%20Distance%20(1993)
## 522 http://us.imdb.com/M/title-exact?Super%20Mario%20Bros.%20(1993)
## 523 http://us.imdb.com/M/title-exact?Three%20Musketeers,%20The%20(1993)
## 524 http://us.imdb.com/M/title-exact?Little%20Rascals,%20The%20(1994)
## 525 http://us.imdb.com/M/title-exact?Brady%20Bunch%20Movie,%20The%20(1995)
## 526 http://us.imdb.com/M/title-exact?Ghost%20(1990)
## 527 http://us.imdb.com/M/title-exact?Batman%20(1989)
## 528 http://us.imdb.com/M/title-exact?Pinocchio%20(1940)
## 529 http://us.imdb.com/M/title-exact?Mission:%20Impossible%20(1996)
## 530 http://us.imdb.com/M/title-exact?Thinner%20(1996)
## 531 http://us.imdb.com/M/title-exact?Spy%20Hard%20(1996)
## 532 http://us.imdb.com/M/title-exact?Close%20Shave,%20A%20(1995)
## 533 http://us.imdb.com/M/title-exact?Jack%20(1996)
## 534 http://us.imdb.com/M/title-exact?Kingpin%20(1996)
## 535 http://us.imdb.com/M/title-exact?Nutty%20Professor,%20The%20(1996)
## 536 http://us.imdb.com/M/title-exact?Very%20Brady%20Sequel,%20A%20(1996)
## 537 http://us.imdb.com/M/title-exact?Tales%20from%20the%20Crypt%20Presents:%20Bordello%20of%20Blood%20(1996)
## 538 http://us.imdb.com/M/title-exact?My%20Favorite%20Year%20(1982)
## 539 http://us.imdb.com/M/title-exact?Apple%20Dumpling%20Gang,%20The%20(1975)
## 540 http://us.imdb.com/M/title-exact?Old%20Yeller%20(1957)
## 541 http://us.imdb.com/M/title-exact?Parent%20Trap,%20The%20(1961)
## 542 http://us.imdb.com/M/title-exact?Cinderella%20(1950)
## 543 http://us.imdb.com/M/title-exact?Mary%20Poppins%20(1964)
## 544 http://us.imdb.com/M/title-exact?Alice%20in%20Wonderland%20(1951)
## 545 http://us.imdb.com/Title?Romeo+%2B+Juliet+(1996)
## 546 http://us.imdb.com/M/title-exact?Aladdin%20and%20the%20King%20of%20Thieves%20(1996)%20(V)
## 547 http://us.imdb.com/M/title-exact?E%2ET%2E%20the%20Extra-Terrestrial%20%281982%29
## 548 http://us.imdb.com/M/title-exact?Children%20of%20the%20Corn%3A%20The%20Gathering%20%281996%29
## 549 http://us.imdb.com/M/title-exact?Bob%20Roberts%20(1992)
## 550 http://us.imdb.com/M/title-exact?Transformers:%20The%20Movie,%20The%20(1986)
## 551 http://us.imdb.com/M/title-exact?To%20Kill%20a%20Mockingbird%20(1962)
## 552 http://us.imdb.com/M/title-exact?Harold%20and%20Maude%20(1971)
## 553 http://us.imdb.com/M/title-exact?Day%20the%20Earth%20Stood%20Still,%20The%20(1951)
## 554 http://us.imdb.com/M/title-exact?Duck%20Soup%20(1933)
## 555 http://us.imdb.com/M/title-exact?Highlander%20(1986)
## 556 http://us.imdb.com/M/title-exact?Fantasia%20(1940)
## 557 http://us.imdb.com/M/title-exact?Heathers%20(1989)
## 558 http://us.imdb.com/M/title-exact?Forbidden%20Planet%20(1956)
## 559 http://us.imdb.com/M/title-exact?Butch%20Cassidy%20and%20the%20Sundance%20Kid%20(1969)
## 560 http://us.imdb.com/M/title-exact?American%20Werewolf%20in%20London,%20An%20(1981)
## 561 http://us.imdb.com/M/title-exact?Amityville%201992:%20It's%20About%20Time%20(1992)
## 562 http://us.imdb.com/M/title-exact?Amityville%203-D%20(1983)
## 563 http://us.imdb.com/M/title-exact?Amityville:%20A%20New%20Generation%20(1993)
## 564 http://us.imdb.com/M/title-exact?Amityville%20II:%20The%20Possession%20(1982)
## 565 http://us.imdb.com/M/title-exact?Amityville%20Horror,%20The%20(1979)
## 566 http://us.imdb.com/M/title-exact?Amityville%20Curse,%20The%20(1990)
## 567 http://us.imdb.com/M/title-exact?Birds,%20The%20(1963)
## 568 http://us.imdb.com/M/title-exact?Blob,%20The%20(1958)
## 569 http://us.imdb.com/M/title-exact?Body%20Snatcher,%20The%20(1945)
## 570 http://us.imdb.com/M/title-exact?Burnt%20Offerings%20(1976)
## 571 http://us.imdb.com/M/title-exact?Carrie%20(1976)
## 572 http://us.imdb.com/M/title-exact?Omen,%20The%20(1976)
## 573 http://us.imdb.com/M/title-exact?Star%20Trek:%20The%20Motion%20Picture%20(1979)
## 574 http://us.imdb.com/M/title-exact?Star%20Trek%20V:%20The%20Final%20Frontier%20(1989)
## 575 http://us.imdb.com/M/title-exact?Grease%20(1978)
## 576 http://us.imdb.com/M/title-exact?Jaws%202%20(1978)
## 577 http://us.imdb.com/M/title-exact?Jaws%203-D%20(1983)
## 578 http://us.imdb.com/M/title-exact?Bastard%20Out%20of%20Carolina%20(1996)
## 579 http://us.imdb.com/M/title-exact?Police%20Story%204:%20First%20Strike%20(1996)
## 580 http://us.imdb.com/M/title-exact?Beverly%20Hills%20Ninja%20(1997)
## 581 http://us.imdb.com/M/title-exact?Free+Willy+3%3A+The+Rescue+(1997)
## 582 http://us.imdb.com/M/title-exact?Toy%20Story%20(1995)
## 583 http://us.imdb.com/M/title-exact?Twelve%20Monkeys%20(1995)
## 584 http://us.imdb.com/M/title-exact?Babe%20(1995)
## 585 http://us.imdb.com/M/title-exact?Dead%20Man%20Walking%20(1995)
## 586 http://us.imdb.com/M/title-exact?Usual%20Suspects,%20The%20(1995)
## 587 http://us.imdb.com/M/title-exact?Mighty%20Aphrodite%20(1995)
## 588 http://us.imdb.com/M/title-exact?Postino,%20Il%20(1994)
## 589 http://us.imdb.com/M/title-exact?Mr.%20Holland's%20Opus%20(1995)
## 590 http://us.imdb.com/M/title-exact?Antonia%20(1995)
## 591 http://us.imdb.com/M/title-exact?Muppet%20Treasure%20Island%20(1996)
## 592 http://us.imdb.com/M/title-exact?Braveheart%20(1995)
## 593 http://us.imdb.com/M/title-exact?Taxi%20Driver%20(1976)
## 594 http://us.imdb.com/M/title-exact?Apollo%2013%20(1995)
## 595 http://us.imdb.com/M/title-exact?Crumb%20(1994)
## 596 http://us.imdb.com/M/title-exact?Ed%20Wood%20(1994)
## 597 http://us.imdb.com/M/title-exact?Star%20Wars%20(1977)
## 598 http://us.imdb.com/M/title-exact?Pulp%20Fiction%20(1994)
## 599 http://us.imdb.com/M/title-exact?Trzy%20kolory:%20Czerwony%20(1994)
## 600 http://us.imdb.com/M/title-exact?Shawshank%20Redemption,%20The%20(1994)
## 601 http://us.imdb.com/M/title-exact?Forrest%20Gump%20(1994)
## 602 http://us.imdb.com/M/title-exact?Four%20Weddings%20and%20a%20Funeral%20(1994)
## 603 http://us.imdb.com/M/title-exact?Lion%20King,%20The%20(1994)
## 604 http://us.imdb.com/M/title-exact?Fugitive,%20The%20(1993)
## 605 http://us.imdb.com/M/title-exact?Hudsucker%20Proxy,%20The%20(1994)
## 606 http://us.imdb.com/M/title-exact?Remains%20of%20the%20Day,%20The%20(1993)
## 607 http://us.imdb.com/M/title-exact?Searching%20for%20Bobby%20Fischer%20(1993)
## 608 http://us.imdb.com/M/title-exact?Blade%20Runner%20(1982)
## 609 http://us.imdb.com/M/title-exact?Aladdin%20(1992)
## 610 http://us.imdb.com/M/title-exact?Silence%20of%20the%20Lambs,%20The%20(1991)
## 611 http://us.imdb.com/M/title-exact?Fargo%20(1996)
## 612 http://us.imdb.com/M/title-exact?Truth%20About%20Cats%20&%20Dogs,%20The%20(1996)
## 613 http://us.imdb.com/M/title-exact?Rock,%20The%20(1996)
## 614 http://us.imdb.com/M/title-exact?Lone%20Star%20(1996)
## 615 http://us.imdb.com/M/title-exact?Phenomenon%20(1996)
## 616 http://us.imdb.com/M/title-exact?Godfather,%20The%20(1972)
## 617 http://us.imdb.com/M/title-exact?Breakfast%20at%20Tiffany's%20(1961)
## 618 http://us.imdb.com/M/title-exact?Wizard%20of%20Oz,%20The%20(1939)
## 619 http://us.imdb.com/M/title-exact?Gone%20with%20the%20Wind%20(1939)
## 620 http://us.imdb.com/M/title-exact?Citizen%20Kane%20(1941)
## 621 http://us.imdb.com/M/title-exact?2001:%20A%20Space%20Odyssey%20(1968)
## 622 http://us.imdb.com/M/title-exact?Mr.%20Smith%20Goes%20to%20Washington%20(1939)
## 623 http://us.imdb.com/M/title-exact?Big%20Night%20(1996)
## 624 http://us.imdb.com/M/title-exact?Sound%20of%20Music,%20The%20(1965)
## 625 http://us.imdb.com/M/title-exact?Willy%20Wonka%20and%20the%20Chocolate%20Factory%20(1971)
## 626 http://us.imdb.com/M/title-exact?Fish%20Called%20Wanda,%20A%20(1988)
## 627 http://us.imdb.com/M/title-exact?Life%20of%20Brian%20(1979)
## 628 http://us.imdb.com/M/title-exact?Reservoir%20Dogs%20(1992)
## 629 http://us.imdb.com/M/title-exact?Jean%20de%20Florette%20(1986)
## 630 http://us.imdb.com/M/title-exact?Manon%20des%20sources%20(1986)
## 631 http://us.imdb.com/M/title-exact?Monty%20Python%20and%20the%20Holy%20Grail%20(1974)
## 632 http://us.imdb.com/M/title-exact?Wrong%20Trousers,%20The%20(1993)
## 633 http://us.imdb.com/M/title-exact?Nuovo%20cinema%20Paradiso%20(1988)
## 634 http://us.imdb.com/M/title-exact?Princess%20Bride,%20The%20(1987)
## 635 http://us.imdb.com/M/title-exact?Raiders%20of%20the%20Lost%20Ark%20(1981)
## 636 http://us.imdb.com/M/title-exact?Brazil%20(1985)
## 637 http://us.imdb.com/M/title-exact?Buono,%20il%20brutto,%20il%20cattivo,%20Il%20(1966)
## 638 http://us.imdb.com/M/title-exact?12%20Angry%20Men%20(1957)
## 639 http://us.imdb.com/M/title-exact?Apocalypse%20Now%20(1979)
## 640 http://us.imdb.com/M/title-exact?GoodFellas%20(1990)
## 641 http://us.imdb.com/M/title-exact?Alien%20(1979)
## 642 http://us.imdb.com/M/title-exact?Psycho%20(1960)
## 643 http://us.imdb.com/M/title-exact?Blues%20Brothers,%20The%20(1980)
## 644 http://us.imdb.com/M/title-exact?Godfather:%20Part%20II,%20The%20(1974)
## 645 http://us.imdb.com/M/title-exact?Full%20Metal%20Jacket%20(1987)
## 646 http://us.imdb.com/M/title-exact?Grand%20Day%20Out,%20A%20(1992)
## 647 http://us.imdb.com/M/title-exact?Amadeus%20(1984)
## 648 http://us.imdb.com/M/title-exact?Raging%20Bull%20(1980)
## 649 http://us.imdb.com/M/title-exact?Right%20Stuff,%20The%20(1983)
## 650 http://us.imdb.com/M/title-exact?Sting,%20The%20(1973)
## 651 http://us.imdb.com/M/title-exact?Terminator,%20The%20(1984)
## 652 http://us.imdb.com/M/title-exact?Graduate,%20The%20(1967)
## 653 http://us.imdb.com/M/title-exact?Bridge%20on%20the%20River%20Kwai,%20The%20(1957)
## 654 http://us.imdb.com/M/title-exact?Shining,%20The%20(1980)
## 655 http://us.imdb.com/M/title-exact?Groundhog%20Day%20(1993)
## 656 http://us.imdb.com/M/title-exact?Unforgiven%20(1992)
## 657 http://us.imdb.com/M/title-exact?Back%20to%20the%20Future%20(1985)
## 658 http://us.imdb.com/M/title-exact?Patton%20(1970)
## 659 http://us.imdb.com/M/title-exact?Young%20Frankenstein%20(1974)
## 660 http://us.imdb.com/M/title-exact?This%20Is%20Spinal%20Tap%20(1984)
## 661 http://us.imdb.com/M/title-exact?MASH%20(1970)
## 662 http://us.imdb.com/M/title-exact?Room%20with%20a%20View,%20A%20(1986)
## 663 http://us.imdb.com/M/title-exact?When%20Harry%20Met%20Sally...%20(1989)
## 664 http://us.imdb.com/M/title-exact?Breaking%20the%20Waves%20(1996)
## 665 http://us.imdb.com/M/title-exact?Sling%20Blade%20(1996)
## 666 http://us.imdb.com/M/title-exact?Jerry%20Maguire%20(1996)
## 667 http://us.imdb.com/M/title-exact?Raising%20Arizona%20(1987)
## 668 http://us.imdb.com/M/title-exact?Kolya%20(1996)
## 669 http://us.imdb.com/M/title-exact?Chasing+Amy+(1997)
## 670 http://us.imdb.com/M/title-exact?Grosse%20Pointe%20Blank%20%281997%29
## 671 http://us.imdb.com/M/title-exact?Men+in+Black+(1997)
## 672 http://us.imdb.com/Title?Contact+(1997/I)
## 673 http://us.imdb.com/M/title-exact?George+of+the+Jungle+(1997)
## 674 http://us.imdb.com/M/title-exact?Air+Bud+(1997)
## 675 http://us.imdb.com/M/title-exact?Full+Monty%2C+The+(1997)
## 676 http://us.imdb.com/M/title-exact?imdb-title-119217
## 677 http://us.imdb.com/M/title-exact?Sabrina%20(1995)
## 678 http://us.imdb.com/M/title-exact?Sense%20and%20Sensibility%20(1995)
## 679 http://us.imdb.com/M/title-exact?Leaving%20Las%20Vegas%20(1995)
## 680 http://us.imdb.com/M/title-exact?Tin%20Cup%20(1996)
## 681 http://us.imdb.com/M/title-exact?Secrets%20&%20Lies%20(1996)
## 682 http://us.imdb.com/M/title-exact?English%20Patient,%20The%20(1996)
## 683 http://us.imdb.com/M/title-exact?Donnie%20Brasco%20(1997)
## 684 http://us.imdb.com/Title?Liar+Liar+(1997)
## 685 http://us.imdb.com/M/title-exact?Ulee%27s+Gold+(1997)
## 686 http://us.imdb.com/M/title-exact?Face/Off+(1997)
## 687 http://us.imdb.com/Title?In+%26+Out+(1997)
## 688 http://us.imdb.com/M/title-exact?L%2EA%2E+Confidential+(1997)
## 689 http://us.imdb.com/M/title-exact?Fly%20Away%20Home%20(1996)
## 690 http://us.imdb.com/M/title-exact?Her+Majesty%2C+Mrs%2E+Brown+(1997)
## 691 http://us.imdb.com/M/title-exact?Fairytale:+A+True+Story+(1997)
## 692 http://us.imdb.com/M/title-exact?Liar+(1997)
## 693 http://us.imdb.com/M/title-exact?Rainmaker,+The+(1997)
## 694 http://us.imdb.com/M/title-exact?In%20the%20Name%20of%20the%20Father%20(1993)
## 695 http://us.imdb.com/M/title-exact?Schindler's%20List%20(1993)
## 696 http://us.imdb.com/M/title-exact?Mother%20(1996/I)
## 697 http://us.imdb.com/M/title-exact?Boogie+Nights+(1997)
## 698 http://us.imdb.com/M/title-exact?One%20Flew%20Over%20the%20Cuckoo's%20Nest%20(1975)
## 699 http://us.imdb.com/M/title-exact?Clueless%20(1995)
## 700 http://us.imdb.com/M/title-exact?Mission:%20Impossible%20(1996)
## 701 http://us.imdb.com/M/title-exact?Close%20Shave,%20A%20(1995)
## 702 http://us.imdb.com/M/title-exact?Kingpin%20(1996)
## 703 http://us.imdb.com/M/title-exact?Mary%20Poppins%20(1964)
## 704 http://us.imdb.com/M/title-exact?E%2ET%2E%20the%20Extra-Terrestrial%20%281982%29
## 705 http://us.imdb.com/M/title-exact?Bob%20Roberts%20(1992)
## 706 http://us.imdb.com/M/title-exact?To%20Kill%20a%20Mockingbird%20(1962)
## 707 http://us.imdb.com/M/title-exact?Fantasia%20(1940)
## 708 http://us.imdb.com/M/title-exact?Butch%20Cassidy%20and%20the%20Sundance%20Kid%20(1969)
## 709 http://us.imdb.com/M/title-exact?Nixon%20(1995)
## 710 http://us.imdb.com/M/title-exact?Cry,%20the%20Beloved%20Country%20(1995)
## 711 http://us.imdb.com/M/title-exact?Crossing%20Guard,%20The%20(1995)
## 712 http://us.imdb.com/M/title-exact?Smoke%20(1995)
## 713 http://us.imdb.com/M/title-exact?Como%20agua%20para%20chocolate%20(1992)
## 714 http://us.imdb.com/M/title-exact?Secret%20of%20Roan%20Inish,%20The%20(1994)
## 715 http://us.imdb.com/M/title-exact?Vanya%20on%2042nd%20Street%20(1994)
## 716 http://us.imdb.com/M/title-exact?Jungle%20Book,%20The%20(1994)
## 717 http://us.imdb.com/M/title-exact?Red%20Rock%20West%20(1992)
## 718 http://us.imdb.com/M/title-exact?Bronx%20Tale,%20A%20(1993)
## 719 http://us.imdb.com/M/title-exact?Rudy%20(1993)
## 720 http://us.imdb.com/M/title-exact?Short%20Cuts%20(1993)
## 721 http://us.imdb.com/M/title-exact?Tombstone%20(1993)
## 722 http://us.imdb.com/M/title-exact?Courage%20Under%20Fire%20(1996)
## 723 http://us.imdb.com/M/title-exact?Dragonheart%20(1996)
## 724 http://us.imdb.com/M/title-exact?James%20and%20the%20Giant%20Peach%20(1996)
## 725 http://us.imdb.com/M/title-exact?Dr.%20Strangelove%20or:%20How%20I%20Learned%20to%20Stop%20Worrying%20and%20Love%20the%20Bomb%20(1963)
## 726 http://us.imdb.com/Title?Trainspotting+(1996)
## 727 http://us.imdb.com/M/title-exact?First%20Wives%20Club,%20The%20(1996)
## 728 http://us.imdb.com/M/title-exact?Matilda%20(1996)
## 729 http://us.imdb.com/M/title-exact?Philadelphia%20Story,%20The%20(1940)
## 730 http://us.imdb.com/M/title-exact?Vertigo%20(1958)
## 731 http://us.imdb.com/M/title-exact?North%20by%20Northwest%20(1959)
## 732 http://us.imdb.com/M/title-exact?Apartment,%20The%20(1960)
## 733 http://us.imdb.com/M/title-exact?Some%20Like%20It%20Hot%20(1959)
## 734 http://us.imdb.com/M/title-exact?Casablanca%20(1942)
## 735 http://us.imdb.com/M/title-exact?Maltese%20Falcon,%20The%20(1941)
## 736 http://us.imdb.com/M/title-exact?My%20Fair%20Lady%20(1964)
## 737 http://us.imdb.com/M/title-exact?Sabrina%20(1954)
## 738 http://us.imdb.com/M/title-exact?Roman%20Holiday%20(1953)
## 739 http://us.imdb.com/M/title-exact?Sunset%20Boulevard%20(1950)
## 740 http://us.imdb.com/M/title-exact?Notorious%20(1946)
## 741 http://us.imdb.com/M/title-exact?To%20Catch%20a%20Thief%20(1955)
## 742 http://us.imdb.com/M/title-exact?Adventures%20of%20Robin%20Hood,%20The%20(1938)
## 743 http://us.imdb.com/M/title-exact?East%20of%20Eden%20(1955)
## 744 http://us.imdb.com/M/title-exact?Thin%20Man,%20The%20(1934)
## 745 http://us.imdb.com/M/title-exact?His%20Girl%20Friday%20(1940)
## 746 http://us.imdb.com/M/title-exact?Around%20the%20World%20in%2080%20Days%20(1956)
## 747 http://us.imdb.com/M/title-exact?It's%20a%20Wonderful%20Life%20(1946)
## 748 http://us.imdb.com/M/title-exact?Bringing%20Up%20Baby%20(1938)
## 749 http://us.imdb.com/M/title-exact?African%20Queen,%20The%20(1951)
## 750 http://us.imdb.com/M/title-exact?Cat%20on%20a%20Hot%20Tin%20Roof%20(1958)
## 751 http://us.imdb.com/M/title-exact?Dumbo%20(1941)
## 752 http://us.imdb.com/M/title-exact?Bananas%20(1971)
## 753 http://us.imdb.com/M/title-exact?Candidate,%20The%20(1972)
## 754 http://us.imdb.com/M/title-exact?Bonnie%20and%20Clyde%20(1967)
## 755 http://us.imdb.com/M/title-exact?Dial%20M%20for%20Murder%20(1954)
## 756 http://us.imdb.com/M/title-exact?Rebel%20Without%20a%20Cause%20(1955)
## 757 http://us.imdb.com/M/title-exact?Streetcar%20Named%20Desire,%20A%20(1951)
## 758 http://us.imdb.com/M/title-exact?People%20vs.%20Larry%20Flynt,%20The%20(1996)
## 759 http://us.imdb.com/M/title-exact?My%20Left%20Foot%20(1989)
## 760 http://us.imdb.com/M/title-exact?Shichinin%20no%20samurai%20(1954)
## 761 http://us.imdb.com/M/title-exact?Lawrence%20of%20Arabia%20(1962)
## 762 http://us.imdb.com/Title?Himmel+%FCber+Berlin,+Der+(1987)
## 763 http://us.imdb.com/M/title-exact?Third%20Man,%20The%20(1949)
## 764 http://us.imdb.com/M/title-exact?Annie%20Hall%20(1977)
## 765 http://us.imdb.com/M/title-exact?Boot,%20Das%20(1981)
## 766 http://us.imdb.com/M/title-exact?Local%20Hero%20(1983)
## 767 http://us.imdb.com/M/title-exact?Manhattan%20(1979)
## 768 http://us.imdb.com/M/title-exact?Miller's%20Crossing%20(1990)
## 769 http://us.imdb.com/M/title-exact?Treasure%20of%20the%20Sierra%20Madre,%20The%20(1948)
## 770 http://us.imdb.com/M/title-exact?Great%20Escape,%20The%20(1963)
## 771 http://us.imdb.com/M/title-exact?Deer%20Hunter,%20The%20(1978)
## 772 http://us.imdb.com/M/title-exact?Down%20by%20Law%20(1986)
## 773 http://us.imdb.com/M/title-exact?Cool%20Hand%20Luke%20(1967)
## 774 http://us.imdb.com/M/title-exact?Great%20Dictator,%20The%20(1940)
## 775 http://us.imdb.com/M/title-exact?Big%20Sleep,%20The%20(1946)
## 776 http://us.imdb.com/M/title-exact?Ben-Hur%20(1959)
## 777 http://us.imdb.com/M/title-exact?Gandhi%20(1982)
## 778 http://us.imdb.com/M/title-exact?Killing%20Fields,%20The%20(1984)
## 779 http://us.imdb.com/M/title-exact?Mitt%20liv%20som%20hund%20(1985)
## 780 http://us.imdb.com/M/title-exact?Man%20Who%20Would%20Be%20King,%20The%20(1975)
## 781 http://us.imdb.com/M/title-exact?Shine%20(1996)
## 782 http://us.imdb.com/M/title-exact?Kama%20Sutra%20(1996)
## 783 http://us.imdb.com/M/title-exact?Daytrippers%2C%20The%20(1996)
## 784 http://us.imdb.com/M/title-exact?Traveller%20%281997%29
## 785 http://us.imdb.com/M/title-exact?Addicted%20to%20Love%20%281997%29
## 786 http://us.imdb.com/M/title-exact?Ponette%20%281996%29
## 787 http://us.imdb.com/M/title-exact?My+Own+Private+Idaho+(1991)
## 788 http://us.imdb.com/M/title-exact?Anastasia+(1997)
## 789 http://us.imdb.com/M/title-exact?imdb-title-119715
## 790 http://us.imdb.com/M/title-exact?Get%20Shorty%20(1995)
## 791 http://us.imdb.com/M/title-exact?Twelve%20Monkeys%20(1995)
## 792 http://us.imdb.com/M/title-exact?Babe%20(1995)
## 793 http://us.imdb.com/M/title-exact?Dead%20Man%20Walking%20(1995)
## 794 http://us.imdb.com/M/title-exact?Richard%20III%20(1995)
## 795 http://us.imdb.com/M/title-exact?Se7en%20(1995)
## 796 http://us.imdb.com/M/title-exact?Usual%20Suspects,%20The%20(1995)
## 797 http://us.imdb.com/M/title-exact?Braveheart%20(1995)
## 798 http://us.imdb.com/M/title-exact?Taxi%20Driver%20(1976)
## 799 http://us.imdb.com/M/title-exact?Birdcage,%20The%20(1996)
## 800 http://us.imdb.com/M/title-exact?Bad%20Boys%20(1995)
## 801 http://us.imdb.com/M/title-exact?Apollo%2013%20(1995)
## 802 http://us.imdb.com/M/title-exact?Batman%20Forever%20(1995)
## 803 http://us.imdb.com/M/title-exact?Crimson%20Tide%20(1995)
## 804 http://us.imdb.com/M/title-exact?Crumb%20(1994)
## 805 http://us.imdb.com/M/title-exact?Strange%20Days%20(1995)
## 806 http://us.imdb.com/M/title-exact?Dolores%20Claiborne%20(1994)
## 807 http://us.imdb.com/M/title-exact?Ed%20Wood%20(1994)
## 808 http://us.imdb.com/M/title-exact?Star%20Wars%20(1977)
## 809 http://us.imdb.com/M/title-exact?Legends%20of%20the%20Fall%20(1994)
## 810 http://us.imdb.com/M/title-exact?Madness%20of%20King%20George,%20The%20(1994)
## 811 http://us.imdb.com/M/title-exact?Natural%20Born%20Killers%20(1994)
## 812 http://us.imdb.com/M/title-exact?Outbreak%20(1995)
## 813 http://us.imdb.com/M/title-exact?Pulp%20Fiction%20(1994)
## 814 http://us.imdb.com/M/title-exact?Stargate%20(1994)
## 815 http://us.imdb.com/M/title-exact?Shawshank%20Redemption,%20The%20(1994)
## 816 http://us.imdb.com/M/title-exact?Crow,%20The%20(1994)
## 817 http://us.imdb.com/M/title-exact?Forrest%20Gump%20(1994)
## 818 http://us.imdb.com/M/title-exact?Four%20Weddings%20and%20a%20Funeral%20(1994)
## 819 http://us.imdb.com/M/title-exact?Lion%20King,%20The%20(1994)
## 820 http://us.imdb.com/M/title-exact?Mask,%20The%20(1994)
## 821 http://us.imdb.com/M/title-exact?Maverick%20(1994)
## 822 http://us.imdb.com/M/title-exact?Firm,%20The%20(1993)
## 823 http://us.imdb.com/M/title-exact?Free%20Willy%20(1993)
## 824 http://us.imdb.com/M/title-exact?Fugitive,%20The%20(1993)
## 825 http://us.imdb.com/M/title-exact?Hot%20Shots!%20Part%20Deux%20(1993)
## 826 http://us.imdb.com/M/title-exact?Hudsucker%20Proxy,%20The%20(1994)
## 827 http://us.imdb.com/M/title-exact?Jurassic%20Park%20(1993)
## 828 http://us.imdb.com/M/title-exact?Remains%20of%20the%20Day,%20The%20(1993)
## 829 http://us.imdb.com/M/title-exact?Blade%20Runner%20(1982)
## 830 http://us.imdb.com/M/title-exact?So%20I%20Married%20an%20Axe%20Murderer%20(1993)
## 831 http://us.imdb.com/M/title-exact?Nightmare%20Before%20Christmas,%20The%20(1993)
## 832 http://us.imdb.com/M/title-exact?True%20Romance%20(1993)
## 833 http://us.imdb.com/Title?Welcome+to+the+Dollhouse+(1995)
## 834 http://us.imdb.com/M/title-exact?Terminator%202:%20Judgment%20Day%20(1991)
## 835 http://us.imdb.com/M/title-exact?Dances%20with%20Wolves%20(1990)
## 836 http://us.imdb.com/M/title-exact?Silence%20of%20the%20Lambs,%20The%20(1991)
## 837 http://us.imdb.com/M/title-exact?Snow%20White%20and%20the%20Seven%20Dwarfs%20(1937)
## 838 http://us.imdb.com/M/title-exact?Fargo%20(1996)
## 839 http://us.imdb.com/M/title-exact?Heavy%20Metal%20(1981)
## 840 http://us.imdb.com/M/title-exact?Diabolique%20(1996)
## 841 http://us.imdb.com/M/title-exact?Twister%20(1996)
## 842 http://us.imdb.com/M/title-exact?Independence%20Day%20(1996)
## 843 http://us.imdb.com/M/title-exact?Phenomenon%20(1996)
## 844 http://us.imdb.com/M/title-exact?Spitfire%20Grill,%20The%20(1996)
## 845 http://us.imdb.com/M/title-exact?Godfather,%20The%20(1972)
## 846 http://us.imdb.com/M/title-exact?Breakfast%20at%20Tiffany's%20(1961)
## 847 http://us.imdb.com/M/title-exact?Wizard%20of%20Oz,%20The%20(1939)
## 848 http://us.imdb.com/M/title-exact?Gone%20with%20the%20Wind%20(1939)
## 849 http://us.imdb.com/M/title-exact?Citizen%20Kane%20(1941)
## 850 http://us.imdb.com/M/title-exact?2001:%20A%20Space%20Odyssey%20(1968)
## 851 http://us.imdb.com/M/title-exact?Mr.%20Smith%20Goes%20to%20Washington%20(1939)
## 852 http://us.imdb.com/M/title-exact?Love%20Bug,%20The%20(1969)
## 853 http://us.imdb.com/M/title-exact?Homeward%20Bound:%20The%20Incredible%20Journey%20(1993)
## 854 http://us.imdb.com/M/title-exact?20,000%20Leagues%20Under%20the%20Sea%20(1954)
## 855 http://us.imdb.com/M/title-exact?Bedknobs%20and%20Broomsticks%20(1971)
## 856 http://us.imdb.com/M/title-exact?Sound%20of%20Music,%20The%20(1965)
## 857 http://us.imdb.com/M/title-exact?Die%20Hard%20(1988)
## 858 http://us.imdb.com/M/title-exact?Lawnmower%20Man,%20The%20(1992)
## 859 http://us.imdb.com/M/title-exact?Willy%20Wonka%20and%20the%20Chocolate%20Factory%20(1971)
## 860 http://us.imdb.com/M/title-exact?Sleeper%20(1973)
## 861 http://us.imdb.com/M/title-exact?Fish%20Called%20Wanda,%20A%20(1988)
## 862 http://us.imdb.com/M/title-exact?Life%20of%20Brian%20(1979)
## 863 http://us.imdb.com/M/title-exact?Reservoir%20Dogs%20(1992)
## 864 http://us.imdb.com/M/title-exact?Platoon%20(1986)
## 865 http://us.imdb.com/M/title-exact?Top%20Gun%20(1986)
## 866 http://us.imdb.com/M/title-exact?On%20Golden%20Pond%20(1981)
## 867 http://us.imdb.com/M/title-exact?Return%20of%20the%20Pink%20Panther,%20The%20(1974)
## 868 http://us.imdb.com/M/title-exact?Abyss,%20The%20(1989)
## 869 http://us.imdb.com/M/title-exact?Manon%20des%20sources%20(1986)
## 870 http://us.imdb.com/M/title-exact?Monty%20Python%20and%20the%20Holy%20Grail%20(1974)
## 871 http://us.imdb.com/M/title-exact?Delicatessen%20(1991)
## 872 http://us.imdb.com/M/title-exact?Empire%20Strikes%20Back,%20The%20(1980)
## 873 http://us.imdb.com/M/title-exact?Princess%20Bride,%20The%20(1987)
## 874 http://us.imdb.com/M/title-exact?Raiders%20of%20the%20Lost%20Ark%20(1981)
## 875 http://us.imdb.com/M/title-exact?Brazil%20(1985)
## 876 http://us.imdb.com/M/title-exact?Aliens%20(1986)
## 877 http://us.imdb.com/M/title-exact?Buono,%20il%20brutto,%20il%20cattivo,%20Il%20(1966)
## 878 http://us.imdb.com/M/title-exact?12%20Angry%20Men%20(1957)
## 879 http://us.imdb.com/M/title-exact?Clockwork%20Orange,%20A%20(1971)
## 880 http://us.imdb.com/M/title-exact?Apocalypse%20Now%20(1979)
## 881 http://us.imdb.com/M/title-exact?Return%20of%20the%20Jedi%20(1983)
## 882 http://us.imdb.com/M/title-exact?GoodFellas%20(1990)
## 883 http://us.imdb.com/M/title-exact?Alien%20(1979)
## 884 http://us.imdb.com/M/title-exact?Psycho%20(1960)
## 885 http://us.imdb.com/M/title-exact?Blues%20Brothers,%20The%20(1980)
## 886 http://us.imdb.com/M/title-exact?Godfather:%20Part%20II,%20The%20(1974)
## 887 http://us.imdb.com/M/title-exact?Full%20Metal%20Jacket%20(1987)
## 888 http://us.imdb.com/M/title-exact?Henry%20V%20(1989)
## 889 http://us.imdb.com/M/title-exact?Amadeus%20(1984)
## 890 http://us.imdb.com/M/title-exact?Raging%20Bull%20(1980)
## 891 http://us.imdb.com/M/title-exact?Right%20Stuff,%20The%20(1983)
## 892 http://us.imdb.com/M/title-exact?Sting,%20The%20(1973)
## 893 http://us.imdb.com/M/title-exact?Terminator,%20The%20(1984)
## 894 http://us.imdb.com/M/title-exact?Dead%20Poets%20Society%20(1989)
## 895 http://us.imdb.com/M/title-exact?Graduate,%20The%20(1967)
## 896 http://us.imdb.com/M/title-exact?Nikita%20(1990)
## 897 http://us.imdb.com/M/title-exact?Bridge%20on%20the%20River%20Kwai,%20The%20(1957)
## 898 http://us.imdb.com/M/title-exact?Shining,%20The%20(1980)
## 899 http://us.imdb.com/M/title-exact?Evil%20Dead%20II%20(1987)
## 900 http://us.imdb.com/M/title-exact?Groundhog%20Day%20(1993)
## 901 http://us.imdb.com/M/title-exact?Unforgiven%20(1992)
## 902 http://us.imdb.com/M/title-exact?Back%20to%20the%20Future%20(1985)
## 903 http://us.imdb.com/M/title-exact?Patton%20(1970)
## 904 http://us.imdb.com/M/title-exact?Cyrano%20de%20Bergerac%20(1990)
## 905 http://us.imdb.com/M/title-exact?Young%20Frankenstein%20(1974)
## 906 http://us.imdb.com/M/title-exact?Indiana%20Jones%20and%20the%20Last%20Crusade%20(1989)
## 907 http://us.imdb.com/M/title-exact?MASH%20(1970)
## 908 http://us.imdb.com/M/title-exact?Unbearable%20Lightness%20of%20Being,%20The%20(1988)
## 909 http://us.imdb.com/M/title-exact?Room%20with%20a%20View,%20A%20(1986)
## 910 http://us.imdb.com/M/title-exact?Pink%20Floyd%20-%20The%20Wall%20(1982)
## 911 http://us.imdb.com/M/title-exact?Field%20of%20Dreams%20(1989)
## 912 http://us.imdb.com/M/title-exact?When%20Harry%20Met%20Sally...%20(1989)
## 913 http://us.imdb.com/M/title-exact?Bram%20Stoker's%20Dracula%20(1992)
## 914 http://us.imdb.com/M/title-exact?Nightmare%20on%20Elm%20Street,%20A%20(1984)
## 915 http://us.imdb.com/M/title-exact?Sling%20Blade%20(1996)
## 916 http://us.imdb.com/M/title-exact?Die%20Hard%202%20(1990)
## 917 http://us.imdb.com/M/title-exact?Star%20Trek%20VI:%20The%20Undiscovered%20Country%20(1991)
## 918 http://us.imdb.com/M/title-exact?Star%20Trek:%20The%20Wrath%20of%20Khan%20(1982)
## 919 http://us.imdb.com/M/title-exact?Star%20Trek%20III:%20The%20Search%20for%20Spock%20(1984)
## 920 http://us.imdb.com/M/title-exact?Star%20Trek%20IV:%20The%20Voyage%20Home%20(1986)
## 921 http://us.imdb.com/M/title-exact?Batman%20Returns%20(1992)
## 922 http://us.imdb.com/M/title-exact?Young%20Guns%20(1988)
## 923 http://us.imdb.com/M/title-exact?Jaws%20(1975)
## 924 http://us.imdb.com/M/title-exact?Jerry%20Maguire%20(1996)
## 925 http://us.imdb.com/M/title-exact?Raising%20Arizona%20(1987)
## 926 http://us.imdb.com/M/title-exact?Last%20of%20the%20Mohicans,%20The%20(1992)
## 927 http://us.imdb.com/Title?Contact+(1997/I)
## 928 http://us.imdb.com/M/title-exact?George+of+the+Jungle+(1997)
## 929 http://us.imdb.com/M/title-exact?Event+Horizon+(1997)
## 930 http://us.imdb.com/M/title-exact?Mimic+(1997)
## 931 http://us.imdb.com/M/title-exact?Hunt+for+Red+October%2C+The+(1990)
## 932 http://us.imdb.com/M/title-exact?Kull+the+Conqueror+(1997)
## 933 http://us.imdb.com/M/title-exact?Full+Monty%2C+The+(1997)
## 934 http://us.imdb.com/M/title-exact?Heat%20(1995)
## 935 http://us.imdb.com/M/title-exact?Sense%20and%20Sensibility%20(1995)
## 936 http://us.imdb.com/M/title-exact?River%20Wild,%20The%20(1994)
## 937 http://us.imdb.com/M/title-exact?Secrets%20&%20Lies%20(1996)
## 938 http://us.imdb.com/M/title-exact?English%20Patient,%20The%20(1996)
## 939 http://us.imdb.com/M/title-exact?Scream%20(1996)
## 940 http://us.imdb.com/Title?Liar+Liar+(1997)
## 941 http://us.imdb.com/M/title-exact?Air+Force+One+(1997)
## 942 http://us.imdb.com/M/title-exact?Devil's+Advocate,+The+(1997)
## 943 http://us.imdb.com/M/title-exact?Liar+(1997)
## 944 http://us.imdb.com/M/title-exact?In%20the%20Name%20of%20the%20Father%20(1993)
## 945 http://us.imdb.com/M/title-exact?Schindler's%20List%20(1993)
## 946 http://us.imdb.com/Title?Lost+Highway+(1997)
## 947 http://us.imdb.com/Title?U+Turn+(1997)
## 948 http://us.imdb.com/M/title-exact?Critical+Care+(1997)
## 949 http://us.imdb.com/M/title-exact?Client,%20The%20(1994)
## 950 http://us.imdb.com/M/title-exact?One%20Flew%20Over%20the%20Cuckoo's%20Nest%20(1975)
## 951 http://us.imdb.com/M/title-exact?Powder%20(1995)
## 952 http://us.imdb.com/M/title-exact?Clueless%20(1995)
## 953 http://us.imdb.com/M/title-exact?Miracle%20on%2034th%20Street%20(1994)
## 954 http://us.imdb.com/M/title-exact?Tales%20From%20the%20Crypt%20Presents:%20Demon%20Knight%20(1995)
## 955 http://us.imdb.com/M/title-exact?Star%20Trek:%20Generations%20(1994)
## 956 http://us.imdb.com/M/title-exact?Adventures%20of%20Priscilla,%20Queen%20of%20the%20Desert,%20The%20(1994)
## 957 http://us.imdb.com/M/title-exact?Naked%20Gun%2033%201/3:%20The%20Final%20Insult%20(1994)
## 958 http://us.imdb.com/M/title-exact?True%20Lies%20(1994)
## 959 http://us.imdb.com/M/title-exact?Addams%20Family%20Values%20(1993)
## 960 http://us.imdb.com/M/title-exact?Age%20of%20Innocence,%20The%20(1993)
## 961 http://us.imdb.com/Title?Black+Beauty+(1994/I)
## 962 http://us.imdb.com/M/title-exact?Last%20Action%20Hero%20(1993)
## 963 http://us.imdb.com/M/title-exact?Mrs.%20Doubtfire%20(1993)
## 964 http://us.imdb.com/M/title-exact?Serial%20Mom%20(1994)
## 965 http://us.imdb.com/M/title-exact?Three%20Musketeers,%20The%20(1993)
## 966 http://us.imdb.com/M/title-exact?Brady%20Bunch%20Movie,%20The%20(1995)
## 967 http://us.imdb.com/M/title-exact?Ghost%20(1990)
## 968 http://us.imdb.com/M/title-exact?Batman%20(1989)
## 969 http://us.imdb.com/M/title-exact?Pinocchio%20(1940)
## 970 http://us.imdb.com/M/title-exact?Mission:%20Impossible%20(1996)
## 971 http://us.imdb.com/M/title-exact?Apple%20Dumpling%20Gang,%20The%20(1975)
## 972 http://us.imdb.com/M/title-exact?Old%20Yeller%20(1957)
## 973 http://us.imdb.com/M/title-exact?Parent%20Trap,%20The%20(1961)
## 974 http://us.imdb.com/M/title-exact?Cinderella%20(1950)
## 975 http://us.imdb.com/M/title-exact?Mary%20Poppins%20(1964)
## 976 http://us.imdb.com/M/title-exact?Alice%20in%20Wonderland%20(1951)
## 977 http://us.imdb.com/Title?Romeo+%2B+Juliet+(1996)
## 978 http://us.imdb.com/M/title-exact?E%2ET%2E%20the%20Extra-Terrestrial%20%281982%29
## 979 http://us.imdb.com/M/title-exact?To%20Kill%20a%20Mockingbird%20(1962)
## 980 http://us.imdb.com/M/title-exact?Harold%20and%20Maude%20(1971)
## 981 http://us.imdb.com/M/title-exact?Day%20the%20Earth%20Stood%20Still,%20The%20(1951)
## 982 http://us.imdb.com/M/title-exact?Duck%20Soup%20(1933)
## 983 http://us.imdb.com/M/title-exact?Highlander%20(1986)
## 984 http://us.imdb.com/M/title-exact?Fantasia%20(1940)
## 985 http://us.imdb.com/M/title-exact?Heathers%20(1989)
## 986 http://us.imdb.com/M/title-exact?Forbidden%20Planet%20(1956)
## 987 http://us.imdb.com/M/title-exact?Butch%20Cassidy%20and%20the%20Sundance%20Kid%20(1969)
## 988 http://us.imdb.com/M/title-exact?American%20Werewolf%20in%20London,%20An%20(1981)
## 989 http://us.imdb.com/M/title-exact?Amityville%20II:%20The%20Possession%20(1982)
## 990 http://us.imdb.com/M/title-exact?Amityville%20Horror,%20The%20(1979)
## 991 http://us.imdb.com/M/title-exact?Birds,%20The%20(1963)
## 992 http://us.imdb.com/M/title-exact?Blob,%20The%20(1958)
## 993 http://us.imdb.com/M/title-exact?Burnt%20Offerings%20(1976)
## 994 http://us.imdb.com/M/title-exact?Carrie%20(1976)
## 995 http://us.imdb.com/M/title-exact?Omen,%20The%20(1976)
## 996 http://us.imdb.com/M/title-exact?Star%20Trek:%20The%20Motion%20Picture%20(1979)
## 997 http://us.imdb.com/M/title-exact?Star%20Trek%20V:%20The%20Final%20Frontier%20(1989)
## 998 http://us.imdb.com/M/title-exact?Grease%20(1978)
## 999 http://us.imdb.com/M/title-exact?Jaws%202%20(1978)
## 1000 http://us.imdb.com/M/title-exact?Police%20Story%204:%20First%20Strike%20(1996)
## 1001 http://us.imdb.com/M/title-exact?Smoke%20(1995)
## 1002 http://us.imdb.com/M/title-exact?Secret%20of%20Roan%20Inish,%20The%20(1994)
## 1003 http://us.imdb.com/M/title-exact?Jungle%20Book,%20The%20(1994)
## 1004 http://us.imdb.com/M/title-exact?Tombstone%20(1993)
## 1005 http://us.imdb.com/M/title-exact?Courage%20Under%20Fire%20(1996)
## 1006 http://us.imdb.com/M/title-exact?Dragonheart%20(1996)
## 1007 http://us.imdb.com/M/title-exact?Dr.%20Strangelove%20or:%20How%20I%20Learned%20to%20Stop%20Worrying%20and%20Love%20the%20Bomb%20(1963)
## 1008 http://us.imdb.com/M/title-exact?Vertigo%20(1958)
## 1009 http://us.imdb.com/M/title-exact?North%20by%20Northwest%20(1959)
## 1010 http://us.imdb.com/M/title-exact?Apartment,%20The%20(1960)
## 1011 http://us.imdb.com/M/title-exact?Some%20Like%20It%20Hot%20(1959)
## 1012 http://us.imdb.com/M/title-exact?Casablanca%20(1942)
## 1013 http://us.imdb.com/M/title-exact?Maltese%20Falcon,%20The%20(1941)
## 1014 http://us.imdb.com/M/title-exact?My%20Fair%20Lady%20(1964)
## 1015 http://us.imdb.com/M/title-exact?Roman%20Holiday%20(1953)
## 1016 http://us.imdb.com/M/title-exact?Sunset%20Boulevard%20(1950)
## 1017 http://us.imdb.com/M/title-exact?Notorious%20(1946)
## 1018 http://us.imdb.com/M/title-exact?Adventures%20of%20Robin%20Hood,%20The%20(1938)
## 1019 http://us.imdb.com/M/title-exact?East%20of%20Eden%20(1955)
## 1020 http://us.imdb.com/M/title-exact?Around%20the%20World%20in%2080%20Days%20(1956)
## 1021 http://us.imdb.com/M/title-exact?It's%20a%20Wonderful%20Life%20(1946)
## 1022 http://us.imdb.com/M/title-exact?Bringing%20Up%20Baby%20(1938)
## 1023 http://us.imdb.com/M/title-exact?African%20Queen,%20The%20(1951)
## 1024 http://us.imdb.com/M/title-exact?Cat%20on%20a%20Hot%20Tin%20Roof%20(1958)
## 1025 http://us.imdb.com/M/title-exact?Dumbo%20(1941)
## 1026 http://us.imdb.com/M/title-exact?Bananas%20(1971)
## 1027 http://us.imdb.com/M/title-exact?Candidate,%20The%20(1972)
## 1028 http://us.imdb.com/M/title-exact?Bonnie%20and%20Clyde%20(1967)
## 1029 http://us.imdb.com/M/title-exact?Dial%20M%20for%20Murder%20(1954)
## 1030 http://us.imdb.com/M/title-exact?Rebel%20Without%20a%20Cause%20(1955)
## 1031 http://us.imdb.com/M/title-exact?Streetcar%20Named%20Desire,%20A%20(1951)
## 1032 http://us.imdb.com/M/title-exact?My%20Left%20Foot%20(1989)
## 1033 http://us.imdb.com/M/title-exact?Shichinin%20no%20samurai%20(1954)
## 1034 http://us.imdb.com/M/title-exact?Lawrence%20of%20Arabia%20(1962)
## 1035 http://us.imdb.com/M/title-exact?Third%20Man,%20The%20(1949)
## 1036 http://us.imdb.com/M/title-exact?Annie%20Hall%20(1977)
## 1037 http://us.imdb.com/M/title-exact?Boot,%20Das%20(1981)
## 1038 http://us.imdb.com/M/title-exact?Treasure%20of%20the%20Sierra%20Madre,%20The%20(1948)
## 1039 http://us.imdb.com/M/title-exact?Great%20Escape,%20The%20(1963)
## 1040 http://us.imdb.com/M/title-exact?Deer%20Hunter,%20The%20(1978)
## 1041 http://us.imdb.com/M/title-exact?Cool%20Hand%20Luke%20(1967)
## 1042 http://us.imdb.com/M/title-exact?Ben-Hur%20(1959)
## 1043 http://us.imdb.com/M/title-exact?Gandhi%20(1982)
## 1044 http://us.imdb.com/M/title-exact?Killing%20Fields,%20The%20(1984)
## 1045 http://us.imdb.com/M/title-exact?Mitt%20liv%20som%20hund%20(1985)
## 1046 http://us.imdb.com/M/title-exact?Man%20Who%20Would%20Be%20King,%20The%20(1975)
## 1047 http://us.imdb.com/M/title-exact?My+Own+Private+Idaho+(1991)
## 1048 http://us.imdb.com/M/title-exact?Money%20Train%20(1995)
## 1049 http://us.imdb.com/M/title-exact?Mortal%20Kombat%20(1995)
## 1050 http://us.imdb.com/M/title-exact?Pocahontas%20(1995)
## 1051 http://us.imdb.com/M/title-exact?Mis%E9rables%2C%20Les%20%281995%29
## 1052 http://us.imdb.com/M/title-exact?Things%20to%20Do%20in%20Denver%20when%20You're%20Dead%20(1995)
## 1053 http://us.imdb.com/M/title-exact?Vampire%20in%20Brooklyn%20(1995)
## 1054 http://us.imdb.com/M/title-exact?Broken%20Arrow%20(1996)
## 1055 http://us.imdb.com/M/title-exact?Young%20Poisoner's%20Handbook,%20The%20(1995)
## 1056 http://us.imdb.com/M/title-exact?NeverEnding%20Story%20III,%20The%20(1994)
## 1057 http://us.imdb.com/M/title-exact?Rob%20Roy%20(1995)
## 1058 http://us.imdb.com/M/title-exact?Die%20Hard:%20With%20a%20Vengeance%20(1995)
## 1059 http://us.imdb.com/M/title-exact?Lord%20of%20Illusions%20(1995)
## 1060 http://us.imdb.com/M/title-exact?Species%20(1995)
## 1061 http://us.imdb.com/M/title-exact?Walk%20in%20the%20Clouds,%20A%20(1995)
## 1062 http://us.imdb.com/M/title-exact?Waterworld%20(1995)
## 1063 http://us.imdb.com/M/title-exact?White%20Man's%20Burden%20(1995)
## 1064 http://us.imdb.com/M/title-exact?Wild%20Bill%20(1995)
## 1065 http://us.imdb.com/M/title-exact?Farinelli:%20il%20castrato%20(1994)
## 1066 http://us.imdb.com/M/title-exact?Heavenly%20Creatures%20(1994)
## 1067 http://us.imdb.com/M/title-exact?Interview%20with%20the%20Vampire%20(1994)
## 1068 http://us.imdb.com/M/title-exact?Kid%20in%20King%20Arthur's%20Court,%20A%20(1995)
## 1069 http://us.imdb.com/M/title-exact?Mary%20Shelley's%20Frankenstein%20(1994)
## 1070 http://us.imdb.com/M/title-exact?Quick%20and%20the%20Dead,%20The%20(1995)
## 1071 http://us.imdb.com/M/title-exact?%22Langoliers,%20The%22%20(1995)%20(mini)
## 1072 http://us.imdb.com/M/title-exact?Tales%20from%20the%20Hood%20(1995)
## 1073 http://us.imdb.com/M/title-exact?Village%20of%20the%20Damned%20(1995)
## 1074 http://us.imdb.com/M/title-exact?Clear%20and%20Present%20Danger%20(1994)
## 1075 http://us.imdb.com/M/title-exact?Wes%20Craven's%20New%20Nightmare%20(1994)
## 1076 http://us.imdb.com/M/title-exact?Speed%20(1994/I)
## 1077 http://us.imdb.com/M/title-exact?Wolf%20(1994)
## 1078 http://us.imdb.com/M/title-exact?Wyatt%20Earp%20(1994)
## 1079 http://us.imdb.com/M/title-exact?Another%20Stakeout%20(1993)
## 1080 http://us.imdb.com/M/title-exact?Blown%20Away%20(1994)
## 1081 http://us.imdb.com/M/title-exact?Body%20Snatchers%20(1993)
## 1082 http://us.imdb.com/M/title-exact?Boxing%20Helena%20(1993)
## 1083 http://us.imdb.com/M/title-exact?City%20Slickers%20II:%20The%20Legend%20of%20Curly's%20Gold%20(1994)
## 1084 http://us.imdb.com/M/title-exact?Cliffhanger%20(1993)
## 1085 http://us.imdb.com/M/title-exact?Coneheads%20(1993)
## 1086 http://us.imdb.com/M/title-exact?Demolition%20Man%20(1993)
## 1087 http://us.imdb.com/M/title-exact?Fatal%20Instinct%20(1993)
## 1088 http://us.imdb.com/M/title-exact?Englishman%20Who%20Went%20Up%20a%20Hill,%20But%20Came%20Down%20a%20Mountain,%20The%20(1995)
## 1089 http://us.imdb.com/M/title-exact?Kalifornia%20(1993)
## 1090 http://us.imdb.com/M/title-exact?Piano,%20The%20(1993)
## 1091 http://us.imdb.com/M/title-exact?Romeo%20Is%20Bleeding%20(1993)
## 1092 http://us.imdb.com/M/title-exact?Secret%20Garden,%20The%20(1993)
## 1093 http://us.imdb.com/M/title-exact?Son%20in%20Law%20(1993)
## 1094 http://us.imdb.com/M/title-exact?Terminal%20Velocity%20(1994)
## 1095 http://us.imdb.com/M/title-exact?Hour%20of%20the%20Pig,%20The%20(1993)
## 1096 http://us.imdb.com/M/title-exact?Beauty%20and%20the%20Beast%20(1991)
## 1097 http://us.imdb.com/M/title-exact?Wild%20Bunch,%20The%20(1969)
## 1098 http://us.imdb.com/M/title-exact?Hellraiser:%20Bloodline%20(1996)
## 1099 http://us.imdb.com/M/title-exact?Primal%20Fear%20(1996)
## 1100 http://us.imdb.com/M/title-exact?True%20Crime%20(1995)
## 1101 http://us.imdb.com/M/title-exact?Stalingrad%20(1993)
## 1102 http://us.imdb.com/M/title-exact?Heavy%20(1995)
## 1103 http://us.imdb.com/M/title-exact?Fan,%20The%20(1996)
## 1104 http://us.imdb.com/M/title-exact?Hunchback%20of%20Notre%20Dame,%20The%20(1996)
## 1105 http://us.imdb.com/M/title-exact?Eraser%20(1996)
## 1106 http://us.imdb.com/M/title-exact?Big%20Squeeze,%20The%20(1996)
## 1107 http://us.imdb.com/M/title-exact?Project%20S%20(1993)
## 1108 http://us.imdb.com/M/title-exact?Robinson%20Crusoe%20(1996)
## 1109 http://us.imdb.com/M/title-exact?For%20Whom%20the%20Bell%20Tolls%20(1943)
## 1110 http://us.imdb.com/M/title-exact?American%20in%20Paris,%20An%20(1951)
## 1111 http://us.imdb.com/M/title-exact?Rear%20Window%20(1954)
## 1112 http://us.imdb.com/M/title-exact?It%20Happened%20One%20Night%20(1934)
## 1113 http://us.imdb.com/M/title-exact?Meet%20Me%20in%20St.%20Louis%20(1944)
## 1114 http://us.imdb.com/M/title-exact?All%20About%20Eve%20(1950)
## 1115 http://us.imdb.com/M/title-exact?Rebecca%20(1940)
## 1116 http://us.imdb.com/M/title-exact?Spellbound%20(1945)
## 1117 http://us.imdb.com/M/title-exact?Father%20of%20the%20Bride%20(1950)
## 1118 http://us.imdb.com/M/title-exact?Gigi%20(1958)
## 1119 http://us.imdb.com/M/title-exact?Laura%20(1944)
## 1120 http://us.imdb.com/M/title-exact?Lost%20Horizon%20(1937)
## 1121 http://us.imdb.com/M/title-exact?My%20Man%20Godfrey%20(1936)
## 1122 http://us.imdb.com/M/title-exact?Giant%20(1956)
## 1123 http://us.imdb.com/M/title-exact?39%20Steps,%20The%20(1935)
## 1124 http://us.imdb.com/M/title-exact?Night%20of%20the%20Living%20Dead%20(1968)
## 1125 http://us.imdb.com/M/title-exact?Blaue%20Engel,%20Der%20(1930)
## 1126 http://us.imdb.com/M/title-exact?Picnic%20(1955)
## 1127 http://us.imdb.com/M/title-exact?Extreme%20Measures%20(1996)
## 1128 http://us.imdb.com/M/title-exact?Chamber,%20The%20(1996)
## 1129 http://us.imdb.com/M/title-exact?Davy%20Crockett%2C%20King%20of%20the%20Wild%20Frontier%20%281955%29
## 1130 http://us.imdb.com/M/title-exact?Swiss%20Family%20Robinson%20(1960)
## 1131 http://us.imdb.com/M/title-exact?Angels%20in%20the%20Outfield%20(1994)
## 1132 http://us.imdb.com/M/title-exact?Three%20Caballeros,%20The%20(1945)
## 1133 http://us.imdb.com/M/title-exact?Sword%20in%20the%20Stone,%20The%20(1963)
## 1134 http://us.imdb.com/Title?So+Dear+to+My+Heart+(1949)
## 1135 http://us.imdb.com/Title?Robin+Hood%3A+Prince+of+Thieves+(1991)
## 1136 http://us.imdb.com/M/title-exact?Sleepers%20(1996)
## 1137 http://us.imdb.com/M/title-exact?Victor/Victoria%20%281982%29
## 1138 http://us.imdb.com/M/title-exact?Great%20Race,%20The%20(1965)
## 1139 http://us.imdb.com/M/title-exact?Crying%20Game,%20The%20(1992)
## 1140 http://us.imdb.com/M/title-exact?Sophie's%20Choice%20(1982)
## 1141 http://us.imdb.com/M/title-exact?Christmas%20Carol,%20A%20(1938)
## 1142 http://us.imdb.com/M/title-exact?Microcosmos%3A%20Le%20peuple%20de%20l%27herbe%20%281996%29
## 1143 http://us.imdb.com/M/title-exact?Fog,%20The%20(1980)
## 1144 http://us.imdb.com/M/title-exact?Escape%20from%20New%20York%20(1981)
## 1145 http://us.imdb.com/M/title-exact?Howling,%20The%20(1981)
## 1146 http://us.imdb.com/M/title-exact?Retour%20de%20Martin%20Guerre,%20Le%20(1982)
## 1147 http://us.imdb.com/M/title-exact?Blechtrommel,%20Die%20(1979)
## 1148 http://us.imdb.com/M/title-exact?Cook%20the%20Thief%20His%20Wife%20&%20Her%20Lover,%20The%20(1989)
## 1149 http://us.imdb.com/M/title-exact?Paths%20of%20Glory%20(1957)
## 1150 http://us.imdb.com/M/title-exact?Grifters,%20The%20(1990)
## 1151 http://us.imdb.com/M/title-exact?Innocent,%20The%20(1994)%20(TV)
## 1152 http://us.imdb.com/M/title-exact?Thin%20Blue%20Line,%20The%20(1988)
## 1153 http://us.imdb.com/M/title-exact?Paris%20Is%20Burning%20(1990)
## 1154 http://us.imdb.com/M/title-exact?C'era%20una%20volta%20il%20west%20(1969)
## 1155 http://us.imdb.com/M/title-exact?Ran%20(1985)
## 1156 http://us.imdb.com/M/title-exact?Quiet%20Man,%20The%20(1952)
## 1157 http://us.imdb.com/M/title-exact?Once%20Upon%20a%20Time%20in%20America%20(1984)
## 1158 http://us.imdb.com/M/title-exact?Sjunde%20inseglet,%20Det%20(1957)
## 1159 http://us.imdb.com/M/title-exact?Glory%20(1989)
## 1160 http://us.imdb.com/M/title-exact?Rosencrantz%20and%20Guildenstern%20Are%20Dead%20(1990)
## 1161 http://us.imdb.com/M/title-exact?Touch%20of%20Evil%20(1958)
## 1162 http://us.imdb.com/M/title-exact?Chinatown%20(1974)
## 1163 http://us.imdb.com/M/title-exact?Stand%20by%20Me%20(1986)
## 1164 http://us.imdb.com/M/title-exact?M%20(1931)
## 1165 http://us.imdb.com/M/title-exact?Manchurian%20Candidate,%20The%20(1962)
## 1166 http://us.imdb.com/M/title-exact?Pump%20Up%20the%20Volume%20(1990)
## 1167 http://us.imdb.com/M/title-exact?Arsenic%20and%20Old%20Lace%20(1944)
## 1168 http://us.imdb.com/M/title-exact?Fried%20Green%20Tomatoes%20at%20the%20Whistle%20Stop%20Cafe%20(1991)
## 1169 http://us.imdb.com/M/title-exact?High%20Noon%20(1952)
## 1170 http://us.imdb.com/M/title-exact?Somewhere%20in%20Time%20(1980)
## 1171 http://us.imdb.com/M/title-exact?Being%20There%20(1979)
## 1172 http://us.imdb.com/M/title-exact?Paris,%20Texas%20(1984)
## 1173 http://us.imdb.com/M/title-exact?Alien%203%20(1992)
## 1174 http://us.imdb.com/M/title-exact?Andy%20Warhol's%20Dracula%20(1974)
## 1175 http://us.imdb.com/M/title-exact?Audrey%20Rose%20(1977)
## 1176 http://us.imdb.com/M/title-exact?Blood%20Beach%20(1981)
## 1177 http://us.imdb.com/M/title-exact?Body%20Parts%20(1991)
## 1178 http://us.imdb.com/M/title-exact?Bride%20of%20Frankenstein%20(1935)
## 1179 http://us.imdb.com/M/title-exact?Candyman%20(1992)
## 1180 http://us.imdb.com/M/title-exact?Cape%20Fear%20(1962)
## 1181 http://us.imdb.com/M/title-exact?Cat%20People%20(1982)
## 1182 http://us.imdb.com/M/title-exact?Nosferatu,%20eine%20Symphonie%20des%20Grauens%20(1922)
## 1183 http://us.imdb.com/M/title-exact?Crucible,%20The%20(1996)
## 1184 http://us.imdb.com/M/title-exact?Fire%20on%20the%20Mountain%20(1996)
## 1185 http://us.imdb.com/M/title-exact?Volcano%20%281997%29
## 1186 http://us.imdb.com/M/title-exact?Conan+the+Barbarian+(1981)
## 1187 http://us.imdb.com/M/title-exact?Wishmaster+(1997)
## 1188 http://us.imdb.com/M/title-exact?I+Know+What+You+Did+Last+Summer+(1997)
## 1189 http://us.imdb.com/M/title-exact?Rocket+Man+(1997)
## 1190 http://us.imdb.com/M/title-exact?Twelve%20Monkeys%20(1995)
## 1191 http://us.imdb.com/M/title-exact?Se7en%20(1995)
## 1192 http://us.imdb.com/M/title-exact?Braveheart%20(1995)
## 1193 http://us.imdb.com/M/title-exact?Star%20Wars%20(1977)
## 1194 http://us.imdb.com/Title?L%E9on+(1994)
## 1195 http://us.imdb.com/M/title-exact?Pulp%20Fiction%20(1994)
## 1196 http://us.imdb.com/M/title-exact?Fugitive,%20The%20(1993)
## 1197 http://us.imdb.com/M/title-exact?Jurassic%20Park%20(1993)
## 1198 http://us.imdb.com/M/title-exact?Blade%20Runner%20(1982)
## 1199 http://us.imdb.com/M/title-exact?Terminator%202:%20Judgment%20Day%20(1991)
## 1200 http://us.imdb.com/M/title-exact?Godfather,%20The%20(1972)
## 1201 http://us.imdb.com/M/title-exact?Die%20Hard%20(1988)
## 1202 http://us.imdb.com/M/title-exact?Empire%20Strikes%20Back,%20The%20(1980)
## 1203 http://us.imdb.com/M/title-exact?Raiders%20of%20the%20Lost%20Ark%20(1981)
## 1204 http://us.imdb.com/M/title-exact?Aliens%20(1986)
## 1205 http://us.imdb.com/M/title-exact?Buono,%20il%20brutto,%20il%20cattivo,%20Il%20(1966)
## 1206 http://us.imdb.com/M/title-exact?Return%20of%20the%20Jedi%20(1983)
## 1207 http://us.imdb.com/M/title-exact?GoodFellas%20(1990)
## 1208 http://us.imdb.com/M/title-exact?Alien%20(1979)
## 1209 http://us.imdb.com/M/title-exact?Godfather:%20Part%20II,%20The%20(1974)
## 1210 http://us.imdb.com/M/title-exact?Full%20Metal%20Jacket%20(1987)
## 1211 http://us.imdb.com/M/title-exact?Henry%20V%20(1989)
## 1212 http://us.imdb.com/M/title-exact?Terminator,%20The%20(1984)
## 1213 http://us.imdb.com/M/title-exact?Indiana%20Jones%20and%20the%20Last%20Crusade%20(1989)
## 1214 http://us.imdb.com/M/title-exact?Star%20Trek:%20First%20Contact%20(1996)
## 1215 http://us.imdb.com/M/title-exact?Star%20Trek%20VI:%20The%20Undiscovered%20Country%20(1991)
## 1216 http://us.imdb.com/M/title-exact?Star%20Trek:%20The%20Wrath%20of%20Khan%20(1982)
## 1217 http://us.imdb.com/M/title-exact?Star%20Trek%20III:%20The%20Search%20for%20Spock%20(1984)
## 1218 http://us.imdb.com/M/title-exact?Under%20Siege%20(1992)
## 1219 http://us.imdb.com/M/title-exact?Last%20of%20the%20Mohicans,%20The%20(1992)
## 1220 http://us.imdb.com/M/title-exact?Jungle2Jungle%20(1997)
## 1221 http://us.imdb.com/Title?Contact+(1997/I)
## 1222 http://us.imdb.com/M/title-exact?George+of+the+Jungle+(1997)
## 1223 http://us.imdb.com/M/title-exact?Event+Horizon+(1997)
## 1224 http://us.imdb.com/M/title-exact?Heat%20(1995)
## 1225 http://us.imdb.com/Title?Liar+Liar+(1997)
## 1226 http://us.imdb.com/Title?In+%26+Out+(1997)
## 1227 http://us.imdb.com/M/title-exact?Playing+God+(1997)
## 1228 http://us.imdb.com/M/title-exact?Bean+(1997)
## 1229 http://us.imdb.com/M/title-exact?Critical+Care+(1997)
## 1230 http://us.imdb.com/M/title-exact?Spawn+(1997/I)
## 1231 http://us.imdb.com/M/title-exact?True%20Lies%20(1994)
## 1232 http://us.imdb.com/M/title-exact?Batman%20(1989)
## 1233 http://us.imdb.com/M/title-exact?Highlander%20(1986)
## 1234 http://us.imdb.com/M/title-exact?Butch%20Cassidy%20and%20the%20Sundance%20Kid%20(1969)
## 1235 http://us.imdb.com/M/title-exact?Free+Willy+3%3A+The+Rescue+(1997)
## 1236 http://us.imdb.com/M/title-exact?Shichinin%20no%20samurai%20(1954)
## 1237 http://us.imdb.com/M/title-exact?Lawrence%20of%20Arabia%20(1962)
## 1238 http://us.imdb.com/M/title-exact?Miller's%20Crossing%20(1990)
## 1239 http://us.imdb.com/M/title-exact?Die%20Hard:%20With%20a%20Vengeance%20(1995)
## 1240 http://us.imdb.com/M/title-exact?Clear%20and%20Present%20Danger%20(1994)
## 1241 http://us.imdb.com/M/title-exact?Speed%20(1994/I)
## 1242 http://us.imdb.com/M/title-exact?Glory%20(1989)
## 1243 http://us.imdb.com/M/title-exact?In%20the%20Line%20of%20Fire%20(1993)
## 1244 http://us.imdb.com/M/title-exact?Executive%20Decision%20(1996)
## 1245 http://us.imdb.com/M/title-exact?Perfect%20World,%20A%20(1993)
## 1246 http://us.imdb.com/M/title-exact?McHale's%20Navy%20(1997)
## 1247 http://us.imdb.com/M/title-exact?Leave+It+To+Beaver+(1997)
## 1248 http://us.imdb.com/M/title-exact?Jackal%2C+The+(1997)
## 1249 http://us.imdb.com/Title?Yao+a+yao+yao+dao+waipo+qiao+(1995)
## 1250 http://us.imdb.com/M/title-exact?Twelve%20Monkeys%20(1995)
## 1251 http://us.imdb.com/M/title-exact?Star%20Wars%20(1977)
## 1252 http://us.imdb.com/M/title-exact?Evil%20Dead%20II%20(1987)
## 1253 http://us.imdb.com/M/title-exact?Kolya%20(1996)
## 1254 http://us.imdb.com/M/title-exact?Leaving%20Las%20Vegas%20(1995)
## 1255 http://us.imdb.com/M/title-exact?English%20Patient,%20The%20(1996)
## 1256 http://us.imdb.com/Title?Liar+Liar+(1997)
## 1257 http://us.imdb.com/M/title-exact?Face/Off+(1997)
## 1258 http://us.imdb.com/M/title-exact?Boogie+Nights+(1997)
## 1259 http://us.imdb.com/M/title-exact?Bridges%20of%20Madison%20County,%20The%20(1995)
## 1260 http://us.imdb.com/M/title-exact?True%20Lies%20(1994)
## 1261 http://us.imdb.com/M/title-exact?Ghost%20(1990)
## 1262 http://us.imdb.com/M/title-exact?Vertigo%20(1958)
## 1263 http://us.imdb.com/M/title-exact?Casablanca%20(1942)
## 1264 http://us.imdb.com/M/title-exact?Roman%20Holiday%20(1953)
## 1265 http://us.imdb.com/M/title-exact?Streetcar%20Named%20Desire,%20A%20(1951)
## 1266 http://us.imdb.com/M/title-exact?Deer%20Hunter,%20The%20(1978)
## 1267 http://us.imdb.com/M/title-exact?Gandhi%20(1982)
## 1268 http://us.imdb.com/M/title-exact?39%20Steps,%20The%20(1935)
## 1269 http://us.imdb.com/M/title-exact?Seven+Years+in+Tibet+(1997)
## 1270 http://us.imdb.com/M/title-exact?imdb-title-118929
## 1271 http://us.imdb.com/M/title-exact?Toy%20Story%20(1995)
## 1272 http://us.imdb.com/M/title-exact?Get%20Shorty%20(1995)
## 1273 http://us.imdb.com/M/title-exact?Twelve%20Monkeys%20(1995)
## 1274 http://us.imdb.com/M/title-exact?Dead%20Man%20Walking%20(1995)
## 1275 http://us.imdb.com/M/title-exact?Se7en%20(1995)
## 1276 http://us.imdb.com/M/title-exact?Usual%20Suspects,%20The%20(1995)
## 1277 http://us.imdb.com/M/title-exact?Mighty%20Aphrodite%20(1995)
## 1278 http://us.imdb.com/M/title-exact?Gazon%20maudit%20(1995)
## 1279 http://us.imdb.com/M/title-exact?Braveheart%20(1995)
## 1280 http://us.imdb.com/M/title-exact?Taxi%20Driver%20(1976)
## 1281 http://us.imdb.com/M/title-exact?Crumb%20(1994)
## 1282 http://us.imdb.com/M/title-exact?Desperado%20(1995)
## 1283 http://us.imdb.com/M/title-exact?To%20Wong%20Foo,%20Thanks%20for%20Everything!%20Julie%20Newmar%20(1995)
## 1284 http://us.imdb.com/M/title-exact?Hoop%20Dreams%20(1994)
## 1285 http://us.imdb.com/M/title-exact?Star%20Wars%20(1977)
## 1286 http://us.imdb.com/M/title-exact?Pulp%20Fiction%20(1994)
## 1287 http://us.imdb.com/M/title-exact?Trzy%20kolory:%20Czerwony%20(1994)
## 1288 http://us.imdb.com/M/title-exact?Trzy%20kolory:%20Niebieski%20(1993)
## 1289 http://us.imdb.com/M/title-exact?Shawshank%20Redemption,%20The%20(1994)
## 1290 http://us.imdb.com/M/title-exact?Forrest%20Gump%20(1994)
## 1291 http://us.imdb.com/M/title-exact?Four%20Weddings%20and%20a%20Funeral%20(1994)
## 1292 http://us.imdb.com/M/title-exact?Jurassic%20Park%20(1993)
## 1293 http://us.imdb.com/M/title-exact?Ref,%20The%20(1994)
## 1294 http://us.imdb.com/Title?Welcome+to+the+Dollhouse+(1995)
## 1295 http://us.imdb.com/M/title-exact?Silence%20of%20the%20Lambs,%20The%20(1991)
## 1296 http://us.imdb.com/M/title-exact?Snow%20White%20and%20the%20Seven%20Dwarfs%20(1937)
## 1297 http://us.imdb.com/M/title-exact?Fargo%20(1996)
## 1298 http://us.imdb.com/M/title-exact?Cold%20Comfort%20Farm%20(1995)%20(TV)
## 1299 http://us.imdb.com/M/title-exact?Lone%20Star%20(1996)
## 1300 http://us.imdb.com/M/title-exact?Godfather,%20The%20(1972)
## 1301 http://us.imdb.com/M/title-exact?Bound%20(1996)
## 1302 http://us.imdb.com/M/title-exact?Wizard%20of%20Oz,%20The%20(1939)
## 1303 http://us.imdb.com/M/title-exact?Gone%20with%20the%20Wind%20(1939)
## 1304 http://us.imdb.com/M/title-exact?Citizen%20Kane%20(1941)
## 1305 http://us.imdb.com/M/title-exact?2001:%20A%20Space%20Odyssey%20(1968)
## 1306 http://us.imdb.com/M/title-exact?Big%20Night%20(1996)
## 1307 http://us.imdb.com/M/title-exact?Die%20Hard%20(1988)
## 1308 http://us.imdb.com/M/title-exact?Fish%20Called%20Wanda,%20A%20(1988)
## 1309 http://us.imdb.com/M/title-exact?Dirty%20Dancing%20(1987)
## 1310 http://us.imdb.com/M/title-exact?Reservoir%20Dogs%20(1992)
## 1311 http://us.imdb.com/M/title-exact?Platoon%20(1986)
## 1312 http://us.imdb.com/M/title-exact?Glengarry%20Glen%20Ross%20(1992)
## 1313 http://us.imdb.com/M/title-exact?Top%20Gun%20(1986)
## 1314 http://us.imdb.com/M/title-exact?On%20Golden%20Pond%20(1981)
## 1315 http://us.imdb.com/M/title-exact?Abyss,%20The%20(1989)
## 1316 http://us.imdb.com/M/title-exact?Monty%20Python%20and%20the%20Holy%20Grail%20(1974)
## 1317 http://us.imdb.com/M/title-exact?Nuovo%20cinema%20Paradiso%20(1988)
## 1318 http://us.imdb.com/M/title-exact?Raiders%20of%20the%20Lost%20Ark%20(1981)
## 1319 http://us.imdb.com/M/title-exact?Brazil%20(1985)
## 1320 http://us.imdb.com/M/title-exact?Aliens%20(1986)
## 1321 http://us.imdb.com/M/title-exact?12%20Angry%20Men%20(1957)
## 1322 http://us.imdb.com/M/title-exact?Clockwork%20Orange,%20A%20(1971)
## 1323 http://us.imdb.com/M/title-exact?Apocalypse%20Now%20(1979)
## 1324 http://us.imdb.com/M/title-exact?GoodFellas%20(1990)
## 1325 http://us.imdb.com/M/title-exact?Alien%20(1979)
## 1326 http://us.imdb.com/M/title-exact?Psycho%20(1960)
## 1327 http://us.imdb.com/M/title-exact?Blues%20Brothers,%20The%20(1980)
## 1328 http://us.imdb.com/M/title-exact?Amadeus%20(1984)
## 1329 http://us.imdb.com/M/title-exact?Raging%20Bull%20(1980)
## 1330 http://us.imdb.com/M/title-exact?Sting,%20The%20(1973)
## 1331 http://us.imdb.com/M/title-exact?Terminator,%20The%20(1984)
## 1332 http://us.imdb.com/M/title-exact?Graduate,%20The%20(1967)
## 1333 http://us.imdb.com/M/title-exact?Nikita%20(1990)
## 1334 http://us.imdb.com/M/title-exact?Bridge%20on%20the%20River%20Kwai,%20The%20(1957)
## 1335 http://us.imdb.com/M/title-exact?Shining,%20The%20(1980)
## 1336 http://us.imdb.com/M/title-exact?Unforgiven%20(1992)
## 1337 http://us.imdb.com/M/title-exact?Patton%20(1970)
## 1338 http://us.imdb.com/M/title-exact?MASH%20(1970)
## 1339 http://us.imdb.com/M/title-exact?When%20Harry%20Met%20Sally...%20(1989)
## 1340 http://us.imdb.com/M/title-exact?Cape%20Fear%20(1991)
## 1341 http://us.imdb.com/M/title-exact?Breaking%20the%20Waves%20(1996)
## 1342 http://us.imdb.com/M/title-exact?Sling%20Blade%20(1996)
## 1343 http://us.imdb.com/M/title-exact?Star%20Trek%20IV:%20The%20Voyage%20Home%20(1986)
## 1344 http://us.imdb.com/M/title-exact?Jaws%20(1975)
## 1345 http://us.imdb.com/M/title-exact?Raising%20Arizona%20(1987)
## 1346 http://us.imdb.com/M/title-exact?Devil%27s%20Own%2C%20The%20(1997)
## 1347 http://us.imdb.com/M/title-exact?Full+Monty%2C+The+(1997)
## 1348 http://us.imdb.com/M/title-exact?Heat%20(1995)
## 1349 http://us.imdb.com/M/title-exact?Sabrina%20(1995)
## 1350 http://us.imdb.com/M/title-exact?Sense%20and%20Sensibility%20(1995)
## 1351 http://us.imdb.com/M/title-exact?Leaving%20Las%20Vegas%20(1995)
## 1352 http://us.imdb.com/M/title-exact?Emma%20(1996)
## 1353 http://us.imdb.com/M/title-exact?Secrets%20&%20Lies%20(1996)
## 1354 http://us.imdb.com/M/title-exact?English%20Patient,%20The%20(1996)
## 1355 http://us.imdb.com/M/title-exact?Evita%20(1996)
## 1356 http://us.imdb.com/Title?Liar+Liar+(1997)
## 1357 http://us.imdb.com/M/title-exact?L%2EA%2E+Confidential+(1997)
## 1358 http://us.imdb.com/M/title-exact?Everyone%20Says%20I%20Love%20You%20(1996)
## 1359 http://us.imdb.com/M/title-exact?Mother%20(1996/I)
## 1360 http://us.imdb.com/M/title-exact?Game%2C+The+(1997)
## 1361 http://us.imdb.com/Title?U+Turn+(1997)
## 1362 http://us.imdb.com/M/title-exact?Boogie+Nights+(1997)
## 1363 http://us.imdb.com/M/title-exact?One%20Flew%20Over%20the%20Cuckoo's%20Nest%20(1975)
## 1364 http://us.imdb.com/M/title-exact?Clueless%20(1995)
## 1365 http://us.imdb.com/M/title-exact?Bridges%20of%20Madison%20County,%20The%20(1995)
## 1366 http://us.imdb.com/M/title-exact?True%20Lies%20(1994)
## 1367 http://us.imdb.com/M/title-exact?Pinocchio%20(1940)
## 1368 http://us.imdb.com/M/title-exact?My%20Favorite%20Year%20(1982)
## 1369 http://us.imdb.com/M/title-exact?Cinderella%20(1950)
## 1370 http://us.imdb.com/M/title-exact?Alice%20in%20Wonderland%20(1951)
## 1371 http://us.imdb.com/M/title-exact?Duck%20Soup%20(1933)
## 1372 http://us.imdb.com/M/title-exact?Fantasia%20(1940)
## 1373 http://us.imdb.com/M/title-exact?Butch%20Cassidy%20and%20the%20Sundance%20Kid%20(1969)
## 1374 http://us.imdb.com/M/title-exact?Carrie%20(1976)
## 1375 http://us.imdb.com/M/title-exact?Smoke%20(1995)
## 1376 http://us.imdb.com/M/title-exact?Como%20agua%20para%20chocolate%20(1992)
## 1377 http://us.imdb.com/M/title-exact?Secret%20of%20Roan%20Inish,%20The%20(1994)
## 1378 http://us.imdb.com/M/title-exact?Bronx%20Tale,%20A%20(1993)
## 1379 http://us.imdb.com/M/title-exact?Tombstone%20(1993)
## 1380 http://us.imdb.com/M/title-exact?Dr.%20Strangelove%20or:%20How%20I%20Learned%20to%20Stop%20Worrying%20and%20Love%20the%20Bomb%20(1963)
## 1381 http://us.imdb.com/Title?Trainspotting+(1996)
## 1382 http://us.imdb.com/M/title-exact?Philadelphia%20Story,%20The%20(1940)
## 1383 http://us.imdb.com/M/title-exact?Vertigo%20(1958)
## 1384 http://us.imdb.com/M/title-exact?North%20by%20Northwest%20(1959)
## 1385 http://us.imdb.com/M/title-exact?Some%20Like%20It%20Hot%20(1959)
## 1386 http://us.imdb.com/M/title-exact?Casablanca%20(1942)
## 1387 http://us.imdb.com/M/title-exact?Maltese%20Falcon,%20The%20(1941)
## 1388 http://us.imdb.com/M/title-exact?Sabrina%20(1954)
## 1389 http://us.imdb.com/M/title-exact?Sunset%20Boulevard%20(1950)
## 1390 http://us.imdb.com/M/title-exact?Notorious%20(1946)
## 1391 http://us.imdb.com/M/title-exact?Thin%20Man,%20The%20(1934)
## 1392 http://us.imdb.com/M/title-exact?Around%20the%20World%20in%2080%20Days%20(1956)
## 1393 http://us.imdb.com/M/title-exact?It's%20a%20Wonderful%20Life%20(1946)
## 1394 http://us.imdb.com/M/title-exact?Bringing%20Up%20Baby%20(1938)
## 1395 http://us.imdb.com/M/title-exact?African%20Queen,%20The%20(1951)
## 1396 http://us.imdb.com/M/title-exact?Cat%20on%20a%20Hot%20Tin%20Roof%20(1958)
## 1397 http://us.imdb.com/M/title-exact?Bananas%20(1971)
## 1398 http://us.imdb.com/M/title-exact?Bonnie%20and%20Clyde%20(1967)
## 1399 http://us.imdb.com/M/title-exact?Dial%20M%20for%20Murder%20(1954)
## 1400 http://us.imdb.com/M/title-exact?My%20Left%20Foot%20(1989)
## 1401 http://us.imdb.com/M/title-exact?Shichinin%20no%20samurai%20(1954)
## 1402 http://us.imdb.com/M/title-exact?Lawrence%20of%20Arabia%20(1962)
## 1403 http://us.imdb.com/M/title-exact?Third%20Man,%20The%20(1949)
## 1404 http://us.imdb.com/M/title-exact?Miller's%20Crossing%20(1990)
## 1405 http://us.imdb.com/M/title-exact?Treasure%20of%20the%20Sierra%20Madre,%20The%20(1948)
## 1406 http://us.imdb.com/M/title-exact?Deer%20Hunter,%20The%20(1978)
## 1407 http://us.imdb.com/M/title-exact?Big%20Sleep,%20The%20(1946)
## 1408 http://us.imdb.com/M/title-exact?Gandhi%20(1982)
## 1409 http://us.imdb.com/M/title-exact?Mitt%20liv%20som%20hund%20(1985)
## 1410 http://us.imdb.com/M/title-exact?Man%20Who%20Would%20Be%20King,%20The%20(1975)
## 1411 http://us.imdb.com/M/title-exact?Shine%20(1996)
## 1412 http://us.imdb.com/M/title-exact?Heavenly%20Creatures%20(1994)
## 1413 http://us.imdb.com/M/title-exact?Piano,%20The%20(1993)
## 1414 http://us.imdb.com/M/title-exact?Beauty%20and%20the%20Beast%20(1991)
## 1415 http://us.imdb.com/M/title-exact?Wild%20Bunch,%20The%20(1969)
## 1416 http://us.imdb.com/M/title-exact?American%20in%20Paris,%20An%20(1951)
## 1417 http://us.imdb.com/M/title-exact?Rear%20Window%20(1954)
## 1418 http://us.imdb.com/M/title-exact?It%20Happened%20One%20Night%20(1934)
## 1419 http://us.imdb.com/M/title-exact?All%20About%20Eve%20(1950)
## 1420 http://us.imdb.com/M/title-exact?Gigi%20(1958)
## 1421 http://us.imdb.com/M/title-exact?Laura%20(1944)
## 1422 http://us.imdb.com/M/title-exact?39%20Steps,%20The%20(1935)
## 1423 http://us.imdb.com/M/title-exact?Blaue%20Engel,%20Der%20(1930)
## 1424 http://us.imdb.com/M/title-exact?Victor/Victoria%20%281982%29
## 1425 http://us.imdb.com/M/title-exact?Glory%20(1989)
## 1426 http://us.imdb.com/M/title-exact?Rosencrantz%20and%20Guildenstern%20Are%20Dead%20(1990)
## 1427 http://us.imdb.com/M/title-exact?Chinatown%20(1974)
## 1428 http://us.imdb.com/M/title-exact?Stand%20by%20Me%20(1986)
## 1429 http://us.imdb.com/M/title-exact?M%20(1931)
## 1430 http://us.imdb.com/M/title-exact?Manchurian%20Candidate,%20The%20(1962)
## 1431 http://us.imdb.com/M/title-exact?Being%20There%20(1979)
## 1432 http://us.imdb.com/M/title-exact?Paris,%20Texas%20(1984)
## 1433 http://us.imdb.com/M/title-exact?Perfect%20World,%20A%20(1993)
## 1434 http://us.imdb.com/M/title-exact?American%20President,%20The%20(1995)
## 1435 http://us.imdb.com/M/title-exact?Casino%20(1995)
## 1436 http://us.imdb.com/Title?Persuasion+(1995/I)
## 1437 http://us.imdb.com/M/title-exact?Kicking%20and%20Screaming%20(1995)
## 1438 http://us.imdb.com/M/title-exact?City%20Hall%20(1996)
## 1439 http://us.imdb.com/M/title-exact?Basketball%20Diaries,%20The%20(1995)
## 1440 http://us.imdb.com/M/title-exact?Browning%20Version,%20The%20(1994)
## 1441 http://us.imdb.com/M/title-exact?Little%20Women%20(1994)
## 1442 http://us.imdb.com/M/title-exact?Miami%20Rhapsody%20(1995)
## 1443 http://us.imdb.com/M/title-exact?Macht%20der%20Bilder:%20Leni%20Riefenstahl,%20Die%20(1993)
## 1444 http://us.imdb.com/M/title-exact?Barcelona%20(1994)
## 1445 http://us.imdb.com/M/title-exact?Widows'%20Peak%20(1994)
## 1446 http://us.imdb.com/M/title-exact?House%20of%20the%20Spirits,%20The%20(1993)
## 1447 http://us.imdb.com/M/title-exact?Singin'%20in%20the%20Rain%20(1952)
## 1448 http://us.imdb.com/M/title-exact?Bad%20Moon%20(1996)
## 1449 http://us.imdb.com/M/title-exact?Enchanted%20April%20(1991)
## 1450 http://us.imdb.com/M/title-exact?sex,%20lies,%20and%20videotape%20(1989)
## 1451 http://us.imdb.com/M/title-exact?Strictly%20Ballroom%20(1992)
## 1452 http://us.imdb.com/Title?Better+Off+Dead...+(1985)
## 1453 http://us.imdb.com/M/title-exact?Substance%20of%20Fire,%20The%20(1996)
## 1454 http://us.imdb.com/M/title-exact?Tin%20Men%20(1987)
## 1455 http://us.imdb.com/M/title-exact?Babe%20(1995)
## 1456 http://us.imdb.com/M/title-exact?Dead%20Man%20Walking%20(1995)
## 1457 http://us.imdb.com/M/title-exact?Se7en%20(1995)
## 1458 http://us.imdb.com/M/title-exact?Usual%20Suspects,%20The%20(1995)
## 1459 http://us.imdb.com/M/title-exact?Mr.%20Holland's%20Opus%20(1995)
## 1460 http://us.imdb.com/M/title-exact?Braveheart%20(1995)
## 1461 http://us.imdb.com/M/title-exact?Hong%20Faan%20Kui%20(1995)
## 1462 http://us.imdb.com/M/title-exact?Birdcage,%20The%20(1996)
## 1463 http://us.imdb.com/M/title-exact?Apollo%2013%20(1995)
## 1464 http://us.imdb.com/M/title-exact?Batman%20Forever%20(1995)
## 1465 http://us.imdb.com/M/title-exact?Net,%20The%20(1995)
## 1466 http://us.imdb.com/M/title-exact?Strange%20Days%20(1995)
## 1467 http://us.imdb.com/M/title-exact?To%20Wong%20Foo,%20Thanks%20for%20Everything!%20Julie%20Newmar%20(1995)
## 1468 http://us.imdb.com/M/title-exact?Clerks%20(1994)
## 1469 http://us.imdb.com/M/title-exact?Ed%20Wood%20(1994)
## 1470 http://us.imdb.com/M/title-exact?Legends%20of%20the%20Fall%20(1994)
## 1471 http://us.imdb.com/M/title-exact?Madness%20of%20King%20George,%20The%20(1994)
## 1472 http://us.imdb.com/M/title-exact?Outbreak%20(1995)
## 1473 http://us.imdb.com/M/title-exact?Pulp%20Fiction%20(1994)
## 1474 http://us.imdb.com/M/title-exact?Priest%20(1994)
## 1475 http://us.imdb.com/M/title-exact?Quiz%20Show%20(1994)
## 1476 http://us.imdb.com/M/title-exact?Forrest%20Gump%20(1994)
## 1477 http://us.imdb.com/M/title-exact?Four%20Weddings%20and%20a%20Funeral%20(1994)
## 1478 http://us.imdb.com/M/title-exact?Fugitive,%20The%20(1993)
## 1479 http://us.imdb.com/M/title-exact?Much%20Ado%20About%20Nothing%20(1993)
## 1480 http://us.imdb.com/M/title-exact?Remains%20of%20the%20Day,%20The%20(1993)
## 1481 http://us.imdb.com/M/title-exact?Sleepless%20in%20Seattle%20(1993)
## 1482 http://us.imdb.com/M/title-exact?So%20I%20Married%20an%20Axe%20Murderer%20(1993)
## 1483 http://us.imdb.com/M/title-exact?Home%20Alone%20(1990)
## 1484 http://us.imdb.com/M/title-exact?Dances%20with%20Wolves%20(1990)
## 1485 http://us.imdb.com/M/title-exact?Silence%20of%20the%20Lambs,%20The%20(1991)
## 1486 http://us.imdb.com/M/title-exact?Fargo%20(1996)
## 1487 http://us.imdb.com/M/title-exact?Moll%20Flanders%20(1996)
## 1488 http://us.imdb.com/M/title-exact?Mystery%20Science%20Theater%203000:%20The%20Movie%20(1996)
## 1489 http://us.imdb.com/M/title-exact?Operation%20Dumbo%20Drop%20(1995)
## 1490 http://us.imdb.com/M/title-exact?Truth%20About%20Cats%20&%20Dogs,%20The%20(1996)
## 1491 http://us.imdb.com/M/title-exact?Striptease%20(1996)
## 1492 http://us.imdb.com/M/title-exact?Independence%20Day%20(1996)
## 1493 http://us.imdb.com/M/title-exact?Frighteners,%20The%20(1996)
## 1494 http://us.imdb.com/M/title-exact?Phenomenon%20(1996)
## 1495 http://us.imdb.com/M/title-exact?2001:%20A%20Space%20Odyssey%20(1968)
## 1496 http://us.imdb.com/M/title-exact?Monty%20Python%20and%20the%20Holy%20Grail%20(1974)
## 1497 http://us.imdb.com/M/title-exact?Princess%20Bride,%20The%20(1987)
## 1498 http://us.imdb.com/M/title-exact?Brazil%20(1985)
## 1499 http://us.imdb.com/M/title-exact?Aliens%20(1986)
## 1500 http://us.imdb.com/M/title-exact?Apocalypse%20Now%20(1979)
## 1501 http://us.imdb.com/M/title-exact?Psycho%20(1960)
## 1502 http://us.imdb.com/M/title-exact?Henry%20V%20(1989)
## 1503 http://us.imdb.com/M/title-exact?Amadeus%20(1984)
## 1504 http://us.imdb.com/M/title-exact?Sting,%20The%20(1973)
## 1505 http://us.imdb.com/M/title-exact?Dead%20Poets%20Society%20(1989)
## 1506 http://us.imdb.com/M/title-exact?Unforgiven%20(1992)
## 1507 http://us.imdb.com/M/title-exact?Back%20to%20the%20Future%20(1985)
## 1508 http://us.imdb.com/M/title-exact?Young%20Frankenstein%20(1974)
## 1509 http://us.imdb.com/M/title-exact?MASH%20(1970)
## 1510 http://us.imdb.com/M/title-exact?Room%20with%20a%20View,%20A%20(1986)
## 1511 http://us.imdb.com/M/title-exact?Field%20of%20Dreams%20(1989)
## 1512 http://us.imdb.com/M/title-exact?When%20Harry%20Met%20Sally...%20(1989)
## 1513 http://us.imdb.com/M/title-exact?Star%20Trek:%20First%20Contact%20(1996)
## 1514 http://us.imdb.com/M/title-exact?Star%20Trek%20VI:%20The%20Undiscovered%20Country%20(1991)
## 1515 http://us.imdb.com/M/title-exact?Star%20Trek:%20The%20Wrath%20of%20Khan%20(1982)
## 1516 http://us.imdb.com/M/title-exact?Star%20Trek%20III:%20The%20Search%20for%20Spock%20(1984)
## 1517 http://us.imdb.com/M/title-exact?Star%20Trek%20IV:%20The%20Voyage%20Home%20(1986)
## 1518 http://us.imdb.com/M/title-exact?Jerry%20Maguire%20(1996)
## 1519 http://us.imdb.com/M/title-exact?Raising%20Arizona%20(1987)
## 1520 http://us.imdb.com/M/title-exact?Sneakers%20(1992)
## 1521 http://us.imdb.com/M/title-exact?Last%20of%20the%20Mohicans,%20The%20(1992)
## 1522 http://us.imdb.com/Title?Contact+(1997/I)
## 1523 http://us.imdb.com/M/title-exact?George+of+the+Jungle+(1997)
## 1524 http://us.imdb.com/M/title-exact?Event+Horizon+(1997)
## 1525 http://us.imdb.com/M/title-exact?Sabrina%20(1995)
## 1526 http://us.imdb.com/M/title-exact?Restoration%20(1995)
## 1527 http://us.imdb.com/M/title-exact?English%20Patient,%20The%20(1996)
## 1528 http://us.imdb.com/M/title-exact?Fierce%20Creatures%20(1997)
## 1529 http://us.imdb.com/M/title-exact?Absolute%20Power%20(1997)
## 1530 http://us.imdb.com/M/title-exact?Air+Force+One+(1997)
## 1531 http://us.imdb.com/Title?In+%26+Out+(1997)
## 1532 http://us.imdb.com/M/title-exact?Midnight+in+the+Garden+of+Good+and+Evil+(1997)
## 1533 http://us.imdb.com/M/title-exact?In%20the%20Name%20of%20the%20Father%20(1993)
## 1534 http://us.imdb.com/M/title-exact?Schindler's%20List%20(1993)
## 1535 http://us.imdb.com/Title?Lost+Highway+(1997)
## 1536 http://us.imdb.com/M/title-exact?Kiss+the+Girls+(1997)
## 1537 http://us.imdb.com/Title?Fallen+(1998)
## 1538 http://us.imdb.com/M/title-exact?Client,%20The%20(1994)
## 1539 http://us.imdb.com/M/title-exact?One%20Flew%20Over%20the%20Cuckoo's%20Nest%20(1975)
## 1540 http://us.imdb.com/M/title-exact?Powder%20(1995)
## 1541 http://us.imdb.com/M/title-exact?Clueless%20(1995)
## 1542 http://us.imdb.com/M/title-exact?Mary%20Reilly%20(1996)
## 1543 http://us.imdb.com/M/title-exact?Jeffrey%20(1995)
## 1544 http://us.imdb.com/M/title-exact?Adventures%20of%20Priscilla,%20Queen%20of%20the%20Desert,%20The%20(1994)
## 1545 http://us.imdb.com/M/title-exact?Flintstones,%20The%20(1994)
## 1546 http://us.imdb.com/M/title-exact?Addams%20Family%20Values%20(1993)
## 1547 http://us.imdb.com/M/title-exact?Mrs.%20Doubtfire%20(1993)
## 1548 http://us.imdb.com/M/title-exact?Robin%20Hood:%20Men%20in%20Tights%20(1993)
## 1549 http://us.imdb.com/M/title-exact?Three%20Musketeers,%20The%20(1993)
## 1550 http://us.imdb.com/M/title-exact?Brady%20Bunch%20Movie,%20The%20(1995)
## 1551 http://us.imdb.com/M/title-exact?Ghost%20(1990)
## 1552 http://us.imdb.com/M/title-exact?Mission:%20Impossible%20(1996)
## 1553 http://us.imdb.com/M/title-exact?My%20Favorite%20Year%20(1982)
## 1554 http://us.imdb.com/M/title-exact?E%2ET%2E%20the%20Extra-Terrestrial%20%281982%29
## 1555 http://us.imdb.com/M/title-exact?Bob%20Roberts%20(1992)
## 1556 http://us.imdb.com/M/title-exact?To%20Kill%20a%20Mockingbird%20(1962)
## 1557 http://us.imdb.com/M/title-exact?Harold%20and%20Maude%20(1971)
## 1558 http://us.imdb.com/M/title-exact?Day%20the%20Earth%20Stood%20Still,%20The%20(1951)
## 1559 http://us.imdb.com/M/title-exact?Duck%20Soup%20(1933)
## 1560 http://us.imdb.com/M/title-exact?Highlander%20(1986)
## 1561 http://us.imdb.com/M/title-exact?Heathers%20(1989)
## 1562 http://us.imdb.com/M/title-exact?Forbidden%20Planet%20(1956)
## 1563 http://us.imdb.com/M/title-exact?Butch%20Cassidy%20and%20the%20Sundance%20Kid%20(1969)
## 1564 http://us.imdb.com/M/title-exact?Star%20Trek:%20The%20Motion%20Picture%20(1979)
## 1565 http://us.imdb.com/M/title-exact?Grease%20(1978)
## 1566 http://us.imdb.com/M/title-exact?Police%20Story%204:%20First%20Strike%20(1996)
## 1567 http://us.imdb.com/M/title-exact?Bonnie%20and%20Clyde%20(1967)
## 1568 http://us.imdb.com/M/title-exact?People%20vs.%20Larry%20Flynt,%20The%20(1996)
## 1569 http://us.imdb.com/M/title-exact?Manhattan%20(1979)
## 1570 http://us.imdb.com/M/title-exact?Deer%20Hunter,%20The%20(1978)
## 1571 http://us.imdb.com/M/title-exact?Great%20Dictator,%20The%20(1940)
## 1572 http://us.imdb.com/M/title-exact?Ben-Hur%20(1959)
## 1573 http://us.imdb.com/M/title-exact?Gandhi%20(1982)
## 1574 http://us.imdb.com/M/title-exact?Things%20to%20Do%20in%20Denver%20when%20You're%20Dead%20(1995)
## 1575 http://us.imdb.com/M/title-exact?Rob%20Roy%20(1995)
## 1576 http://us.imdb.com/M/title-exact?Heavenly%20Creatures%20(1994)
## 1577 http://us.imdb.com/M/title-exact?Mary%20Shelley's%20Frankenstein%20(1994)
## 1578 http://us.imdb.com/M/title-exact?Body%20Snatchers%20(1993)
## 1579 http://us.imdb.com/M/title-exact?Coneheads%20(1993)
## 1580 http://us.imdb.com/M/title-exact?Englishman%20Who%20Went%20Up%20a%20Hill,%20But%20Came%20Down%20a%20Mountain,%20The%20(1995)
## 1581 http://us.imdb.com/M/title-exact?Eraser%20(1996)
## 1582 http://us.imdb.com/M/title-exact?Rear%20Window%20(1954)
## 1583 http://us.imdb.com/M/title-exact?C'era%20una%20volta%20il%20west%20(1969)
## 1584 http://us.imdb.com/M/title-exact?Rosencrantz%20and%20Guildenstern%20Are%20Dead%20(1990)
## 1585 http://us.imdb.com/M/title-exact?Chinatown%20(1974)
## 1586 http://us.imdb.com/M/title-exact?Arsenic%20and%20Old%20Lace%20(1944)
## 1587 http://us.imdb.com/M/title-exact?Fried%20Green%20Tomatoes%20at%20the%20Whistle%20Stop%20Cafe%20(1991)
## 1588 http://us.imdb.com/M/title-exact?Somewhere%20in%20Time%20(1980)
## 1589 http://us.imdb.com/M/title-exact?Being%20There%20(1979)
## 1590 http://us.imdb.com/M/title-exact?Seven+Years+in+Tibet+(1997)
## 1591 http://us.imdb.com/M/title-exact?American%20President,%20The%20(1995)
## 1592 http://us.imdb.com/M/title-exact?Little%20Women%20(1994)
## 1593 http://us.imdb.com/M/title-exact?Enchanted%20April%20(1991)
## 1594 http://us.imdb.com/Title?Better+Off+Dead...+(1985)
## 1595 http://us.imdb.com/M/title-exact?Othello%20(1995)
## 1596 http://us.imdb.com/M/title-exact?Carrington%20(1995)
## 1597 http://us.imdb.com/M/title-exact?To%20Die%20For%20(1995)
## 1598 http://us.imdb.com/M/title-exact?Home%20for%20the%20Holidays%20(1995)
## 1599 http://us.imdb.com/M/title-exact?Juror,%20The%20(1996)
## 1600 http://us.imdb.com/M/title-exact?In%20the%20Bleak%20Midwinter%20(1995)
## 1601 http://us.imdb.com/M/title-exact?Canadian%20Bacon%20(1994)
## 1602 http://us.imdb.com/M/title-exact?First%20Knight%20(1995)
## 1603 http://us.imdb.com/M/title-exact?Mallrats%20(1995)
## 1604 http://us.imdb.com/M/title-exact?Nine%20Months%20(1995)
## 1605 http://us.imdb.com/M/title-exact?Boys%20on%20the%20Side%20(1995)
## 1606 http://us.imdb.com/M/title-exact?Circle%20of%20Friends%20(1995)
## 1607 http://us.imdb.com/M/title-exact?Exit%20to%20Eden%20(1994)
## 1608 http://us.imdb.com/M/title-exact?Fluke%20(1995)
## 1609 http://us.imdb.com/M/title-exact?Immortal%20Beloved%20(1994)
## 1610 http://us.imdb.com/M/title-exact?Junior%20(1994)
## 1611 http://us.imdb.com/M/title-exact?Nell%20(1994)
## 1612 http://us.imdb.com/Title?Reine+Margot,+La+(1994)
## 1613 http://us.imdb.com/M/title-exact?Corrina,%20Corrina%20(1994)
## 1614 http://us.imdb.com/M/title-exact?Dave%20(1993)
## 1615 http://us.imdb.com/M/title-exact?Go%20Fish%20(1994)
## 1616 http://us.imdb.com/M/title-exact?Made%20in%20America%20(1993)
## 1617 http://us.imdb.com/M/title-exact?Philadelphia%20(1993)
## 1618 http://us.imdb.com/M/title-exact?Shadowlands%20(1993)
## 1619 http://us.imdb.com/M/title-exact?Sirens%20(1994)
## 1620 http://us.imdb.com/M/title-exact?Threesome%20(1994)
## 1621 http://us.imdb.com/M/title-exact?Pretty%20Woman%20(1990)
## 1622 http://us.imdb.com/M/title-exact?Jane%20Eyre%20(1996)
## 1623 http://us.imdb.com/M/title-exact?Last%20Supper,%20The%20(1995)
## 1624 http://us.imdb.com/M/title-exact?Ransom%20(1996)
## 1625 http://us.imdb.com/M/title-exact?Crow%3A%20City%20of%20Angels%2C%20The%20%281996%29
## 1626 http://us.imdb.com/M/title-exact?Michael%20Collins%20(1996)
## 1627 http://us.imdb.com/M/title-exact?Ruling%20Class,%20The%20(1972)
## 1628 http://us.imdb.com/M/title-exact?Real%20Genius%20(1985)
## 1629 http://us.imdb.com/M/title-exact?Benny%20&%20Joon%20(1993)
## 1630 http://us.imdb.com/M/title-exact?Saint%2C%20The%20(1997)
## 1631 http://us.imdb.com/M/title-exact?Matchmaker%2C+The+(1997)
## 1632 http://us.imdb.com/M/title-exact?imdb-title-118607
## 1633 http://us.imdb.com/M/title-exact?imdb-title-120347
## 1634 http://us.imdb.com/M/title-exact?Replacement+Killers%2C+The+(1998)
## 1635 http://us.imdb.com/M/title-exact?Get%20Shorty%20(1995)
## 1636 http://us.imdb.com/M/title-exact?Mr.%20Holland's%20Opus%20(1995)
## 1637 http://us.imdb.com/M/title-exact?Apollo%2013%20(1995)
## 1638 http://us.imdb.com/M/title-exact?Star%20Wars%20(1977)
## 1639 http://us.imdb.com/M/title-exact?Forrest%20Gump%20(1994)
## 1640 http://us.imdb.com/M/title-exact?Lion%20King,%20The%20(1994)
## 1641 http://us.imdb.com/M/title-exact?Jurassic%20Park%20(1993)
## 1642 http://us.imdb.com/M/title-exact?Sleepless%20in%20Seattle%20(1993)
## 1643 http://us.imdb.com/M/title-exact?Terminator%202:%20Judgment%20Day%20(1991)
## 1644 http://us.imdb.com/M/title-exact?Dances%20with%20Wolves%20(1990)
## 1645 http://us.imdb.com/M/title-exact?Silence%20of%20the%20Lambs,%20The%20(1991)
## 1646 http://us.imdb.com/M/title-exact?Godfather,%20The%20(1972)
## 1647 http://us.imdb.com/M/title-exact?Wizard%20of%20Oz,%20The%20(1939)
## 1648 http://us.imdb.com/M/title-exact?Gone%20with%20the%20Wind%20(1939)
## 1649 http://us.imdb.com/M/title-exact?Sound%20of%20Music,%20The%20(1965)
## 1650 http://us.imdb.com/M/title-exact?Platoon%20(1986)
## 1651 http://us.imdb.com/M/title-exact?Basic%20Instinct%20(1992)
## 1652 http://us.imdb.com/M/title-exact?Top%20Gun%20(1986)
## 1653 http://us.imdb.com/M/title-exact?Monty%20Python%20and%20the%20Holy%20Grail%20(1974)
## 1654 http://us.imdb.com/M/title-exact?Nuovo%20cinema%20Paradiso%20(1988)
## 1655 http://us.imdb.com/M/title-exact?Empire%20Strikes%20Back,%20The%20(1980)
## 1656 http://us.imdb.com/M/title-exact?Raiders%20of%20the%20Lost%20Ark%20(1981)
## 1657 http://us.imdb.com/M/title-exact?Amadeus%20(1984)
## 1658 http://us.imdb.com/M/title-exact?Terminator,%20The%20(1984)
## 1659 http://us.imdb.com/M/title-exact?Dead%20Poets%20Society%20(1989)
## 1660 http://us.imdb.com/M/title-exact?Shining,%20The%20(1980)
## 1661 http://us.imdb.com/M/title-exact?Groundhog%20Day%20(1993)
## 1662 http://us.imdb.com/M/title-exact?Unforgiven%20(1992)
## 1663 http://us.imdb.com/M/title-exact?Back%20to%20the%20Future%20(1985)
## 1664 http://us.imdb.com/M/title-exact?Field%20of%20Dreams%20(1989)
## 1665 http://us.imdb.com/M/title-exact?When%20Harry%20Met%20Sally...%20(1989)
## 1666 http://us.imdb.com/M/title-exact?Star%20Trek:%20The%20Wrath%20of%20Khan%20(1982)
## 1667 http://us.imdb.com/M/title-exact?Raising%20Arizona%20(1987)
## 1668 http://us.imdb.com/M/title-exact?Kolya%20(1996)
## 1669 http://us.imdb.com/M/title-exact?Leaving%20Las%20Vegas%20(1995)
## 1670 http://us.imdb.com/M/title-exact?Time%20to%20Kill,%20A%20(1996)
## 1671 http://us.imdb.com/M/title-exact?Air+Force+One+(1997)
## 1672 http://us.imdb.com/M/title-exact?Schindler's%20List%20(1993)
## 1673 http://us.imdb.com/M/title-exact?Conspiracy+Theory+(1997)
## 1674 http://us.imdb.com/M/title-exact?Muriel's%20Wedding%20(1994)
## 1675 http://us.imdb.com/M/title-exact?Man%20Without%20a%20Face,%20The%20(1993)
## 1676 http://us.imdb.com/M/title-exact?Ghost%20(1990)
## 1677 http://us.imdb.com/M/title-exact?Old%20Yeller%20(1957)
## 1678 http://us.imdb.com/M/title-exact?Courage%20Under%20Fire%20(1996)
## 1679 http://us.imdb.com/M/title-exact?North%20by%20Northwest%20(1959)
## 1680 http://us.imdb.com/M/title-exact?Primal%20Fear%20(1996)
## 1681 http://us.imdb.com/M/title-exact?In%20the%20Line%20of%20Fire%20(1993)
## 1682 http://us.imdb.com/M/title-exact?sex,%20lies,%20and%20videotape%20(1989)
## 1683 http://us.imdb.com/M/title-exact?Philadelphia%20(1993)
## 1684 http://us.imdb.com/M/title-exact?Utomlyonnye%20Solntsem%20(1994)
## 1685 http://us.imdb.com/M/title-exact?Red+Corner+(1997)
## 1686 http://us.imdb.com/M/title-exact?Toy%20Story%20(1995)
## 1687 http://us.imdb.com/M/title-exact?GoldenEye%20(1995)
## 1688 http://us.imdb.com/M/title-exact?Get%20Shorty%20(1995)
## 1689 http://us.imdb.com/M/title-exact?Copycat%20(1995)
## 1690 http://us.imdb.com/M/title-exact?Twelve%20Monkeys%20(1995)
## 1691 http://us.imdb.com/M/title-exact?Babe%20(1995)
## 1692 http://us.imdb.com/M/title-exact?Dead%20Man%20Walking%20(1995)
## 1693 http://us.imdb.com/M/title-exact?Se7en%20(1995)
## 1694 http://us.imdb.com/M/title-exact?Usual%20Suspects,%20The%20(1995)
## 1695 http://us.imdb.com/M/title-exact?Mighty%20Aphrodite%20(1995)
## 1696 http://us.imdb.com/M/title-exact?Postino,%20Il%20(1994)
## 1697 http://us.imdb.com/M/title-exact?From%20Dusk%20Till%20Dawn%20(1996)
## 1698 http://us.imdb.com/M/title-exact?Muppet%20Treasure%20Island%20(1996)
## 1699 http://us.imdb.com/M/title-exact?Braveheart%20(1995)
## 1700 http://us.imdb.com/M/title-exact?Taxi%20Driver%20(1976)
## 1701 http://us.imdb.com/M/title-exact?Hong%20Faan%20Kui%20(1995)
## 1702 http://us.imdb.com/M/title-exact?Birdcage,%20The%20(1996)
## 1703 http://us.imdb.com/M/title-exact?Bad%20Boys%20(1995)
## 1704 http://us.imdb.com/M/title-exact?Apollo%2013%20(1995)
## 1705 http://us.imdb.com/M/title-exact?Batman%20Forever%20(1995)
## 1706 http://us.imdb.com/M/title-exact?Crumb%20(1994)
## 1707 http://us.imdb.com/M/title-exact?Desperado%20(1995)
## 1708 http://us.imdb.com/M/title-exact?Nadja%20(1994)
## 1709 http://us.imdb.com/M/title-exact?Net,%20The%20(1995)
## 1710 http://us.imdb.com/M/title-exact?Strange%20Days%20(1995)
## 1711 http://us.imdb.com/M/title-exact?To%20Wong%20Foo,%20Thanks%20for%20Everything!%20Julie%20Newmar%20(1995)
## 1712 http://us.imdb.com/M/title-exact?Clerks%20(1994)
## 1713 http://us.imdb.com/M/title-exact?Yinshi%20Nan%20Nu%20(1994)
## 1714 http://us.imdb.com/M/title-exact?Hoop%20Dreams%20(1994)
## 1715 http://us.imdb.com/M/title-exact?I.Q.%20(1994)
## 1716 http://us.imdb.com/M/title-exact?Star%20Wars%20(1977)
## 1717 http://us.imdb.com/M/title-exact?Legends%20of%20the%20Fall%20(1994)
## 1718 http://us.imdb.com/M/title-exact?Natural%20Born%20Killers%20(1994)
## 1719 http://us.imdb.com/M/title-exact?Pulp%20Fiction%20(1994)
## 1720 http://us.imdb.com/M/title-exact?Quiz%20Show%20(1994)
## 1721 http://us.imdb.com/M/title-exact?Trzy%20kolory:%20Czerwony%20(1994)
## 1722 http://us.imdb.com/M/title-exact?Trzy%20kolory:%20Niebieski%20(1993)
## 1723 http://us.imdb.com/M/title-exact?Trzy%20kolory:%20Bialy%20(1994)
## 1724 http://us.imdb.com/M/title-exact?Stargate%20(1994)
## 1725 http://us.imdb.com/M/title-exact?Shawshank%20Redemption,%20The%20(1994)
## 1726 http://us.imdb.com/M/title-exact?While%20You%20Were%20Sleeping%20(1995)
## 1727 http://us.imdb.com/M/title-exact?Ace%20Ventura:%20Pet%20Detective%20(1994)
## 1728 http://us.imdb.com/M/title-exact?Crow,%20The%20(1994)
## 1729 http://us.imdb.com/M/title-exact?Forrest%20Gump%20(1994)
## 1730 http://us.imdb.com/M/title-exact?Four%20Weddings%20and%20a%20Funeral%20(1994)
## 1731 http://us.imdb.com/M/title-exact?Lion%20King,%20The%20(1994)
## 1732 http://us.imdb.com/M/title-exact?Mask,%20The%20(1994)
## 1733 http://us.imdb.com/M/title-exact?Maverick%20(1994)
## 1734 http://us.imdb.com/M/title-exact?Free%20Willy%20(1993)
## 1735 http://us.imdb.com/M/title-exact?Fugitive,%20The%20(1993)
## 1736 http://us.imdb.com/M/title-exact?Jurassic%20Park%20(1993)
## 1737 http://us.imdb.com/M/title-exact?Much%20Ado%20About%20Nothing%20(1993)
## 1738 http://us.imdb.com/M/title-exact?Remains%20of%20the%20Day,%20The%20(1993)
## 1739 http://us.imdb.com/M/title-exact?Searching%20for%20Bobby%20Fischer%20(1993)
## 1740 http://us.imdb.com/M/title-exact?Sleepless%20in%20Seattle%20(1993)
## 1741 http://us.imdb.com/M/title-exact?Blade%20Runner%20(1982)
## 1742 http://us.imdb.com/M/title-exact?So%20I%20Married%20an%20Axe%20Murderer%20(1993)
## 1743 http://us.imdb.com/M/title-exact?Nightmare%20Before%20Christmas,%20The%20(1993)
## 1744 http://us.imdb.com/M/title-exact?True%20Romance%20(1993)
## 1745 http://us.imdb.com/M/title-exact?Home%20Alone%20(1990)
## 1746 http://us.imdb.com/M/title-exact?Aladdin%20(1992)
## 1747 http://us.imdb.com/M/title-exact?Terminator%202:%20Judgment%20Day%20(1991)
## 1748 http://us.imdb.com/M/title-exact?Dances%20with%20Wolves%20(1990)
## 1749 http://us.imdb.com/M/title-exact?Silence%20of%20the%20Lambs,%20The%20(1991)
## 1750 http://us.imdb.com/M/title-exact?Snow%20White%20and%20the%20Seven%20Dwarfs%20(1937)
## 1751 http://us.imdb.com/M/title-exact?Fargo%20(1996)
## 1752 http://us.imdb.com/M/title-exact?Mystery%20Science%20Theater%203000:%20The%20Movie%20(1996)
## 1753 http://us.imdb.com/M/title-exact?Operation%20Dumbo%20Drop%20(1995)
## 1754 http://us.imdb.com/M/title-exact?Truth%20About%20Cats%20&%20Dogs,%20The%20(1996)
## 1755 http://us.imdb.com/M/title-exact?Cold%20Comfort%20Farm%20(1995)%20(TV)
## 1756 http://us.imdb.com/M/title-exact?Rock,%20The%20(1996)
## 1757 http://us.imdb.com/M/title-exact?Twister%20(1996)
## 1758 http://us.imdb.com/M/title-exact?Independence%20Day%20(1996)
## 1759 http://us.imdb.com/M/title-exact?Lone%20Star%20(1996)
## 1760 http://us.imdb.com/M/title-exact?Godfather,%20The%20(1972)
## 1761 http://us.imdb.com/M/title-exact?Police%20Story%20III:%20Supercop%20(1992)
## 1762 http://us.imdb.com/M/title-exact?Wizard%20of%20Oz,%20The%20(1939)
## 1763 http://us.imdb.com/M/title-exact?2001:%20A%20Space%20Odyssey%20(1968)
## 1764 http://us.imdb.com/M/title-exact?Big%20Night%20(1996)
## 1765 http://us.imdb.com/M/title-exact?D3:%20The%20Mighty%20Ducks%20(1996)
## 1766 http://us.imdb.com/M/title-exact?20,000%20Leagues%20Under%20the%20Sea%20(1954)
## 1767 http://us.imdb.com/M/title-exact?Sound%20of%20Music,%20The%20(1965)
## 1768 http://us.imdb.com/M/title-exact?Die%20Hard%20(1988)
## 1769 http://us.imdb.com/M/title-exact?Lawnmower%20Man,%20The%20(1992)
## 1770 http://us.imdb.com/M/title-exact?Long%20Kiss%20Goodnight,%20The%20(1996)
## 1771 http://us.imdb.com/M/title-exact?Swingers%20(1996)
## 1772 http://us.imdb.com/M/title-exact?Sleeper%20(1973)
## 1773 http://us.imdb.com/M/title-exact?Fish%20Called%20Wanda,%20A%20(1988)
## 1774 http://us.imdb.com/M/title-exact?Life%20of%20Brian%20(1979)
## 1775 http://us.imdb.com/M/title-exact?Dirty%20Dancing%20(1987)
## 1776 http://us.imdb.com/M/title-exact?Platoon%20(1986)
## 1777 http://us.imdb.com/M/title-exact?Weekend%20at%20Bernie's%20(1989)
## 1778 http://us.imdb.com/M/title-exact?Glengarry%20Glen%20Ross%20(1992)
## 1779 http://us.imdb.com/M/title-exact?Top%20Gun%20(1986)
## 1780 http://us.imdb.com/M/title-exact?Return%20of%20the%20Pink%20Panther,%20The%20(1974)
## 1781 http://us.imdb.com/M/title-exact?Abyss,%20The%20(1989)
## 1782 http://us.imdb.com/M/title-exact?Jean%20de%20Florette%20(1986)
## 1783 http://us.imdb.com/M/title-exact?Manon%20des%20sources%20(1986)
## 1784 http://us.imdb.com/M/title-exact?Private%20Benjamin%20(1980)
## 1785 http://us.imdb.com/M/title-exact?Monty%20Python%20and%20the%20Holy%20Grail%20(1974)
## 1786 http://us.imdb.com/M/title-exact?Nuovo%20cinema%20Paradiso%20(1988)
## 1787 http://us.imdb.com/M/title-exact?Empire%20Strikes%20Back,%20The%20(1980)
## 1788 http://us.imdb.com/M/title-exact?Princess%20Bride,%20The%20(1987)
## 1789 http://us.imdb.com/M/title-exact?Raiders%20of%20the%20Lost%20Ark%20(1981)
## 1790 http://us.imdb.com/M/title-exact?Brazil%20(1985)
## 1791 http://us.imdb.com/M/title-exact?Aliens%20(1986)
## 1792 http://us.imdb.com/M/title-exact?Buono,%20il%20brutto,%20il%20cattivo,%20Il%20(1966)
## 1793 http://us.imdb.com/M/title-exact?12%20Angry%20Men%20(1957)
## 1794 http://us.imdb.com/M/title-exact?Clockwork%20Orange,%20A%20(1971)
## 1795 http://us.imdb.com/M/title-exact?Apocalypse%20Now%20(1979)
## 1796 http://us.imdb.com/M/title-exact?Return%20of%20the%20Jedi%20(1983)
## 1797 http://us.imdb.com/M/title-exact?GoodFellas%20(1990)
## 1798 http://us.imdb.com/M/title-exact?Alien%20(1979)
## 1799 http://us.imdb.com/M/title-exact?Army%20of%20Darkness%20(1993)
## 1800 http://us.imdb.com/M/title-exact?Psycho%20(1960)
## 1801 http://us.imdb.com/M/title-exact?Blues%20Brothers,%20The%20(1980)
## 1802 http://us.imdb.com/M/title-exact?Godfather:%20Part%20II,%20The%20(1974)
## 1803 http://us.imdb.com/M/title-exact?Full%20Metal%20Jacket%20(1987)
## 1804 http://us.imdb.com/M/title-exact?Henry%20V%20(1989)
## 1805 http://us.imdb.com/M/title-exact?Amadeus%20(1984)
## 1806 http://us.imdb.com/M/title-exact?Right%20Stuff,%20The%20(1983)
## 1807 http://us.imdb.com/M/title-exact?Sting,%20The%20(1973)
## 1808 http://us.imdb.com/M/title-exact?Terminator,%20The%20(1984)
## 1809 http://us.imdb.com/M/title-exact?Dead%20Poets%20Society%20(1989)
## 1810 http://us.imdb.com/M/title-exact?Graduate,%20The%20(1967)
## 1811 http://us.imdb.com/M/title-exact?Nikita%20(1990)
## 1812 http://us.imdb.com/M/title-exact?Bridge%20on%20the%20River%20Kwai,%20The%20(1957)
## 1813 http://us.imdb.com/M/title-exact?Shining,%20The%20(1980)
## 1814 http://us.imdb.com/M/title-exact?Evil%20Dead%20II%20(1987)
## 1815 http://us.imdb.com/M/title-exact?Groundhog%20Day%20(1993)
## 1816 http://us.imdb.com/M/title-exact?Back%20to%20the%20Future%20(1985)
## 1817 http://us.imdb.com/M/title-exact?Patton%20(1970)
## 1818 http://us.imdb.com/M/title-exact?Young%20Frankenstein%20(1974)
## 1819 http://us.imdb.com/M/title-exact?This%20Is%20Spinal%20Tap%20(1984)
## 1820 http://us.imdb.com/M/title-exact?Indiana%20Jones%20and%20the%20Last%20Crusade%20(1989)
## 1821 http://us.imdb.com/M/title-exact?MASH%20(1970)
## 1822 http://us.imdb.com/M/title-exact?Unbearable%20Lightness%20of%20Being,%20The%20(1988)
## 1823 http://us.imdb.com/M/title-exact?Field%20of%20Dreams%20(1989)
## 1824 http://us.imdb.com/M/title-exact?When%20Harry%20Met%20Sally...%20(1989)
## 1825 http://us.imdb.com/M/title-exact?Bram%20Stoker's%20Dracula%20(1992)
## 1826 http://us.imdb.com/M/title-exact?Cape%20Fear%20(1991)
## 1827 http://us.imdb.com/M/title-exact?Nightmare%20on%20Elm%20Street,%20A%20(1984)
## 1828 http://us.imdb.com/M/title-exact?Star%20Trek:%20First%20Contact%20(1996)
## 1829 http://us.imdb.com/M/title-exact?Sling%20Blade%20(1996)
## 1830 http://us.imdb.com/M/title-exact?Ridicule%20(1996)
## 1831 http://us.imdb.com/M/title-exact?101%20Dalmatians%20(1996)
## 1832 http://us.imdb.com/M/title-exact?Die%20Hard%202%20(1990)
## 1833 http://us.imdb.com/M/title-exact?Star%20Trek%20VI:%20The%20Undiscovered%20Country%20(1991)
## 1834 http://us.imdb.com/M/title-exact?Star%20Trek:%20The%20Wrath%20of%20Khan%20(1982)
## 1835 http://us.imdb.com/M/title-exact?Star%20Trek%20III:%20The%20Search%20for%20Spock%20(1984)
## 1836 http://us.imdb.com/M/title-exact?Star%20Trek%20IV:%20The%20Voyage%20Home%20(1986)
## 1837 http://us.imdb.com/M/title-exact?Batman%20Returns%20(1992)
## 1838 http://us.imdb.com/M/title-exact?Young%20Guns%20(1988)
## 1839 http://us.imdb.com/M/title-exact?Under%20Siege%20(1992)
## 1840 http://us.imdb.com/M/title-exact?Jaws%20(1975)
## 1841 http://us.imdb.com/M/title-exact?Mars%20Attacks!%20(1996)
## 1842 http://us.imdb.com/M/title-exact?Jerry%20Maguire%20(1996)
## 1843 http://us.imdb.com/M/title-exact?Raising%20Arizona%20(1987)
## 1844 http://us.imdb.com/M/title-exact?Sneakers%20(1992)
## 1845 http://us.imdb.com/M/title-exact?Last%20of%20the%20Mohicans,%20The%20(1992)
## 1846 http://us.imdb.com/M/title-exact?Kolya%20(1996)
## 1847 http://us.imdb.com/M/title-exact?Jungle2Jungle%20(1997)
## 1848 http://us.imdb.com/Title?Contact+(1997/I)
## 1849 http://us.imdb.com/M/title-exact?Event+Horizon+(1997)
## 1850 http://us.imdb.com/M/title-exact?Air+Bud+(1997)
## 1851 http://us.imdb.com/M/title-exact?In+the+Company+of+Men+(1997)
## 1852 http://us.imdb.com/M/title-exact?Steel+(1997)
## 1853 http://us.imdb.com/M/title-exact?Mimic+(1997)
## 1854 http://us.imdb.com/M/title-exact?Hunt+for+Red+October%2C+The+(1990)
## 1855 http://us.imdb.com/M/title-exact?Full+Monty%2C+The+(1997)
## 1856 http://us.imdb.com/M/title-exact?Gattaca+(1997)
## 1857 http://us.imdb.com/M/title-exact?Starship+Troopers+(1997)
## 1858 http://us.imdb.com/M/title-exact?imdb-title-119217
## 1859 http://us.imdb.com/M/title-exact?Heat%20(1995)
## 1860 http://us.imdb.com/M/title-exact?Sabrina%20(1995)
## 1861 http://us.imdb.com/M/title-exact?Sense%20and%20Sensibility%20(1995)
## 1862 http://us.imdb.com/M/title-exact?Leaving%20Las%20Vegas%20(1995)
## 1863 http://us.imdb.com/M/title-exact?Once%20Upon%20a%20Time... When%20We%20Were%20Colored%20(1995)
## 1864 http://us.imdb.com/M/title-exact?Up%20Close%20and%20Personal%20(1996)
## 1865 http://us.imdb.com/M/title-exact?River%20Wild,%20The%20(1994)
## 1866 http://us.imdb.com/M/title-exact?Secrets%20&%20Lies%20(1996)
## 1867 http://us.imdb.com/M/title-exact?English%20Patient,%20The%20(1996)
## 1868 http://us.imdb.com/M/title-exact?Marvin's%20Room%20(1996)
## 1869 http://us.imdb.com/M/title-exact?Scream%20(1996)
## 1870 http://us.imdb.com/M/title-exact?Evita%20(1996)
## 1871 http://us.imdb.com/M/title-exact?Fierce%20Creatures%20(1997)
## 1872 http://us.imdb.com/M/title-exact?Rosewood%20(1997)
## 1873 http://us.imdb.com/Title?Liar+Liar+(1997)
## 1874 http://us.imdb.com/M/title-exact?Hoodlum+(1997)
## 1875 http://us.imdb.com/M/title-exact?Air+Force+One+(1997)
## 1876 http://us.imdb.com/Title?In+%26+Out+(1997)
## 1877 http://us.imdb.com/M/title-exact?L%2EA%2E+Confidential+(1997)
## 1878 http://us.imdb.com/M/title-exact?Ice+Storm%2C+The+(1997)
## 1879 http://us.imdb.com/M/title-exact?Her+Majesty%2C+Mrs%2E+Brown+(1997)
## 1880 http://us.imdb.com/M/title-exact?Devil's+Advocate,+The+(1997)
## 1881 http://us.imdb.com/M/title-exact?Fairytale:+A+True+Story+(1997)
## 1882 http://us.imdb.com/M/title-exact?Rainmaker,+The+(1997)
## 1883 http://us.imdb.com/M/title-exact?Wings+of+the+Dove%2C+The+(1997)
## 1884 http://us.imdb.com/M/title-exact?Midnight+in+the+Garden+of+Good+and+Evil+(1997)
## 1885 http://us.imdb.com/M/title-exact?imdb-title-120338
## 1886 http://us.imdb.com/M/title-exact?imdb-title-118539
## 1887 http://us.imdb.com/Title?Apt+Pupil+(1998)
## 1888 http://us.imdb.com/Title?As+Good+As+It+Gets+(1997)
## 1889 http://us.imdb.com/M/title-exact?In%20the%20Name%20of%20the%20Father%20(1993)
## 1890 http://us.imdb.com/M/title-exact?Schindler's%20List%20(1993)
## 1891 http://us.imdb.com/M/title-exact?Everyone%20Says%20I%20Love%20You%20(1996)
## 1892 http://us.imdb.com/M/title-exact?Paradise%20Lost%3a%20The%20Child%20Murders%20at%20Robin%20Hood%20Hills%20(1996)
## 1893 http://us.imdb.com/M/title-exact?Mother%20(1996/I)
## 1894 http://us.imdb.com/M/title-exact?Murder%20at%201600%20(1997)
## 1895 http://us.imdb.com/M/title-exact?Dante's%20Peak%20(1997)
## 1896 http://us.imdb.com/M/title-exact?G%2EI%2E+Jane+(1997)
## 1897 http://us.imdb.com/M/title-exact?Cop+Land+(1997)
## 1898 http://us.imdb.com/M/title-exact?Conspiracy+Theory+(1997)
## 1899 http://us.imdb.com/Title?Desperate+Measures+(1998)
## 1900 http://us.imdb.com/M/title-exact?Edge%2C+The+(1997/I)
## 1901 http://us.imdb.com/M/title-exact?Kiss+the+Girls+(1997)
## 1902 http://us.imdb.com/M/title-exact?Game%2C+The+(1997)
## 1903 http://us.imdb.com/Title?U+Turn+(1997)
## 1904 http://us.imdb.com/M/title-exact?Playing+God+(1997)
## 1905 http://us.imdb.com/M/title-exact?Bean+(1997)
## 1906 http://us.imdb.com/M/title-exact?Mad+City+(1997)
## 1907 http://us.imdb.com/M/title-exact?Boogie+Nights+(1997)
## 1908 http://us.imdb.com/M/title-exact?Critical+Care+(1997)
## 1909 http://us.imdb.com/M/title-exact?Man+Who+Knew+Too+Little%2C+The+(1997)
## 1910 http://us.imdb.com/M/title-exact?Alien%3A+Resurrection+(1997)
## 1911 http://us.imdb.com/M/title-exact?imdb-title-118632
## 1912 http://us.imdb.com/M/title-exact?imdb-title-118954
## 1913 http://us.imdb.com/M/title-exact?imdb-title-119396
## 1914 http://us.imdb.com/M/title-exact?imdb-title-120885
## 1915 http://us.imdb.com/M/title-exact?imdb-title-120696
## 1916 http://us.imdb.com/Title?Fallen+(1998)
## 1917 http://us.imdb.com/M/title-exact?imdb-title-119959
## 1918 http://us.imdb.com/M/title-exact?imdb-title-118956
## 1919 http://us.imdb.com/M/title-exact?Wedding+Singer%2C+The+(1998)
## 1920 http://us.imdb.com/M/title-exact?Sphere+(1998)
## 1921 http://us.imdb.com/M/title-exact?One%20Flew%20Over%20the%20Cuckoo's%20Nest%20(1975)
## 1922 http://us.imdb.com/M/title-exact?Spawn+(1997/I)
## 1923 http://us.imdb.com/M/title-exact?Wonderland+(1997)
## 1924 http://us.imdb.com/M/title-exact?Blues+Brothers+2000+(1998)
## 1925 http://us.imdb.com/M/title-exact?Sudden%20Death%20(1995)
## 1926 http://us.imdb.com/M/title-exact?Clueless%20(1995)
## 1927 http://us.imdb.com/M/title-exact?Mary%20Reilly%20(1996)
## 1928 http://us.imdb.com/M/title-exact?Bridges%20of%20Madison%20County,%20The%20(1995)
## 1929 http://us.imdb.com/M/title-exact?Heavyweights%20(1994)
## 1930 http://us.imdb.com/M/title-exact?Tales%20From%20the%20Crypt%20Presents:%20Demon%20Knight%20(1995)
## 1931 http://us.imdb.com/M/title-exact?Adventures%20of%20Priscilla,%20Queen%20of%20the%20Desert,%20The%20(1994)
## 1932 http://us.imdb.com/M/title-exact?Naked%20Gun%2033%201/3:%20The%20Final%20Insult%20(1994)
## 1933 http://us.imdb.com/M/title-exact?True%20Lies%20(1994)
## 1934 http://us.imdb.com/M/title-exact?Age%20of%20Innocence,%20The%20(1993)
## 1935 http://us.imdb.com/M/title-exact?Last%20Action%20Hero%20(1993)
## 1936 http://us.imdb.com/M/title-exact?Mrs.%20Doubtfire%20(1993)
## 1937 http://us.imdb.com/M/title-exact?Radioland%20Murders%20(1994)
## 1938 http://us.imdb.com/M/title-exact?Serial%20Mom%20(1994)
## 1939 http://us.imdb.com/M/title-exact?Super%20Mario%20Bros.%20(1993)
## 1940 http://us.imdb.com/M/title-exact?Little%20Rascals,%20The%20(1994)
## 1941 http://us.imdb.com/M/title-exact?Brady%20Bunch%20Movie,%20The%20(1995)
## 1942 http://us.imdb.com/M/title-exact?Ghost%20(1990)
## 1943 http://us.imdb.com/M/title-exact?Batman%20(1989)
## 1944 http://us.imdb.com/M/title-exact?Pinocchio%20(1940)
## 1945 http://us.imdb.com/M/title-exact?Mission:%20Impossible%20(1996)
## 1946 http://us.imdb.com/M/title-exact?Thinner%20(1996)
## 1947 http://us.imdb.com/M/title-exact?Jack%20(1996)
## 1948 http://us.imdb.com/M/title-exact?Kingpin%20(1996)
## 1949 http://us.imdb.com/M/title-exact?Nutty%20Professor,%20The%20(1996)
## 1950 http://us.imdb.com/M/title-exact?Tales%20from%20the%20Crypt%20Presents:%20Bordello%20of%20Blood%20(1996)
## 1951 http://us.imdb.com/M/title-exact?My%20Favorite%20Year%20(1982)
## 1952 http://us.imdb.com/M/title-exact?Old%20Yeller%20(1957)
## 1953 http://us.imdb.com/M/title-exact?Parent%20Trap,%20The%20(1961)
## 1954 http://us.imdb.com/M/title-exact?Cinderella%20(1950)
## 1955 http://us.imdb.com/M/title-exact?Mary%20Poppins%20(1964)
## 1956 http://us.imdb.com/M/title-exact?Alice%20in%20Wonderland%20(1951)
## 1957 http://us.imdb.com/Title?Romeo+%2B+Juliet+(1996)
## 1958 http://us.imdb.com/M/title-exact?E%2ET%2E%20the%20Extra-Terrestrial%20%281982%29
## 1959 http://us.imdb.com/M/title-exact?Children%20of%20the%20Corn%3A%20The%20Gathering%20%281996%29
## 1960 http://us.imdb.com/M/title-exact?To%20Kill%20a%20Mockingbird%20(1962)
## 1961 http://us.imdb.com/M/title-exact?Harold%20and%20Maude%20(1971)
## 1962 http://us.imdb.com/M/title-exact?Day%20the%20Earth%20Stood%20Still,%20The%20(1951)
## 1963 http://us.imdb.com/M/title-exact?Duck%20Soup%20(1933)
## 1964 http://us.imdb.com/M/title-exact?Highlander%20(1986)
## 1965 http://us.imdb.com/M/title-exact?Fantasia%20(1940)
## 1966 http://us.imdb.com/M/title-exact?Heathers%20(1989)
## 1967 http://us.imdb.com/M/title-exact?Butch%20Cassidy%20and%20the%20Sundance%20Kid%20(1969)
## 1968 http://us.imdb.com/M/title-exact?American%20Werewolf%20in%20London,%20An%20(1981)
## 1969 http://us.imdb.com/M/title-exact?Amityville%201992:%20It's%20About%20Time%20(1992)
## 1970 http://us.imdb.com/M/title-exact?Amityville%203-D%20(1983)
## 1971 http://us.imdb.com/M/title-exact?Amityville:%20A%20New%20Generation%20(1993)
## 1972 http://us.imdb.com/M/title-exact?Amityville%20II:%20The%20Possession%20(1982)
## 1973 http://us.imdb.com/M/title-exact?Amityville%20Horror,%20The%20(1979)
## 1974 http://us.imdb.com/M/title-exact?Amityville%20Curse,%20The%20(1990)
## 1975 http://us.imdb.com/M/title-exact?Birds,%20The%20(1963)
## 1976 http://us.imdb.com/M/title-exact?Blob,%20The%20(1958)
## 1977 http://us.imdb.com/M/title-exact?Body%20Snatcher,%20The%20(1945)
## 1978 http://us.imdb.com/M/title-exact?Burnt%20Offerings%20(1976)
## 1979 http://us.imdb.com/M/title-exact?Carrie%20(1976)
## 1980 http://us.imdb.com/M/title-exact?Omen,%20The%20(1976)
## 1981 http://us.imdb.com/M/title-exact?Star%20Trek:%20The%20Motion%20Picture%20(1979)
## 1982 http://us.imdb.com/M/title-exact?Star%20Trek%20V:%20The%20Final%20Frontier%20(1989)
## 1983 http://us.imdb.com/M/title-exact?Grease%20(1978)
## 1984 http://us.imdb.com/M/title-exact?Jaws%202%20(1978)
## 1985 http://us.imdb.com/M/title-exact?Jaws%203-D%20(1983)
## 1986 http://us.imdb.com/M/title-exact?Police%20Story%204:%20First%20Strike%20(1996)
## 1987 http://us.imdb.com/M/title-exact?Free+Willy+3%3A+The+Rescue+(1997)
## 1988 http://us.imdb.com/M/title-exact?Como%20agua%20para%20chocolate%20(1992)
## 1989 http://us.imdb.com/M/title-exact?Secret%20of%20Roan%20Inish,%20The%20(1994)
## 1990 http://us.imdb.com/M/title-exact?Bronx%20Tale,%20A%20(1993)
## 1991 http://us.imdb.com/M/title-exact?Courage%20Under%20Fire%20(1996)
## 1992 http://us.imdb.com/M/title-exact?Dragonheart%20(1996)
## 1993 http://us.imdb.com/M/title-exact?James%20and%20the%20Giant%20Peach%20(1996)
## 1994 http://us.imdb.com/M/title-exact?Dr.%20Strangelove%20or:%20How%20I%20Learned%20to%20Stop%20Worrying%20and%20Love%20the%20Bomb%20(1963)
## 1995 http://us.imdb.com/Title?Trainspotting+(1996)
## 1996 http://us.imdb.com/M/title-exact?First%20Wives%20Club,%20The%20(1996)
## 1997 http://us.imdb.com/M/title-exact?Matilda%20(1996)
## 1998 http://us.imdb.com/M/title-exact?Philadelphia%20Story,%20The%20(1940)
## 1999 http://us.imdb.com/M/title-exact?North%20by%20Northwest%20(1959)
## 2000 http://us.imdb.com/M/title-exact?Apartment,%20The%20(1960)
## 2001 http://us.imdb.com/M/title-exact?Some%20Like%20It%20Hot%20(1959)
## 2002 http://us.imdb.com/M/title-exact?Casablanca%20(1942)
## 2003 http://us.imdb.com/M/title-exact?Maltese%20Falcon,%20The%20(1941)
## 2004 http://us.imdb.com/M/title-exact?My%20Fair%20Lady%20(1964)
## 2005 http://us.imdb.com/M/title-exact?Sunset%20Boulevard%20(1950)
## 2006 http://us.imdb.com/M/title-exact?Adventures%20of%20Robin%20Hood,%20The%20(1938)
## 2007 http://us.imdb.com/M/title-exact?East%20of%20Eden%20(1955)
## 2008 http://us.imdb.com/M/title-exact?Thin%20Man,%20The%20(1934)
## 2009 http://us.imdb.com/M/title-exact?His%20Girl%20Friday%20(1940)
## 2010 http://us.imdb.com/M/title-exact?Bringing%20Up%20Baby%20(1938)
## 2011 http://us.imdb.com/M/title-exact?African%20Queen,%20The%20(1951)
## 2012 http://us.imdb.com/M/title-exact?Dumbo%20(1941)
## 2013 http://us.imdb.com/M/title-exact?Bananas%20(1971)
## 2014 http://us.imdb.com/M/title-exact?Bonnie%20and%20Clyde%20(1967)
## 2015 http://us.imdb.com/M/title-exact?Dial%20M%20for%20Murder%20(1954)
## 2016 http://us.imdb.com/M/title-exact?Rebel%20Without%20a%20Cause%20(1955)
## 2017 http://us.imdb.com/M/title-exact?Streetcar%20Named%20Desire,%20A%20(1951)
## 2018 http://us.imdb.com/M/title-exact?People%20vs.%20Larry%20Flynt,%20The%20(1996)
## 2019 http://us.imdb.com/M/title-exact?My%20Left%20Foot%20(1989)
## 2020 http://us.imdb.com/M/title-exact?Shichinin%20no%20samurai%20(1954)
## 2021 http://us.imdb.com/M/title-exact?Lawrence%20of%20Arabia%20(1962)
## 2022 http://us.imdb.com/M/title-exact?Annie%20Hall%20(1977)
## 2023 http://us.imdb.com/M/title-exact?Boot,%20Das%20(1981)
## 2024 http://us.imdb.com/M/title-exact?Local%20Hero%20(1983)
## 2025 http://us.imdb.com/M/title-exact?Manhattan%20(1979)
## 2026 http://us.imdb.com/M/title-exact?Miller's%20Crossing%20(1990)
## 2027 http://us.imdb.com/M/title-exact?Treasure%20of%20the%20Sierra%20Madre,%20The%20(1948)
## 2028 http://us.imdb.com/M/title-exact?Great%20Escape,%20The%20(1963)
## 2029 http://us.imdb.com/M/title-exact?Down%20by%20Law%20(1986)
## 2030 http://us.imdb.com/M/title-exact?Cool%20Hand%20Luke%20(1967)
## 2031 http://us.imdb.com/M/title-exact?Great%20Dictator,%20The%20(1940)
## 2032 http://us.imdb.com/M/title-exact?Big%20Sleep,%20The%20(1946)
## 2033 http://us.imdb.com/M/title-exact?Ben-Hur%20(1959)
## 2034 http://us.imdb.com/M/title-exact?Gandhi%20(1982)
## 2035 http://us.imdb.com/M/title-exact?Mitt%20liv%20som%20hund%20(1985)
## 2036 http://us.imdb.com/M/title-exact?Man%20Who%20Would%20Be%20King,%20The%20(1975)
## 2037 http://us.imdb.com/M/title-exact?Shine%20(1996)
## 2038 http://us.imdb.com/M/title-exact?Anastasia+(1997)
## 2039 http://us.imdb.com/M/title-exact?imdb-title-119715
## 2040 http://us.imdb.com/M/title-exact?Money%20Train%20(1995)
## 2041 http://us.imdb.com/M/title-exact?Mortal%20Kombat%20(1995)
## 2042 http://us.imdb.com/M/title-exact?Broken%20Arrow%20(1996)
## 2043 http://us.imdb.com/M/title-exact?Young%20Poisoner's%20Handbook,%20The%20(1995)
## 2044 http://us.imdb.com/M/title-exact?NeverEnding%20Story%20III,%20The%20(1994)
## 2045 http://us.imdb.com/M/title-exact?Rob%20Roy%20(1995)
## 2046 http://us.imdb.com/M/title-exact?Die%20Hard:%20With%20a%20Vengeance%20(1995)
## 2047 http://us.imdb.com/M/title-exact?Lord%20of%20Illusions%20(1995)
## 2048 http://us.imdb.com/M/title-exact?Walk%20in%20the%20Clouds,%20A%20(1995)
## 2049 http://us.imdb.com/M/title-exact?Waterworld%20(1995)
## 2050 http://us.imdb.com/M/title-exact?Heavenly%20Creatures%20(1994)
## 2051 http://us.imdb.com/M/title-exact?Interview%20with%20the%20Vampire%20(1994)
## 2052 http://us.imdb.com/M/title-exact?Mary%20Shelley's%20Frankenstein%20(1994)
## 2053 http://us.imdb.com/M/title-exact?%22Langoliers,%20The%22%20(1995)%20(mini)
## 2054 http://us.imdb.com/M/title-exact?Tales%20from%20the%20Hood%20(1995)
## 2055 http://us.imdb.com/M/title-exact?Village%20of%20the%20Damned%20(1995)
## 2056 http://us.imdb.com/M/title-exact?Clear%20and%20Present%20Danger%20(1994)
## 2057 http://us.imdb.com/M/title-exact?Wes%20Craven's%20New%20Nightmare%20(1994)
## 2058 http://us.imdb.com/M/title-exact?Speed%20(1994/I)
## 2059 http://us.imdb.com/M/title-exact?Wolf%20(1994)
## 2060 http://us.imdb.com/M/title-exact?Wyatt%20Earp%20(1994)
## 2061 http://us.imdb.com/M/title-exact?Blown%20Away%20(1994)
## 2062 http://us.imdb.com/M/title-exact?Body%20Snatchers%20(1993)
## 2063 http://us.imdb.com/M/title-exact?Cliffhanger%20(1993)
## 2064 http://us.imdb.com/M/title-exact?Demolition%20Man%20(1993)
## 2065 http://us.imdb.com/M/title-exact?Son%20in%20Law%20(1993)
## 2066 http://us.imdb.com/M/title-exact?Terminal%20Velocity%20(1994)
## 2067 http://us.imdb.com/M/title-exact?Beauty%20and%20the%20Beast%20(1991)
## 2068 http://us.imdb.com/M/title-exact?Wild%20Bunch,%20The%20(1969)
## 2069 http://us.imdb.com/M/title-exact?Hellraiser:%20Bloodline%20(1996)
## 2070 http://us.imdb.com/M/title-exact?Hunchback%20of%20Notre%20Dame,%20The%20(1996)
## 2071 http://us.imdb.com/M/title-exact?Eraser%20(1996)
## 2072 http://us.imdb.com/M/title-exact?For%20Whom%20the%20Bell%20Tolls%20(1943)
## 2073 http://us.imdb.com/M/title-exact?American%20in%20Paris,%20An%20(1951)
## 2074 http://us.imdb.com/M/title-exact?Rear%20Window%20(1954)
## 2075 http://us.imdb.com/M/title-exact?It%20Happened%20One%20Night%20(1934)
## 2076 http://us.imdb.com/M/title-exact?All%20About%20Eve%20(1950)
## 2077 http://us.imdb.com/M/title-exact?Gigi%20(1958)
## 2078 http://us.imdb.com/M/title-exact?Lost%20Horizon%20(1937)
## 2079 http://us.imdb.com/M/title-exact?My%20Man%20Godfrey%20(1936)
## 2080 http://us.imdb.com/M/title-exact?Giant%20(1956)
## 2081 http://us.imdb.com/M/title-exact?39%20Steps,%20The%20(1935)
## 2082 http://us.imdb.com/M/title-exact?Blaue%20Engel,%20Der%20(1930)
## 2083 http://us.imdb.com/M/title-exact?Extreme%20Measures%20(1996)
## 2084 http://us.imdb.com/M/title-exact?Davy%20Crockett%2C%20King%20of%20the%20Wild%20Frontier%20%281955%29
## 2085 http://us.imdb.com/M/title-exact?Three%20Caballeros,%20The%20(1945)
## 2086 http://us.imdb.com/M/title-exact?Sword%20in%20the%20Stone,%20The%20(1963)
## 2087 http://us.imdb.com/M/title-exact?Victor/Victoria%20%281982%29
## 2088 http://us.imdb.com/M/title-exact?Great%20Race,%20The%20(1965)
## 2089 http://us.imdb.com/M/title-exact?Crying%20Game,%20The%20(1992)
## 2090 http://us.imdb.com/M/title-exact?Sophie's%20Choice%20(1982)
## 2091 http://us.imdb.com/M/title-exact?Fog,%20The%20(1980)
## 2092 http://us.imdb.com/M/title-exact?Escape%20from%20New%20York%20(1981)
## 2093 http://us.imdb.com/M/title-exact?Howling,%20The%20(1981)
## 2094 http://us.imdb.com/M/title-exact?Retour%20de%20Martin%20Guerre,%20Le%20(1982)
## 2095 http://us.imdb.com/M/title-exact?Blechtrommel,%20Die%20(1979)
## 2096 http://us.imdb.com/M/title-exact?C'era%20una%20volta%20il%20west%20(1969)
## 2097 http://us.imdb.com/M/title-exact?Ran%20(1985)
## 2098 http://us.imdb.com/M/title-exact?Sjunde%20inseglet,%20Det%20(1957)
## 2099 http://us.imdb.com/M/title-exact?Glory%20(1989)
## 2100 http://us.imdb.com/M/title-exact?Rosencrantz%20and%20Guildenstern%20Are%20Dead%20(1990)
## 2101 http://us.imdb.com/M/title-exact?Chinatown%20(1974)
## 2102 http://us.imdb.com/M/title-exact?Stand%20by%20Me%20(1986)
## 2103 http://us.imdb.com/M/title-exact?M%20(1931)
## 2104 http://us.imdb.com/M/title-exact?Manchurian%20Candidate,%20The%20(1962)
## 2105 http://us.imdb.com/M/title-exact?Arsenic%20and%20Old%20Lace%20(1944)
## 2106 http://us.imdb.com/M/title-exact?High%20Noon%20(1952)
## 2107 http://us.imdb.com/M/title-exact?Somewhere%20in%20Time%20(1980)
## 2108 http://us.imdb.com/M/title-exact?Being%20There%20(1979)
## 2109 http://us.imdb.com/M/title-exact?Alien%203%20(1992)
## 2110 http://us.imdb.com/M/title-exact?Audrey%20Rose%20(1977)
## 2111 http://us.imdb.com/M/title-exact?Blood%20Beach%20(1981)
## 2112 http://us.imdb.com/M/title-exact?Body%20Parts%20(1991)
## 2113 http://us.imdb.com/M/title-exact?Bride%20of%20Frankenstein%20(1935)
## 2114 http://us.imdb.com/M/title-exact?Candyman%20(1992)
## 2115 http://us.imdb.com/M/title-exact?Cape%20Fear%20(1962)
## 2116 http://us.imdb.com/M/title-exact?Cat%20People%20(1982)
## 2117 http://us.imdb.com/M/title-exact?Nosferatu,%20eine%20Symphonie%20des%20Grauens%20(1922)
## 2118 http://us.imdb.com/M/title-exact?Volcano%20%281997%29
## 2119 http://us.imdb.com/M/title-exact?Conan+the+Barbarian+(1981)
## 2120 http://us.imdb.com/M/title-exact?I+Know+What+You+Did+Last+Summer+(1997)
## 2121 http://us.imdb.com/M/title-exact?Rocket+Man+(1997)
## 2122 http://us.imdb.com/M/title-exact?In%20the%20Line%20of%20Fire%20(1993)
## 2123 http://us.imdb.com/M/title-exact?Executive%20Decision%20(1996)
## 2124 http://us.imdb.com/M/title-exact?Perfect%20World,%20A%20(1993)
## 2125 http://us.imdb.com/M/title-exact?McHale's%20Navy%20(1997)
## 2126 http://us.imdb.com/M/title-exact?Leave+It+To+Beaver+(1997)
## 2127 http://us.imdb.com/M/title-exact?Jackal%2C+The+(1997)
## 2128 http://us.imdb.com/M/title-exact?Seven+Years+in+Tibet+(1997)
## 2129 http://us.imdb.com/M/title-exact?imdb-title-118929
## 2130 http://us.imdb.com/M/title-exact?American%20President,%20The%20(1995)
## 2131 http://us.imdb.com/Title?Persuasion+(1995/I)
## 2132 http://us.imdb.com/M/title-exact?Singin'%20in%20the%20Rain%20(1952)
## 2133 http://us.imdb.com/M/title-exact?Bad%20Moon%20(1996)
## 2134 http://us.imdb.com/M/title-exact?Strictly%20Ballroom%20(1992)
## 2135 http://us.imdb.com/M/title-exact?Tin%20Men%20(1987)
## 2136 http://us.imdb.com/M/title-exact?Home%20for%20the%20Holidays%20(1995)
## 2137 http://us.imdb.com/M/title-exact?First%20Knight%20(1995)
## 2138 http://us.imdb.com/M/title-exact?Nine%20Months%20(1995)
## 2139 http://us.imdb.com/M/title-exact?Dave%20(1993)
## 2140 http://us.imdb.com/M/title-exact?Go%20Fish%20(1994)
## 2141 http://us.imdb.com/M/title-exact?Philadelphia%20(1993)
## 2142 http://us.imdb.com/M/title-exact?Shadowlands%20(1993)
## 2143 http://us.imdb.com/M/title-exact?Sirens%20(1994)
## 2144 http://us.imdb.com/M/title-exact?Pretty%20Woman%20(1990)
## 2145 http://us.imdb.com/M/title-exact?Jane%20Eyre%20(1996)
## 2146 http://us.imdb.com/M/title-exact?Real%20Genius%20(1985)
## 2147 http://us.imdb.com/M/title-exact?Benny%20&%20Joon%20(1993)
## 2148 http://us.imdb.com/M/title-exact?Saint%2C%20The%20(1997)
## 2149 http://us.imdb.com/M/title-exact?Matchmaker%2C+The+(1997)
## 2150 http://us.imdb.com/M/title-exact?imdb-title-118607
## 2151 http://us.imdb.com/M/title-exact?imdb-title-120347
## 2152 http://us.imdb.com/M/title-exact?Replacement+Killers%2C+The+(1998)
## 2153 http://us.imdb.com/M/title-exact?Red+Corner+(1997)
## 2154 http://us.imdb.com/M/title-exact?Jumanji%20(1995)
## 2155 http://us.imdb.com/M/title-exact?Father%20of%20the%20Bride%20Part%20II%20(1995)
## 2156 http://us.imdb.com/M/title-exact?Across%20The%20Sea%20of%20Time%20(1995)
## 2157 http://us.imdb.com/M/title-exact?Lawnmower%20Man%202:%20Beyond%20Cyberspace%20(1996)
## 2158 http://us.imdb.com/M/title-exact?Fair%20Game%20(1995)
## 2159 http://us.imdb.com/M/title-exact?Screamers%20(1995)
## 2160 http://us.imdb.com/M/title-exact?Nick%20of%20Time%20(1995)
## 2161 http://us.imdb.com/M/title-exact?Beautiful%20Girls%20(1996)
## 2162 http://us.imdb.com/M/title-exact?Happy%20Gilmore%20(1996)
## 2163 http://us.imdb.com/M/title-exact?If%20Lucy%20Fell%20(1996)
## 2164 http://us.imdb.com/M/title-exact?Boomerang%20(1992)
## 2165 http://us.imdb.com/M/title-exact?Man%20of%20the%20Year%20(1995)
## 2166 http://us.imdb.com/M/title-exact?Addiction,%20The%20(1995)
## 2167 http://us.imdb.com/M/title-exact?Casper%20(1995)
## 2168 http://us.imdb.com/M/title-exact?Congo%20(1995)
## 2169 http://us.imdb.com/M/title-exact?Devil%20in%20a%20Blue%20Dress%20(1995)
## 2170 http://us.imdb.com/M/title-exact?Johnny%20Mnemonic%20(1995)
## 2171 http://us.imdb.com/M/title-exact?Kids%20(1995)
## 2172 http://us.imdb.com/M/title-exact?Mute%20Witness%20(1994)
## 2173 http://us.imdb.com/M/title-exact?Prophecy,%20The%20(1995)
## 2174 http://us.imdb.com/M/title-exact?Something%20to%20Talk%20About%20(1995)
## 2175 http://us.imdb.com/M/title-exact?Three%20Wishes%20(1995)
## 2176 http://us.imdb.com/M/title-exact?Castle%20Freak%20(1995)
## 2177 http://us.imdb.com/M/title-exact?Don%20Juan%20DeMarco%20and%20the%20Centerfold%20(1995)
## 2178 http://us.imdb.com/M/title-exact?Drop%20Zone%20(1994)
## 2179 http://us.imdb.com/M/title-exact?Dumb%20&%20Dumber%20(1994)
## 2180 http://us.imdb.com/M/title-exact?French%20Kiss%20(1995)
## 2181 http://us.imdb.com/M/title-exact?Little%20Odessa%20(1994)
## 2182 http://us.imdb.com/M/title-exact?Milk%20Money%20(1994)
## 2183 http://us.imdb.com/Title?Beyond+Bedlam+(1993)
## 2184 http://us.imdb.com/M/title-exact?Only%20You%20(1994)
## 2185 http://us.imdb.com/M/title-exact?Perez%20Family,%20The%20(1995)
## 2186 http://us.imdb.com/M/title-exact?Roommates%20(1995)
## 2187 http://us.imdb.com/M/title-exact?Relative%20Fear%20(1994)
## 2188 http://us.imdb.com/M/title-exact?Swimming%20with%20Sharks%20(1995)
## 2189 http://us.imdb.com/M/title-exact?Tommy%20Boy%20(1995)
## 2190 http://us.imdb.com/M/title-exact?Baby-Sitters%20Club,%20The%20(1995)
## 2191 http://us.imdb.com/M/title-exact?Bullets%20Over%20Broadway%20(1994)
## 2192 http://us.imdb.com/M/title-exact?Crooklyn%20(1994)
## 2193 http://us.imdb.com/M/title-exact?It%20Could%20Happen%20to%20You%20(1994)
## 2194 http://us.imdb.com/M/title-exact?Richie%20Rich%20(1994)
## 2195 http://us.imdb.com/M/title-exact?Speechless%20(1994)
## 2196 http://us.imdb.com/M/title-exact?Timecop%20(1994)
## 2197 http://us.imdb.com/M/title-exact?Bad%20Company%20(1995)
## 2198 http://us.imdb.com/M/title-exact?Boys%20Life%20(1995)
## 2199 http://us.imdb.com/M/title-exact?In%20the%20Mouth%20of%20Madness%20(1995)
## 2200 http://us.imdb.com/M/title-exact?Air%20Up%20There,%20The%20(1994)
## 2201 http://us.imdb.com/M/title-exact?Hard%20Target%20(1993)
## 2202 http://us.imdb.com/M/title-exact?Heaven%20&%20Earth%20(1993)
## 2203 http://us.imdb.com/M/title-exact?Jimmy%20Hollywood%20(1994)
## 2204 http://us.imdb.com/M/title-exact?Manhattan%20Murder%20Mystery%20(1993)
## 2205 http://us.imdb.com/M/title-exact?Menace%20II%20Society%20(1993)
## 2206 http://us.imdb.com/M/title-exact?Poetic%20Justice%20(1993)
## 2207 http://us.imdb.com/M/title-exact?Program,%20The%20(1993)
## 2208 http://us.imdb.com/M/title-exact?Rising%20Sun%20(1993)
## 2209 http://us.imdb.com/M/title-exact?Shadow,%20The%20(1994)
## 2210 http://us.imdb.com/M/title-exact?Thirty-Two%20Short%20Films%20About%20Glenn%20Gould%20(1993)
## 2211 http://us.imdb.com/M/title-exact?Andre%20(1994)
## 2212 http://us.imdb.com/M/title-exact?Celluloid%20Closet,%20The%20(1995)
## 2213 http://us.imdb.com/M/title-exact?Great%20Day%20in%20Harlem,%20A%20(1994)
## 2214 http://us.imdb.com/M/title-exact?One%20Fine%20Day%20(1996)
## 2215 http://us.imdb.com/M/title-exact?Candyman:%20Farewell%20to%20the%20Flesh%20(1995)
## 2216 http://us.imdb.com/M/title-exact?Frisk%20(1995)
## 2217 http://us.imdb.com/M/title-exact?Girl%206%20(1996)
## 2218 http://us.imdb.com/M/title-exact?Eddie%20(1996)
## 2219 http://us.imdb.com/M/title-exact?Space%20Jam%20(1996)
## 2220 http://us.imdb.com/M/title-exact?Mrs.%20Winterbourne%20(1996)
## 2221 http://us.imdb.com/M/title-exact?Faces%20(1968)
## 2222 http://us.imdb.com/M/title-exact?Mulholland%20Falls%20(1996)
## 2223 http://us.imdb.com/M/title-exact?Great%20White%20Hype,%20The%20(1996)
## 2224 http://us.imdb.com/M/title-exact?Arrival,%20The%20(1996)
## 2225 http://us.imdb.com/M/title-exact?Phantom,%20The%20(1996)
## 2226 http://us.imdb.com/M/title-exact?Daylight%20(1996)
## 2227 http://us.imdb.com/M/title-exact?Alaska%20(1996)
## 2228 http://us.imdb.com/M/title-exact?Fled%20(1996)
## 2229 http://us.imdb.com/M/title-exact?Power%2098%20(1995)
## 2230 http://us.imdb.com/M/title-exact?Escape%20from%20L.A.%20(1996)
## 2231 http://us.imdb.com/M/title-exact?Bogus%20(1996)
## 2232 http://us.imdb.com/M/title-exact?Bulletproof%20(1996)
## 2233 http://us.imdb.com/M/title-exact?Halloween:%20The%20Curse%20of%20Michael%20Myers%20(1995)
## 2234 http://us.imdb.com/M/title-exact?Gay%20Divorcee%2C%20The%20%281934%29
## 2235 http://us.imdb.com/M/title-exact?Ninotchka%20(1939)
## 2236 http://us.imdb.com/M/title-exact?Meet%20John%20Doe%20(1941)
## 2237 http://us.imdb.com/M/title-exact?In%20the%20Line%20of%20Duty%202%20(1987)
## 2238 http://us.imdb.com/M/title-exact?Loch%20Ness%20(1995)
## 2239 http://us.imdb.com/M/title-exact?Last%20Man%20Standing%20(1996/I)
## 2240 http://us.imdb.com/M/title-exact?Glimmer%20Man,%20The%20(1996)
## 2241 http://us.imdb.com/M/title-exact?Pollyanna%20(1960)
## 2242 http://us.imdb.com/M/title-exact?Shaggy%20Dog,%20The%20(1959)
## 2243 http://us.imdb.com/M/title-exact?Freeway%20(1996)
## 2244 http://us.imdb.com/M/title-exact?That%20Thing%20You%20Do!%20(1996)
## 2245 http://us.imdb.com/M/title-exact?To%20Gillian%20on%20Her%2037th%20Birthday%20(1996)
## 2246 http://us.imdb.com/M/title-exact?Looking%20for%20Richard%20(1996)
## 2247 http://us.imdb.com/M/title-exact?Murder,%20My%20Sweet%20(1944)
## 2248 http://us.imdb.com/M/title-exact?Days%20of%20Thunder%20(1990)
## 2249 http://us.imdb.com/M/title-exact?Perfect%20Candidate,%20A%20(1996)
## 2250 http://us.imdb.com/M/title-exact?Deux%20ou%20trois%20choses%20que%20je%20sais%20d'elle%20(1966)
## 2251 http://us.imdb.com/M/title-exact?Bloody%20Child%2C%20The%20%281996%29
## 2252 http://us.imdb.com/M/title-exact?Braindead%20(1992)
## 2253 http://us.imdb.com/M/title-exact?Bad%20Taste%20(1987)
## 2254 http://us.imdb.com/M/title-exact?Diva%20(1981)
## 2255 http://us.imdb.com/M/title-exact?Night%20on%20Earth%20(1991)
## 2256 http://us.imdb.com/M/title-exact?Paris%20Was%20a%20Woman%20(1995)
## 2257 http://us.imdb.com/M/title-exact?Amityville:%20Dollhouse%20(1996)
## 2258 http://us.imdb.com/M/title-exact?April%20Fool's%20Day%20(1986)
## 2259 http://us.imdb.com/M/title-exact?Believers,%20The%20(1987)
## 2260 http://us.imdb.com/M/title-exact?Nosferatu%20a%20Venezia%20(1986)
## 2261 http://us.imdb.com/M/title-exact?Jingle%20All%20the%20Way%20(1996)
## 2262 http://us.imdb.com/M/title-exact?Giardino%20dei%20Finzi-Contini,%20Il%20(1970)
## 2263 http://us.imdb.com/M/title-exact?My%20Fellow%20Americans%20(1996)
## 2264 http://us.imdb.com/M/title-exact?Michael%20(1996)
## 2265 http://us.imdb.com/M/title-exact?Whole%20Wide%20World,%20The%20(1996)
## 2266 http://us.imdb.com/M/title-exact?Hearts%20and%20Minds%20(1996)
## 2267 http://us.imdb.com/M/title-exact?Fools%20Rush%20In%20(1997)
## 2268 http://us.imdb.com/M/title-exact?Touch%20(1997)
## 2269 http://us.imdb.com/M/title-exact?Vegas%20Vacation%20(1997)
## 2270 http://us.imdb.com/M/title-exact?Love%20Jones%20(1997)
## 2271 http://us.imdb.com/M/title-exact?Picture+Perfect+(1997)
## 2272 http://us.imdb.com/M/title-exact?Career+Girls+(1997)
## 2273 http://us.imdb.com/M/title-exact?She%27s+So+Lovely+(1997)
## 2274 http://us.imdb.com/M/title-exact?Money+Talks+(1997)
## 2275 http://us.imdb.com/M/title-exact?Excess+Baggage+(1997)
## 2276 http://us.imdb.com/M/title-exact?That%20Darn%20Cat%20(1997)
## 2277 http://us.imdb.com/M/title-exact?Peacemaker%2C+The+(1997)
## 2278 http://us.imdb.com/M/title-exact?Soul+Food+(1997)
## 2279 http://us.imdb.com/M/title-exact?Washington+Square+(1997)
## 2280 http://us.imdb.com/M/title-exact?Telling+Lies+in+America+(1997)
## 2281 http://us.imdb.com/M/title-exact?Year+of+the+Horse+(1997)
## 2282 http://us.imdb.com/M/title-exact?Phantoms+(1998)
## 2283 http://us.imdb.com/M/title-exact?Life+Less+Ordinary,+A+(1997)
## 2284 http://us.imdb.com/M/title-exact?Eve's+Bayou+(1997)
## 2285 http://us.imdb.com/M/title-exact?One+Night+Stand+(1997)
## 2286 http://us.imdb.com/M/title-exact?Tango+Lesson,+The+(1997)
## 2287 http://us.imdb.com/M/title-exact?Mortal+Kombat%3A+Annihilation+(1997)
## 2288 http://us.imdb.com/M/title-exact?imdb-title-118698
## 2289 http://us.imdb.com/M/title-exact?imdb-title-119137
## 2290 http://us.imdb.com/M/title-exact?imdb-title-119142
## 2291 http://us.imdb.com/M/title-exact?imdb-title-119303
## 2292 http://us.imdb.com/M/title-exact?imdb-title-120082
## 2293 http://us.imdb.com/M/title-exact?Sweet+Hereafter%2C+The+(1997)
## 2294 http://us.imdb.com/M/title-exact?imdb-title-128755
## 2295 http://us.imdb.com/M/title-exact?imdb-title-119925
## 2296 http://us.imdb.com/M/title-exact?imdb-title-120521
## 2297 http://us.imdb.com/M/title-exact?imdb-title-119485
## 2298 http://us.imdb.com/M/title-exact?imdb-title-119718
## 2299 http://us.imdb.com/M/title-exact?imdb-title-118715
## 2300 http://us.imdb.com/M/title-exact?imdb-title-118566
## 2301 http://us.imdb.com/M/title-exact?imdb-title-119590
## 2302 http://us.imdb.com/M/title-exact?imdb-title-119223
## 2303 http://us.imdb.com/M/title-exact?imdb-title-119843
## 2304 http://us.imdb.com/M/title-exact?imdb-title-120881
## 2305 http://us.imdb.com/M/title-exact?imdb-title-120693
## 2306 http://us.imdb.com/M/title-exact?imdb-title-118892
## 2307 http://us.imdb.com/Title?Nil+By+Mouth+(1997)
## 2308 http://us.imdb.com/M/title-exact?imdb-title-119594
## 2309 http://us.imdb.com/Title?U.S.+Marshals+(1998)
## 2310 http://us.imdb.com/Title?Love+and+Death+on+Long+Island+(1997)
## 2311 http://us.imdb.com/Title?Wild+Things+(1998)
## 2312 http://us.imdb.com/Title?Primary+Colors+(1998)
## 2313 http://us.imdb.com/Title?Lost+in+Space+(1998)
## 2314 http://us.imdb.com/Title?Mercury+Rising+(1998)
## 2315 http://us.imdb.com/Title?City+of+Angels+(1998)
## 2316 http://us.imdb.com/M/title-exact?Twelve%20Monkeys%20(1995)
## 2317 http://us.imdb.com/M/title-exact?Dead%20Man%20Walking%20(1995)
## 2318 http://us.imdb.com/M/title-exact?Usual%20Suspects,%20The%20(1995)
## 2319 http://us.imdb.com/M/title-exact?Mighty%20Aphrodite%20(1995)
## 2320 http://us.imdb.com/M/title-exact?Postino,%20Il%20(1994)
## 2321 http://us.imdb.com/M/title-exact?Mr.%20Holland's%20Opus%20(1995)
## 2322 http://us.imdb.com/M/title-exact?Badkonake%20Sefid%20(1995)
## 2323 http://us.imdb.com/M/title-exact?Antonia%20(1995)
## 2324 http://us.imdb.com/M/title-exact?Braveheart%20(1995)
## 2325 http://us.imdb.com/M/title-exact?Taxi%20Driver%20(1976)
## 2326 http://us.imdb.com/M/title-exact?Birdcage,%20The%20(1996)
## 2327 http://us.imdb.com/M/title-exact?Crumb%20(1994)
## 2328 http://us.imdb.com/M/title-exact?Clerks%20(1994)
## 2329 http://us.imdb.com/M/title-exact?Star%20Wars%20(1977)
## 2330 http://us.imdb.com/M/title-exact?Pulp%20Fiction%20(1994)
## 2331 http://us.imdb.com/M/title-exact?Four%20Weddings%20and%20a%20Funeral%20(1994)
## 2332 http://us.imdb.com/M/title-exact?Hudsucker%20Proxy,%20The%20(1994)
## 2333 http://us.imdb.com/Title?Welcome+to+the+Dollhouse+(1995)
## 2334 http://us.imdb.com/M/title-exact?Terminator%202:%20Judgment%20Day%20(1991)
## 2335 http://us.imdb.com/M/title-exact?Silence%20of%20the%20Lambs,%20The%20(1991)
## 2336 http://us.imdb.com/M/title-exact?Fargo%20(1996)
## 2337 http://us.imdb.com/M/title-exact?Truth%20About%20Cats%20&%20Dogs,%20The%20(1996)
## 2338 http://us.imdb.com/M/title-exact?Cold%20Comfort%20Farm%20(1995)%20(TV)
## 2339 http://us.imdb.com/M/title-exact?Independence%20Day%20(1996)
## 2340 http://us.imdb.com/M/title-exact?Lone%20Star%20(1996)
## 2341 http://us.imdb.com/M/title-exact?Godfather,%20The%20(1972)
## 2342 http://us.imdb.com/M/title-exact?Willy%20Wonka%20and%20the%20Chocolate%20Factory%20(1971)
## 2343 http://us.imdb.com/M/title-exact?Monty%20Python%20and%20the%20Holy%20Grail%20(1974)
## 2344 http://us.imdb.com/M/title-exact?Empire%20Strikes%20Back,%20The%20(1980)
## 2345 http://us.imdb.com/M/title-exact?Princess%20Bride,%20The%20(1987)
## 2346 http://us.imdb.com/M/title-exact?Raiders%20of%20the%20Lost%20Ark%20(1981)
## 2347 http://us.imdb.com/M/title-exact?Brazil%20(1985)
## 2348 http://us.imdb.com/M/title-exact?Aliens%20(1986)
## 2349 http://us.imdb.com/M/title-exact?Return%20of%20the%20Jedi%20(1983)
## 2350 http://us.imdb.com/M/title-exact?Blues%20Brothers,%20The%20(1980)
## 2351 http://us.imdb.com/M/title-exact?Amadeus%20(1984)
## 2352 http://us.imdb.com/M/title-exact?Terminator,%20The%20(1984)
## 2353 http://us.imdb.com/M/title-exact?Groundhog%20Day%20(1993)
## 2354 http://us.imdb.com/M/title-exact?Back%20to%20the%20Future%20(1985)
## 2355 http://us.imdb.com/M/title-exact?Indiana%20Jones%20and%20the%20Last%20Crusade%20(1989)
## 2356 http://us.imdb.com/M/title-exact?MASH%20(1970)
## 2357 http://us.imdb.com/M/title-exact?Room%20with%20a%20View,%20A%20(1986)
## 2358 http://us.imdb.com/M/title-exact?Star%20Trek:%20First%20Contact%20(1996)
## 2359 http://us.imdb.com/M/title-exact?Raising%20Arizona%20(1987)
## 2360 http://us.imdb.com/M/title-exact?Beavis%20and%20Butt-head%20Do%20America%20(1996)
## 2361 http://us.imdb.com/M/title-exact?Kolya%20(1996)
## 2362 http://us.imdb.com/M/title-exact?Hunt+for+Red+October%2C+The+(1990)
## 2363 http://us.imdb.com/M/title-exact?Full+Monty%2C+The+(1997)
## 2364 http://us.imdb.com/M/title-exact?Sense%20and%20Sensibility%20(1995)
## 2365 http://us.imdb.com/M/title-exact?Leaving%20Las%20Vegas%20(1995)
## 2366 http://us.imdb.com/M/title-exact?Emma%20(1996)
## 2367 http://us.imdb.com/M/title-exact?Secrets%20&%20Lies%20(1996)
## 2368 http://us.imdb.com/M/title-exact?Scream%20(1996)
## 2369 http://us.imdb.com/M/title-exact?L%2EA%2E+Confidential+(1997)
## 2370 http://us.imdb.com/M/title-exact?imdb-title-120338
## 2371 http://us.imdb.com/M/title-exact?Everyone%20Says%20I%20Love%20You%20(1996)
## 2372 http://us.imdb.com/M/title-exact?One%20Flew%20Over%20the%20Cuckoo's%20Nest%20(1975)
## 2373 http://us.imdb.com/M/title-exact?Adventures%20of%20Priscilla,%20Queen%20of%20the%20Desert,%20The%20(1994)
## 2374 http://us.imdb.com/M/title-exact?Close%20Shave,%20A%20(1995)
## 2375 http://us.imdb.com/M/title-exact?To%20Kill%20a%20Mockingbird%20(1962)
## 2376 http://us.imdb.com/M/title-exact?Harold%20and%20Maude%20(1971)
## 2377 http://us.imdb.com/M/title-exact?Duck%20Soup%20(1933)
## 2378 http://us.imdb.com/M/title-exact?Police%20Story%204:%20First%20Strike%20(1996)
## 2379 http://us.imdb.com/M/title-exact?James%20and%20the%20Giant%20Peach%20(1996)
## 2380 http://us.imdb.com/M/title-exact?Dr.%20Strangelove%20or:%20How%20I%20Learned%20to%20Stop%20Worrying%20and%20Love%20the%20Bomb%20(1963)
## 2381 http://us.imdb.com/Title?Trainspotting+(1996)
## 2382 http://us.imdb.com/M/title-exact?Matilda%20(1996)
## 2383 http://us.imdb.com/M/title-exact?East%20of%20Eden%20(1955)
## 2384 http://us.imdb.com/M/title-exact?African%20Queen,%20The%20(1951)
## 2385 http://us.imdb.com/M/title-exact?Streetcar%20Named%20Desire,%20A%20(1951)
## 2386 http://us.imdb.com/M/title-exact?My%20Left%20Foot%20(1989)
## 2387 http://us.imdb.com/M/title-exact?Annie%20Hall%20(1977)
## 2388 http://us.imdb.com/M/title-exact?Manhattan%20(1979)
## 2389 http://us.imdb.com/M/title-exact?Treasure%20of%20the%20Sierra%20Madre,%20The%20(1948)
## 2390 http://us.imdb.com/M/title-exact?Cool%20Hand%20Luke%20(1967)
## 2391 http://us.imdb.com/M/title-exact?Great%20Dictator,%20The%20(1940)
## 2392 http://us.imdb.com/M/title-exact?Big%20Sleep,%20The%20(1946)
## 2393 http://us.imdb.com/M/title-exact?Man%20Who%20Would%20Be%20King,%20The%20(1975)
## 2394 http://us.imdb.com/M/title-exact?Beauty%20and%20the%20Beast%20(1991)
## 2395 http://us.imdb.com/M/title-exact?Hunchback%20of%20Notre%20Dame,%20The%20(1996)
## 2396 http://us.imdb.com/M/title-exact?Rear%20Window%20(1954)
## 2397 http://us.imdb.com/M/title-exact?Sleepers%20(1996)
## 2398 http://us.imdb.com/M/title-exact?Chinatown%20(1974)
## 2399 http://us.imdb.com/M/title-exact?Stand%20by%20Me%20(1986)
## 2400 http://us.imdb.com/M/title-exact?Being%20There%20(1979)
## 2401 http://us.imdb.com/M/title-exact?Strictly%20Ballroom%20(1992)
## 2402 http://us.imdb.com/M/title-exact?Home%20for%20the%20Holidays%20(1995)
## 2403 http://us.imdb.com/M/title-exact?imdb-title-118607
## 2404 http://us.imdb.com/M/title-exact?Beautiful%20Girls%20(1996)
## 2405 http://us.imdb.com/M/title-exact?Bullets%20Over%20Broadway%20(1994)
## 2406 http://us.imdb.com/M/title-exact?Celluloid%20Closet,%20The%20(1995)
## 2407 http://us.imdb.com/M/title-exact?Space%20Jam%20(1996)
## 2408 http://us.imdb.com/M/title-exact?That%20Thing%20You%20Do!%20(1996)
## 2409 http://us.imdb.com/Title?Cit%E9+des+enfants+perdus,+La+(1995)
## 2410 http://us.imdb.com/M/title-exact?Two%20Bits%20(1995)
## 2411 http://us.imdb.com/M/title-exact?Ba%20Wang%20Bie%20Ji%20(1993)
## 2412 http://us.imdb.com/M/title-exact?Dead%20Man%20(1995)
## 2413 http://us.imdb.com/M/title-exact?Da%20Hong%20Deng%20Long%20Gao%20Gao%20Gua%20(1991)
## 2414 http://us.imdb.com/M/title-exact?Toy%20Story%20(1995)
## 2415 http://us.imdb.com/M/title-exact?Twelve%20Monkeys%20(1995)
## 2416 http://us.imdb.com/M/title-exact?Dead%20Man%20Walking%20(1995)
## 2417 http://us.imdb.com/M/title-exact?Mighty%20Aphrodite%20(1995)
## 2418 http://us.imdb.com/M/title-exact?Postino,%20Il%20(1994)
## 2419 http://us.imdb.com/M/title-exact?Mr.%20Holland's%20Opus%20(1995)
## 2420 http://us.imdb.com/M/title-exact?Badkonake%20Sefid%20(1995)
## 2421 http://us.imdb.com/M/title-exact?Angels%20and%20Insects%20(1995)
## 2422 http://us.imdb.com/M/title-exact?Birdcage,%20The%20(1996)
## 2423 http://us.imdb.com/M/title-exact?Star%20Wars%20(1977)
## 2424 http://us.imdb.com/M/title-exact?Truth%20About%20Cats%20&%20Dogs,%20The%20(1996)
## 2425 http://us.imdb.com/M/title-exact?Twister%20(1996)
## 2426 http://us.imdb.com/M/title-exact?Independence%20Day%20(1996)
## 2427 http://us.imdb.com/M/title-exact?Phenomenon%20(1996)
## 2428 http://us.imdb.com/M/title-exact?Godfather,%20The%20(1972)
## 2429 http://us.imdb.com/M/title-exact?Big%20Night%20(1996)
## 2430 http://us.imdb.com/M/title-exact?Ghost%20and%20the%20Darkness,%20The%20(1996)
## 2431 http://us.imdb.com/M/title-exact?Return%20of%20the%20Jedi%20(1983)
## 2432 http://us.imdb.com/M/title-exact?Mirror%20Has%20Two%20Faces,%20The%20(1996)
## 2433 http://us.imdb.com/M/title-exact?Star%20Trek:%20First%20Contact%20(1996)
## 2434 http://us.imdb.com/M/title-exact?101%20Dalmatians%20(1996)
## 2435 http://us.imdb.com/M/title-exact?Mars%20Attacks!%20(1996)
## 2436 http://us.imdb.com/M/title-exact?Jerry%20Maguire%20(1996)
## 2437 http://us.imdb.com/M/title-exact?Jungle2Jungle%20(1997)
## 2438 http://us.imdb.com/M/title-exact?Smilla%27s%20Sense%20of%20Snow%20(1997)
## 2439 http://us.imdb.com/M/title-exact?Grosse%20Pointe%20Blank%20%281997%29
## 2440 http://us.imdb.com/M/title-exact?Austin%20Powers%3A%20International%20Man%20of%20Mystery%20%281997%29
## 2441 http://us.imdb.com/M/title-exact?Shall%20we%20DANSU%3F%20%281996%29
## 2442 http://us.imdb.com/M/title-exact?Lost%20World%3A%20Jurassic%20Park%2C%20The%20%281997%29
## 2443 http://us.imdb.com/M/title-exact?My+Best+Friend%27s+Wedding+(1997)
## 2444 http://us.imdb.com/M/title-exact?Men+in+Black+(1997)
## 2445 http://us.imdb.com/Title?Contact+(1997/I)
## 2446 http://us.imdb.com/M/title-exact?Full+Monty%2C+The+(1997)
## 2447 http://us.imdb.com/M/title-exact?Sabrina%20(1995)
## 2448 http://us.imdb.com/M/title-exact?Sense%20and%20Sensibility%20(1995)
## 2449 http://us.imdb.com/M/title-exact?Bed%20of%20Roses%20(1996)
## 2450 http://us.imdb.com/M/title-exact?Up%20Close%20and%20Personal%20(1996)
## 2451 http://us.imdb.com/M/title-exact?Time%20to%20Kill,%20A%20(1996)
## 2452 http://us.imdb.com/M/title-exact?Emma%20(1996)
## 2453 http://us.imdb.com/M/title-exact?Secrets%20&%20Lies%20(1996)
## 2454 http://us.imdb.com/M/title-exact?English%20Patient,%20The%20(1996)
## 2455 http://us.imdb.com/M/title-exact?Evita%20(1996)
## 2456 http://us.imdb.com/M/title-exact?Absolute%20Power%20(1997)
## 2457 http://us.imdb.com/M/title-exact?Rosewood%20(1997)
## 2458 http://us.imdb.com/M/title-exact?Ulee%27s+Gold+(1997)
## 2459 http://us.imdb.com/M/title-exact?Air+Force+One+(1997)
## 2460 http://us.imdb.com/Title?In+%26+Out+(1997)
## 2461 http://us.imdb.com/M/title-exact?L%2EA%2E+Confidential+(1997)
## 2462 http://us.imdb.com/M/title-exact?Her+Majesty%2C+Mrs%2E+Brown+(1997)
## 2463 http://us.imdb.com/M/title-exact?Devil's+Advocate,+The+(1997)
## 2464 http://us.imdb.com/M/title-exact?Fairytale:+A+True+Story+(1997)
## 2465 http://us.imdb.com/M/title-exact?Rainmaker,+The+(1997)
## 2466 http://us.imdb.com/M/title-exact?Murder%20at%201600%20(1997)
## 2467 http://us.imdb.com/M/title-exact?Dante's%20Peak%20(1997)
## 2468 http://us.imdb.com/M/title-exact?Conspiracy+Theory+(1997)
## 2469 http://us.imdb.com/M/title-exact?Edge%2C+The+(1997/I)
## 2470 http://us.imdb.com/M/title-exact?Game%2C+The+(1997)
## 2471 http://us.imdb.com/M/title-exact?Mission:%20Impossible%20(1996)
## 2472 http://us.imdb.com/M/title-exact?Jack%20(1996)
## 2473 http://us.imdb.com/M/title-exact?Nutty%20Professor,%20The%20(1996)
## 2474 http://us.imdb.com/M/title-exact?Police%20Story%204:%20First%20Strike%20(1996)
## 2475 http://us.imdb.com/M/title-exact?Nixon%20(1995)
## 2476 http://us.imdb.com/M/title-exact?Cry,%20the%20Beloved%20Country%20(1995)
## 2477 http://us.imdb.com/M/title-exact?Courage%20Under%20Fire%20(1996)
## 2478 http://us.imdb.com/M/title-exact?Dragonheart%20(1996)
## 2479 http://us.imdb.com/M/title-exact?James%20and%20the%20Giant%20Peach%20(1996)
## 2480 http://us.imdb.com/M/title-exact?First%20Wives%20Club,%20The%20(1996)
## 2481 http://us.imdb.com/M/title-exact?People%20vs.%20Larry%20Flynt,%20The%20(1996)
## 2482 http://us.imdb.com/M/title-exact?Broken%20Arrow%20(1996)
## 2483 http://us.imdb.com/M/title-exact?Primal%20Fear%20(1996)
## 2484 http://us.imdb.com/M/title-exact?Chamber,%20The%20(1996)
## 2485 http://us.imdb.com/M/title-exact?Crucible,%20The%20(1996)
## 2486 http://us.imdb.com/M/title-exact?Volcano%20%281997%29
## 2487 http://us.imdb.com/M/title-exact?Executive%20Decision%20(1996)
## 2488 http://us.imdb.com/M/title-exact?Seven+Years+in+Tibet+(1997)
## 2489 http://us.imdb.com/M/title-exact?City%20Hall%20(1996)
## 2490 http://us.imdb.com/M/title-exact?Ransom%20(1996)
## 2491 http://us.imdb.com/M/title-exact?Michael%20Collins%20(1996)
## 2492 http://us.imdb.com/M/title-exact?Saint%2C%20The%20(1997)
## 2493 http://us.imdb.com/M/title-exact?Matchmaker%2C+The+(1997)
## 2494 http://us.imdb.com/M/title-exact?Red+Corner+(1997)
## 2495 http://us.imdb.com/M/title-exact?One%20Fine%20Day%20(1996)
## 2496 http://us.imdb.com/M/title-exact?Mulholland%20Falls%20(1996)
## 2497 http://us.imdb.com/M/title-exact?That%20Thing%20You%20Do!%20(1996)
## 2498 http://us.imdb.com/M/title-exact?My%20Fellow%20Americans%20(1996)
## 2499 http://us.imdb.com/M/title-exact?Michael%20(1996)
## 2500 http://us.imdb.com/M/title-exact?Peacemaker%2C+The+(1997)
## 2501 http://us.imdb.com/M/title-exact?Tango+Lesson,+The+(1997)
## 2502 http://us.imdb.com/M/title-exact?White%20Squall%20(1996)
## 2503 http://us.imdb.com/Title?Unforgettable+(1996)
## 2504 http://us.imdb.com/M/title-exact?Down%20Periscope%20(1996)
## 2505 http://us.imdb.com/M/title-exact?Flor%20de%20mi%20secreto,%20La%20(1995)
## 2506 http://us.imdb.com/M/title-exact?Craft,%20The%20(1996)
## 2507 http://us.imdb.com/M/title-exact?Harriet%20the%20Spy%20(1996)
## 2508 http://us.imdb.com/M/title-exact?Chain%20Reaction%20(1996)
## 2509 http://us.imdb.com/M/title-exact?Island%20of%20Dr.%20Moreau,%20The%20(1996)
## 2510 http://us.imdb.com/M/title-exact?First%20Kid%20(1996)
## 2511 http://us.imdb.com/M/title-exact?Funeral,%20The%20(1996)
## 2512 http://us.imdb.com/M/title-exact?Preacher's%20Wife,%20The%20(1996)
## 2513 http://us.imdb.com/M/title-exact?Paradise%20Road%20%281997%29
## 2514 http://us.imdb.com/M/title-exact?Brassed%20Off%20%281996%29
## 2515 http://us.imdb.com/M/title-exact?Thousand+Acres%2C+A+(1997)
## 2516 http://us.imdb.com/M/title-exact?Smile+Like+Yours%2C+A+(1997)
## 2517 http://us.imdb.com/M/title-exact?Toy%20Story%20(1995)
## 2518 http://us.imdb.com/M/title-exact?Get%20Shorty%20(1995)
## 2519 http://us.imdb.com/M/title-exact?Twelve%20Monkeys%20(1995)
## 2520 http://us.imdb.com/M/title-exact?Babe%20(1995)
## 2521 http://us.imdb.com/M/title-exact?Dead%20Man%20Walking%20(1995)
## 2522 http://us.imdb.com/M/title-exact?Se7en%20(1995)
## 2523 http://us.imdb.com/M/title-exact?Usual%20Suspects,%20The%20(1995)
## 2524 http://us.imdb.com/M/title-exact?Mr.%20Holland's%20Opus%20(1995)
## 2525 http://us.imdb.com/M/title-exact?Braveheart%20(1995)
## 2526 http://us.imdb.com/M/title-exact?Bad%20Boys%20(1995)
## 2527 http://us.imdb.com/M/title-exact?Apollo%2013%20(1995)
## 2528 http://us.imdb.com/M/title-exact?Crimson%20Tide%20(1995)
## 2529 http://us.imdb.com/M/title-exact?Desperado%20(1995)
## 2530 http://us.imdb.com/M/title-exact?Strange%20Days%20(1995)
## 2531 http://us.imdb.com/M/title-exact?Legends%20of%20the%20Fall%20(1994)
## 2532 http://us.imdb.com/Title?L%E9on+(1994)
## 2533 http://us.imdb.com/M/title-exact?Pulp%20Fiction%20(1994)
## 2534 http://us.imdb.com/M/title-exact?Quiz%20Show%20(1994)
## 2535 http://us.imdb.com/M/title-exact?Shawshank%20Redemption,%20The%20(1994)
## 2536 http://us.imdb.com/M/title-exact?While%20You%20Were%20Sleeping%20(1995)
## 2537 http://us.imdb.com/M/title-exact?Forrest%20Gump%20(1994)
## 2538 http://us.imdb.com/M/title-exact?Four%20Weddings%20and%20a%20Funeral%20(1994)
## 2539 http://us.imdb.com/M/title-exact?Lion%20King,%20The%20(1994)
## 2540 http://us.imdb.com/M/title-exact?Carlito's%20Way%20(1993)
## 2541 http://us.imdb.com/M/title-exact?Fugitive,%20The%20(1993)
## 2542 http://us.imdb.com/M/title-exact?Searching%20for%20Bobby%20Fischer%20(1993)
## 2543 http://us.imdb.com/M/title-exact?Blade%20Runner%20(1982)
## 2544 http://us.imdb.com/M/title-exact?True%20Romance%20(1993)
## 2545 http://us.imdb.com/M/title-exact?Aladdin%20(1992)
## 2546 http://us.imdb.com/M/title-exact?Terminator%202:%20Judgment%20Day%20(1991)
## 2547 http://us.imdb.com/M/title-exact?Silence%20of%20the%20Lambs,%20The%20(1991)
## 2548 http://us.imdb.com/M/title-exact?Snow%20White%20and%20the%20Seven%20Dwarfs%20(1937)
## 2549 http://us.imdb.com/M/title-exact?Fargo%20(1996)
## 2550 http://us.imdb.com/M/title-exact?Mystery%20Science%20Theater%203000:%20The%20Movie%20(1996)
## 2551 http://us.imdb.com/M/title-exact?Phenomenon%20(1996)
## 2552 http://us.imdb.com/M/title-exact?Godfather,%20The%20(1972)
## 2553 http://us.imdb.com/M/title-exact?Citizen%20Kane%20(1941)
## 2554 http://us.imdb.com/M/title-exact?2001:%20A%20Space%20Odyssey%20(1968)
## 2555 http://us.imdb.com/M/title-exact?Sound%20of%20Music,%20The%20(1965)
## 2556 http://us.imdb.com/M/title-exact?Die%20Hard%20(1988)
## 2557 http://us.imdb.com/M/title-exact?Willy%20Wonka%20and%20the%20Chocolate%20Factory%20(1971)
## 2558 http://us.imdb.com/M/title-exact?Sleeper%20(1973)
## 2559 http://us.imdb.com/M/title-exact?Dirty%20Dancing%20(1987)
## 2560 http://us.imdb.com/M/title-exact?Reservoir%20Dogs%20(1992)
## 2561 http://us.imdb.com/M/title-exact?Weekend%20at%20Bernie's%20(1989)
## 2562 http://us.imdb.com/M/title-exact?Glengarry%20Glen%20Ross%20(1992)
## 2563 http://us.imdb.com/M/title-exact?Top%20Gun%20(1986)
## 2564 http://us.imdb.com/M/title-exact?Abyss,%20The%20(1989)
## 2565 http://us.imdb.com/M/title-exact?Monty%20Python%20and%20the%20Holy%20Grail%20(1974)
## 2566 http://us.imdb.com/M/title-exact?Empire%20Strikes%20Back,%20The%20(1980)
## 2567 http://us.imdb.com/M/title-exact?Raiders%20of%20the%20Lost%20Ark%20(1981)
## 2568 http://us.imdb.com/M/title-exact?12%20Angry%20Men%20(1957)
## 2569 http://us.imdb.com/M/title-exact?Apocalypse%20Now%20(1979)
## 2570 http://us.imdb.com/M/title-exact?GoodFellas%20(1990)
## 2571 http://us.imdb.com/M/title-exact?Alien%20(1979)
## 2572 http://us.imdb.com/M/title-exact?Amadeus%20(1984)
## 2573 http://us.imdb.com/M/title-exact?Sting,%20The%20(1973)
## 2574 http://us.imdb.com/M/title-exact?Terminator,%20The%20(1984)
## 2575 http://us.imdb.com/M/title-exact?Graduate,%20The%20(1967)
## 2576 http://us.imdb.com/M/title-exact?Bridge%20on%20the%20River%20Kwai,%20The%20(1957)
## 2577 http://us.imdb.com/M/title-exact?Shining,%20The%20(1980)
## 2578 http://us.imdb.com/M/title-exact?Groundhog%20Day%20(1993)
## 2579 http://us.imdb.com/M/title-exact?Back%20to%20the%20Future%20(1985)
## 2580 http://us.imdb.com/M/title-exact?Young%20Frankenstein%20(1974)
## 2581 http://us.imdb.com/M/title-exact?This%20Is%20Spinal%20Tap%20(1984)
## 2582 http://us.imdb.com/M/title-exact?When%20Harry%20Met%20Sally...%20(1989)
## 2583 http://us.imdb.com/M/title-exact?Star%20Trek%20VI:%20The%20Undiscovered%20Country%20(1991)
## 2584 http://us.imdb.com/M/title-exact?Star%20Trek:%20The%20Wrath%20of%20Khan%20(1982)
## 2585 http://us.imdb.com/M/title-exact?Star%20Trek%20IV:%20The%20Voyage%20Home%20(1986)
## 2586 http://us.imdb.com/M/title-exact?Under%20Siege%20(1992)
## 2587 http://us.imdb.com/M/title-exact?Jaws%20(1975)
## 2588 http://us.imdb.com/M/title-exact?Jerry%20Maguire%20(1996)
## 2589 http://us.imdb.com/M/title-exact?Beavis%20and%20Butt-head%20Do%20America%20(1996)
## 2590 http://us.imdb.com/M/title-exact?Heat%20(1995)
## 2591 http://us.imdb.com/M/title-exact?Time%20to%20Kill,%20A%20(1996)
## 2592 http://us.imdb.com/M/title-exact?Tin%20Cup%20(1996)
## 2593 http://us.imdb.com/M/title-exact?English%20Patient,%20The%20(1996)
## 2594 http://us.imdb.com/M/title-exact?Scream%20(1996)
## 2595 http://us.imdb.com/Title?Liar+Liar+(1997)
## 2596 http://us.imdb.com/M/title-exact?Air+Force+One+(1997)
## 2597 http://us.imdb.com/M/title-exact?L%2EA%2E+Confidential+(1997)
## 2598 http://us.imdb.com/M/title-exact?Schindler's%20List%20(1993)
## 2599 http://us.imdb.com/M/title-exact?Mother%20(1996/I)
## 2600 http://us.imdb.com/M/title-exact?One%20Flew%20Over%20the%20Cuckoo's%20Nest%20(1975)
## 2601 http://us.imdb.com/M/title-exact?Clueless%20(1995)
## 2602 http://us.imdb.com/M/title-exact?True%20Lies%20(1994)
## 2603 http://us.imdb.com/M/title-exact?Pinocchio%20(1940)
## 2604 http://us.imdb.com/M/title-exact?Kingpin%20(1996)
## 2605 http://us.imdb.com/M/title-exact?Cinderella%20(1950)
## 2606 http://us.imdb.com/M/title-exact?E%2ET%2E%20the%20Extra-Terrestrial%20%281982%29
## 2607 http://us.imdb.com/M/title-exact?To%20Kill%20a%20Mockingbird%20(1962)
## 2608 http://us.imdb.com/M/title-exact?Birds,%20The%20(1963)
## 2609 http://us.imdb.com/M/title-exact?Carrie%20(1976)
## 2610 http://us.imdb.com/M/title-exact?Omen,%20The%20(1976)
## 2611 http://us.imdb.com/M/title-exact?Bronx%20Tale,%20A%20(1993)
## 2612 http://us.imdb.com/M/title-exact?Short%20Cuts%20(1993)
## 2613 http://us.imdb.com/M/title-exact?Courage%20Under%20Fire%20(1996)
## 2614 http://us.imdb.com/M/title-exact?First%20Wives%20Club,%20The%20(1996)
## 2615 http://us.imdb.com/M/title-exact?Vertigo%20(1958)
## 2616 http://us.imdb.com/M/title-exact?North%20by%20Northwest%20(1959)
## 2617 http://us.imdb.com/M/title-exact?Some%20Like%20It%20Hot%20(1959)
## 2618 http://us.imdb.com/M/title-exact?It's%20a%20Wonderful%20Life%20(1946)
## 2619 http://us.imdb.com/M/title-exact?African%20Queen,%20The%20(1951)
## 2620 http://us.imdb.com/M/title-exact?Bananas%20(1971)
## 2621 http://us.imdb.com/M/title-exact?Bonnie%20and%20Clyde%20(1967)
## 2622 http://us.imdb.com/M/title-exact?My%20Left%20Foot%20(1989)
## 2623 http://us.imdb.com/M/title-exact?Shichinin%20no%20samurai%20(1954)
## 2624 http://us.imdb.com/M/title-exact?Shine%20(1996)
## 2625 http://us.imdb.com/M/title-exact?Broken%20Arrow%20(1996)
## 2626 http://us.imdb.com/M/title-exact?Tales%20from%20the%20Hood%20(1995)
## 2627 http://us.imdb.com/M/title-exact?Romeo%20Is%20Bleeding%20(1993)
## 2628 http://us.imdb.com/M/title-exact?Primal%20Fear%20(1996)
## 2629 http://us.imdb.com/M/title-exact?American%20in%20Paris,%20An%20(1951)
## 2630 http://us.imdb.com/M/title-exact?Rear%20Window%20(1954)
## 2631 http://us.imdb.com/M/title-exact?All%20About%20Eve%20(1950)
## 2632 http://us.imdb.com/M/title-exact?Victor/Victoria%20%281982%29
## 2633 http://us.imdb.com/M/title-exact?Grifters,%20The%20(1990)
## 2634 http://us.imdb.com/M/title-exact?Chinatown%20(1974)
## 2635 http://us.imdb.com/M/title-exact?Stand%20by%20Me%20(1986)
## 2636 http://us.imdb.com/M/title-exact?Manchurian%20Candidate,%20The%20(1962)
## 2637 http://us.imdb.com/M/title-exact?High%20Noon%20(1952)
## 2638 http://us.imdb.com/M/title-exact?In%20the%20Line%20of%20Fire%20(1993)
## 2639 http://us.imdb.com/M/title-exact?American%20President,%20The%20(1995)
## 2640 http://us.imdb.com/M/title-exact?Casino%20(1995)
## 2641 http://us.imdb.com/M/title-exact?Singin'%20in%20the%20Rain%20(1952)
## 2642 http://us.imdb.com/M/title-exact?Dave%20(1993)
## 2643 http://us.imdb.com/M/title-exact?Philadelphia%20(1993)
## 2644 http://us.imdb.com/M/title-exact?Nick%20of%20Time%20(1995)
## 2645 http://us.imdb.com/M/title-exact?Devil%20in%20a%20Blue%20Dress%20(1995)
## 2646 http://us.imdb.com/M/title-exact?Andre%20(1994)
## 2647 http://us.imdb.com/M/title-exact?Murder%20in%20the%20First%20(1995)
## 2648 http://us.imdb.com/M/title-exact?Airheads%20(1994)
## 2649 http://us.imdb.com/M/title-exact?With%20Honors%20(1994)
## 2650 http://us.imdb.com/M/title-exact?What's%20Love%20Got%20to%20Do%20with%20It%20(1993)
## 2651 http://us.imdb.com/M/title-exact?Killing%20Zoe%20(1994)
## 2652 http://us.imdb.com/M/title-exact?Renaissance%20Man%20(1994)
## 2653 http://us.imdb.com/M/title-exact?Charade%20(1963)
## 2654 http://us.imdb.com/M/title-exact?Fox%20and%20the%20Hound,%20The%20(1981)
## 2655 http://us.imdb.com/M/title-exact?Grand%20bleu,%20Le%20(1988)
## 2656 http://us.imdb.com/M/title-exact?Booty%20Call%20(1997)
## 2657 http://us.imdb.com/M/title-exact?Toy%20Story%20(1995)
## 2658 http://us.imdb.com/M/title-exact?Twelve%20Monkeys%20(1995)
## 2659 http://us.imdb.com/M/title-exact?Dead%20Man%20Walking%20(1995)
## 2660 http://us.imdb.com/M/title-exact?Mighty%20Aphrodite%20(1995)
## 2661 http://us.imdb.com/M/title-exact?Fargo%20(1996)
## 2662 http://us.imdb.com/M/title-exact?Truth%20About%20Cats%20&%20Dogs,%20The%20(1996)
## 2663 http://us.imdb.com/M/title-exact?Rock,%20The%20(1996)
## 2664 http://us.imdb.com/M/title-exact?Phenomenon%20(1996)
## 2665 http://us.imdb.com/M/title-exact?Spitfire%20Grill,%20The%20(1996)
## 2666 http://us.imdb.com/M/title-exact?Big%20Night%20(1996)
## 2667 http://us.imdb.com/M/title-exact?Swingers%20(1996)
## 2668 http://us.imdb.com/M/title-exact?Willy%20Wonka%20and%20the%20Chocolate%20Factory%20(1971)
## 2669 http://us.imdb.com/M/title-exact?Breaking%20the%20Waves%20(1996)
## 2670 http://us.imdb.com/M/title-exact?Star%20Trek:%20First%20Contact%20(1996)
## 2671 http://us.imdb.com/M/title-exact?Jerry%20Maguire%20(1996)
## 2672 http://us.imdb.com/M/title-exact?Jungle2Jungle%20(1997)
## 2673 http://us.imdb.com/M/title-exact?Devil%27s%20Own%2C%20The%20(1997)
## 2674 http://us.imdb.com/M/title-exact?Full+Monty%2C+The+(1997)
## 2675 http://us.imdb.com/M/title-exact?Leaving%20Las%20Vegas%20(1995)
## 2676 http://us.imdb.com/M/title-exact?English%20Patient,%20The%20(1996)
## 2677 http://us.imdb.com/Title?Liar+Liar+(1997)
## 2678 http://us.imdb.com/M/title-exact?Dante's%20Peak%20(1997)
## 2679 http://us.imdb.com/M/title-exact?Courage%20Under%20Fire%20(1996)
## 2680 http://us.imdb.com/Title?Trainspotting+(1996)
## 2681 http://us.imdb.com/M/title-exact?People%20vs.%20Larry%20Flynt,%20The%20(1996)
## 2682 http://us.imdb.com/M/title-exact?Sleepers%20(1996)
## 2683 http://us.imdb.com/M/title-exact?Michael%20Collins%20(1996)
## 2684 http://us.imdb.com/Title?Cit%E9+des+enfants+perdus,+La+(1995)
## 2685 http://us.imdb.com/M/title-exact?Toy%20Story%20(1995)
## 2686 http://us.imdb.com/M/title-exact?Get%20Shorty%20(1995)
## 2687 http://us.imdb.com/Title?Yao+a+yao+yao+dao+waipo+qiao+(1995)
## 2688 http://us.imdb.com/M/title-exact?Babe%20(1995)
## 2689 http://us.imdb.com/M/title-exact?Dead%20Man%20Walking%20(1995)
## 2690 http://us.imdb.com/M/title-exact?Usual%20Suspects,%20The%20(1995)
## 2691 http://us.imdb.com/M/title-exact?Mighty%20Aphrodite%20(1995)
## 2692 http://us.imdb.com/M/title-exact?Postino,%20Il%20(1994)
## 2693 http://us.imdb.com/M/title-exact?Mr.%20Holland's%20Opus%20(1995)
## 2694 http://us.imdb.com/M/title-exact?Antonia%20(1995)
## 2695 http://us.imdb.com/M/title-exact?Braveheart%20(1995)
## 2696 http://us.imdb.com/M/title-exact?Taxi%20Driver%20(1976)
## 2697 http://us.imdb.com/M/title-exact?Birdcage,%20The%20(1996)
## 2698 http://us.imdb.com/M/title-exact?Brothers%20McMullen,%20The%20(1995)
## 2699 http://us.imdb.com/M/title-exact?Apollo%2013%20(1995)
## 2700 http://us.imdb.com/M/title-exact?Crumb%20(1994)
## 2701 http://us.imdb.com/M/title-exact?Clerks%20(1994)
## 2702 http://us.imdb.com/M/title-exact?Yinshi%20Nan%20Nu%20(1994)
## 2703 http://us.imdb.com/M/title-exact?Ed%20Wood%20(1994)
## 2704 http://us.imdb.com/M/title-exact?Hoop%20Dreams%20(1994)
## 2705 http://us.imdb.com/M/title-exact?Star%20Wars%20(1977)
## 2706 http://us.imdb.com/M/title-exact?Madness%20of%20King%20George,%20The%20(1994)
## 2707 http://us.imdb.com/M/title-exact?Pulp%20Fiction%20(1994)
## 2708 http://us.imdb.com/M/title-exact?Priest%20(1994)
## 2709 http://us.imdb.com/M/title-exact?Quiz%20Show%20(1994)
## 2710 http://us.imdb.com/M/title-exact?Trzy%20kolory:%20Czerwony%20(1994)
## 2711 http://us.imdb.com/M/title-exact?Trzy%20kolory:%20Niebieski%20(1993)
## 2712 http://us.imdb.com/M/title-exact?Trzy%20kolory:%20Bialy%20(1994)
## 2713 http://us.imdb.com/M/title-exact?Shawshank%20Redemption,%20The%20(1994)
## 2714 http://us.imdb.com/M/title-exact?What's%20Eating%20Gilbert%20Grape%20(1993)
## 2715 http://us.imdb.com/M/title-exact?While%20You%20Were%20Sleeping%20(1995)
## 2716 http://us.imdb.com/M/title-exact?Forrest%20Gump%20(1994)
## 2717 http://us.imdb.com/M/title-exact?Four%20Weddings%20and%20a%20Funeral%20(1994)
## 2718 http://us.imdb.com/M/title-exact?Lion%20King,%20The%20(1994)
## 2719 http://us.imdb.com/M/title-exact?Mask,%20The%20(1994)
## 2720 http://us.imdb.com/M/title-exact?Fugitive,%20The%20(1993)
## 2721 http://us.imdb.com/M/title-exact?Hudsucker%20Proxy,%20The%20(1994)
## 2722 http://us.imdb.com/M/title-exact?Jurassic%20Park%20(1993)
## 2723 http://us.imdb.com/M/title-exact?Much%20Ado%20About%20Nothing%20(1993)
## 2724 http://us.imdb.com/M/title-exact?Remains%20of%20the%20Day,%20The%20(1993)
## 2725 http://us.imdb.com/M/title-exact?Sleepless%20in%20Seattle%20(1993)
## 2726 http://us.imdb.com/M/title-exact?Blade%20Runner%20(1982)
## 2727 http://us.imdb.com/M/title-exact?Nightmare%20Before%20Christmas,%20The%20(1993)
## 2728 http://us.imdb.com/M/title-exact?Home%20Alone%20(1990)
## 2729 http://us.imdb.com/M/title-exact?Aladdin%20(1992)
## 2730 http://us.imdb.com/M/title-exact?Dances%20with%20Wolves%20(1990)
## 2731 http://us.imdb.com/M/title-exact?Silence%20of%20the%20Lambs,%20The%20(1991)
## 2732 http://us.imdb.com/M/title-exact?Snow%20White%20and%20the%20Seven%20Dwarfs%20(1937)
## 2733 http://us.imdb.com/M/title-exact?Fargo%20(1996)
## 2734 http://us.imdb.com/M/title-exact?Truth%20About%20Cats%20&%20Dogs,%20The%20(1996)
## 2735 http://us.imdb.com/M/title-exact?Hussard%20sur%20le%20toit,%20Le%20(1995)
## 2736 http://us.imdb.com/M/title-exact?Cold%20Comfort%20Farm%20(1995)%20(TV)
## 2737 http://us.imdb.com/M/title-exact?Phenomenon%20(1996)
## 2738 http://us.imdb.com/M/title-exact?Spitfire%20Grill,%20The%20(1996)
## 2739 http://us.imdb.com/M/title-exact?Godfather,%20The%20(1972)
## 2740 http://us.imdb.com/M/title-exact?Breakfast%20at%20Tiffany's%20(1961)
## 2741 http://us.imdb.com/M/title-exact?Wizard%20of%20Oz,%20The%20(1939)
## 2742 http://us.imdb.com/M/title-exact?Gone%20with%20the%20Wind%20(1939)
## 2743 http://us.imdb.com/M/title-exact?Citizen%20Kane%20(1941)
## 2744 http://us.imdb.com/M/title-exact?2001:%20A%20Space%20Odyssey%20(1968)
## 2745 http://us.imdb.com/M/title-exact?Mr.%20Smith%20Goes%20to%20Washington%20(1939)
## 2746 http://us.imdb.com/M/title-exact?Big%20Night%20(1996)
## 2747 http://us.imdb.com/M/title-exact?Bedknobs%20and%20Broomsticks%20(1971)
## 2748 http://us.imdb.com/M/title-exact?Sound%20of%20Music,%20The%20(1965)
## 2749 http://us.imdb.com/M/title-exact?Willy%20Wonka%20and%20the%20Chocolate%20Factory%20(1971)
## 2750 http://us.imdb.com/M/title-exact?Sleeper%20(1973)
## 2751 http://us.imdb.com/M/title-exact?Fish%20Called%20Wanda,%20A%20(1988)
## 2752 http://us.imdb.com/M/title-exact?Life%20of%20Brian%20(1979)
## 2753 http://us.imdb.com/M/title-exact?Platoon%20(1986)
## 2754 http://us.imdb.com/M/title-exact?On%20Golden%20Pond%20(1981)
## 2755 http://us.imdb.com/M/title-exact?Jean%20de%20Florette%20(1986)
## 2756 http://us.imdb.com/M/title-exact?Manon%20des%20sources%20(1986)
## 2757 http://us.imdb.com/M/title-exact?Monty%20Python%20and%20the%20Holy%20Grail%20(1974)
## 2758 http://us.imdb.com/M/title-exact?Wrong%20Trousers,%20The%20(1993)
## 2759 http://us.imdb.com/M/title-exact?Nuovo%20cinema%20Paradiso%20(1988)
## 2760 http://us.imdb.com/M/title-exact?Empire%20Strikes%20Back,%20The%20(1980)
## 2761 http://us.imdb.com/M/title-exact?Raiders%20of%20the%20Lost%20Ark%20(1981)
## 2762 http://us.imdb.com/M/title-exact?Brazil%20(1985)
## 2763 http://us.imdb.com/M/title-exact?Buono,%20il%20brutto,%20il%20cattivo,%20Il%20(1966)
## 2764 http://us.imdb.com/M/title-exact?12%20Angry%20Men%20(1957)
## 2765 http://us.imdb.com/M/title-exact?Clockwork%20Orange,%20A%20(1971)
## 2766 http://us.imdb.com/M/title-exact?Apocalypse%20Now%20(1979)
## 2767 http://us.imdb.com/M/title-exact?Return%20of%20the%20Jedi%20(1983)
## 2768 http://us.imdb.com/M/title-exact?GoodFellas%20(1990)
## 2769 http://us.imdb.com/M/title-exact?Psycho%20(1960)
## 2770 http://us.imdb.com/M/title-exact?Blues%20Brothers,%20The%20(1980)
## 2771 http://us.imdb.com/M/title-exact?Godfather:%20Part%20II,%20The%20(1974)
## 2772 http://us.imdb.com/M/title-exact?Full%20Metal%20Jacket%20(1987)
## 2773 http://us.imdb.com/M/title-exact?Grand%20Day%20Out,%20A%20(1992)
## 2774 http://us.imdb.com/M/title-exact?Henry%20V%20(1989)
## 2775 http://us.imdb.com/M/title-exact?Amadeus%20(1984)
## 2776 http://us.imdb.com/M/title-exact?Right%20Stuff,%20The%20(1983)
## 2777 http://us.imdb.com/M/title-exact?Sting,%20The%20(1973)
## 2778 http://us.imdb.com/M/title-exact?Terminator,%20The%20(1984)
## 2779 http://us.imdb.com/M/title-exact?Dead%20Poets%20Society%20(1989)
## 2780 http://us.imdb.com/M/title-exact?Graduate,%20The%20(1967)
## 2781 http://us.imdb.com/M/title-exact?Nikita%20(1990)
## 2782 http://us.imdb.com/M/title-exact?Bridge%20on%20the%20River%20Kwai,%20The%20(1957)
## 2783 http://us.imdb.com/M/title-exact?Shining,%20The%20(1980)
## 2784 http://us.imdb.com/M/title-exact?Groundhog%20Day%20(1993)
## 2785 http://us.imdb.com/M/title-exact?Back%20to%20the%20Future%20(1985)
## 2786 http://us.imdb.com/M/title-exact?Young%20Frankenstein%20(1974)
## 2787 http://us.imdb.com/M/title-exact?This%20Is%20Spinal%20Tap%20(1984)
## 2788 http://us.imdb.com/M/title-exact?Indiana%20Jones%20and%20the%20Last%20Crusade%20(1989)
## 2789 http://us.imdb.com/M/title-exact?MASH%20(1970)
## 2790 http://us.imdb.com/M/title-exact?Unbearable%20Lightness%20of%20Being,%20The%20(1988)
## 2791 http://us.imdb.com/M/title-exact?Room%20with%20a%20View,%20A%20(1986)
## 2792 http://us.imdb.com/M/title-exact?Pink%20Floyd%20-%20The%20Wall%20(1982)
## 2793 http://us.imdb.com/M/title-exact?Field%20of%20Dreams%20(1989)
## 2794 http://us.imdb.com/M/title-exact?When%20Harry%20Met%20Sally...%20(1989)
## 2795 http://us.imdb.com/M/title-exact?Breaking%20the%20Waves%20(1996)
## 2796 http://us.imdb.com/M/title-exact?Sling%20Blade%20(1996)
## 2797 http://us.imdb.com/M/title-exact?Ridicule%20(1996)
## 2798 http://us.imdb.com/M/title-exact?Jaws%20(1975)
## 2799 http://us.imdb.com/M/title-exact?Citizen%20Ruth%20(1996)
## 2800 http://us.imdb.com/M/title-exact?Jerry%20Maguire%20(1996)
## 2801 http://us.imdb.com/M/title-exact?Raising%20Arizona%20(1987)
## 2802 http://us.imdb.com/M/title-exact?Last%20of%20the%20Mohicans,%20The%20(1992)
## 2803 http://us.imdb.com/M/title-exact?Kolya%20(1996)
## 2804 http://us.imdb.com/M/title-exact?Full+Monty%2C+The+(1997)
## 2805 http://us.imdb.com/M/title-exact?Sense%20and%20Sensibility%20(1995)
## 2806 http://us.imdb.com/M/title-exact?Leaving%20Las%20Vegas%20(1995)
## 2807 http://us.imdb.com/M/title-exact?Emma%20(1996)
## 2808 http://us.imdb.com/M/title-exact?Tin%20Cup%20(1996)
## 2809 http://us.imdb.com/M/title-exact?Secrets%20&%20Lies%20(1996)
## 2810 http://us.imdb.com/M/title-exact?English%20Patient,%20The%20(1996)
## 2811 http://us.imdb.com/M/title-exact?Marvin's%20Room%20(1996)
## 2812 http://us.imdb.com/M/title-exact?In%20the%20Name%20of%20the%20Father%20(1993)
## 2813 http://us.imdb.com/M/title-exact?Schindler's%20List%20(1993)
## 2814 http://us.imdb.com/M/title-exact?Everyone%20Says%20I%20Love%20You%20(1996)
## 2815 http://us.imdb.com/M/title-exact?One%20Flew%20Over%20the%20Cuckoo's%20Nest%20(1975)
## 2816 http://us.imdb.com/M/title-exact?Clueless%20(1995)
## 2817 http://us.imdb.com/M/title-exact?Miracle%20on%2034th%20Street%20(1994)
## 2818 http://us.imdb.com/M/title-exact?Muriel's%20Wedding%20(1994)
## 2819 http://us.imdb.com/M/title-exact?Adventures%20of%20Priscilla,%20Queen%20of%20the%20Desert,%20The%20(1994)
## 2820 http://us.imdb.com/M/title-exact?Addams%20Family%20Values%20(1993)
## 2821 http://us.imdb.com/M/title-exact?Age%20of%20Innocence,%20The%20(1993)
## 2822 http://us.imdb.com/M/title-exact?Man%20Without%20a%20Face,%20The%20(1993)
## 2823 http://us.imdb.com/M/title-exact?Mrs.%20Doubtfire%20(1993)
## 2824 http://us.imdb.com/M/title-exact?Ghost%20(1990)
## 2825 http://us.imdb.com/M/title-exact?Batman%20(1989)
## 2826 http://us.imdb.com/M/title-exact?Pinocchio%20(1940)
## 2827 http://us.imdb.com/M/title-exact?Close%20Shave,%20A%20(1995)
## 2828 http://us.imdb.com/M/title-exact?Nutty%20Professor,%20The%20(1996)
## 2829 http://us.imdb.com/M/title-exact?My%20Favorite%20Year%20(1982)
## 2830 http://us.imdb.com/M/title-exact?Old%20Yeller%20(1957)
## 2831 http://us.imdb.com/M/title-exact?Cinderella%20(1950)
## 2832 http://us.imdb.com/M/title-exact?Mary%20Poppins%20(1964)
## 2833 http://us.imdb.com/M/title-exact?E%2ET%2E%20the%20Extra-Terrestrial%20%281982%29
## 2834 http://us.imdb.com/M/title-exact?Bob%20Roberts%20(1992)
## 2835 http://us.imdb.com/M/title-exact?To%20Kill%20a%20Mockingbird%20(1962)
## 2836 http://us.imdb.com/M/title-exact?Harold%20and%20Maude%20(1971)
## 2837 http://us.imdb.com/M/title-exact?Duck%20Soup%20(1933)
## 2838 http://us.imdb.com/M/title-exact?Fantasia%20(1940)
## 2839 http://us.imdb.com/M/title-exact?Forbidden%20Planet%20(1956)
## 2840 http://us.imdb.com/M/title-exact?Butch%20Cassidy%20and%20the%20Sundance%20Kid%20(1969)
## 2841 http://us.imdb.com/M/title-exact?Birds,%20The%20(1963)
## 2842 http://us.imdb.com/M/title-exact?Grease%20(1978)
## 2843 http://us.imdb.com/M/title-exact?Smoke%20(1995)
## 2844 http://us.imdb.com/M/title-exact?Como%20agua%20para%20chocolate%20(1992)
## 2845 http://us.imdb.com/M/title-exact?Secret%20of%20Roan%20Inish,%20The%20(1994)
## 2846 http://us.imdb.com/M/title-exact?Dr.%20Strangelove%20or:%20How%20I%20Learned%20to%20Stop%20Worrying%20and%20Love%20the%20Bomb%20(1963)
## 2847 http://us.imdb.com/M/title-exact?First%20Wives%20Club,%20The%20(1996)
## 2848 http://us.imdb.com/M/title-exact?Philadelphia%20Story,%20The%20(1940)
## 2849 http://us.imdb.com/M/title-exact?Vertigo%20(1958)
## 2850 http://us.imdb.com/M/title-exact?North%20by%20Northwest%20(1959)
## 2851 http://us.imdb.com/M/title-exact?Some%20Like%20It%20Hot%20(1959)
## 2852 http://us.imdb.com/M/title-exact?Casablanca%20(1942)
## 2853 http://us.imdb.com/M/title-exact?My%20Fair%20Lady%20(1964)
## 2854 http://us.imdb.com/M/title-exact?Sabrina%20(1954)
## 2855 http://us.imdb.com/M/title-exact?Roman%20Holiday%20(1953)
## 2856 http://us.imdb.com/M/title-exact?Sunset%20Boulevard%20(1950)
## 2857 http://us.imdb.com/M/title-exact?Notorious%20(1946)
## 2858 http://us.imdb.com/M/title-exact?East%20of%20Eden%20(1955)
## 2859 http://us.imdb.com/M/title-exact?Thin%20Man,%20The%20(1934)
## 2860 http://us.imdb.com/M/title-exact?His%20Girl%20Friday%20(1940)
## 2861 http://us.imdb.com/M/title-exact?It's%20a%20Wonderful%20Life%20(1946)
## 2862 http://us.imdb.com/M/title-exact?Bringing%20Up%20Baby%20(1938)
## 2863 http://us.imdb.com/M/title-exact?African%20Queen,%20The%20(1951)
## 2864 http://us.imdb.com/M/title-exact?Bonnie%20and%20Clyde%20(1967)
## 2865 http://us.imdb.com/M/title-exact?My%20Left%20Foot%20(1989)
## 2866 http://us.imdb.com/M/title-exact?Shichinin%20no%20samurai%20(1954)
## 2867 http://us.imdb.com/Title?Himmel+%FCber+Berlin,+Der+(1987)
## 2868 http://us.imdb.com/M/title-exact?Third%20Man,%20The%20(1949)
## 2869 http://us.imdb.com/M/title-exact?Annie%20Hall%20(1977)
## 2870 http://us.imdb.com/M/title-exact?Boot,%20Das%20(1981)
## 2871 http://us.imdb.com/M/title-exact?Local%20Hero%20(1983)
## 2872 http://us.imdb.com/M/title-exact?Manhattan%20(1979)
## 2873 http://us.imdb.com/M/title-exact?Treasure%20of%20the%20Sierra%20Madre,%20The%20(1948)
## 2874 http://us.imdb.com/M/title-exact?Great%20Escape,%20The%20(1963)
## 2875 http://us.imdb.com/M/title-exact?Cool%20Hand%20Luke%20(1967)
## 2876 http://us.imdb.com/M/title-exact?Great%20Dictator,%20The%20(1940)
## 2877 http://us.imdb.com/M/title-exact?Ben-Hur%20(1959)
## 2878 http://us.imdb.com/M/title-exact?Gandhi%20(1982)
## 2879 http://us.imdb.com/M/title-exact?Killing%20Fields,%20The%20(1984)
## 2880 http://us.imdb.com/M/title-exact?Mitt%20liv%20som%20hund%20(1985)
## 2881 http://us.imdb.com/M/title-exact?Man%20Who%20Would%20Be%20King,%20The%20(1975)
## 2882 http://us.imdb.com/M/title-exact?Rob%20Roy%20(1995)
## 2883 http://us.imdb.com/M/title-exact?Piano,%20The%20(1993)
## 2884 http://us.imdb.com/M/title-exact?Beauty%20and%20the%20Beast%20(1991)
## 2885 http://us.imdb.com/M/title-exact?American%20in%20Paris,%20An%20(1951)
## 2886 http://us.imdb.com/M/title-exact?Rear%20Window%20(1954)
## 2887 http://us.imdb.com/M/title-exact?It%20Happened%20One%20Night%20(1934)
## 2888 http://us.imdb.com/M/title-exact?Rebecca%20(1940)
## 2889 http://us.imdb.com/M/title-exact?Father%20of%20the%20Bride%20(1950)
## 2890 http://us.imdb.com/M/title-exact?Gigi%20(1958)
## 2891 http://us.imdb.com/M/title-exact?Lost%20Horizon%20(1937)
## 2892 http://us.imdb.com/M/title-exact?My%20Man%20Godfrey%20(1936)
## 2893 http://us.imdb.com/M/title-exact?Giant%20(1956)
## 2894 http://us.imdb.com/Title?Robin+Hood%3A+Prince+of+Thieves+(1991)
## 2895 http://us.imdb.com/M/title-exact?Victor/Victoria%20%281982%29
## 2896 http://us.imdb.com/M/title-exact?Great%20Race,%20The%20(1965)
## 2897 http://us.imdb.com/M/title-exact?Crying%20Game,%20The%20(1992)
## 2898 http://us.imdb.com/M/title-exact?Christmas%20Carol,%20A%20(1938)
## 2899 http://us.imdb.com/M/title-exact?Blechtrommel,%20Die%20(1979)
## 2900 http://us.imdb.com/M/title-exact?Ran%20(1985)
## 2901 http://us.imdb.com/M/title-exact?Once%20Upon%20a%20Time%20in%20America%20(1984)
## 2902 http://us.imdb.com/M/title-exact?Chinatown%20(1974)
## 2903 http://us.imdb.com/M/title-exact?Arsenic%20and%20Old%20Lace%20(1944)
## 2904 http://us.imdb.com/M/title-exact?Fried%20Green%20Tomatoes%20at%20the%20Whistle%20Stop%20Cafe%20(1991)
## 2905 http://us.imdb.com/M/title-exact?Being%20There%20(1979)
## 2906 http://us.imdb.com/M/title-exact?American%20President,%20The%20(1995)
## 2907 http://us.imdb.com/M/title-exact?Little%20Women%20(1994)
## 2908 http://us.imdb.com/M/title-exact?Barcelona%20(1994)
## 2909 http://us.imdb.com/M/title-exact?House%20of%20the%20Spirits,%20The%20(1993)
## 2910 http://us.imdb.com/M/title-exact?Singin'%20in%20the%20Rain%20(1952)
## 2911 http://us.imdb.com/M/title-exact?Enchanted%20April%20(1991)
## 2912 http://us.imdb.com/M/title-exact?sex,%20lies,%20and%20videotape%20(1989)
## 2913 http://us.imdb.com/M/title-exact?Strictly%20Ballroom%20(1992)
## 2914 http://us.imdb.com/M/title-exact?Carrington%20(1995)
## 2915 http://us.imdb.com/M/title-exact?Home%20for%20the%20Holidays%20(1995)
## 2916 http://us.imdb.com/M/title-exact?Circle%20of%20Friends%20(1995)
## 2917 http://us.imdb.com/M/title-exact?Nell%20(1994)
## 2918 http://us.imdb.com/M/title-exact?Dave%20(1993)
## 2919 http://us.imdb.com/M/title-exact?Philadelphia%20(1993)
## 2920 http://us.imdb.com/M/title-exact?Shadowlands%20(1993)
## 2921 http://us.imdb.com/M/title-exact?Sirens%20(1994)
## 2922 http://us.imdb.com/M/title-exact?Pretty%20Woman%20(1990)
## 2923 http://us.imdb.com/M/title-exact?Benny%20&%20Joon%20(1993)
## 2924 http://us.imdb.com/M/title-exact?Utomlyonnye%20Solntsem%20(1994)
## 2925 http://us.imdb.com/M/title-exact?Beautiful%20Girls%20(1996)
## 2926 http://us.imdb.com/M/title-exact?Something%20to%20Talk%20About%20(1995)
## 2927 http://us.imdb.com/M/title-exact?Don%20Juan%20DeMarco%20and%20the%20Centerfold%20(1995)
## 2928 http://us.imdb.com/M/title-exact?French%20Kiss%20(1995)
## 2929 http://us.imdb.com/M/title-exact?Bullets%20Over%20Broadway%20(1994)
## 2930 http://us.imdb.com/M/title-exact?It%20Could%20Happen%20to%20You%20(1994)
## 2931 http://us.imdb.com/M/title-exact?Manhattan%20Murder%20Mystery%20(1993)
## 2932 http://us.imdb.com/M/title-exact?That%20Thing%20You%20Do!%20(1996)
## 2933 http://us.imdb.com/M/title-exact?Night%20on%20Earth%20(1991)
## 2934 http://us.imdb.com/M/title-exact?Giardino%20dei%20Finzi-Contini,%20Il%20(1970)
## 2935 http://us.imdb.com/M/title-exact?Ba%20Wang%20Bie%20Ji%20(1993)
## 2936 http://us.imdb.com/M/title-exact?Da%20Hong%20Deng%20Long%20Gao%20Gao%20Gua%20(1991)
## 2937 http://us.imdb.com/M/title-exact?How%20to%20Make%20an%20American%20Quilt%20(1995)
## 2938 http://us.imdb.com/M/title-exact?Georgia%20(1995)
## 2939 http://us.imdb.com/M/title-exact?Indian%20in%20the%20Cupboard,%20The%20(1995)
## 2940 http://us.imdb.com/M/title-exact?Blue%20in%20the%20Face%20(1995)
## 2941 http://us.imdb.com/M/title-exact?Unstrung%20Heroes%20(1995)
## 2942 http://us.imdb.com/M/title-exact?Unzipped%20(1995)
## 2943 http://us.imdb.com/M/title-exact?Before%20Sunrise%20(1995)
## 2944 http://us.imdb.com/M/title-exact?Nobody's%20Fool%20(1994)
## 2945 http://us.imdb.com/M/title-exact?Tui%20Shou%20(1992)
## 2946 http://us.imdb.com/M/title-exact?Huozhe%20(1994)
## 2947 http://us.imdb.com/M/title-exact?Dazed%20and%20Confused%20(1993)
## 2948 http://us.imdb.com/M/title-exact?Naked%20(1993)
## 2949 http://us.imdb.com/M/title-exact?Orlando%20(1993)
## 2950 http://us.imdb.com/M/title-exact?Ruby%20in%20Paradise%20(1993)
## 2951 http://us.imdb.com/M/title-exact?Some%20Folks%20Call%20It%20a%20Sling%20Blade%20(1993)
## 2952 http://us.imdb.com/M/title-exact?Month%20by%20The%20Lake,%20A%20(1995)
## 2953 http://us.imdb.com/M/title-exact?Funny%20Face%20(1957)
## 2954 http://us.imdb.com/M/title-exact?Affair%20to%20Remember,%20An%20(1957)
## 2955 http://us.imdb.com/M/title-exact?Little%20Lord%20Fauntleroy%20(1936)
## 2956 http://us.imdb.com/M/title-exact?Inspector%20General,%20The%20(1949)
## 2957 http://us.imdb.com/M/title-exact?Winnie%20the%20Pooh%20and%20the%20Blustery%20Day%20%281968%29
## 2958 http://us.imdb.com/M/title-exact?Hear%20My%20Song%20(1991)
## 2959 http://us.imdb.com/M/title-exact?Mediterraneo%20(1991)
## 2960 http://us.imdb.com/M/title-exact?Passion%20Fish%20(1992)
## 2961 http://us.imdb.com/M/title-exact?Grateful%20Dead%20(1995)
## 2962 http://us.imdb.com/M/title-exact?Get%20Shorty%20(1995)
## 2963 http://us.imdb.com/M/title-exact?Babe%20(1995)
## 2964 http://us.imdb.com/M/title-exact?Fish%20Called%20Wanda,%20A%20(1988)
## 2965 http://us.imdb.com/M/title-exact?Evil%20Dead%20II%20(1987)
## 2966 http://us.imdb.com/M/title-exact?Groundhog%20Day%20(1993)
## 2967 http://us.imdb.com/M/title-exact?Indiana%20Jones%20and%20the%20Last%20Crusade%20(1989)
## 2968 http://us.imdb.com/M/title-exact?MASH%20(1970)
## 2969 http://us.imdb.com/Title?Contact+(1997/I)
## 2970 http://us.imdb.com/M/title-exact?Scream%20(1996)
## 2971 http://us.imdb.com/Title?Liar+Liar+(1997)
## 2972 http://us.imdb.com/M/title-exact?Rainmaker,+The+(1997)
## 2973 http://us.imdb.com/M/title-exact?imdb-title-120338
## 2974 http://us.imdb.com/M/title-exact?Everyone%20Says%20I%20Love%20You%20(1996)
## 2975 http://us.imdb.com/M/title-exact?Crash%20(1996)
## 2976 http://us.imdb.com/M/title-exact?Adventures%20of%20Priscilla,%20Queen%20of%20the%20Desert,%20The%20(1994)
## 2977 http://us.imdb.com/M/title-exact?Butch%20Cassidy%20and%20the%20Sundance%20Kid%20(1969)
## 2978 http://us.imdb.com/M/title-exact?Stand%20by%20Me%20(1986)
## 2979 http://us.imdb.com/M/title-exact?American%20President,%20The%20(1995)
## 2980 http://us.imdb.com/M/title-exact?Eve's+Bayou+(1997)
## 2981 http://us.imdb.com/M/title-exact?Toy%20Story%20(1995)
## 2982 http://us.imdb.com/M/title-exact?Se7en%20(1995)
## 2983 http://us.imdb.com/M/title-exact?Mr.%20Holland's%20Opus%20(1995)
## 2984 http://us.imdb.com/M/title-exact?Braveheart%20(1995)
## 2985 http://us.imdb.com/M/title-exact?Star%20Wars%20(1977)
## 2986 http://us.imdb.com/M/title-exact?Forrest%20Gump%20(1994)
## 2987 http://us.imdb.com/M/title-exact?Jurassic%20Park%20(1993)
## 2988 http://us.imdb.com/M/title-exact?Searching%20for%20Bobby%20Fischer%20(1993)
## 2989 http://us.imdb.com/M/title-exact?Home%20Alone%20(1990)
## 2990 http://us.imdb.com/M/title-exact?Aladdin%20(1992)
## 2991 http://us.imdb.com/M/title-exact?Silence%20of%20the%20Lambs,%20The%20(1991)
## 2992 http://us.imdb.com/M/title-exact?Twister%20(1996)
## 2993 http://us.imdb.com/M/title-exact?Independence%20Day%20(1996)
## 2994 http://us.imdb.com/M/title-exact?Sound%20of%20Music,%20The%20(1965)
## 2995 http://us.imdb.com/M/title-exact?Die%20Hard%20(1988)
## 2996 http://us.imdb.com/M/title-exact?Ghost%20and%20the%20Darkness,%20The%20(1996)
## 2997 http://us.imdb.com/M/title-exact?Willy%20Wonka%20and%20the%20Chocolate%20Factory%20(1971)
## 2998 http://us.imdb.com/M/title-exact?Empire%20Strikes%20Back,%20The%20(1980)
## 2999 http://us.imdb.com/M/title-exact?Raiders%20of%20the%20Lost%20Ark%20(1981)
## 3000 http://us.imdb.com/M/title-exact?Aliens%20(1986)
## 3001 http://us.imdb.com/M/title-exact?Return%20of%20the%20Jedi%20(1983)
## 3002 http://us.imdb.com/M/title-exact?Blues%20Brothers,%20The%20(1980)
## 3003 http://us.imdb.com/M/title-exact?Sting,%20The%20(1973)
## 3004 http://us.imdb.com/M/title-exact?Back%20to%20the%20Future%20(1985)
## 3005 http://us.imdb.com/M/title-exact?Young%20Frankenstein%20(1974)
## 3006 http://us.imdb.com/M/title-exact?Indiana%20Jones%20and%20the%20Last%20Crusade%20(1989)
## 3007 http://us.imdb.com/M/title-exact?Jungle2Jungle%20(1997)
## 3008 http://us.imdb.com/M/title-exact?Lost%20World%3A%20Jurassic%20Park%2C%20The%20%281997%29
## 3009 http://us.imdb.com/M/title-exact?Sabrina%20(1995)
## 3010 http://us.imdb.com/M/title-exact?Scream%20(1996)
## 3011 http://us.imdb.com/M/title-exact?Dante's%20Peak%20(1997)
## 3012 http://us.imdb.com/M/title-exact?One%20Flew%20Over%20the%20Cuckoo's%20Nest%20(1975)
## 3013 http://us.imdb.com/M/title-exact?Miracle%20on%2034th%20Street%20(1994)
## 3014 http://us.imdb.com/M/title-exact?Mission:%20Impossible%20(1996)
## 3015 http://us.imdb.com/M/title-exact?E%2ET%2E%20the%20Extra-Terrestrial%20%281982%29
## 3016 http://us.imdb.com/M/title-exact?It's%20a%20Wonderful%20Life%20(1946)
## 3017 http://us.imdb.com/M/title-exact?African%20Queen,%20The%20(1951)
## 3018 http://us.imdb.com/M/title-exact?Speed%20(1994/I)
## 3019 http://us.imdb.com/M/title-exact?Beauty%20and%20the%20Beast%20(1991)
## 3020 http://us.imdb.com/M/title-exact?Eraser%20(1996)
## 3021 http://us.imdb.com/M/title-exact?Christmas%20Carol,%20A%20(1938)
## 3022 http://us.imdb.com/M/title-exact?Volcano%20%281997%29
## 3023 http://us.imdb.com/M/title-exact?Ransom%20(1996)
## 3024 http://us.imdb.com/M/title-exact?Happy%20Gilmore%20(1996)
## 3025 http://us.imdb.com/M/title-exact?Space%20Jam%20(1996)
## 3026 http://us.imdb.com/M/title-exact?Michael%20(1996)
## 3027 http://us.imdb.com/M/title-exact?Island%20of%20Dr.%20Moreau,%20The%20(1996)
## 3028 http://us.imdb.com/M/title-exact?Preacher's%20Wife,%20The%20(1996)
## 3029 http://us.imdb.com/M/title-exact?Toy%20Story%20(1995)
## 3030 http://us.imdb.com/M/title-exact?Copycat%20(1995)
## 3031 http://us.imdb.com/M/title-exact?Twelve%20Monkeys%20(1995)
## 3032 http://us.imdb.com/M/title-exact?Dead%20Man%20Walking%20(1995)
## 3033 http://us.imdb.com/M/title-exact?Mr.%20Holland's%20Opus%20(1995)
## 3034 http://us.imdb.com/M/title-exact?From%20Dusk%20Till%20Dawn%20(1996)
## 3035 http://us.imdb.com/M/title-exact?Star%20Wars%20(1977)
## 3036 http://us.imdb.com/M/title-exact?Natural%20Born%20Killers%20(1994)
## 3037 http://us.imdb.com/M/title-exact?Pulp%20Fiction%20(1994)
## 3038 http://us.imdb.com/M/title-exact?Silence%20of%20the%20Lambs,%20The%20(1991)
## 3039 http://us.imdb.com/M/title-exact?Fargo%20(1996)
## 3040 http://us.imdb.com/M/title-exact?All%20Dogs%20Go%20to%20Heaven%202%20(1996)
## 3041 http://us.imdb.com/M/title-exact?Diabolique%20(1996)
## 3042 http://us.imdb.com/M/title-exact?Twister%20(1996)
## 3043 http://us.imdb.com/M/title-exact?Independence%20Day%20(1996)
## 3044 http://us.imdb.com/M/title-exact?Frighteners,%20The%20(1996)
## 3045 http://us.imdb.com/M/title-exact?Godfather,%20The%20(1972)
## 3046 http://us.imdb.com/M/title-exact?Bound%20(1996)
## 3047 http://us.imdb.com/M/title-exact?Lawnmower%20Man,%20The%20(1992)
## 3048 http://us.imdb.com/M/title-exact?Ghost%20and%20the%20Darkness,%20The%20(1996)
## 3049 http://us.imdb.com/M/title-exact?Abyss,%20The%20(1989)
## 3050 http://us.imdb.com/M/title-exact?Army%20of%20Darkness%20(1993)
## 3051 http://us.imdb.com/M/title-exact?Psycho%20(1960)
## 3052 http://us.imdb.com/M/title-exact?Shining,%20The%20(1980)
## 3053 http://us.imdb.com/M/title-exact?Evil%20Dead%20II%20(1987)
## 3054 http://us.imdb.com/M/title-exact?Bram%20Stoker's%20Dracula%20(1992)
## 3055 http://us.imdb.com/M/title-exact?Cape%20Fear%20(1991)
## 3056 http://us.imdb.com/M/title-exact?Nightmare%20on%20Elm%20Street,%20A%20(1984)
## 3057 http://us.imdb.com/M/title-exact?Star%20Trek:%20First%20Contact%20(1996)
## 3058 http://us.imdb.com/M/title-exact?Jaws%20(1975)
## 3059 http://us.imdb.com/M/title-exact?Beavis%20and%20Butt-head%20Do%20America%20(1996)
## 3060 http://us.imdb.com/M/title-exact?Kolya%20(1996)
## 3061 http://us.imdb.com/M/title-exact?Jungle2Jungle%20(1997)
## 3062 http://us.imdb.com/M/title-exact?Smilla%27s%20Sense%20of%20Snow%20(1997)
## 3063 http://us.imdb.com/M/title-exact?Devil%27s%20Own%2C%20The%20(1997)
## 3064 http://us.imdb.com/Title?Contact+(1997/I)
## 3065 http://us.imdb.com/M/title-exact?George+of+the+Jungle+(1997)
## 3066 http://us.imdb.com/M/title-exact?Event+Horizon+(1997)
## 3067 http://us.imdb.com/M/title-exact?Air+Bud+(1997)
## 3068 http://us.imdb.com/M/title-exact?In+the+Company+of+Men+(1997)
## 3069 http://us.imdb.com/M/title-exact?Steel+(1997)
## 3070 http://us.imdb.com/M/title-exact?Mimic+(1997)
## 3071 http://us.imdb.com/M/title-exact?Heat%20(1995)
## 3072 http://us.imdb.com/M/title-exact?River%20Wild,%20The%20(1994)
## 3073 http://us.imdb.com/M/title-exact?English%20Patient,%20The%20(1996)
## 3074 http://us.imdb.com/M/title-exact?Scream%20(1996)
## 3075 http://us.imdb.com/M/title-exact?Evita%20(1996)
## 3076 http://us.imdb.com/M/title-exact?Absolute%20Power%20(1997)
## 3077 http://us.imdb.com/M/title-exact?Rosewood%20(1997)
## 3078 http://us.imdb.com/Title?Liar+Liar+(1997)
## 3079 http://us.imdb.com/M/title-exact?Breakdown%20%281997%29
## 3080 http://us.imdb.com/M/title-exact?Face/Off+(1997)
## 3081 http://us.imdb.com/M/title-exact?Hoodlum+(1997)
## 3082 http://us.imdb.com/M/title-exact?Air+Force+One+(1997)
## 3083 http://us.imdb.com/Title?In+%26+Out+(1997)
## 3084 http://us.imdb.com/M/title-exact?Everyone%20Says%20I%20Love%20You%20(1996)
## 3085 http://us.imdb.com/M/title-exact?Paradise%20Lost%3a%20The%20Child%20Murders%20at%20Robin%20Hood%20Hills%20(1996)
## 3086 http://us.imdb.com/M/title-exact?Mother%20(1996/I)
## 3087 http://us.imdb.com/M/title-exact?Murder%20at%201600%20(1997)
## 3088 http://us.imdb.com/M/title-exact?Dante's%20Peak%20(1997)
## 3089 http://us.imdb.com/Title?Lost+Highway+(1997)
## 3090 http://us.imdb.com/M/title-exact?Crash%20(1996)
## 3091 http://us.imdb.com/M/title-exact?G%2EI%2E+Jane+(1997)
## 3092 http://us.imdb.com/M/title-exact?Cop+Land+(1997)
## 3093 http://us.imdb.com/M/title-exact?Conspiracy+Theory+(1997)
## 3094 http://us.imdb.com/M/title-exact?187+(1997)
## 3095 http://us.imdb.com/M/title-exact?Spawn+(1997/I)
## 3096 http://us.imdb.com/M/title-exact?Mary%20Reilly%20(1996)
## 3097 http://us.imdb.com/M/title-exact?Tales%20From%20the%20Crypt%20Presents:%20Demon%20Knight%20(1995)
## 3098 http://us.imdb.com/M/title-exact?Serial%20Mom%20(1994)
## 3099 http://us.imdb.com/M/title-exact?Thinner%20(1996)
## 3100 http://us.imdb.com/M/title-exact?Close%20Shave,%20A%20(1995)
## 3101 http://us.imdb.com/M/title-exact?Tales%20from%20the%20Crypt%20Presents:%20Bordello%20of%20Blood%20(1996)
## 3102 http://us.imdb.com/M/title-exact?Children%20of%20the%20Corn%3A%20The%20Gathering%20%281996%29
## 3103 http://us.imdb.com/M/title-exact?American%20Werewolf%20in%20London,%20An%20(1981)
## 3104 http://us.imdb.com/M/title-exact?Amityville%201992:%20It's%20About%20Time%20(1992)
## 3105 http://us.imdb.com/M/title-exact?Amityville%203-D%20(1983)
## 3106 http://us.imdb.com/M/title-exact?Amityville:%20A%20New%20Generation%20(1993)
## 3107 http://us.imdb.com/M/title-exact?Amityville%20II:%20The%20Possession%20(1982)
## 3108 http://us.imdb.com/M/title-exact?Amityville%20Horror,%20The%20(1979)
## 3109 http://us.imdb.com/M/title-exact?Birds,%20The%20(1963)
## 3110 http://us.imdb.com/M/title-exact?Blob,%20The%20(1958)
## 3111 http://us.imdb.com/M/title-exact?Body%20Snatcher,%20The%20(1945)
## 3112 http://us.imdb.com/M/title-exact?Carrie%20(1976)
## 3113 http://us.imdb.com/M/title-exact?Omen,%20The%20(1976)
## 3114 http://us.imdb.com/M/title-exact?Jaws%202%20(1978)
## 3115 http://us.imdb.com/M/title-exact?Jaws%203-D%20(1983)
## 3116 http://us.imdb.com/M/title-exact?Free+Willy+3%3A+The+Rescue+(1997)
## 3117 http://us.imdb.com/M/title-exact?James%20and%20the%20Giant%20Peach%20(1996)
## 3118 http://us.imdb.com/M/title-exact?Young%20Poisoner's%20Handbook,%20The%20(1995)
## 3119 http://us.imdb.com/M/title-exact?Lord%20of%20Illusions%20(1995)
## 3120 http://us.imdb.com/M/title-exact?Heavenly%20Creatures%20(1994)
## 3121 http://us.imdb.com/M/title-exact?Interview%20with%20the%20Vampire%20(1994)
## 3122 http://us.imdb.com/M/title-exact?Mary%20Shelley's%20Frankenstein%20(1994)
## 3123 http://us.imdb.com/M/title-exact?%22Langoliers,%20The%22%20(1995)%20(mini)
## 3124 http://us.imdb.com/M/title-exact?Tales%20from%20the%20Hood%20(1995)
## 3125 http://us.imdb.com/M/title-exact?Village%20of%20the%20Damned%20(1995)
## 3126 http://us.imdb.com/M/title-exact?Wes%20Craven's%20New%20Nightmare%20(1994)
## 3127 http://us.imdb.com/M/title-exact?Wolf%20(1994)
## 3128 http://us.imdb.com/M/title-exact?Body%20Snatchers%20(1993)
## 3129 http://us.imdb.com/M/title-exact?Hellraiser:%20Bloodline%20(1996)
## 3130 http://us.imdb.com/M/title-exact?Primal%20Fear%20(1996)
## 3131 http://us.imdb.com/M/title-exact?Fan,%20The%20(1996)
## 3132 http://us.imdb.com/M/title-exact?Hunchback%20of%20Notre%20Dame,%20The%20(1996)
## 3133 http://us.imdb.com/M/title-exact?Extreme%20Measures%20(1996)
## 3134 http://us.imdb.com/M/title-exact?Sleepers%20(1996)
## 3135 http://us.imdb.com/M/title-exact?Fog,%20The%20(1980)
## 3136 http://us.imdb.com/M/title-exact?Howling,%20The%20(1981)
## 3137 http://us.imdb.com/M/title-exact?M%20(1931)
## 3138 http://us.imdb.com/M/title-exact?Alien%203%20(1992)
## 3139 http://us.imdb.com/M/title-exact?Blood%20Beach%20(1981)
## 3140 http://us.imdb.com/M/title-exact?Body%20Parts%20(1991)
## 3141 http://us.imdb.com/M/title-exact?Bride%20of%20Frankenstein%20(1935)
## 3142 http://us.imdb.com/M/title-exact?Candyman%20(1992)
## 3143 http://us.imdb.com/M/title-exact?Cat%20People%20(1982)
## 3144 http://us.imdb.com/M/title-exact?Nosferatu,%20eine%20Symphonie%20des%20Grauens%20(1922)
## 3145 http://us.imdb.com/M/title-exact?Volcano%20%281997%29
## 3146 http://us.imdb.com/M/title-exact?McHale's%20Navy%20(1997)
## 3147 http://us.imdb.com/M/title-exact?Leave+It+To+Beaver+(1997)
## 3148 http://us.imdb.com/M/title-exact?City%20Hall%20(1996)
## 3149 http://us.imdb.com/M/title-exact?Bad%20Moon%20(1996)
## 3150 http://us.imdb.com/M/title-exact?Juror,%20The%20(1996)
## 3151 http://us.imdb.com/M/title-exact?Last%20Supper,%20The%20(1995)
## 3152 http://us.imdb.com/M/title-exact?Ransom%20(1996)
## 3153 http://us.imdb.com/M/title-exact?Saint%2C%20The%20(1997)
## 3154 http://us.imdb.com/M/title-exact?Lawnmower%20Man%202:%20Beyond%20Cyberspace%20(1996)
## 3155 http://us.imdb.com/M/title-exact?Screamers%20(1995)
## 3156 http://us.imdb.com/M/title-exact?Addiction,%20The%20(1995)
## 3157 http://us.imdb.com/M/title-exact?Congo%20(1995)
## 3158 http://us.imdb.com/M/title-exact?Mute%20Witness%20(1994)
## 3159 http://us.imdb.com/M/title-exact?Prophecy,%20The%20(1995)
## 3160 http://us.imdb.com/M/title-exact?In%20the%20Mouth%20of%20Madness%20(1995)
## 3161 http://us.imdb.com/M/title-exact?Candyman:%20Farewell%20to%20the%20Flesh%20(1995)
## 3162 http://us.imdb.com/M/title-exact?Frisk%20(1995)
## 3163 http://us.imdb.com/M/title-exact?Space%20Jam%20(1996)
## 3164 http://us.imdb.com/M/title-exact?Halloween:%20The%20Curse%20of%20Michael%20Myers%20(1995)
## 3165 http://us.imdb.com/M/title-exact?Loch%20Ness%20(1995)
## 3166 http://us.imdb.com/M/title-exact?Freeway%20(1996)
## 3167 http://us.imdb.com/M/title-exact?Braindead%20(1992)
## 3168 http://us.imdb.com/M/title-exact?Bad%20Taste%20(1987)
## 3169 http://us.imdb.com/M/title-exact?Amityville:%20Dollhouse%20(1996)
## 3170 http://us.imdb.com/M/title-exact?April%20Fool's%20Day%20(1986)
## 3171 http://us.imdb.com/M/title-exact?Believers,%20The%20(1987)
## 3172 http://us.imdb.com/M/title-exact?Love%20Jones%20(1997)
## 3173 http://us.imdb.com/M/title-exact?Picture+Perfect+(1997)
## 3174 http://us.imdb.com/M/title-exact?Career+Girls+(1997)
## 3175 http://us.imdb.com/M/title-exact?She%27s+So+Lovely+(1997)
## 3176 http://us.imdb.com/M/title-exact?Money+Talks+(1997)
## 3177 http://us.imdb.com/M/title-exact?Excess+Baggage+(1997)
## 3178 http://us.imdb.com/M/title-exact?That%20Darn%20Cat%20(1997)
## 3179 http://us.imdb.com/Title?Unforgettable+(1996)
## 3180 http://us.imdb.com/M/title-exact?Craft,%20The%20(1996)
## 3181 http://us.imdb.com/M/title-exact?Chain%20Reaction%20(1996)
## 3182 http://us.imdb.com/M/title-exact?Island%20of%20Dr.%20Moreau,%20The%20(1996)
## 3183 http://us.imdb.com/M/title-exact?Booty%20Call%20(1997)
## 3184 http://us.imdb.com/Title?Eye+for+an+Eye+(1996)
## 3185 http://us.imdb.com/M/title-exact?Fear%20(1996)
## 3186 http://us.imdb.com/M/title-exact?Solo%20(1996)
## 3187 http://us.imdb.com/M/title-exact?Substitute,%20The%20(1996)
## 3188 http://us.imdb.com/M/title-exact?Heaven's%20Prisoners%20(1996)
## 3189 http://us.imdb.com/M/title-exact?Trigger%20Effect,%20The%20(1996)
## 3190 http://us.imdb.com/M/title-exact?Mother%20Night%20(1996)
## 3191 http://us.imdb.com/M/title-exact?Dangerous%20Ground%20(1997)
## 3192 http://us.imdb.com/M/title-exact?Maximum%20Risk%20(1996)
## 3193 http://us.imdb.com/M/title-exact?Rich%20Man's%20Wife,%20The%20(1996)
## 3194 http://us.imdb.com/M/title-exact?Shadow%20Conspiracy%20(1997)
## 3195 http://us.imdb.com/Title?Blood+%26+Wine+(1997)
## 3196 http://us.imdb.com/M/title-exact?Turbulence%20(1997)
## 3197 http://us.imdb.com/M/title-exact?Underworld%20(1997)
## 3198 http://us.imdb.com/M/title-exact?Beautician%20and%20the%20Beast,%20The%20(1997)
## 3199 http://us.imdb.com/M/title-exact?Cats%20Don%27t%20Dance%20(1997)
## 3200 http://us.imdb.com/M/title-exact?Anna%20Karenina%20%281997%29
## 3201 http://us.imdb.com/Title?Keys+to+Tulsa+(1997)
## 3202 http://us.imdb.com/M/title-exact?Head+Above+Water+(1996)
## 3203 http://us.imdb.com/M/title-exact?Hercules+(1997)
## 3204 http://us.imdb.com/M/title-exact?Last+Time+I+Committed+Suicide%2C+The+(1997)
## 3205 http://us.imdb.com/M/title-exact?Kiss+Me%2C+Guido+(1997)
## 3206 http://us.imdb.com/M/title-exact?GoldenEye%20(1995)
## 3207 http://us.imdb.com/M/title-exact?Get%20Shorty%20(1995)
## 3208 http://us.imdb.com/M/title-exact?From%20Dusk%20Till%20Dawn%20(1996)
## 3209 http://us.imdb.com/M/title-exact?Muppet%20Treasure%20Island%20(1996)
## 3210 http://us.imdb.com/M/title-exact?Hong%20Faan%20Kui%20(1995)
## 3211 http://us.imdb.com/M/title-exact?Batman%20Forever%20(1995)
## 3212 http://us.imdb.com/M/title-exact?Star%20Wars%20(1977)
## 3213 http://us.imdb.com/M/title-exact?Natural%20Born%20Killers%20(1994)
## 3214 http://us.imdb.com/M/title-exact?Stargate%20(1994)
## 3215 http://us.imdb.com/M/title-exact?Crow,%20The%20(1994)
## 3216 http://us.imdb.com/M/title-exact?Fugitive,%20The%20(1993)
## 3217 http://us.imdb.com/M/title-exact?Hot%20Shots!%20Part%20Deux%20(1993)
## 3218 http://us.imdb.com/M/title-exact?Ref,%20The%20(1994)
## 3219 http://us.imdb.com/M/title-exact?Blade%20Runner%20(1982)
## 3220 http://us.imdb.com/M/title-exact?Home%20Alone%20(1990)
## 3221 http://us.imdb.com/M/title-exact?Terminator%202:%20Judgment%20Day%20(1991)
## 3222 http://us.imdb.com/M/title-exact?Sgt.%20Bilko%20(1996)
## 3223 http://us.imdb.com/M/title-exact?Mystery%20Science%20Theater%203000:%20The%20Movie%20(1996)
## 3224 http://us.imdb.com/M/title-exact?Operation%20Dumbo%20Drop%20(1995)
## 3225 http://us.imdb.com/M/title-exact?Rock,%20The%20(1996)
## 3226 http://us.imdb.com/M/title-exact?Twister%20(1996)
## 3227 http://us.imdb.com/M/title-exact?Independence%20Day%20(1996)
## 3228 http://us.imdb.com/M/title-exact?Godfather,%20The%20(1972)
## 3229 http://us.imdb.com/M/title-exact?Police%20Story%20III:%20Supercop%20(1992)
## 3230 http://us.imdb.com/M/title-exact?Die%20Hard%20(1988)
## 3231 http://us.imdb.com/M/title-exact?Fish%20Called%20Wanda,%20A%20(1988)
## 3232 http://us.imdb.com/M/title-exact?Life%20of%20Brian%20(1979)
## 3233 http://us.imdb.com/M/title-exact?Top%20Gun%20(1986)
## 3234 http://us.imdb.com/M/title-exact?Return%20of%20the%20Pink%20Panther,%20The%20(1974)
## 3235 http://us.imdb.com/M/title-exact?Private%20Benjamin%20(1980)
## 3236 http://us.imdb.com/M/title-exact?Monty%20Python%20and%20the%20Holy%20Grail%20(1974)
## 3237 http://us.imdb.com/M/title-exact?Empire%20Strikes%20Back,%20The%20(1980)
## 3238 http://us.imdb.com/M/title-exact?Princess%20Bride,%20The%20(1987)
## 3239 http://us.imdb.com/M/title-exact?Raiders%20of%20the%20Lost%20Ark%20(1981)
## 3240 http://us.imdb.com/M/title-exact?Brazil%20(1985)
## 3241 http://us.imdb.com/M/title-exact?Aliens%20(1986)
## 3242 http://us.imdb.com/M/title-exact?Return%20of%20the%20Jedi%20(1983)
## 3243 http://us.imdb.com/M/title-exact?Army%20of%20Darkness%20(1993)
## 3244 http://us.imdb.com/M/title-exact?Blues%20Brothers,%20The%20(1980)
## 3245 http://us.imdb.com/M/title-exact?Godfather:%20Part%20II,%20The%20(1974)
## 3246 http://us.imdb.com/M/title-exact?Sting,%20The%20(1973)
## 3247 http://us.imdb.com/M/title-exact?Terminator,%20The%20(1984)
## 3248 http://us.imdb.com/M/title-exact?Evil%20Dead%20II%20(1987)
## 3249 http://us.imdb.com/M/title-exact?Groundhog%20Day%20(1993)
## 3250 http://us.imdb.com/M/title-exact?Back%20to%20the%20Future%20(1985)
## 3251 http://us.imdb.com/M/title-exact?Young%20Frankenstein%20(1974)
## 3252 http://us.imdb.com/M/title-exact?This%20Is%20Spinal%20Tap%20(1984)
## 3253 http://us.imdb.com/M/title-exact?Indiana%20Jones%20and%20the%20Last%20Crusade%20(1989)
## 3254 http://us.imdb.com/M/title-exact?MASH%20(1970)
## 3255 http://us.imdb.com/M/title-exact?When%20Harry%20Met%20Sally...%20(1989)
## 3256 http://us.imdb.com/M/title-exact?Star%20Trek:%20First%20Contact%20(1996)
## 3257 http://us.imdb.com/M/title-exact?Die%20Hard%202%20(1990)
## 3258 http://us.imdb.com/M/title-exact?Star%20Trek%20VI:%20The%20Undiscovered%20Country%20(1991)
## 3259 http://us.imdb.com/M/title-exact?Star%20Trek:%20The%20Wrath%20of%20Khan%20(1982)
## 3260 http://us.imdb.com/M/title-exact?Star%20Trek%20III:%20The%20Search%20for%20Spock%20(1984)
## 3261 http://us.imdb.com/M/title-exact?Star%20Trek%20IV:%20The%20Voyage%20Home%20(1986)
## 3262 http://us.imdb.com/M/title-exact?Batman%20Returns%20(1992)
## 3263 http://us.imdb.com/M/title-exact?Under%20Siege%20(1992)
## 3264 http://us.imdb.com/M/title-exact?Raising%20Arizona%20(1987)
## 3265 http://us.imdb.com/M/title-exact?Last%20of%20the%20Mohicans,%20The%20(1992)
## 3266 http://us.imdb.com/M/title-exact?Fifth%20Element%2C%20The%20%281997%29
## 3267 http://us.imdb.com/Title?Contact+(1997/I)
## 3268 http://us.imdb.com/M/title-exact?Hunt+for+Red+October%2C+The+(1990)
## 3269 http://us.imdb.com/M/title-exact?Fierce%20Creatures%20(1997)
## 3270 http://us.imdb.com/Title?Liar+Liar+(1997)
## 3271 http://us.imdb.com/M/title-exact?Spawn+(1997/I)
## 3272 http://us.imdb.com/M/title-exact?Clueless%20(1995)
## 3273 http://us.imdb.com/M/title-exact?Houseguest%20(1994)
## 3274 http://us.imdb.com/M/title-exact?Heavyweights%20(1994)
## 3275 http://us.imdb.com/M/title-exact?Naked%20Gun%2033%201/3:%20The%20Final%20Insult%20(1994)
## 3276 http://us.imdb.com/M/title-exact?True%20Lies%20(1994)
## 3277 http://us.imdb.com/M/title-exact?Addams%20Family%20Values%20(1993)
## 3278 http://us.imdb.com/M/title-exact?Mrs.%20Doubtfire%20(1993)
## 3279 http://us.imdb.com/M/title-exact?Three%20Musketeers,%20The%20(1993)
## 3280 http://us.imdb.com/M/title-exact?Batman%20(1989)
## 3281 http://us.imdb.com/M/title-exact?Mission:%20Impossible%20(1996)
## 3282 http://us.imdb.com/M/title-exact?Spy%20Hard%20(1996)
## 3283 http://us.imdb.com/M/title-exact?Nutty%20Professor,%20The%20(1996)
## 3284 http://us.imdb.com/M/title-exact?Duck%20Soup%20(1933)
## 3285 http://us.imdb.com/M/title-exact?Highlander%20(1986)
## 3286 http://us.imdb.com/M/title-exact?Heathers%20(1989)
## 3287 http://us.imdb.com/M/title-exact?Butch%20Cassidy%20and%20the%20Sundance%20Kid%20(1969)
## 3288 http://us.imdb.com/M/title-exact?Star%20Trek:%20The%20Motion%20Picture%20(1979)
## 3289 http://us.imdb.com/M/title-exact?Grease%20(1978)
## 3290 http://us.imdb.com/M/title-exact?Police%20Story%204:%20First%20Strike%20(1996)
## 3291 http://us.imdb.com/M/title-exact?Beverly%20Hills%20Ninja%20(1997)
## 3292 http://us.imdb.com/M/title-exact?Bananas%20(1971)
## 3293 http://us.imdb.com/M/title-exact?Shichinin%20no%20samurai%20(1954)
## 3294 http://us.imdb.com/M/title-exact?Lawrence%20of%20Arabia%20(1962)
## 3295 http://us.imdb.com/M/title-exact?Boot,%20Das%20(1981)
## 3296 http://us.imdb.com/M/title-exact?Cool%20Hand%20Luke%20(1967)
## 3297 http://us.imdb.com/M/title-exact?Ben-Hur%20(1959)
## 3298 http://us.imdb.com/M/title-exact?Broken%20Arrow%20(1996)
## 3299 http://us.imdb.com/M/title-exact?Die%20Hard:%20With%20a%20Vengeance%20(1995)
## 3300 http://us.imdb.com/M/title-exact?Waterworld%20(1995)
## 3301 http://us.imdb.com/M/title-exact?Clear%20and%20Present%20Danger%20(1994)
## 3302 http://us.imdb.com/M/title-exact?Speed%20(1994/I)
## 3303 http://us.imdb.com/M/title-exact?Escape%20from%20New%20York%20(1981)
## 3304 http://us.imdb.com/M/title-exact?Quiet%20Man,%20The%20(1952)
## 3305 http://us.imdb.com/M/title-exact?Glory%20(1989)
## 3306 http://us.imdb.com/M/title-exact?Alien%203%20(1992)
## 3307 http://us.imdb.com/M/title-exact?Rocket+Man+(1997)
## 3308 http://us.imdb.com/M/title-exact?In%20the%20Line%20of%20Fire%20(1993)
## 3309 http://us.imdb.com/M/title-exact?McHale's%20Navy%20(1997)
## 3310 http://us.imdb.com/M/title-exact?Leave+It+To+Beaver+(1997)
## 3311 http://us.imdb.com/M/title-exact?American%20President,%20The%20(1995)
## 3312 http://us.imdb.com/M/title-exact?Tin%20Men%20(1987)
## 3313 http://us.imdb.com/M/title-exact?Corrina,%20Corrina%20(1994)
## 3314 http://us.imdb.com/M/title-exact?Dave%20(1993)
## 3315 http://us.imdb.com/M/title-exact?Dumb%20&%20Dumber%20(1994)
## 3316 http://us.imdb.com/M/title-exact?Baby-Sitters%20Club,%20The%20(1995)
## 3317 http://us.imdb.com/M/title-exact?Bullets%20Over%20Broadway%20(1994)
## 3318 http://us.imdb.com/M/title-exact?Last%20Man%20Standing%20(1996/I)
## 3319 http://us.imdb.com/M/title-exact?Jingle%20All%20the%20Way%20(1996)
## 3320 http://us.imdb.com/M/title-exact?Vegas%20Vacation%20(1997)
## 3321 http://us.imdb.com/M/title-exact?That%20Darn%20Cat%20(1997)
## 3322 http://us.imdb.com/M/title-exact?Down%20Periscope%20(1996)
## 3323 http://us.imdb.com/M/title-exact?First%20Kid%20(1996)
## 3324 http://us.imdb.com/M/title-exact?Booty%20Call%20(1997)
## 3325 http://us.imdb.com/M/title-exact?Beautician%20and%20the%20Beast,%20The%20(1997)
## 3326 http://us.imdb.com/M/title-exact?Big%20Green,%20The%20(1995)
## 3327 http://us.imdb.com/M/title-exact?Stuart%20Saves%20His%20Family%20(1995)
## 3328 http://us.imdb.com/M/title-exact?Cabin%20Boy%20(1994)
## 3329 http://us.imdb.com/M/title-exact?Clean%20Slate%20(1994)
## 3330 http://us.imdb.com/M/title-exact?Lightning%20Jack%20(1994)
## 3331 http://us.imdb.com/M/title-exact?Stupids,%20The%20(1996)
## 3332 http://us.imdb.com/M/title-exact?Pest,%20The%20(1997)
## 3333 http://us.imdb.com/M/title-exact?Toy%20Story%20(1995)
## 3334 http://us.imdb.com/M/title-exact?Twelve%20Monkeys%20(1995)
## 3335 http://us.imdb.com/M/title-exact?Babe%20(1995)
## 3336 http://us.imdb.com/M/title-exact?Mighty%20Aphrodite%20(1995)
## 3337 http://us.imdb.com/M/title-exact?Postino,%20Il%20(1994)
## 3338 http://us.imdb.com/M/title-exact?Antonia%20(1995)
## 3339 http://us.imdb.com/M/title-exact?Apollo%2013%20(1995)
## 3340 http://us.imdb.com/M/title-exact?Crumb%20(1994)
## 3341 http://us.imdb.com/M/title-exact?Star%20Wars%20(1977)
## 3342 http://us.imdb.com/Title?L%E9on+(1994)
## 3343 http://us.imdb.com/M/title-exact?Pulp%20Fiction%20(1994)
## 3344 http://us.imdb.com/M/title-exact?Trzy%20kolory:%20Czerwony%20(1994)
## 3345 http://us.imdb.com/M/title-exact?Stargate%20(1994)
## 3346 http://us.imdb.com/M/title-exact?Four%20Weddings%20and%20a%20Funeral%20(1994)
## 3347 http://us.imdb.com/M/title-exact?Lion%20King,%20The%20(1994)
## 3348 http://us.imdb.com/M/title-exact?Maverick%20(1994)
## 3349 http://us.imdb.com/M/title-exact?Fugitive,%20The%20(1993)
## 3350 http://us.imdb.com/M/title-exact?Jurassic%20Park%20(1993)
## 3351 http://us.imdb.com/M/title-exact?Much%20Ado%20About%20Nothing%20(1993)
## 3352 http://us.imdb.com/M/title-exact?Sleepless%20in%20Seattle%20(1993)
## 3353 http://us.imdb.com/M/title-exact?Blade%20Runner%20(1982)
## 3354 http://us.imdb.com/M/title-exact?So%20I%20Married%20an%20Axe%20Murderer%20(1993)
## 3355 http://us.imdb.com/M/title-exact?Nightmare%20Before%20Christmas,%20The%20(1993)
## 3356 http://us.imdb.com/M/title-exact?Aladdin%20(1992)
## 3357 http://us.imdb.com/M/title-exact?Terminator%202:%20Judgment%20Day%20(1991)
## 3358 http://us.imdb.com/M/title-exact?Silence%20of%20the%20Lambs,%20The%20(1991)
## 3359 http://us.imdb.com/M/title-exact?Snow%20White%20and%20the%20Seven%20Dwarfs%20(1937)
## 3360 http://us.imdb.com/M/title-exact?Fargo%20(1996)
## 3361 http://us.imdb.com/M/title-exact?Aristocats,%20The%20(1970)
## 3362 http://us.imdb.com/M/title-exact?Mystery%20Science%20Theater%203000:%20The%20Movie%20(1996)
## 3363 http://us.imdb.com/M/title-exact?Cold%20Comfort%20Farm%20(1995)%20(TV)
## 3364 http://us.imdb.com/M/title-exact?Lone%20Star%20(1996)
## 3365 http://us.imdb.com/M/title-exact?Breakfast%20at%20Tiffany's%20(1961)
## 3366 http://us.imdb.com/M/title-exact?Wizard%20of%20Oz,%20The%20(1939)
## 3367 http://us.imdb.com/M/title-exact?Gone%20with%20the%20Wind%20(1939)
## 3368 http://us.imdb.com/M/title-exact?Citizen%20Kane%20(1941)
## 3369 http://us.imdb.com/M/title-exact?Sound%20of%20Music,%20The%20(1965)
## 3370 http://us.imdb.com/M/title-exact?Die%20Hard%20(1988)
## 3371 http://us.imdb.com/M/title-exact?Lawnmower%20Man,%20The%20(1992)
## 3372 http://us.imdb.com/M/title-exact?Willy%20Wonka%20and%20the%20Chocolate%20Factory%20(1971)
## 3373 http://us.imdb.com/M/title-exact?Fish%20Called%20Wanda,%20A%20(1988)
## 3374 http://us.imdb.com/M/title-exact?Life%20of%20Brian%20(1979)
## 3375 http://us.imdb.com/M/title-exact?Dirty%20Dancing%20(1987)
## 3376 http://us.imdb.com/M/title-exact?Reservoir%20Dogs%20(1992)
## 3377 http://us.imdb.com/M/title-exact?Top%20Gun%20(1986)
## 3378 http://us.imdb.com/M/title-exact?On%20Golden%20Pond%20(1981)
## 3379 http://us.imdb.com/M/title-exact?Nuovo%20cinema%20Paradiso%20(1988)
## 3380 http://us.imdb.com/M/title-exact?Delicatessen%20(1991)
## 3381 http://us.imdb.com/M/title-exact?Empire%20Strikes%20Back,%20The%20(1980)
## 3382 http://us.imdb.com/M/title-exact?Princess%20Bride,%20The%20(1987)
## 3383 http://us.imdb.com/M/title-exact?Raiders%20of%20the%20Lost%20Ark%20(1981)
## 3384 http://us.imdb.com/M/title-exact?Brazil%20(1985)
## 3385 http://us.imdb.com/M/title-exact?Aliens%20(1986)
## 3386 http://us.imdb.com/M/title-exact?Buono,%20il%20brutto,%20il%20cattivo,%20Il%20(1966)
## 3387 http://us.imdb.com/M/title-exact?Return%20of%20the%20Jedi%20(1983)
## 3388 http://us.imdb.com/M/title-exact?Alien%20(1979)
## 3389 http://us.imdb.com/M/title-exact?Psycho%20(1960)
## 3390 http://us.imdb.com/M/title-exact?Full%20Metal%20Jacket%20(1987)
## 3391 http://us.imdb.com/M/title-exact?Grand%20Day%20Out,%20A%20(1992)
## 3392 http://us.imdb.com/M/title-exact?Amadeus%20(1984)
## 3393 http://us.imdb.com/M/title-exact?Sting,%20The%20(1973)
## 3394 http://us.imdb.com/M/title-exact?Terminator,%20The%20(1984)
## 3395 http://us.imdb.com/M/title-exact?Dead%20Poets%20Society%20(1989)
## 3396 http://us.imdb.com/M/title-exact?Groundhog%20Day%20(1993)
## 3397 http://us.imdb.com/M/title-exact?Unforgiven%20(1992)
## 3398 http://us.imdb.com/M/title-exact?Back%20to%20the%20Future%20(1985)
## 3399 http://us.imdb.com/M/title-exact?This%20Is%20Spinal%20Tap%20(1984)
## 3400 http://us.imdb.com/M/title-exact?MASH%20(1970)
## 3401 http://us.imdb.com/M/title-exact?Room%20with%20a%20View,%20A%20(1986)
## 3402 http://us.imdb.com/M/title-exact?Pink%20Floyd%20-%20The%20Wall%20(1982)
## 3403 http://us.imdb.com/M/title-exact?Field%20of%20Dreams%20(1989)
## 3404 http://us.imdb.com/M/title-exact?When%20Harry%20Met%20Sally...%20(1989)
## 3405 http://us.imdb.com/M/title-exact?Bram%20Stoker's%20Dracula%20(1992)
## 3406 http://us.imdb.com/M/title-exact?Nightmare%20on%20Elm%20Street,%20A%20(1984)
## 3407 http://us.imdb.com/M/title-exact?Star%20Trek:%20First%20Contact%20(1996)
## 3408 http://us.imdb.com/M/title-exact?Ridicule%20(1996)
## 3409 http://us.imdb.com/M/title-exact?Star%20Trek%20VI:%20The%20Undiscovered%20Country%20(1991)
## 3410 http://us.imdb.com/M/title-exact?Star%20Trek:%20The%20Wrath%20of%20Khan%20(1982)
## 3411 http://us.imdb.com/M/title-exact?Star%20Trek%20III:%20The%20Search%20for%20Spock%20(1984)
## 3412 http://us.imdb.com/M/title-exact?Star%20Trek%20IV:%20The%20Voyage%20Home%20(1986)
## 3413 http://us.imdb.com/M/title-exact?Jaws%20(1975)
## 3414 http://us.imdb.com/M/title-exact?Mars%20Attacks!%20(1996)
## 3415 http://us.imdb.com/M/title-exact?Raising%20Arizona%20(1987)
## 3416 http://us.imdb.com/M/title-exact?Fifth%20Element%2C%20The%20%281997%29
## 3417 http://us.imdb.com/M/title-exact?Men+in+Black+(1997)
## 3418 http://us.imdb.com/Title?Contact+(1997/I)
## 3419 http://us.imdb.com/M/title-exact?Full+Monty%2C+The+(1997)
## 3420 http://us.imdb.com/M/title-exact?Sense%20and%20Sensibility%20(1995)
## 3421 http://us.imdb.com/M/title-exact?Emma%20(1996)
## 3422 http://us.imdb.com/Title?Liar+Liar+(1997)
## 3423 http://us.imdb.com/Title?Apt+Pupil+(1998)
## 3424 http://us.imdb.com/M/title-exact?Dante's%20Peak%20(1997)
## 3425 http://us.imdb.com/M/title-exact?One%20Flew%20Over%20the%20Cuckoo's%20Nest%20(1975)
## 3426 http://us.imdb.com/M/title-exact?Clueless%20(1995)
## 3427 http://us.imdb.com/M/title-exact?Star%20Trek:%20Generations%20(1994)
## 3428 http://us.imdb.com/M/title-exact?Muriel's%20Wedding%20(1994)
## 3429 http://us.imdb.com/M/title-exact?True%20Lies%20(1994)
## 3430 http://us.imdb.com/M/title-exact?Addams%20Family%20Values%20(1993)
## 3431 http://us.imdb.com/M/title-exact?Age%20of%20Innocence,%20The%20(1993)
## 3432 http://us.imdb.com/M/title-exact?Pinocchio%20(1940)
## 3433 http://us.imdb.com/M/title-exact?Mission:%20Impossible%20(1996)
## 3434 http://us.imdb.com/M/title-exact?Close%20Shave,%20A%20(1995)
## 3435 http://us.imdb.com/M/title-exact?My%20Favorite%20Year%20(1982)
## 3436 http://us.imdb.com/M/title-exact?Cinderella%20(1950)
## 3437 http://us.imdb.com/M/title-exact?Mary%20Poppins%20(1964)
## 3438 http://us.imdb.com/Title?Romeo+%2B+Juliet+(1996)
## 3439 http://us.imdb.com/M/title-exact?E%2ET%2E%20the%20Extra-Terrestrial%20%281982%29
## 3440 http://us.imdb.com/M/title-exact?To%20Kill%20a%20Mockingbird%20(1962)
## 3441 http://us.imdb.com/M/title-exact?Fantasia%20(1940)
## 3442 http://us.imdb.com/M/title-exact?Heathers%20(1989)
## 3443 http://us.imdb.com/M/title-exact?Star%20Trek:%20The%20Motion%20Picture%20(1979)
## 3444 http://us.imdb.com/M/title-exact?Grease%20(1978)
## 3445 http://us.imdb.com/M/title-exact?Secret%20of%20Roan%20Inish,%20The%20(1994)
## 3446 http://us.imdb.com/M/title-exact?Dragonheart%20(1996)
## 3447 http://us.imdb.com/M/title-exact?Vertigo%20(1958)
## 3448 http://us.imdb.com/M/title-exact?Casablanca%20(1942)
## 3449 http://us.imdb.com/M/title-exact?Bonnie%20and%20Clyde%20(1967)
## 3450 http://us.imdb.com/M/title-exact?Lawrence%20of%20Arabia%20(1962)
## 3451 http://us.imdb.com/Title?Himmel+%FCber+Berlin,+Der+(1987)
## 3452 http://us.imdb.com/M/title-exact?Local%20Hero%20(1983)
## 3453 http://us.imdb.com/M/title-exact?Miller's%20Crossing%20(1990)
## 3454 http://us.imdb.com/M/title-exact?Down%20by%20Law%20(1986)
## 3455 http://us.imdb.com/M/title-exact?Ben-Hur%20(1959)
## 3456 http://us.imdb.com/M/title-exact?Gandhi%20(1982)
## 3457 http://us.imdb.com/M/title-exact?Killing%20Fields,%20The%20(1984)
## 3458 http://us.imdb.com/M/title-exact?Man%20Who%20Would%20Be%20King,%20The%20(1975)
## 3459 http://us.imdb.com/M/title-exact?Mortal%20Kombat%20(1995)
## 3460 http://us.imdb.com/M/title-exact?Broken%20Arrow%20(1996)
## 3461 http://us.imdb.com/M/title-exact?Rob%20Roy%20(1995)
## 3462 http://us.imdb.com/M/title-exact?Beauty%20and%20the%20Beast%20(1991)
## 3463 http://us.imdb.com/M/title-exact?Eraser%20(1996)
## 3464 http://us.imdb.com/M/title-exact?Rear%20Window%20(1954)
## 3465 http://us.imdb.com/M/title-exact?Victor/Victoria%20%281982%29
## 3466 http://us.imdb.com/M/title-exact?Grifters,%20The%20(1990)
## 3467 http://us.imdb.com/M/title-exact?Rosencrantz%20and%20Guildenstern%20Are%20Dead%20(1990)
## 3468 http://us.imdb.com/M/title-exact?Stand%20by%20Me%20(1986)
## 3469 http://us.imdb.com/M/title-exact?Somewhere%20in%20Time%20(1980)
## 3470 http://us.imdb.com/M/title-exact?Conan+the+Barbarian+(1981)
## 3471 http://us.imdb.com/Title?Persuasion+(1995/I)
## 3472 http://us.imdb.com/M/title-exact?Singin'%20in%20the%20Rain%20(1952)
## 3473 http://us.imdb.com/Title?Better+Off+Dead...+(1985)
## 3474 http://us.imdb.com/M/title-exact?Othello%20(1995)
## 3475 http://us.imdb.com/M/title-exact?Pretty%20Woman%20(1990)
## 3476 http://us.imdb.com/M/title-exact?Benny%20&%20Joon%20(1993)
## 3477 http://us.imdb.com/M/title-exact?Dumb%20&%20Dumber%20(1994)
## 3478 http://us.imdb.com/M/title-exact?Night%20on%20Earth%20(1991)
## 3479 http://us.imdb.com/Title?Cit%E9+des+enfants+perdus,+La+(1995)
## 3480 http://us.imdb.com/M/title-exact?Orlando%20(1993)
## 3481 http://us.imdb.com/M/title-exact?Geronimo:%20An%20American%20Legend%20(1993)
## 3482 http://us.imdb.com/M/title-exact?Podwojne%20zycie%20Weroniki%20(1991)
## 3483 http://us.imdb.com/M/title-exact?Bis%20ans%20Ende%20der%20Welt%20(1991)
## 3484 http://us.imdb.com/M/title-exact?Twelve%20Monkeys%20(1995)
## 3485 http://us.imdb.com/M/title-exact?Babe%20(1995)
## 3486 http://us.imdb.com/M/title-exact?Dead%20Man%20Walking%20(1995)
## 3487 http://us.imdb.com/M/title-exact?Se7en%20(1995)
## 3488 http://us.imdb.com/M/title-exact?Usual%20Suspects,%20The%20(1995)
## 3489 http://us.imdb.com/M/title-exact?Birdcage,%20The%20(1996)
## 3490 http://us.imdb.com/M/title-exact?Billy%20Madison%20(1995)
## 3491 http://us.imdb.com/Title?L%E9on+(1994)
## 3492 http://us.imdb.com/M/title-exact?Pulp%20Fiction%20(1994)
## 3493 http://us.imdb.com/M/title-exact?Quiz%20Show%20(1994)
## 3494 http://us.imdb.com/M/title-exact?Shawshank%20Redemption,%20The%20(1994)
## 3495 http://us.imdb.com/M/title-exact?Forrest%20Gump%20(1994)
## 3496 http://us.imdb.com/M/title-exact?Lion%20King,%20The%20(1994)
## 3497 http://us.imdb.com/M/title-exact?Fugitive,%20The%20(1993)
## 3498 http://us.imdb.com/M/title-exact?True%20Romance%20(1993)
## 3499 http://us.imdb.com/M/title-exact?Dances%20with%20Wolves%20(1990)
## 3500 http://us.imdb.com/M/title-exact?Silence%20of%20the%20Lambs,%20The%20(1991)
## 3501 http://us.imdb.com/M/title-exact?Fargo%20(1996)
## 3502 http://us.imdb.com/M/title-exact?Mystery%20Science%20Theater%203000:%20The%20Movie%20(1996)
## 3503 http://us.imdb.com/M/title-exact?Rock,%20The%20(1996)
## 3504 http://us.imdb.com/M/title-exact?Godfather,%20The%20(1972)
## 3505 http://us.imdb.com/M/title-exact?Bound%20(1996)
## 3506 http://us.imdb.com/M/title-exact?Wizard%20of%20Oz,%20The%20(1939)
## 3507 http://us.imdb.com/M/title-exact?Willy%20Wonka%20and%20the%20Chocolate%20Factory%20(1971)
## 3508 http://us.imdb.com/M/title-exact?Fish%20Called%20Wanda,%20A%20(1988)
## 3509 http://us.imdb.com/M/title-exact?Princess%20Bride,%20The%20(1987)
## 3510 http://us.imdb.com/M/title-exact?Aliens%20(1986)
## 3511 http://us.imdb.com/M/title-exact?12%20Angry%20Men%20(1957)
## 3512 http://us.imdb.com/M/title-exact?Apocalypse%20Now%20(1979)
## 3513 http://us.imdb.com/M/title-exact?Amadeus%20(1984)
## 3514 http://us.imdb.com/M/title-exact?Shining,%20The%20(1980)
## 3515 http://us.imdb.com/M/title-exact?When%20Harry%20Met%20Sally...%20(1989)
## 3516 http://us.imdb.com/M/title-exact?Sling%20Blade%20(1996)
## 3517 http://us.imdb.com/M/title-exact?Jerry%20Maguire%20(1996)
## 3518 http://us.imdb.com/M/title-exact?Raising%20Arizona%20(1987)
## 3519 http://us.imdb.com/M/title-exact?Austin%20Powers%3A%20International%20Man%20of%20Mystery%20%281997%29
## 3520 http://us.imdb.com/Title?Contact+(1997/I)
## 3521 http://us.imdb.com/M/title-exact?Sense%20and%20Sensibility%20(1995)
## 3522 http://us.imdb.com/M/title-exact?Leaving%20Las%20Vegas%20(1995)
## 3523 http://us.imdb.com/M/title-exact?English%20Patient,%20The%20(1996)
## 3524 http://us.imdb.com/M/title-exact?Scream%20(1996)
## 3525 http://us.imdb.com/M/title-exact?Evita%20(1996)
## 3526 http://us.imdb.com/Title?Liar+Liar+(1997)
## 3527 http://us.imdb.com/M/title-exact?Air+Force+One+(1997)
## 3528 http://us.imdb.com/M/title-exact?Schindler's%20List%20(1993)
## 3529 http://us.imdb.com/Title?Lost+Highway+(1997)
## 3530 http://us.imdb.com/M/title-exact?One%20Flew%20Over%20the%20Cuckoo's%20Nest%20(1975)
## 3531 http://us.imdb.com/M/title-exact?Spawn+(1997/I)
## 3532 http://us.imdb.com/M/title-exact?Clueless%20(1995)
## 3533 http://us.imdb.com/M/title-exact?Jeffrey%20(1995)
## 3534 http://us.imdb.com/M/title-exact?Ghost%20(1990)
## 3535 http://us.imdb.com/Title?Romeo+%2B+Juliet+(1996)
## 3536 http://us.imdb.com/M/title-exact?To%20Kill%20a%20Mockingbird%20(1962)
## 3537 http://us.imdb.com/Title?Trainspotting+(1996)
## 3538 http://us.imdb.com/M/title-exact?Matilda%20(1996)
## 3539 http://us.imdb.com/M/title-exact?Sabrina%20(1954)
## 3540 http://us.imdb.com/M/title-exact?People%20vs.%20Larry%20Flynt,%20The%20(1996)
## 3541 http://us.imdb.com/M/title-exact?Miller's%20Crossing%20(1990)
## 3542 http://us.imdb.com/M/title-exact?Piano,%20The%20(1993)
## 3543 http://us.imdb.com/M/title-exact?Stand%20by%20Me%20(1986)
## 3544 http://us.imdb.com/M/title-exact?Somewhere%20in%20Time%20(1980)
## 3545 http://us.imdb.com/M/title-exact?Little%20Women%20(1994)
## 3546 http://us.imdb.com/M/title-exact?Immortal%20Beloved%20(1994)
## 3547 http://us.imdb.com/M/title-exact?Nell%20(1994)
## 3548 http://us.imdb.com/M/title-exact?Ransom%20(1996)
## 3549 http://us.imdb.com/M/title-exact?Happy%20Gilmore%20(1996)
## 3550 http://us.imdb.com/Title?Cit%E9+des+enfants+perdus,+La+(1995)
## 3551 http://us.imdb.com/M/title-exact?Waiting%20for%20Guffman%20(1996)
## 3552 http://us.imdb.com/M/title-exact?Toy%20Story%20(1995)
## 3553 http://us.imdb.com/M/title-exact?Twelve%20Monkeys%20(1995)
## 3554 http://us.imdb.com/M/title-exact?Babe%20(1995)
## 3555 http://us.imdb.com/M/title-exact?Mighty%20Aphrodite%20(1995)
## 3556 http://us.imdb.com/M/title-exact?Taxi%20Driver%20(1976)
## 3557 http://us.imdb.com/M/title-exact?Birdcage,%20The%20(1996)
## 3558 http://us.imdb.com/M/title-exact?Star%20Wars%20(1977)
## 3559 http://us.imdb.com/M/title-exact?Fugitive,%20The%20(1993)
## 3560 http://us.imdb.com/M/title-exact?Jurassic%20Park%20(1993)
## 3561 http://us.imdb.com/M/title-exact?Remains%20of%20the%20Day,%20The%20(1993)
## 3562 http://us.imdb.com/M/title-exact?Silence%20of%20the%20Lambs,%20The%20(1991)
## 3563 http://us.imdb.com/Title?Wallace+%26+Gromit%3A+The+Best+of+Aardman+Animation+(1996)
## 3564 http://us.imdb.com/M/title-exact?Cold%20Comfort%20Farm%20(1995)%20(TV)
## 3565 http://us.imdb.com/M/title-exact?Independence%20Day%20(1996)
## 3566 http://us.imdb.com/M/title-exact?Phenomenon%20(1996)
## 3567 http://us.imdb.com/M/title-exact?Godfather,%20The%20(1972)
## 3568 http://us.imdb.com/M/title-exact?Breakfast%20at%20Tiffany's%20(1961)
## 3569 http://us.imdb.com/M/title-exact?Gone%20with%20the%20Wind%20(1939)
## 3570 http://us.imdb.com/M/title-exact?Citizen%20Kane%20(1941)
## 3571 http://us.imdb.com/M/title-exact?2001:%20A%20Space%20Odyssey%20(1968)
## 3572 http://us.imdb.com/M/title-exact?20,000%20Leagues%20Under%20the%20Sea%20(1954)
## 3573 http://us.imdb.com/M/title-exact?Sound%20of%20Music,%20The%20(1965)
## 3574 http://us.imdb.com/M/title-exact?Willy%20Wonka%20and%20the%20Chocolate%20Factory%20(1971)
## 3575 http://us.imdb.com/M/title-exact?Wrong%20Trousers,%20The%20(1993)
## 3576 http://us.imdb.com/M/title-exact?Princess%20Bride,%20The%20(1987)
## 3577 http://us.imdb.com/M/title-exact?Raiders%20of%20the%20Lost%20Ark%20(1981)
## 3578 http://us.imdb.com/M/title-exact?Aliens%20(1986)
## 3579 http://us.imdb.com/M/title-exact?Buono,%20il%20brutto,%20il%20cattivo,%20Il%20(1966)
## 3580 http://us.imdb.com/M/title-exact?Return%20of%20the%20Jedi%20(1983)
## 3581 http://us.imdb.com/M/title-exact?Alien%20(1979)
## 3582 http://us.imdb.com/M/title-exact?Blues%20Brothers,%20The%20(1980)
## 3583 http://us.imdb.com/M/title-exact?Grand%20Day%20Out,%20A%20(1992)
## 3584 http://us.imdb.com/M/title-exact?Terminator,%20The%20(1984)
## 3585 http://us.imdb.com/M/title-exact?Graduate,%20The%20(1967)
## 3586 http://us.imdb.com/M/title-exact?Back%20to%20the%20Future%20(1985)
## 3587 http://us.imdb.com/M/title-exact?Young%20Frankenstein%20(1974)
## 3588 http://us.imdb.com/M/title-exact?Star%20Trek:%20First%20Contact%20(1996)
## 3589 http://us.imdb.com/M/title-exact?Star%20Trek:%20The%20Wrath%20of%20Khan%20(1982)
## 3590 http://us.imdb.com/M/title-exact?Raising%20Arizona%20(1987)
## 3591 http://us.imdb.com/M/title-exact?Sneakers%20(1992)
## 3592 http://us.imdb.com/M/title-exact?Men+in+Black+(1997)
## 3593 http://us.imdb.com/Title?Contact+(1997/I)
## 3594 http://us.imdb.com/M/title-exact?Hunt+for+Red+October%2C+The+(1990)
## 3595 http://us.imdb.com/M/title-exact?Full+Monty%2C+The+(1997)
## 3596 http://us.imdb.com/M/title-exact?Sense%20and%20Sensibility%20(1995)
## 3597 http://us.imdb.com/M/title-exact?One%20Flew%20Over%20the%20Cuckoo's%20Nest%20(1975)
## 3598 http://us.imdb.com/M/title-exact?Pinocchio%20(1940)
## 3599 http://us.imdb.com/M/title-exact?Close%20Shave,%20A%20(1995)
## 3600 http://us.imdb.com/M/title-exact?Mary%20Poppins%20(1964)
## 3601 http://us.imdb.com/M/title-exact?To%20Kill%20a%20Mockingbird%20(1962)
## 3602 http://us.imdb.com/M/title-exact?Duck%20Soup%20(1933)
## 3603 http://us.imdb.com/M/title-exact?Fantasia%20(1940)
## 3604 http://us.imdb.com/M/title-exact?Police%20Story%204:%20First%20Strike%20(1996)
## 3605 http://us.imdb.com/M/title-exact?Secret%20of%20Roan%20Inish,%20The%20(1994)
## 3606 http://us.imdb.com/M/title-exact?Dr.%20Strangelove%20or:%20How%20I%20Learned%20to%20Stop%20Worrying%20and%20Love%20the%20Bomb%20(1963)
## 3607 http://us.imdb.com/M/title-exact?Matilda%20(1996)
## 3608 http://us.imdb.com/M/title-exact?Philadelphia%20Story,%20The%20(1940)
## 3609 http://us.imdb.com/M/title-exact?Vertigo%20(1958)
## 3610 http://us.imdb.com/M/title-exact?North%20by%20Northwest%20(1959)
## 3611 http://us.imdb.com/M/title-exact?Around%20the%20World%20in%2080%20Days%20(1956)
## 3612 http://us.imdb.com/M/title-exact?African%20Queen,%20The%20(1951)
## 3613 http://us.imdb.com/M/title-exact?Dumbo%20(1941)
## 3614 http://us.imdb.com/M/title-exact?Great%20Escape,%20The%20(1963)
## 3615 http://us.imdb.com/M/title-exact?Gandhi%20(1982)
## 3616 http://us.imdb.com/M/title-exact?Speed%20(1994/I)
## 3617 http://us.imdb.com/M/title-exact?It%20Happened%20One%20Night%20(1934)
## 3618 http://us.imdb.com/M/title-exact?Lost%20Horizon%20(1937)
## 3619 http://us.imdb.com/M/title-exact?39%20Steps,%20The%20(1935)
## 3620 http://us.imdb.com/M/title-exact?Christmas%20Carol,%20A%20(1938)
## 3621 http://us.imdb.com/M/title-exact?Stand%20by%20Me%20(1986)
## 3622 http://us.imdb.com/M/title-exact?Manchurian%20Candidate,%20The%20(1962)
## 3623 http://us.imdb.com/M/title-exact?American%20President,%20The%20(1995)
## 3624 http://us.imdb.com/M/title-exact?Nell%20(1994)
## 3625 http://us.imdb.com/M/title-exact?Ransom%20(1996)
## 3626 http://us.imdb.com/M/title-exact?Meet%20John%20Doe%20(1941)
## 3627 http://us.imdb.com/M/title-exact?Harriet%20the%20Spy%20(1996)
## 3628 http://us.imdb.com/M/title-exact?Inspector%20General,%20The%20(1949)
## 3629 http://us.imdb.com/M/title-exact?Winnie%20the%20Pooh%20and%20the%20Blustery%20Day%20%281968%29
## 3630 http://us.imdb.com/M/title-exact?Toy%20Story%20(1995)
## 3631 http://us.imdb.com/M/title-exact?Twelve%20Monkeys%20(1995)
## 3632 http://us.imdb.com/M/title-exact?Dead%20Man%20Walking%20(1995)
## 3633 http://us.imdb.com/M/title-exact?Mighty%20Aphrodite%20(1995)
## 3634 http://us.imdb.com/M/title-exact?Postino,%20Il%20(1994)
## 3635 http://us.imdb.com/M/title-exact?Mr.%20Holland's%20Opus%20(1995)
## 3636 http://us.imdb.com/M/title-exact?Hong%20Faan%20Kui%20(1995)
## 3637 http://us.imdb.com/M/title-exact?Birdcage,%20The%20(1996)
## 3638 http://us.imdb.com/M/title-exact?Star%20Wars%20(1977)
## 3639 http://us.imdb.com/M/title-exact?Fargo%20(1996)
## 3640 http://us.imdb.com/M/title-exact?Mystery%20Science%20Theater%203000:%20The%20Movie%20(1996)
## 3641 http://us.imdb.com/M/title-exact?Truth%20About%20Cats%20&%20Dogs,%20The%20(1996)
## 3642 http://us.imdb.com/M/title-exact?Cold%20Comfort%20Farm%20(1995)%20(TV)
## 3643 http://us.imdb.com/M/title-exact?Rock,%20The%20(1996)
## 3644 http://us.imdb.com/M/title-exact?Twister%20(1996)
## 3645 http://us.imdb.com/M/title-exact?Independence%20Day%20(1996)
## 3646 http://us.imdb.com/M/title-exact?Cable%20Guy,%20The%20(1996)
## 3647 http://us.imdb.com/M/title-exact?Phenomenon%20(1996)
## 3648 http://us.imdb.com/M/title-exact?Spitfire%20Grill,%20The%20(1996)
## 3649 http://us.imdb.com/M/title-exact?Godfather,%20The%20(1972)
## 3650 http://us.imdb.com/M/title-exact?Bound%20(1996)
## 3651 http://us.imdb.com/M/title-exact?Ghost%20and%20the%20Darkness,%20The%20(1996)
## 3652 http://us.imdb.com/M/title-exact?Swingers%20(1996)
## 3653 http://us.imdb.com/M/title-exact?Willy%20Wonka%20and%20the%20Chocolate%20Factory%20(1971)
## 3654 http://us.imdb.com/M/title-exact?Return%20of%20the%20Jedi%20(1983)
## 3655 http://us.imdb.com/M/title-exact?Star%20Trek:%20First%20Contact%20(1996)
## 3656 http://us.imdb.com/M/title-exact?Mars%20Attacks!%20(1996)
## 3657 http://us.imdb.com/M/title-exact?Jerry%20Maguire%20(1996)
## 3658 http://us.imdb.com/M/title-exact?Beavis%20and%20Butt-head%20Do%20America%20(1996)
## 3659 http://us.imdb.com/M/title-exact?Chasing+Amy+(1997)
## 3660 http://us.imdb.com/M/title-exact?Grosse%20Pointe%20Blank%20%281997%29
## 3661 http://us.imdb.com/M/title-exact?Austin%20Powers%3A%20International%20Man%20of%20Mystery%20%281997%29
## 3662 http://us.imdb.com/M/title-exact?Fifth%20Element%2C%20The%20%281997%29
## 3663 http://us.imdb.com/M/title-exact?Lost%20World%3A%20Jurassic%20Park%2C%20The%20%281997%29
## 3664 http://us.imdb.com/M/title-exact?My+Best+Friend%27s+Wedding+(1997)
## 3665 http://us.imdb.com/M/title-exact?Men+in+Black+(1997)
## 3666 http://us.imdb.com/Title?Contact+(1997/I)
## 3667 http://us.imdb.com/M/title-exact?Full+Monty%2C+The+(1997)
## 3668 http://us.imdb.com/M/title-exact?Starship+Troopers+(1997)
## 3669 http://us.imdb.com/M/title-exact?Sabrina%20(1995)
## 3670 http://us.imdb.com/M/title-exact?Leaving%20Las%20Vegas%20(1995)
## 3671 http://us.imdb.com/M/title-exact?Time%20to%20Kill,%20A%20(1996)
## 3672 http://us.imdb.com/M/title-exact?Emma%20(1996)
## 3673 http://us.imdb.com/M/title-exact?Tin%20Cup%20(1996)
## 3674 http://us.imdb.com/M/title-exact?English%20Patient,%20The%20(1996)
## 3675 http://us.imdb.com/M/title-exact?Scream%20(1996)
## 3676 http://us.imdb.com/M/title-exact?Absolute%20Power%20(1997)
## 3677 http://us.imdb.com/M/title-exact?Rosewood%20(1997)
## 3678 http://us.imdb.com/M/title-exact?Donnie%20Brasco%20(1997)
## 3679 http://us.imdb.com/Title?Liar+Liar+(1997)
## 3680 http://us.imdb.com/M/title-exact?Face/Off+(1997)
## 3681 http://us.imdb.com/M/title-exact?Air+Force+One+(1997)
## 3682 http://us.imdb.com/M/title-exact?L%2EA%2E+Confidential+(1997)
## 3683 http://us.imdb.com/M/title-exact?Fly%20Away%20Home%20(1996)
## 3684 http://us.imdb.com/M/title-exact?imdb-title-120338
## 3685 http://us.imdb.com/Title?Apt+Pupil+(1998)
## 3686 http://us.imdb.com/Title?As+Good+As+It+Gets+(1997)
## 3687 http://us.imdb.com/M/title-exact?Mother%20(1996/I)
## 3688 http://us.imdb.com/M/title-exact?Murder%20at%201600%20(1997)
## 3689 http://us.imdb.com/M/title-exact?Dante's%20Peak%20(1997)
## 3690 http://us.imdb.com/M/title-exact?Conspiracy+Theory+(1997)
## 3691 http://us.imdb.com/M/title-exact?Game%2C+The+(1997)
## 3692 http://us.imdb.com/M/title-exact?Alien%3A+Resurrection+(1997)
## 3693 http://us.imdb.com/M/title-exact?Black%20Sheep%20(1996)
## 3694 http://us.imdb.com/M/title-exact?Mission:%20Impossible%20(1996)
## 3695 http://us.imdb.com/M/title-exact?Kingpin%20(1996)
## 3696 http://us.imdb.com/M/title-exact?Tales%20from%20the%20Crypt%20Presents:%20Bordello%20of%20Blood%20(1996)
## 3697 http://us.imdb.com/M/title-exact?Police%20Story%204:%20First%20Strike%20(1996)
## 3698 http://us.imdb.com/M/title-exact?Beverly%20Hills%20Ninja%20(1997)
## 3699 http://us.imdb.com/M/title-exact?Nixon%20(1995)
## 3700 http://us.imdb.com/M/title-exact?Courage%20Under%20Fire%20(1996)
## 3701 http://us.imdb.com/Title?Trainspotting+(1996)
## 3702 http://us.imdb.com/M/title-exact?First%20Wives%20Club,%20The%20(1996)
## 3703 http://us.imdb.com/M/title-exact?People%20vs.%20Larry%20Flynt,%20The%20(1996)
## 3704 http://us.imdb.com/M/title-exact?Boot,%20Das%20(1981)
## 3705 http://us.imdb.com/M/title-exact?Broken%20Arrow%20(1996)
## 3706 http://us.imdb.com/M/title-exact?Primal%20Fear%20(1996)
## 3707 http://us.imdb.com/M/title-exact?Eraser%20(1996)
## 3708 http://us.imdb.com/M/title-exact?Sleepers%20(1996)
## 3709 http://us.imdb.com/M/title-exact?Volcano%20%281997%29
## 3710 http://us.imdb.com/M/title-exact?Rocket+Man+(1997)
## 3711 http://us.imdb.com/M/title-exact?Executive%20Decision%20(1996)
## 3712 http://us.imdb.com/M/title-exact?Ransom%20(1996)
## 3713 http://us.imdb.com/M/title-exact?Saint%2C%20The%20(1997)
## 3714 http://us.imdb.com/M/title-exact?imdb-title-118607
## 3715 http://us.imdb.com/M/title-exact?imdb-title-120347
## 3716 http://us.imdb.com/M/title-exact?Screamers%20(1995)
## 3717 http://us.imdb.com/M/title-exact?One%20Fine%20Day%20(1996)
## 3718 http://us.imdb.com/M/title-exact?Escape%20from%20L.A.%20(1996)
## 3719 http://us.imdb.com/M/title-exact?Last%20Man%20Standing%20(1996/I)
## 3720 http://us.imdb.com/M/title-exact?Glimmer%20Man,%20The%20(1996)
## 3721 http://us.imdb.com/M/title-exact?That%20Thing%20You%20Do!%20(1996)
## 3722 http://us.imdb.com/M/title-exact?My%20Fellow%20Americans%20(1996)
## 3723 http://us.imdb.com/M/title-exact?Vegas%20Vacation%20(1997)
## 3724 http://us.imdb.com/M/title-exact?Down%20Periscope%20(1996)
## 3725 http://us.imdb.com/M/title-exact?Chain%20Reaction%20(1996)
## 3726 http://us.imdb.com/M/title-exact?Brassed%20Off%20%281996%29
## 3727 http://us.imdb.com/M/title-exact?Trigger%20Effect,%20The%20(1996)
## 3728 http://us.imdb.com/M/title-exact?I%20Shot%20Andy%20Warhol%20(1996)
## 3729 http://us.imdb.com/M/title-exact?Stealing%20Beauty%20(1996)
## 3730 http://us.imdb.com/M/title-exact?Basquiat%20(1996)
## 3731 http://us.imdb.com/M/title-exact?2%20Days%20in%20the%20Valley%20(1996)
## 3732 http://us.imdb.com/M/title-exact?Private%20Parts%20(1997)
## 3733 http://us.imdb.com/M/title-exact?Anaconda%20%281997%29
## 3734 http://us.imdb.com/M/title-exact?Romy%20and%20Michele%27s%20High%20School%20Reunion%20%281997%29
## 3735 http://us.imdb.com/M/title-exact?Shiloh%20%281997%29
## 3736 http://us.imdb.com/M/title-exact?Con%20Air%20%281997%29
## 3737 http://us.imdb.com/M/title-exact?Dead%20Man%20Walking%20(1995)
## 3738 http://us.imdb.com/M/title-exact?Star%20Wars%20(1977)
## 3739 http://us.imdb.com/M/title-exact?Fargo%20(1996)
## 3740 http://us.imdb.com/M/title-exact?Twister%20(1996)
## 3741 http://us.imdb.com/M/title-exact?Independence%20Day%20(1996)
## 3742 http://us.imdb.com/M/title-exact?Frighteners,%20The%20(1996)
## 3743 http://us.imdb.com/M/title-exact?Ghost%20and%20the%20Darkness,%20The%20(1996)
## 3744 http://us.imdb.com/M/title-exact?Smilla%27s%20Sense%20of%20Snow%20(1997)
## 3745 http://us.imdb.com/M/title-exact?Chasing+Amy+(1997)
## 3746 http://us.imdb.com/M/title-exact?River%20Wild,%20The%20(1994)
## 3747 http://us.imdb.com/M/title-exact?English%20Patient,%20The%20(1996)
## 3748 http://us.imdb.com/M/title-exact?Scream%20(1996)
## 3749 http://us.imdb.com/M/title-exact?Breakdown%20%281997%29
## 3750 http://us.imdb.com/M/title-exact?Face/Off+(1997)
## 3751 http://us.imdb.com/M/title-exact?Crash%20(1996)
## 3752 http://us.imdb.com/M/title-exact?Mary%20Reilly%20(1996)
## 3753 http://us.imdb.com/Title?Trainspotting+(1996)
## 3754 http://us.imdb.com/M/title-exact?People%20vs.%20Larry%20Flynt,%20The%20(1996)
## 3755 http://us.imdb.com/M/title-exact?Boot,%20Das%20(1981)
## 3756 http://us.imdb.com/M/title-exact?Hunchback%20of%20Notre%20Dame,%20The%20(1996)
## 3757 http://us.imdb.com/M/title-exact?Ransom%20(1996)
## 3758 http://us.imdb.com/Title?Unforgettable+(1996)
## 3759 http://us.imdb.com/M/title-exact?Chain%20Reaction%20(1996)
## 3760 http://us.imdb.com/M/title-exact?Heaven's%20Prisoners%20(1996)
## 3761 http://us.imdb.com/M/title-exact?Trees%20Lounge%20(1996)
## 3762 http://us.imdb.com/M/title-exact?Copycat%20(1995)
## 3763 http://us.imdb.com/M/title-exact?Twelve%20Monkeys%20(1995)
## 3764 http://us.imdb.com/M/title-exact?Se7en%20(1995)
## 3765 http://us.imdb.com/M/title-exact?Usual%20Suspects,%20The%20(1995)
## 3766 http://us.imdb.com/M/title-exact?Apollo%2013%20(1995)
## 3767 http://us.imdb.com/M/title-exact?Crimson%20Tide%20(1995)
## 3768 http://us.imdb.com/M/title-exact?Star%20Wars%20(1977)
## 3769 http://us.imdb.com/M/title-exact?Pulp%20Fiction%20(1994)
## 3770 http://us.imdb.com/M/title-exact?Four%20Weddings%20and%20a%20Funeral%20(1994)
## 3771 http://us.imdb.com/M/title-exact?Fugitive,%20The%20(1993)
## 3772 http://us.imdb.com/M/title-exact?Blade%20Runner%20(1982)
## 3773 http://us.imdb.com/M/title-exact?Aladdin%20(1992)
## 3774 http://us.imdb.com/M/title-exact?Terminator%202:%20Judgment%20Day%20(1991)
## 3775 http://us.imdb.com/M/title-exact?Silence%20of%20the%20Lambs,%20The%20(1991)
## 3776 http://us.imdb.com/M/title-exact?Fargo%20(1996)
## 3777 http://us.imdb.com/M/title-exact?Rock,%20The%20(1996)
## 3778 http://us.imdb.com/M/title-exact?Sound%20of%20Music,%20The%20(1965)
## 3779 http://us.imdb.com/M/title-exact?Lawnmower%20Man,%20The%20(1992)
## 3780 http://us.imdb.com/M/title-exact?Fish%20Called%20Wanda,%20A%20(1988)
## 3781 http://us.imdb.com/M/title-exact?Abyss,%20The%20(1989)
## 3782 http://us.imdb.com/M/title-exact?Princess%20Bride,%20The%20(1987)
## 3783 http://us.imdb.com/M/title-exact?Raiders%20of%20the%20Lost%20Ark%20(1981)
## 3784 http://us.imdb.com/M/title-exact?Aliens%20(1986)
## 3785 http://us.imdb.com/M/title-exact?Army%20of%20Darkness%20(1993)
## 3786 http://us.imdb.com/M/title-exact?Psycho%20(1960)
## 3787 http://us.imdb.com/M/title-exact?Terminator,%20The%20(1984)
## 3788 http://us.imdb.com/M/title-exact?Dead%20Poets%20Society%20(1989)
## 3789 http://us.imdb.com/M/title-exact?Shining,%20The%20(1980)
## 3790 http://us.imdb.com/M/title-exact?Evil%20Dead%20II%20(1987)
## 3791 http://us.imdb.com/M/title-exact?This%20Is%20Spinal%20Tap%20(1984)
## 3792 http://us.imdb.com/M/title-exact?Bram%20Stoker's%20Dracula%20(1992)
## 3793 http://us.imdb.com/M/title-exact?Cape%20Fear%20(1991)
## 3794 http://us.imdb.com/M/title-exact?Nightmare%20on%20Elm%20Street,%20A%20(1984)
## 3795 http://us.imdb.com/M/title-exact?Star%20Trek:%20First%20Contact%20(1996)
## 3796 http://us.imdb.com/M/title-exact?Sling%20Blade%20(1996)
## 3797 http://us.imdb.com/M/title-exact?Star%20Trek%20VI:%20The%20Undiscovered%20Country%20(1991)
## 3798 http://us.imdb.com/M/title-exact?Star%20Trek:%20The%20Wrath%20of%20Khan%20(1982)
## 3799 http://us.imdb.com/M/title-exact?Star%20Trek%20III:%20The%20Search%20for%20Spock%20(1984)
## 3800 http://us.imdb.com/M/title-exact?Star%20Trek%20IV:%20The%20Voyage%20Home%20(1986)
## 3801 http://us.imdb.com/M/title-exact?Jaws%20(1975)
## 3802 http://us.imdb.com/Title?Contact+(1997/I)
## 3803 http://us.imdb.com/M/title-exact?Starship+Troopers+(1997)
## 3804 http://us.imdb.com/M/title-exact?Time%20to%20Kill,%20A%20(1996)
## 3805 http://us.imdb.com/M/title-exact?English%20Patient,%20The%20(1996)
## 3806 http://us.imdb.com/M/title-exact?Scream%20(1996)
## 3807 http://us.imdb.com/Title?Liar+Liar+(1997)
## 3808 http://us.imdb.com/M/title-exact?Murder%20at%201600%20(1997)
## 3809 http://us.imdb.com/M/title-exact?Dante's%20Peak%20(1997)
## 3810 http://us.imdb.com/M/title-exact?Kiss+the+Girls+(1997)
## 3811 http://us.imdb.com/M/title-exact?Star%20Trek:%20Generations%20(1994)
## 3812 http://us.imdb.com/M/title-exact?E%2ET%2E%20the%20Extra-Terrestrial%20%281982%29
## 3813 http://us.imdb.com/M/title-exact?Day%20the%20Earth%20Stood%20Still,%20The%20(1951)
## 3814 http://us.imdb.com/M/title-exact?Forbidden%20Planet%20(1956)
## 3815 http://us.imdb.com/M/title-exact?American%20Werewolf%20in%20London,%20An%20(1981)
## 3816 http://us.imdb.com/M/title-exact?Amityville%20Horror,%20The%20(1979)
## 3817 http://us.imdb.com/M/title-exact?Birds,%20The%20(1963)
## 3818 http://us.imdb.com/M/title-exact?Blob,%20The%20(1958)
## 3819 http://us.imdb.com/M/title-exact?Carrie%20(1976)
## 3820 http://us.imdb.com/M/title-exact?Omen,%20The%20(1976)
## 3821 http://us.imdb.com/M/title-exact?Star%20Trek:%20The%20Motion%20Picture%20(1979)
## 3822 http://us.imdb.com/M/title-exact?Star%20Trek%20V:%20The%20Final%20Frontier%20(1989)
## 3823 http://us.imdb.com/M/title-exact?Vertigo%20(1958)
## 3824 http://us.imdb.com/M/title-exact?North%20by%20Northwest%20(1959)
## 3825 http://us.imdb.com/M/title-exact?Mitt%20liv%20som%20hund%20(1985)
## 3826 http://us.imdb.com/M/title-exact?Wes%20Craven's%20New%20Nightmare%20(1994)
## 3827 http://us.imdb.com/M/title-exact?Speed%20(1994/I)
## 3828 http://us.imdb.com/M/title-exact?Body%20Snatchers%20(1993)
## 3829 http://us.imdb.com/M/title-exact?Beauty%20and%20the%20Beast%20(1991)
## 3830 http://us.imdb.com/M/title-exact?Rear%20Window%20(1954)
## 3831 http://us.imdb.com/M/title-exact?Father%20of%20the%20Bride%20(1950)
## 3832 http://us.imdb.com/M/title-exact?C'era%20una%20volta%20il%20west%20(1969)
## 3833 http://us.imdb.com/M/title-exact?Alien%203%20(1992)
## 3834 http://us.imdb.com/M/title-exact?Candyman%20(1992)
## 3835 http://us.imdb.com/M/title-exact?Volcano%20%281997%29
## 3836 http://us.imdb.com/M/title-exact?Screamers%20(1995)
## 3837 http://us.imdb.com/M/title-exact?In%20the%20Mouth%20of%20Madness%20(1995)
## 3838 http://us.imdb.com/M/title-exact?April%20Fool's%20Day%20(1986)
## 3839 http://us.imdb.com/M/title-exact?imdb-title-120082
## 3840 http://us.imdb.com/M/title-exact?Usual%20Suspects,%20The%20(1995)
## 3841 http://us.imdb.com/M/title-exact?Fugitive,%20The%20(1993)
## 3842 http://us.imdb.com/M/title-exact?Silence%20of%20the%20Lambs,%20The%20(1991)
## 3843 http://us.imdb.com/M/title-exact?Apocalypse%20Now%20(1979)
## 3844 http://us.imdb.com/M/title-exact?GoodFellas%20(1990)
## 3845 http://us.imdb.com/M/title-exact?Grand%20Day%20Out,%20A%20(1992)
## 3846 http://us.imdb.com/M/title-exact?Devil%27s%20Own%2C%20The%20(1997)
## 3847 http://us.imdb.com/M/title-exact?George+of+the+Jungle+(1997)
## 3848 http://us.imdb.com/M/title-exact?Mimic+(1997)
## 3849 http://us.imdb.com/M/title-exact?Full+Monty%2C+The+(1997)
## 3850 http://us.imdb.com/M/title-exact?Gattaca+(1997)
## 3851 http://us.imdb.com/M/title-exact?English%20Patient,%20The%20(1996)
## 3852 http://us.imdb.com/Title?Liar+Liar+(1997)
## 3853 http://us.imdb.com/M/title-exact?Air+Force+One+(1997)
## 3854 http://us.imdb.com/M/title-exact?L%2EA%2E+Confidential+(1997)
## 3855 http://us.imdb.com/M/title-exact?Her+Majesty%2C+Mrs%2E+Brown+(1997)
## 3856 http://us.imdb.com/M/title-exact?Midnight+in+the+Garden+of+Good+and+Evil+(1997)
## 3857 http://us.imdb.com/M/title-exact?G%2EI%2E+Jane+(1997)
## 3858 http://us.imdb.com/M/title-exact?Kiss+the+Girls+(1997)
## 3859 http://us.imdb.com/M/title-exact?Alien%3A+Resurrection+(1997)
## 3860 http://us.imdb.com/M/title-exact?Spawn+(1997/I)
## 3861 http://us.imdb.com/M/title-exact?North%20by%20Northwest%20(1959)
## 3862 http://us.imdb.com/M/title-exact?imdb-title-119715
## 3863 http://us.imdb.com/M/title-exact?Manchurian%20Candidate,%20The%20(1962)
## 3864 http://us.imdb.com/M/title-exact?High%20Noon%20(1952)
## 3865 http://us.imdb.com/M/title-exact?Volcano%20%281997%29
## 3866 http://us.imdb.com/M/title-exact?Jackal%2C+The+(1997)
## 3867 http://us.imdb.com/M/title-exact?Saint%2C%20The%20(1997)
## 3868 http://us.imdb.com/M/title-exact?Career+Girls+(1997)
## 3869 http://us.imdb.com/M/title-exact?Peacemaker%2C+The+(1997)
## 3870 http://us.imdb.com/Title?%A1%C1tame%21+(1990)
## 3871 http://us.imdb.com/M/title-exact?Die%20xue%20shuang%20xiong%20(1989)
## 3872 http://us.imdb.com/M/title-exact?GoldenEye%20(1995)
## 3873 http://us.imdb.com/M/title-exact?Twelve%20Monkeys%20(1995)
## 3874 http://us.imdb.com/M/title-exact?Apollo%2013%20(1995)
## 3875 http://us.imdb.com/M/title-exact?Batman%20Forever%20(1995)
## 3876 http://us.imdb.com/M/title-exact?Star%20Wars%20(1977)
## 3877 http://us.imdb.com/M/title-exact?Forrest%20Gump%20(1994)
## 3878 http://us.imdb.com/M/title-exact?Jurassic%20Park%20(1993)
## 3879 http://us.imdb.com/M/title-exact?2001:%20A%20Space%20Odyssey%20(1968)
## 3880 http://us.imdb.com/M/title-exact?Top%20Gun%20(1986)
## 3881 http://us.imdb.com/M/title-exact?Abyss,%20The%20(1989)
## 3882 http://us.imdb.com/M/title-exact?Empire%20Strikes%20Back,%20The%20(1980)
## 3883 http://us.imdb.com/M/title-exact?Raiders%20of%20the%20Lost%20Ark%20(1981)
## 3884 http://us.imdb.com/M/title-exact?Return%20of%20the%20Jedi%20(1983)
## 3885 http://us.imdb.com/M/title-exact?Batman%20Returns%20(1992)
## 3886 http://us.imdb.com/M/title-exact?Kolya%20(1996)
## 3887 http://us.imdb.com/M/title-exact?Lost%20World%3A%20Jurassic%20Park%2C%20The%20%281997%29
## 3888 http://us.imdb.com/M/title-exact?My+Best+Friend%27s+Wedding+(1997)
## 3889 http://us.imdb.com/M/title-exact?Men+in+Black+(1997)
## 3890 http://us.imdb.com/Title?Contact+(1997/I)
## 3891 http://us.imdb.com/M/title-exact?George+of+the+Jungle+(1997)
## 3892 http://us.imdb.com/M/title-exact?English%20Patient,%20The%20(1996)
## 3893 http://us.imdb.com/M/title-exact?Evita%20(1996)
## 3894 http://us.imdb.com/Title?Liar+Liar+(1997)
## 3895 http://us.imdb.com/Title?In+%26+Out+(1997)
## 3896 http://us.imdb.com/M/title-exact?Fly%20Away%20Home%20(1996)
## 3897 http://us.imdb.com/M/title-exact?imdb-title-120338
## 3898 http://us.imdb.com/Title?Apt+Pupil+(1998)
## 3899 http://us.imdb.com/M/title-exact?Everyone%20Says%20I%20Love%20You%20(1996)
## 3900 http://us.imdb.com/M/title-exact?Mother%20(1996/I)
## 3901 http://us.imdb.com/M/title-exact?Batman%20(1989)
## 3902 http://us.imdb.com/M/title-exact?Butch%20Cassidy%20and%20the%20Sundance%20Kid%20(1969)
## 3903 http://us.imdb.com/M/title-exact?Shine%20(1996)
## 3904 http://us.imdb.com/M/title-exact?Anastasia+(1997)
## 3905 http://us.imdb.com/M/title-exact?imdb-title-119715
## 3906 http://us.imdb.com/M/title-exact?Volcano%20%281997%29
## 3907 http://us.imdb.com/M/title-exact?Rocket+Man+(1997)
## 3908 http://us.imdb.com/M/title-exact?Leave+It+To+Beaver+(1997)
## 3909 http://us.imdb.com/M/title-exact?imdb-title-120347
## 3910 http://us.imdb.com/M/title-exact?Dumb%20&%20Dumber%20(1994)
## 3911 http://us.imdb.com/M/title-exact?Picture+Perfect+(1997)
## 3912 http://us.imdb.com/M/title-exact?imdb-title-119137
## 3913 http://us.imdb.com/M/title-exact?Waiting%20for%20Guffman%20(1996)
## 3914 http://us.imdb.com/M/title-exact?Anaconda%20%281997%29
## 3915 http://us.imdb.com/M/title-exact?Crumb%20(1994)
## 3916 http://us.imdb.com/M/title-exact?Fugitive,%20The%20(1993)
## 3917 http://us.imdb.com/M/title-exact?Lone%20Star%20(1996)
## 3918 http://us.imdb.com/M/title-exact?2001:%20A%20Space%20Odyssey%20(1968)
## 3919 http://us.imdb.com/M/title-exact?Mr.%20Smith%20Goes%20to%20Washington%20(1939)
## 3920 http://us.imdb.com/M/title-exact?Fish%20Called%20Wanda,%20A%20(1988)
## 3921 http://us.imdb.com/M/title-exact?Brazil%20(1985)
## 3922 http://us.imdb.com/M/title-exact?Raging%20Bull%20(1980)
## 3923 http://us.imdb.com/M/title-exact?In+the+Company+of+Men+(1997)
## 3924 http://us.imdb.com/M/title-exact?Starship+Troopers+(1997)
## 3925 http://us.imdb.com/M/title-exact?Hoodlum+(1997)
## 3926 http://us.imdb.com/M/title-exact?L%2EA%2E+Confidential+(1997)
## 3927 http://us.imdb.com/M/title-exact?Her+Majesty%2C+Mrs%2E+Brown+(1997)
## 3928 http://us.imdb.com/M/title-exact?Everyone%20Says%20I%20Love%20You%20(1996)
## 3929 http://us.imdb.com/M/title-exact?Mother%20(1996/I)
## 3930 http://us.imdb.com/M/title-exact?Conspiracy+Theory+(1997)
## 3931 http://us.imdb.com/M/title-exact?Boogie+Nights+(1997)
## 3932 http://us.imdb.com/M/title-exact?Maltese%20Falcon,%20The%20(1941)
## 3933 http://us.imdb.com/M/title-exact?To%20Catch%20a%20Thief%20(1955)
## 3934 http://us.imdb.com/M/title-exact?Thin%20Man,%20The%20(1934)
## 3935 http://us.imdb.com/M/title-exact?African%20Queen,%20The%20(1951)
## 3936 http://us.imdb.com/M/title-exact?Bonnie%20and%20Clyde%20(1967)
## 3937 http://us.imdb.com/M/title-exact?Annie%20Hall%20(1977)
## 3938 http://us.imdb.com/M/title-exact?Treasure%20of%20the%20Sierra%20Madre,%20The%20(1948)
## 3939 http://us.imdb.com/M/title-exact?Laura%20(1944)
## 3940 http://us.imdb.com/M/title-exact?I+Know+What+You+Did+Last+Summer+(1997)
## 3941 http://us.imdb.com/M/title-exact?Singin'%20in%20the%20Rain%20(1952)
## 3942 http://us.imdb.com/M/title-exact?Thirty-Two%20Short%20Films%20About%20Glenn%20Gould%20(1993)
## 3943 http://us.imdb.com/M/title-exact?She%27s+So+Lovely+(1997)
## 3944 http://us.imdb.com/M/title-exact?Life+Less+Ordinary,+A+(1997)
## 3945 http://us.imdb.com/M/title-exact?Die%20xue%20shuang%20xiong%20(1989)
## 3946 http://us.imdb.com/M/title-exact?Gaslight%20(1944)
## 3947 http://us.imdb.com/M/title-exact?8%201/2%20(1963)
## 3948 http://us.imdb.com/M/title-exact?Fast,+Cheap+&+Out+of+Control+(1997)
## 3949 http://us.imdb.com/M/title-exact?Twelve%20Monkeys%20(1995)
## 3950 http://us.imdb.com/M/title-exact?Dead%20Man%20Walking%20(1995)
## 3951 http://us.imdb.com/M/title-exact?Star%20Wars%20(1977)
## 3952 http://us.imdb.com/M/title-exact?Fargo%20(1996)
## 3953 http://us.imdb.com/M/title-exact?Truth%20About%20Cats%20&%20Dogs,%20The%20(1996)
## 3954 http://us.imdb.com/M/title-exact?Rock,%20The%20(1996)
## 3955 http://us.imdb.com/M/title-exact?Twister%20(1996)
## 3956 http://us.imdb.com/M/title-exact?Cable%20Guy,%20The%20(1996)
## 3957 http://us.imdb.com/M/title-exact?Willy%20Wonka%20and%20the%20Chocolate%20Factory%20(1971)
## 3958 http://us.imdb.com/M/title-exact?Return%20of%20the%20Jedi%20(1983)
## 3959 http://us.imdb.com/M/title-exact?Star%20Trek:%20First%20Contact%20(1996)
## 3960 http://us.imdb.com/M/title-exact?Mars%20Attacks!%20(1996)
## 3961 http://us.imdb.com/M/title-exact?Beavis%20and%20Butt-head%20Do%20America%20(1996)
## 3962 http://us.imdb.com/M/title-exact?Devil%27s%20Own%2C%20The%20(1997)
## 3963 http://us.imdb.com/M/title-exact?Chasing+Amy+(1997)
## 3964 http://us.imdb.com/M/title-exact?Grosse%20Pointe%20Blank%20%281997%29
## 3965 http://us.imdb.com/M/title-exact?Austin%20Powers%3A%20International%20Man%20of%20Mystery%20%281997%29
## 3966 http://us.imdb.com/M/title-exact?Fifth%20Element%2C%20The%20%281997%29
## 3967 http://us.imdb.com/M/title-exact?Men+in+Black+(1997)
## 3968 http://us.imdb.com/M/title-exact?George+of+the+Jungle+(1997)
## 3969 http://us.imdb.com/M/title-exact?Starship+Troopers+(1997)
## 3970 http://us.imdb.com/M/title-exact?Leaving%20Las%20Vegas%20(1995)
## 3971 http://us.imdb.com/M/title-exact?Scream%20(1996)
## 3972 http://us.imdb.com/M/title-exact?Fierce%20Creatures%20(1997)
## 3973 http://us.imdb.com/Title?Liar+Liar+(1997)
## 3974 http://us.imdb.com/M/title-exact?Face/Off+(1997)
## 3975 http://us.imdb.com/M/title-exact?Devil's+Advocate,+The+(1997)
## 3976 http://us.imdb.com/M/title-exact?imdb-title-120338
## 3977 http://us.imdb.com/M/title-exact?Mission:%20Impossible%20(1996)
## 3978 http://us.imdb.com/M/title-exact?Close%20Shave,%20A%20(1995)
## 3979 http://us.imdb.com/M/title-exact?Police%20Story%204:%20First%20Strike%20(1996)
## 3980 http://us.imdb.com/Title?Trainspotting+(1996)
## 3981 http://us.imdb.com/M/title-exact?People%20vs.%20Larry%20Flynt,%20The%20(1996)
## 3982 http://us.imdb.com/M/title-exact?Primal%20Fear%20(1996)
## 3983 http://us.imdb.com/M/title-exact?Sleepers%20(1996)
## 3984 http://us.imdb.com/M/title-exact?Ransom%20(1996)
## 3985 http://us.imdb.com/M/title-exact?Michael%20(1996)
## 3986 http://us.imdb.com/M/title-exact?Private%20Parts%20(1997)
## 3987 http://us.imdb.com/M/title-exact?Con%20Air%20%281997%29
## 3988 http://us.imdb.com/M/title-exact?Fathers%27%20Day%20%281997%29
## 3989 http://us.imdb.com/M/title-exact?Devil%27s%20Own%2C%20The%20(1997)
## 3990 http://us.imdb.com/Title?Contact+(1997/I)
## 3991 http://us.imdb.com/M/title-exact?Event+Horizon+(1997)
## 3992 http://us.imdb.com/M/title-exact?Starship+Troopers+(1997)
## 3993 http://us.imdb.com/M/title-exact?Scream%20(1996)
## 3994 http://us.imdb.com/M/title-exact?Rosewood%20(1997)
## 3995 http://us.imdb.com/Title?Liar+Liar+(1997)
## 3996 http://us.imdb.com/M/title-exact?Air+Force+One+(1997)
## 3997 http://us.imdb.com/M/title-exact?Devil's+Advocate,+The+(1997)
## 3998 http://us.imdb.com/M/title-exact?imdb-title-120338
## 3999 http://us.imdb.com/M/title-exact?Dante's%20Peak%20(1997)
## 4000 http://us.imdb.com/M/title-exact?Conspiracy+Theory+(1997)
## 4001 http://us.imdb.com/Title?Desperate+Measures+(1998)
## 4002 http://us.imdb.com/M/title-exact?Game%2C+The+(1997)
## 4003 http://us.imdb.com/M/title-exact?Mad+City+(1997)
## 4004 http://us.imdb.com/M/title-exact?Alien%3A+Resurrection+(1997)
## 4005 http://us.imdb.com/M/title-exact?Volcano%20%281997%29
## 4006 http://us.imdb.com/M/title-exact?I+Know+What+You+Did+Last+Summer+(1997)
## 4007 http://us.imdb.com/M/title-exact?imdb-title-120347
## 4008 http://us.imdb.com/M/title-exact?Love%20Jones%20(1997)
## 4009 http://us.imdb.com/M/title-exact?Peacemaker%2C+The+(1997)
## 4010 http://us.imdb.com/M/title-exact?Soul+Food+(1997)
## 4011 http://us.imdb.com/M/title-exact?imdb-title-120082
## 4012 http://us.imdb.com/M/title-exact?Kolya%20(1996)
## 4013 http://us.imdb.com/M/title-exact?Devil%27s%20Own%2C%20The%20(1997)
## 4014 http://us.imdb.com/M/title-exact?George+of+the+Jungle+(1997)
## 4015 http://us.imdb.com/M/title-exact?English%20Patient,%20The%20(1996)
## 4016 http://us.imdb.com/M/title-exact?Scream%20(1996)
## 4017 http://us.imdb.com/M/title-exact?Evita%20(1996)
## 4018 http://us.imdb.com/M/title-exact?Rosewood%20(1997)
## 4019 http://us.imdb.com/Title?Liar+Liar+(1997)
## 4020 http://us.imdb.com/M/title-exact?Hoodlum+(1997)
## 4021 http://us.imdb.com/M/title-exact?Rainmaker,+The+(1997)
## 4022 http://us.imdb.com/M/title-exact?Midnight+in+the+Garden+of+Good+and+Evil+(1997)
## 4023 http://us.imdb.com/Title?Lost+Highway+(1997)
## 4024 http://us.imdb.com/Title?Desperate+Measures+(1998)
## 4025 http://us.imdb.com/M/title-exact?Kiss+the+Girls+(1997)
## 4026 http://us.imdb.com/M/title-exact?Seven+Years+in+Tibet+(1997)
## 4027 http://us.imdb.com/M/title-exact?imdb-title-119925
## 4028 http://us.imdb.com/M/title-exact?imdb-title-120521
## 4029 http://us.imdb.com/M/title-exact?Anna%20Karenina%20%281997%29
## 4030 http://us.imdb.com/Title?Keys+to+Tulsa+(1997)
## 4031 http://us.imdb.com/M/title-exact?Mrs%2E+Dalloway+(1997)
## 4032 http://us.imdb.com/M/title-exact?Kolya%20(1996)
## 4033 http://us.imdb.com/M/title-exact?Jungle2Jungle%20(1997)
## 4034 http://us.imdb.com/Title?Contact+(1997/I)
## 4035 http://us.imdb.com/M/title-exact?George+of+the+Jungle+(1997)
## 4036 http://us.imdb.com/M/title-exact?Air+Bud+(1997)
## 4037 http://us.imdb.com/M/title-exact?Mimic+(1997)
## 4038 http://us.imdb.com/M/title-exact?Kull+the+Conqueror+(1997)
## 4039 http://us.imdb.com/M/title-exact?Air+Force+One+(1997)
## 4040 http://us.imdb.com/M/title-exact?Mother%20(1996/I)
## 4041 http://us.imdb.com/M/title-exact?Murder%20at%201600%20(1997)
## 4042 http://us.imdb.com/M/title-exact?G%2EI%2E+Jane+(1997)
## 4043 http://us.imdb.com/M/title-exact?Cop+Land+(1997)
## 4044 http://us.imdb.com/M/title-exact?Conspiracy+Theory+(1997)
## 4045 http://us.imdb.com/M/title-exact?Kiss+the+Girls+(1997)
## 4046 http://us.imdb.com/M/title-exact?Game%2C+The+(1997)
## 4047 http://us.imdb.com/M/title-exact?Spawn+(1997/I)
## 4048 http://us.imdb.com/M/title-exact?Volcano%20%281997%29
## 4049 http://us.imdb.com/M/title-exact?Saint%2C%20The%20(1997)
## 4050 http://us.imdb.com/M/title-exact?Money+Talks+(1997)
## 4051 http://us.imdb.com/M/title-exact?Excess+Baggage+(1997)
## 4052 http://us.imdb.com/M/title-exact?Peacemaker%2C+The+(1997)
## 4053 http://us.imdb.com/M/title-exact?Thousand+Acres%2C+A+(1997)
## 4054 http://us.imdb.com/M/title-exact?Fire+Down+Below+(1997)
## 4055 http://us.imdb.com/M/title-exact?Air+Bud+(1997)
## 4056 http://us.imdb.com/M/title-exact?Full+Monty%2C+The+(1997)
## 4057 http://us.imdb.com/M/title-exact?Scream%20(1996)
## 4058 http://us.imdb.com/M/title-exact?Evita%20(1996)
## 4059 http://us.imdb.com/M/title-exact?Devil's+Advocate,+The+(1997)
## 4060 http://us.imdb.com/M/title-exact?Rainmaker,+The+(1997)
## 4061 http://us.imdb.com/M/title-exact?Everyone%20Says%20I%20Love%20You%20(1996)
## 4062 http://us.imdb.com/M/title-exact?Game%2C+The+(1997)
## 4063 http://us.imdb.com/M/title-exact?Mad+City+(1997)
## 4064 http://us.imdb.com/M/title-exact?Spawn+(1997/I)
## 4065 http://us.imdb.com/M/title-exact?I+Know+What+You+Did+Last+Summer+(1997)
## 4066 http://us.imdb.com/M/title-exact?Saint%2C%20The%20(1997)
## 4067 http://us.imdb.com/M/title-exact?Picture+Perfect+(1997)
## 4068 http://us.imdb.com/M/title-exact?She%27s+So+Lovely+(1997)
## 4069 http://us.imdb.com/M/title-exact?That%20Darn%20Cat%20(1997)
## 4070 http://us.imdb.com/M/title-exact?Washington+Square+(1997)
## 4071 http://us.imdb.com/M/title-exact?Telling+Lies+in+America+(1997)
## 4072 http://us.imdb.com/M/title-exact?Phantoms+(1998)
## 4073 http://us.imdb.com/M/title-exact?Lay+of+the+Land%2C+The+(1997)
## 4074 http://us.imdb.com/M/title-exact?Twelve%20Monkeys%20(1995)
## 4075 http://us.imdb.com/M/title-exact?Se7en%20(1995)
## 4076 http://us.imdb.com/M/title-exact?Braveheart%20(1995)
## 4077 http://us.imdb.com/M/title-exact?Hong%20Faan%20Kui%20(1995)
## 4078 http://us.imdb.com/M/title-exact?Bad%20Boys%20(1995)
## 4079 http://us.imdb.com/M/title-exact?Star%20Wars%20(1977)
## 4080 http://us.imdb.com/Title?L%E9on+(1994)
## 4081 http://us.imdb.com/M/title-exact?Pulp%20Fiction%20(1994)
## 4082 http://us.imdb.com/M/title-exact?Stargate%20(1994)
## 4083 http://us.imdb.com/M/title-exact?Crow,%20The%20(1994)
## 4084 http://us.imdb.com/M/title-exact?Fugitive,%20The%20(1993)
## 4085 http://us.imdb.com/M/title-exact?Jurassic%20Park%20(1993)
## 4086 http://us.imdb.com/M/title-exact?Blade%20Runner%20(1982)
## 4087 http://us.imdb.com/M/title-exact?True%20Romance%20(1993)
## 4088 http://us.imdb.com/M/title-exact?Terminator%202:%20Judgment%20Day%20(1991)
## 4089 http://us.imdb.com/M/title-exact?Rock,%20The%20(1996)
## 4090 http://us.imdb.com/M/title-exact?Twister%20(1996)
## 4091 http://us.imdb.com/M/title-exact?Independence%20Day%20(1996)
## 4092 http://us.imdb.com/M/title-exact?Godfather,%20The%20(1972)
## 4093 http://us.imdb.com/M/title-exact?Long%20Kiss%20Goodnight,%20The%20(1996)
## 4094 http://us.imdb.com/M/title-exact?Top%20Gun%20(1986)
## 4095 http://us.imdb.com/M/title-exact?Empire%20Strikes%20Back,%20The%20(1980)
## 4096 http://us.imdb.com/M/title-exact?Raiders%20of%20the%20Lost%20Ark%20(1981)
## 4097 http://us.imdb.com/M/title-exact?Aliens%20(1986)
## 4098 http://us.imdb.com/M/title-exact?Alien%20(1979)
## 4099 http://us.imdb.com/M/title-exact?Terminator,%20The%20(1984)
## 4100 http://us.imdb.com/M/title-exact?Indiana%20Jones%20and%20the%20Last%20Crusade%20(1989)
## 4101 http://us.imdb.com/M/title-exact?Star%20Trek:%20First%20Contact%20(1996)
## 4102 http://us.imdb.com/M/title-exact?Die%20Hard%202%20(1990)
## 4103 http://us.imdb.com/M/title-exact?Star%20Trek%20IV:%20The%20Voyage%20Home%20(1986)
## 4104 http://us.imdb.com/M/title-exact?Batman%20Returns%20(1992)
## 4105 http://us.imdb.com/M/title-exact?Under%20Siege%20(1992)
## 4106 http://us.imdb.com/M/title-exact?Hunt+for+Red+October%2C+The+(1990)
## 4107 http://us.imdb.com/M/title-exact?Heat%20(1995)
## 4108 http://us.imdb.com/M/title-exact?Scream%20(1996)
## 4109 http://us.imdb.com/M/title-exact?Sudden%20Death%20(1995)
## 4110 http://us.imdb.com/M/title-exact?True%20Lies%20(1994)
## 4111 http://us.imdb.com/M/title-exact?Batman%20(1989)
## 4112 http://us.imdb.com/M/title-exact?Mission:%20Impossible%20(1996)
## 4113 http://us.imdb.com/M/title-exact?Dragonheart%20(1996)
## 4114 http://us.imdb.com/M/title-exact?Money%20Train%20(1995)
## 4115 http://us.imdb.com/M/title-exact?Broken%20Arrow%20(1996)
## 4116 http://us.imdb.com/M/title-exact?Die%20Hard:%20With%20a%20Vengeance%20(1995)
## 4117 http://us.imdb.com/M/title-exact?Clear%20and%20Present%20Danger%20(1994)
## 4118 http://us.imdb.com/M/title-exact?Speed%20(1994/I)
## 4119 http://us.imdb.com/M/title-exact?Demolition%20Man%20(1993)
## 4120 http://us.imdb.com/M/title-exact?Eraser%20(1996)
## 4121 http://us.imdb.com/M/title-exact?Alien%203%20(1992)
## 4122 http://us.imdb.com/M/title-exact?Executive%20Decision%20(1996)
## 4123 http://us.imdb.com/M/title-exact?Arrival,%20The%20(1996)
## 4124 http://us.imdb.com/M/title-exact?Daylight%20(1996)
## 4125 http://us.imdb.com/M/title-exact?Escape%20from%20L.A.%20(1996)
## 4126 http://us.imdb.com/M/title-exact?Bulletproof%20(1996)
## 4127 http://us.imdb.com/M/title-exact?Glimmer%20Man,%20The%20(1996)
## 4128 http://us.imdb.com/M/title-exact?Chain%20Reaction%20(1996)
## 4129 http://us.imdb.com/M/title-exact?Booty%20Call%20(1997)
## 4130 http://us.imdb.com/M/title-exact?Shooter,%20The%20(1995)
## 4131 http://us.imdb.com/M/title-exact?Toy%20Story%20(1995)
## 4132 http://us.imdb.com/M/title-exact?Braveheart%20(1995)
## 4133 http://us.imdb.com/M/title-exact?Apollo%2013%20(1995)
## 4134 http://us.imdb.com/M/title-exact?Free%20Willy%202:%20The%20Adventure%20Home%20(1995)
## 4135 http://us.imdb.com/M/title-exact?Ace%20Ventura:%20Pet%20Detective%20(1994)
## 4136 http://us.imdb.com/M/title-exact?Forrest%20Gump%20(1994)
## 4137 http://us.imdb.com/M/title-exact?Four%20Weddings%20and%20a%20Funeral%20(1994)
## 4138 http://us.imdb.com/M/title-exact?Lion%20King,%20The%20(1994)
## 4139 http://us.imdb.com/M/title-exact?Free%20Willy%20(1993)
## 4140 http://us.imdb.com/M/title-exact?Fugitive,%20The%20(1993)
## 4141 http://us.imdb.com/M/title-exact?Jurassic%20Park%20(1993)
## 4142 http://us.imdb.com/M/title-exact?Robert%20A.%20Heinlein's%20The%20Puppet%20Masters%20(1994)
## 4143 http://us.imdb.com/M/title-exact?Sleepless%20in%20Seattle%20(1993)
## 4144 http://us.imdb.com/M/title-exact?Home%20Alone%20(1990)
## 4145 http://us.imdb.com/M/title-exact?Aladdin%20(1992)
## 4146 http://us.imdb.com/M/title-exact?Dances%20with%20Wolves%20(1990)
## 4147 http://us.imdb.com/M/title-exact?Snow%20White%20and%20the%20Seven%20Dwarfs%20(1937)
## 4148 http://us.imdb.com/M/title-exact?Sgt.%20Bilko%20(1996)
## 4149 http://us.imdb.com/M/title-exact?Flipper%20(1996)
## 4150 http://us.imdb.com/M/title-exact?Twister%20(1996)
## 4151 http://us.imdb.com/M/title-exact?Cable%20Guy,%20The%20(1996)
## 4152 http://us.imdb.com/M/title-exact?Godfather,%20The%20(1972)
## 4153 http://us.imdb.com/M/title-exact?Gone%20with%20the%20Wind%20(1939)
## 4154 http://us.imdb.com/M/title-exact?Love%20Bug,%20The%20(1969)
## 4155 http://us.imdb.com/M/title-exact?Homeward%20Bound:%20The%20Incredible%20Journey%20(1993)
## 4156 http://us.imdb.com/M/title-exact?Die%20Hard%20(1988)
## 4157 http://us.imdb.com/M/title-exact?Lawnmower%20Man,%20The%20(1992)
## 4158 http://us.imdb.com/M/title-exact?Fish%20Called%20Wanda,%20A%20(1988)
## 4159 http://us.imdb.com/M/title-exact?Dirty%20Dancing%20(1987)
## 4160 http://us.imdb.com/M/title-exact?Top%20Gun%20(1986)
## 4161 http://us.imdb.com/M/title-exact?On%20Golden%20Pond%20(1981)
## 4162 http://us.imdb.com/M/title-exact?Psycho%20(1960)
## 4163 http://us.imdb.com/M/title-exact?Full%20Metal%20Jacket%20(1987)
## 4164 http://us.imdb.com/M/title-exact?Terminator,%20The%20(1984)
## 4165 http://us.imdb.com/M/title-exact?Shining,%20The%20(1980)
## 4166 http://us.imdb.com/M/title-exact?Groundhog%20Day%20(1993)
## unknown Action Adventure Animation Children's Comedy Crime Documentary
## 1 0 0 0 1 1 1 0 0
## 2 0 1 1 0 0 0 0 0
## 3 0 0 0 0 0 0 0 0
## 4 0 1 0 0 0 1 0 0
## 5 0 0 0 0 0 0 1 0
## 6 0 0 0 0 0 0 0 0
## 7 0 0 0 0 0 0 0 0
## 8 0 0 0 0 1 1 0 0
## 9 0 0 0 0 0 0 0 0
## 10 0 0 0 0 0 0 0 0
## 11 0 0 0 0 0 0 1 0
## 12 0 0 0 0 0 0 1 0
## 13 0 0 0 0 0 1 0 0
## 14 0 0 0 0 0 0 0 0
## 15 0 0 0 0 0 0 0 0
## 16 0 0 0 0 0 1 0 0
## 17 0 1 0 0 0 1 1 0
## 18 0 0 0 0 0 0 0 0
## 19 0 0 0 0 0 0 0 0
## 20 0 0 0 0 0 0 0 0
## 21 0 1 1 0 0 1 0 0
## 22 0 1 0 0 0 0 0 0
## 23 0 0 0 0 0 0 0 0
## 24 0 1 1 0 0 0 1 0
## 25 0 0 0 0 0 1 0 0
## 26 0 0 0 0 0 1 0 0
## 27 0 1 0 0 0 0 0 0
## 28 0 1 0 0 0 0 0 0
## 29 0 1 1 0 0 1 1 0
## 30 0 0 0 0 0 0 0 0
## 31 0 0 0 0 0 0 0 0
## 32 0 0 0 0 0 0 0 1
## 33 0 1 0 0 0 0 0 0
## 34 0 0 0 0 0 1 0 0
## 35 0 0 1 0 1 0 0 0
## 36 0 0 0 0 0 0 0 0
## 37 0 0 0 0 0 0 0 0
## 38 0 0 0 0 0 0 0 0
## 39 0 1 0 0 0 0 1 0
## 40 0 0 0 0 0 1 0 0
## 41 0 0 0 0 0 1 0 0
## 42 0 0 0 0 0 1 0 0
## 43 0 0 0 0 0 0 0 0
## 44 0 0 0 0 0 0 0 0
## 45 0 0 0 0 0 1 0 0
## 46 0 0 0 0 0 0 0 0
## 47 0 0 0 0 0 1 0 0
## 48 0 0 0 0 0 0 0 1
## 49 0 0 0 0 0 1 0 0
## 50 0 1 1 0 0 0 0 0
## 51 0 0 0 0 0 0 0 0
## 52 0 0 0 0 0 0 0 0
## 53 0 1 0 0 0 0 0 0
## 54 0 1 0 0 0 0 0 0
## 55 0 0 0 0 0 0 1 0
## 56 0 0 0 0 0 0 1 0
## 57 0 0 0 0 0 0 0 0
## 58 0 0 0 0 0 0 0 0
## 59 0 0 0 0 0 0 0 0
## 60 0 0 0 0 0 0 0 0
## 61 0 0 0 0 0 0 0 0
## 62 0 1 1 0 0 0 0 0
## 63 0 0 0 0 1 1 0 0
## 64 0 0 0 0 0 0 0 0
## 65 0 0 0 0 0 1 0 0
## 66 0 0 0 0 0 1 0 0
## 67 0 0 0 0 0 1 0 0
## 68 0 1 0 0 0 0 0 0
## 69 0 0 0 0 0 1 0 0
## 70 0 0 0 0 0 1 0 0
## 71 0 0 0 1 1 0 0 0
## 72 0 0 0 0 0 1 1 0
## 73 0 1 0 0 0 1 0 0
## 74 0 1 0 0 0 1 0 0
## 75 0 0 0 0 0 0 0 1
## 76 0 0 0 0 0 0 1 0
## 77 0 0 0 0 0 0 0 0
## 78 0 0 1 0 1 0 0 0
## 79 0 1 0 0 0 0 0 0
## 80 0 1 0 0 0 1 0 0
## 81 0 0 0 0 0 1 0 0
## 82 0 1 1 0 0 0 0 0
## 83 0 0 0 0 0 1 0 0
## 84 0 0 0 0 0 0 0 0
## 85 0 0 0 0 0 1 0 0
## 86 0 0 0 0 0 0 0 0
## 87 0 0 0 0 0 0 0 0
## 88 0 0 0 0 0 1 0 0
## 89 0 0 0 0 0 0 0 0
## 90 0 0 0 0 0 1 0 0
## 91 0 0 0 0 1 1 0 0
## 92 0 1 0 0 0 0 1 0
## 93 0 0 0 0 0 1 0 0
## 94 0 0 0 0 1 1 0 0
## 95 0 0 0 1 1 1 0 0
## 96 0 1 0 0 0 0 0 0
## 97 0 0 1 0 0 0 0 0
## 98 0 0 0 0 0 0 0 0
## 99 0 0 0 1 1 0 0 0
## 100 0 0 0 0 0 0 1 0
## 101 0 1 1 1 0 0 0 0
## 102 0 0 0 1 1 0 0 0
## 103 0 0 0 1 1 0 0 0
## 104 0 0 0 0 0 1 0 0
## 105 0 0 0 0 0 1 0 0
## 106 0 0 0 0 0 0 0 0
## 107 0 0 0 0 0 0 0 0
## 108 0 0 0 0 0 1 0 0
## 109 0 0 0 0 0 1 0 0
## 110 0 1 1 0 0 1 0 0
## 111 0 0 0 0 0 1 0 0
## 112 0 0 1 0 1 0 0 0
## 113 0 0 0 0 0 0 0 0
## 114 0 0 0 1 0 0 0 0
## 115 0 0 0 0 0 0 0 1
## 116 0 0 0 0 0 1 0 0
## 117 0 1 1 0 0 0 0 0
## 118 0 1 1 0 0 0 0 0
## 119 0 0 0 0 0 0 0 1
## 120 0 0 0 0 0 1 1 0
## 121 0 1 0 0 0 0 0 0
## 122 0 0 0 0 0 1 0 0
## 123 0 0 0 0 0 1 0 0
## 124 0 0 0 0 0 0 0 0
## 125 0 0 0 0 0 0 0 0
## 126 0 0 0 0 0 0 0 0
## 127 0 1 0 0 0 0 1 0
## 128 0 1 0 0 0 0 0 0
## 129 0 0 0 0 0 0 1 0
## 130 0 0 0 0 0 0 1 0
## 131 0 0 0 0 0 0 0 0
## 132 0 0 1 0 1 0 0 0
## 133 0 0 0 0 0 0 0 0
## 134 0 0 0 0 0 0 0 0
## 135 0 0 0 0 0 0 0 0
## 136 0 0 0 0 0 0 0 0
## 137 0 0 0 0 0 0 0 0
## 138 0 0 0 0 1 1 0 0
## 139 0 0 0 0 1 1 0 0
## 140 0 0 1 0 1 0 0 0
## 141 0 0 1 0 1 0 0 0
## 142 0 0 1 0 1 0 0 0
## 143 0 0 0 0 0 0 0 0
## 144 0 1 0 0 0 0 0 0
## 145 0 1 0 0 0 0 0 0
## 146 0 0 0 0 0 0 0 0
## 147 0 1 0 0 0 0 0 0
## 148 0 1 1 0 0 0 0 0
## 149 0 0 0 0 0 0 0 0
## 150 0 0 0 0 0 1 0 0
## 151 0 0 1 0 1 1 0 0
## 152 0 0 0 0 0 1 0 0
## 153 0 0 0 0 0 1 0 0
## 154 0 0 0 0 0 1 0 0
## 155 0 0 0 0 0 0 0 0
## 156 0 0 0 0 0 0 1 0
## 157 0 0 0 0 0 0 0 0
## 158 0 0 0 0 0 1 0 0
## 159 0 0 0 0 0 0 0 0
## 160 0 0 0 0 0 0 0 0
## 161 0 1 0 0 0 0 0 0
## 162 0 0 0 0 0 0 0 0
## 163 0 0 0 0 0 1 0 0
## 164 0 1 1 0 0 0 0 0
## 165 0 0 0 0 0 0 0 0
## 166 0 0 0 0 0 0 0 0
## 167 0 0 0 0 0 1 0 0
## 168 0 0 0 0 0 1 0 0
## 169 0 0 0 1 0 1 0 0
## 170 0 0 0 0 0 1 0 0
## 171 0 0 0 0 0 1 0 0
## 172 0 1 1 0 0 0 0 0
## 173 0 1 1 0 0 1 0 0
## 174 0 1 1 0 0 0 0 0
## 175 0 0 0 0 0 0 0 0
## 176 0 1 0 0 0 0 0 0
## 177 0 1 0 0 0 0 0 0
## 178 0 0 0 0 0 0 0 0
## 179 0 0 0 0 0 0 0 0
## 180 0 0 0 0 0 0 0 0
## 181 0 1 1 0 0 0 0 0
## 182 0 0 0 0 0 0 1 0
## 183 0 1 0 0 0 0 0 0
## 184 0 1 1 0 0 1 0 0
## 185 0 0 0 0 0 0 0 0
## 186 0 1 0 0 0 1 0 0
## 187 0 1 0 0 0 0 1 0
## 188 0 1 0 0 0 0 0 0
## 189 0 0 0 1 0 1 0 0
## 190 0 0 0 0 0 0 0 0
## 191 0 0 0 0 0 0 0 0
## 192 0 0 0 0 0 0 0 0
## 193 0 0 0 0 0 0 0 0
## 194 0 0 0 0 0 1 1 0
## 195 0 1 0 0 0 0 0 0
## 196 0 0 0 0 0 0 0 0
## 197 0 0 0 0 0 0 0 0
## 198 0 0 0 0 0 0 0 0
## 199 0 0 0 0 0 0 0 0
## 200 0 0 0 0 0 0 0 0
## 201 0 1 1 0 0 1 0 0
## 202 0 0 0 0 0 1 0 0
## 203 0 0 0 0 0 0 0 0
## 204 0 0 0 0 0 1 0 0
## 205 0 0 0 0 0 0 0 0
## 206 0 0 1 1 0 0 0 0
## 207 0 1 0 0 0 0 0 0
## 208 0 0 0 0 0 1 0 0
## 209 0 0 0 0 0 1 0 0
## 210 0 1 1 0 0 0 0 0
## 211 0 0 0 0 0 1 0 0
## 212 0 0 0 0 0 0 0 0
## 213 0 0 0 0 0 0 0 0
## 214 0 0 0 0 0 0 0 0
## 215 0 0 0 0 0 0 0 0
## 216 0 0 0 0 0 1 0 0
## 217 0 0 0 0 0 0 0 0
## 218 0 0 0 0 0 0 0 0
## 219 0 0 0 0 0 0 0 0
## 220 0 0 0 0 0 1 0 0
## 221 0 0 0 0 0 0 0 0
## 222 0 1 1 0 0 0 0 0
## 223 0 0 0 0 0 0 0 0
## 224 0 0 0 0 0 0 0 0
## 225 0 0 0 0 1 1 0 0
## 226 0 1 0 0 0 0 0 0
## 227 0 1 1 0 0 0 0 0
## 228 0 1 1 0 0 0 0 0
## 229 0 1 1 0 0 0 0 0
## 230 0 1 1 0 0 0 0 0
## 231 0 1 1 0 0 1 1 0
## 232 0 1 0 0 0 1 0 0
## 233 0 1 0 0 0 0 0 0
## 234 0 1 0 0 0 0 0 0
## 235 0 1 0 0 0 1 0 0
## 236 0 0 0 0 0 1 0 0
## 237 0 0 0 0 0 0 0 0
## 238 0 0 0 0 0 1 0 0
## 239 0 0 0 0 0 0 1 0
## 240 0 0 0 1 0 1 0 0
## 241 0 1 0 0 0 0 0 0
## 242 0 0 0 0 0 1 0 0
## 243 0 0 0 0 1 1 0 0
## 244 0 1 0 0 0 0 0 0
## 245 0 1 0 0 0 0 0 0
## 246 0 0 0 0 0 0 0 0
## 247 0 1 1 0 1 0 0 0
## 248 0 0 0 0 0 1 1 0
## 249 0 0 0 0 0 1 0 0
## 250 0 1 0 0 0 0 0 0
## 251 0 0 0 0 0 1 0 0
## 252 0 1 1 0 0 0 0 0
## 253 0 0 0 0 0 0 0 0
## 254 0 1 1 0 0 0 1 0
## 255 0 0 0 0 0 1 0 0
## 256 0 0 0 0 0 1 0 0
## 257 0 1 1 0 0 1 0 0
## 258 0 0 0 0 0 0 0 0
## 259 0 0 0 0 1 1 0 0
## 260 0 1 0 0 0 0 0 0
## 261 0 0 0 0 1 1 0 0
## 262 0 0 0 0 0 0 0 0
## 263 0 1 0 0 0 0 0 0
## 264 0 0 0 0 0 0 0 0
## 265 0 1 0 0 0 0 0 0
## 266 0 1 1 0 0 0 0 0
## 267 1 0 0 0 0 0 0 0
## 268 0 0 0 0 0 1 0 0
## 269 0 0 0 0 0 0 0 0
## 270 0 1 1 0 0 0 0 0
## 271 0 0 0 0 0 0 0 0
## 272 0 0 0 1 1 1 0 0
## 273 0 0 0 0 0 0 0 0
## 274 0 0 0 0 0 1 0 0
## 275 0 0 0 0 0 0 0 0
## 276 0 0 0 0 0 0 0 0
## 277 0 0 0 0 0 1 0 0
## 278 0 1 1 0 0 0 0 0
## 279 0 0 0 0 0 0 1 0
## 280 0 0 0 0 0 1 0 0
## 281 0 1 0 0 0 0 1 0
## 282 0 0 0 0 0 0 0 0
## 283 0 0 0 0 0 1 0 0
## 284 0 0 0 0 0 1 0 0
## 285 0 0 0 0 0 1 0 0
## 286 0 1 1 0 0 1 0 0
## 287 0 0 0 0 0 0 0 0
## 288 0 0 0 0 0 1 0 0
## 289 0 0 0 0 0 0 0 0
## 290 0 1 0 0 0 0 1 0
## 291 0 0 0 0 0 1 0 0
## 292 0 0 0 0 0 0 0 0
## 293 0 0 0 0 0 0 0 0
## 294 0 0 0 0 0 0 0 0
## 295 0 0 0 0 0 0 0 0
## 296 0 0 0 0 0 0 0 0
## 297 0 0 0 0 0 0 0 0
## 298 0 1 0 0 0 0 0 0
## 299 0 0 0 0 0 0 0 0
## 300 0 0 0 0 0 0 0 0
## 301 0 0 0 0 0 1 0 0
## 302 0 0 0 0 0 0 0 0
## 303 0 0 0 0 0 0 0 0
## 304 0 0 0 0 0 0 0 0
## 305 0 0 0 0 0 0 0 0
## 306 0 0 0 0 0 0 0 0
## 307 0 0 0 0 0 1 0 0
## 308 0 0 0 0 0 0 0 0
## 309 0 0 0 0 0 0 0 0
## 310 0 0 0 0 0 0 1 0
## 311 0 0 0 0 0 1 0 0
## 312 0 1 0 0 0 0 0 0
## 313 0 0 0 0 0 0 0 0
## 314 0 0 0 0 0 0 0 0
## 315 0 1 0 0 0 0 0 0
## 316 0 0 0 0 0 0 1 0
## 317 0 1 0 0 0 0 0 0
## 318 0 0 0 0 0 1 0 0
## 319 0 0 0 0 0 0 1 0
## 320 0 0 1 0 1 0 0 0
## 321 0 0 0 0 0 0 0 0
## 322 0 0 0 0 0 0 0 0
## 323 0 0 0 0 0 0 1 0
## 324 0 0 0 0 1 0 0 0
## 325 0 0 0 0 0 0 1 0
## 326 0 0 0 0 0 0 0 0
## 327 0 0 0 0 0 0 0 0
## 328 0 0 0 0 0 1 1 0
## 329 0 1 0 0 0 0 0 0
## 330 0 1 0 0 1 0 0 0
## 331 0 0 0 0 0 0 0 0
## 332 0 0 0 0 0 1 0 0
## 333 0 1 1 0 0 0 0 0
## 334 0 1 0 0 0 0 0 0
## 335 0 0 0 0 0 0 0 0
## 336 0 1 0 0 0 0 0 0
## 337 0 0 0 0 0 0 0 0
## 338 0 1 1 0 0 0 0 0
## 339 0 0 0 0 0 0 0 0
## 340 0 0 0 0 0 0 0 0
## 341 0 0 0 0 0 1 0 0
## 342 0 0 0 0 0 0 1 0
## 343 0 1 0 0 0 0 0 0
## 344 0 0 0 0 0 0 1 0
## 345 0 0 0 0 0 0 1 0
## 346 0 0 0 0 0 0 0 0
## 347 0 0 0 0 0 0 0 0
## 348 0 0 0 0 0 1 0 0
## 349 0 0 0 0 0 0 0 1
## 350 0 0 0 0 0 1 0 0
## 351 0 0 0 0 0 0 0 0
## 352 0 1 0 0 0 0 0 0
## 353 0 0 0 0 0 0 0 0
## 354 0 0 0 0 0 0 0 0
## 355 0 1 0 0 0 0 0 0
## 356 0 0 0 0 0 0 1 0
## 357 0 1 0 0 0 0 0 0
## 358 0 0 0 0 0 0 1 0
## 359 0 0 0 0 0 0 0 0
## 360 0 0 1 0 0 0 0 0
## 361 0 0 0 0 0 0 1 0
## 362 0 0 0 0 0 0 0 0
## 363 0 1 0 0 0 0 1 0
## 364 0 0 0 0 0 1 0 0
## 365 0 0 0 0 0 0 1 0
## 366 0 0 0 0 0 1 0 0
## 367 0 0 0 0 0 1 0 0
## 368 0 1 0 0 0 0 0 0
## 369 0 0 0 0 0 0 0 0
## 370 0 0 0 0 0 1 0 0
## 371 0 0 0 0 0 1 0 0
## 372 0 1 0 0 0 0 0 0
## 373 0 0 0 0 0 0 0 0
## 374 0 0 0 0 0 1 0 0
## 375 0 0 0 0 0 0 1 0
## 376 0 0 0 0 0 1 0 0
## 377 0 1 0 0 0 0 0 0
## 378 0 1 0 0 0 0 0 0
## 379 0 0 0 0 0 0 0 0
## 380 0 0 0 0 0 1 0 0
## 381 0 1 0 0 0 0 0 0
## 382 0 0 0 0 0 1 0 0
## 383 0 0 1 0 0 0 0 0
## 384 0 0 0 0 0 0 1 0
## 385 0 1 1 0 0 0 0 0
## 386 0 1 1 0 0 0 0 0
## 387 0 0 0 0 0 0 0 0
## 388 0 1 0 0 0 0 0 0
## 389 0 0 0 0 0 0 0 0
## 390 0 1 1 0 0 0 0 0
## 391 0 0 0 0 0 0 0 0
## 392 0 0 0 0 0 1 0 0
## 393 0 1 0 0 0 0 0 0
## 394 0 0 0 0 0 1 0 0
## 395 0 0 0 0 0 0 0 0
## 396 0 0 0 0 0 0 1 0
## 397 0 1 0 0 0 0 0 0
## 398 0 0 0 0 0 0 1 0
## 399 0 0 0 0 0 1 0 0
## 400 0 0 0 0 0 0 0 0
## 401 0 0 0 0 0 0 0 0
## 402 0 1 1 0 0 0 0 0
## 403 0 0 0 0 0 0 0 0
## 404 0 0 0 0 0 0 0 1
## 405 0 0 0 0 0 0 1 0
## 406 0 1 0 0 0 1 0 0
## 407 0 0 0 1 1 1 0 0
## 408 0 1 1 0 0 0 0 0
## 409 0 1 0 0 0 1 1 0
## 410 0 1 1 0 0 1 0 0
## 411 0 1 1 0 0 0 1 0
## 412 0 0 0 0 0 1 0 0
## 413 0 1 1 0 0 1 1 0
## 414 0 0 0 0 0 1 0 0
## 415 0 0 0 0 0 1 0 0
## 416 0 1 1 0 0 0 0 0
## 417 0 1 1 0 0 0 0 0
## 418 0 0 0 0 1 1 0 0
## 419 0 0 0 0 0 1 0 0
## 420 0 0 0 0 0 1 0 0
## 421 0 0 0 0 0 1 0 0
## 422 0 1 0 0 0 0 0 0
## 423 0 1 0 0 0 1 0 0
## 424 0 0 0 0 0 0 0 0
## 425 0 0 0 0 0 1 0 0
## 426 0 0 0 0 1 1 0 0
## 427 0 0 0 1 1 1 0 0
## 428 0 0 0 0 0 0 0 0
## 429 0 0 0 1 1 0 0 0
## 430 0 0 0 0 0 0 1 0
## 431 0 1 1 1 0 0 0 0
## 432 0 0 0 1 1 0 0 0
## 433 0 0 0 0 0 1 0 0
## 434 0 0 0 0 0 1 0 0
## 435 0 1 1 0 0 1 0 0
## 436 0 1 0 0 0 0 0 0
## 437 0 0 0 0 0 0 0 0
## 438 0 0 0 0 1 1 0 0
## 439 0 0 0 0 0 0 0 0
## 440 0 1 0 0 0 0 0 0
## 441 0 1 0 0 0 0 0 0
## 442 0 0 1 0 1 1 0 0
## 443 0 0 0 0 0 1 0 0
## 444 0 0 0 0 0 1 0 0
## 445 0 0 0 0 0 0 0 0
## 446 0 0 0 0 0 1 0 0
## 447 0 0 0 0 0 1 0 0
## 448 0 0 0 0 0 1 0 0
## 449 0 0 0 1 0 1 0 0
## 450 0 1 1 0 0 0 0 0
## 451 0 1 1 0 0 1 0 0
## 452 0 1 1 0 0 0 0 0
## 453 0 1 0 0 0 0 0 0
## 454 0 1 1 0 0 0 0 0
## 455 0 1 0 0 0 0 0 0
## 456 0 0 0 0 0 0 0 0
## 457 0 1 0 0 0 1 0 0
## 458 0 0 0 1 0 1 0 0
## 459 0 0 0 0 0 1 1 0
## 460 0 0 0 0 0 0 0 0
## 461 0 0 0 0 0 1 0 0
## 462 0 0 0 0 0 1 0 0
## 463 0 0 0 0 0 1 0 0
## 464 0 1 1 0 0 0 0 0
## 465 0 0 0 0 0 1 0 0
## 466 0 0 0 0 0 0 0 0
## 467 0 0 0 0 0 1 0 0
## 468 0 0 0 0 0 0 0 0
## 469 0 1 1 0 0 0 0 0
## 470 0 0 0 0 1 1 0 0
## 471 0 1 0 0 0 0 0 0
## 472 0 1 1 0 0 0 0 0
## 473 0 1 1 0 0 0 0 0
## 474 0 1 1 0 0 0 0 0
## 475 0 1 1 0 0 0 0 0
## 476 0 1 1 0 0 1 1 0
## 477 0 1 0 0 0 0 0 0
## 478 0 1 0 0 0 0 0 0
## 479 0 1 0 0 0 1 0 0
## 480 0 0 0 0 0 0 1 0
## 481 0 1 0 0 0 0 0 0
## 482 0 0 0 0 1 1 0 0
## 483 0 1 0 0 0 0 0 0
## 484 0 1 1 0 0 1 0 0
## 485 0 0 0 0 1 1 0 0
## 486 1 0 0 0 0 0 0 0
## 487 0 1 0 0 0 0 0 0
## 488 0 0 0 0 0 1 0 0
## 489 0 0 0 0 0 0 0 0
## 490 0 0 0 0 0 0 0 0
## 491 0 0 0 0 0 1 0 0
## 492 0 0 0 0 0 1 0 0
## 493 0 0 0 0 0 1 0 0
## 494 0 0 0 0 0 0 0 0
## 495 0 0 0 0 0 0 0 0
## 496 0 0 0 0 0 1 0 0
## 497 0 1 1 0 0 0 0 0
## 498 0 1 0 0 1 0 0 0
## 499 0 0 0 0 0 0 0 0
## 500 0 0 0 0 0 1 0 0
## 501 0 0 0 0 1 1 0 0
## 502 0 0 0 0 0 0 0 0
## 503 0 0 0 0 0 0 0 0
## 504 0 1 1 0 0 0 0 0
## 505 0 0 0 0 0 1 0 0
## 506 0 0 0 0 0 1 0 0
## 507 0 0 0 0 1 1 0 0
## 508 0 0 0 0 0 1 0 0
## 509 0 1 1 0 0 1 0 0
## 510 0 0 0 0 0 1 0 0
## 511 0 0 0 0 0 0 0 0
## 512 0 1 0 0 0 1 0 0
## 513 0 0 1 0 1 0 0 0
## 514 0 0 0 0 0 1 0 0
## 515 0 1 0 0 0 1 0 0
## 516 0 0 0 0 0 0 0 0
## 517 0 0 0 0 0 1 0 0
## 518 0 0 0 0 0 1 0 0
## 519 0 0 0 0 0 1 0 0
## 520 0 0 0 0 0 1 1 0
## 521 0 1 0 0 0 0 0 0
## 522 0 1 1 0 1 0 0 0
## 523 0 1 1 0 0 1 0 0
## 524 0 0 0 0 1 1 0 0
## 525 0 0 0 0 0 1 0 0
## 526 0 0 0 0 0 1 0 0
## 527 0 1 1 0 0 0 1 0
## 528 0 0 0 1 1 0 0 0
## 529 0 1 1 0 0 0 0 0
## 530 0 0 0 0 0 0 0 0
## 531 0 0 0 0 0 1 0 0
## 532 0 0 0 1 0 1 0 0
## 533 0 0 0 0 0 1 0 0
## 534 0 0 0 0 0 1 0 0
## 535 0 0 0 0 0 1 0 0
## 536 0 0 0 0 0 1 0 0
## 537 0 0 0 0 0 0 0 0
## 538 0 0 0 0 0 1 0 0
## 539 0 0 0 0 1 1 0 0
## 540 0 0 0 0 1 0 0 0
## 541 0 0 0 0 1 0 0 0
## 542 0 0 0 1 1 0 0 0
## 543 0 0 0 0 1 1 0 0
## 544 0 0 0 1 1 0 0 0
## 545 0 0 0 0 0 0 0 0
## 546 0 0 0 1 1 1 0 0
## 547 0 0 0 0 1 0 0 0
## 548 0 0 0 0 0 0 0 0
## 549 0 0 0 0 0 1 0 0
## 550 0 1 0 1 1 0 0 0
## 551 0 0 0 0 0 0 0 0
## 552 0 0 0 0 0 1 0 0
## 553 0 0 0 0 0 0 0 0
## 554 0 0 0 0 0 1 0 0
## 555 0 1 1 0 0 0 0 0
## 556 0 0 0 1 1 0 0 0
## 557 0 0 0 0 0 1 0 0
## 558 0 0 0 0 0 0 0 0
## 559 0 1 0 0 0 1 0 0
## 560 0 0 0 0 0 0 0 0
## 561 0 0 0 0 0 0 0 0
## 562 0 0 0 0 0 0 0 0
## 563 0 0 0 0 0 0 0 0
## 564 0 0 0 0 0 0 0 0
## 565 0 0 0 0 0 0 0 0
## 566 0 0 0 0 0 0 0 0
## 567 0 0 0 0 0 0 0 0
## 568 0 0 0 0 0 0 0 0
## 569 0 0 0 0 0 0 0 0
## 570 0 0 0 0 0 0 0 0
## 571 0 0 0 0 0 0 0 0
## 572 0 0 0 0 0 0 0 0
## 573 0 1 1 0 0 0 0 0
## 574 0 1 1 0 0 0 0 0
## 575 0 0 0 0 0 1 0 0
## 576 0 1 0 0 0 0 0 0
## 577 0 1 0 0 0 0 0 0
## 578 0 0 0 0 0 0 0 0
## 579 0 1 0 0 0 0 0 0
## 580 0 1 0 0 0 1 0 0
## 581 0 0 1 0 1 0 0 0
## 582 0 0 0 1 1 1 0 0
## 583 0 0 0 0 0 0 0 0
## 584 0 0 0 0 1 1 0 0
## 585 0 0 0 0 0 0 0 0
## 586 0 0 0 0 0 0 1 0
## 587 0 0 0 0 0 1 0 0
## 588 0 0 0 0 0 0 0 0
## 589 0 0 0 0 0 0 0 0
## 590 0 0 0 0 0 0 0 0
## 591 0 1 1 0 0 1 0 0
## 592 0 1 0 0 0 0 0 0
## 593 0 0 0 0 0 0 0 0
## 594 0 1 0 0 0 0 0 0
## 595 0 0 0 0 0 0 0 1
## 596 0 0 0 0 0 1 0 0
## 597 0 1 1 0 0 0 0 0
## 598 0 0 0 0 0 0 1 0
## 599 0 0 0 0 0 0 0 0
## 600 0 0 0 0 0 0 0 0
## 601 0 0 0 0 0 1 0 0
## 602 0 0 0 0 0 1 0 0
## 603 0 0 0 1 1 0 0 0
## 604 0 1 0 0 0 0 0 0
## 605 0 0 0 0 0 1 0 0
## 606 0 0 0 0 0 0 0 0
## 607 0 0 0 0 0 0 0 0
## 608 0 0 0 0 0 0 0 0
## 609 0 0 0 1 1 1 0 0
## 610 0 0 0 0 0 0 0 0
## 611 0 0 0 0 0 0 1 0
## 612 0 0 0 0 0 1 0 0
## 613 0 1 1 0 0 0 0 0
## 614 0 0 0 0 0 0 0 0
## 615 0 0 0 0 0 0 0 0
## 616 0 1 0 0 0 0 1 0
## 617 0 0 0 0 0 0 0 0
## 618 0 0 1 0 1 0 0 0
## 619 0 0 0 0 0 0 0 0
## 620 0 0 0 0 0 0 0 0
## 621 0 0 0 0 0 0 0 0
## 622 0 0 0 0 0 0 0 0
## 623 0 0 0 0 0 0 0 0
## 624 0 0 0 0 0 0 0 0
## 625 0 0 1 0 1 1 0 0
## 626 0 0 0 0 0 1 0 0
## 627 0 0 0 0 0 1 0 0
## 628 0 0 0 0 0 0 1 0
## 629 0 0 0 0 0 0 0 0
## 630 0 0 0 0 0 0 0 0
## 631 0 0 0 0 0 1 0 0
## 632 0 0 0 1 0 1 0 0
## 633 0 0 0 0 0 1 0 0
## 634 0 1 1 0 0 1 0 0
## 635 0 1 1 0 0 0 0 0
## 636 0 0 0 0 0 0 0 0
## 637 0 1 0 0 0 0 0 0
## 638 0 0 0 0 0 0 0 0
## 639 0 0 0 0 0 0 0 0
## 640 0 0 0 0 0 0 1 0
## 641 0 1 0 0 0 0 0 0
## 642 0 0 0 0 0 0 0 0
## 643 0 1 0 0 0 1 0 0
## 644 0 1 0 0 0 0 1 0
## 645 0 1 0 0 0 0 0 0
## 646 0 0 0 1 0 1 0 0
## 647 0 0 0 0 0 0 0 0
## 648 0 0 0 0 0 0 0 0
## 649 0 0 0 0 0 0 0 0
## 650 0 0 0 0 0 1 1 0
## 651 0 1 0 0 0 0 0 0
## 652 0 0 0 0 0 0 0 0
## 653 0 0 0 0 0 0 0 0
## 654 0 0 0 0 0 0 0 0
## 655 0 0 0 0 0 1 0 0
## 656 0 0 0 0 0 0 0 0
## 657 0 0 0 0 0 1 0 0
## 658 0 0 0 0 0 0 0 0
## 659 0 0 0 0 0 1 0 0
## 660 0 0 0 0 0 1 0 0
## 661 0 0 0 0 0 1 0 0
## 662 0 0 0 0 0 0 0 0
## 663 0 0 0 0 0 1 0 0
## 664 0 0 0 0 0 0 0 0
## 665 0 0 0 0 0 0 0 0
## 666 0 0 0 0 0 0 0 0
## 667 0 0 0 0 0 1 0 0
## 668 0 0 0 0 0 1 0 0
## 669 0 0 0 0 0 0 0 0
## 670 0 0 0 0 0 1 1 0
## 671 0 1 1 0 0 1 0 0
## 672 0 0 0 0 0 0 0 0
## 673 0 0 0 0 1 1 0 0
## 674 0 0 0 0 1 1 0 0
## 675 0 0 0 0 0 1 0 0
## 676 0 0 0 0 0 0 0 0
## 677 0 0 0 0 0 1 0 0
## 678 0 0 0 0 0 0 0 0
## 679 0 0 0 0 0 0 0 0
## 680 0 0 0 0 0 1 0 0
## 681 0 0 0 0 0 0 0 0
## 682 0 0 0 0 0 0 0 0
## 683 0 0 0 0 0 0 1 0
## 684 0 0 0 0 0 1 0 0
## 685 0 0 0 0 0 0 0 0
## 686 0 1 0 0 0 0 0 0
## 687 0 0 0 0 0 1 0 0
## 688 0 0 0 0 0 0 1 0
## 689 0 0 1 0 1 0 0 0
## 690 0 0 0 0 0 0 0 0
## 691 0 0 0 0 1 0 0 0
## 692 0 0 0 0 0 0 1 0
## 693 0 0 0 0 0 0 0 0
## 694 0 0 0 0 0 0 0 0
## 695 0 0 0 0 0 0 0 0
## 696 0 0 0 0 0 1 0 0
## 697 0 0 0 0 0 0 0 0
## 698 0 0 0 0 0 0 0 0
## 699 0 0 0 0 0 1 0 0
## 700 0 1 1 0 0 0 0 0
## 701 0 0 0 1 0 1 0 0
## 702 0 0 0 0 0 1 0 0
## 703 0 0 0 0 1 1 0 0
## 704 0 0 0 0 1 0 0 0
## 705 0 0 0 0 0 1 0 0
## 706 0 0 0 0 0 0 0 0
## 707 0 0 0 1 1 0 0 0
## 708 0 1 0 0 0 1 0 0
## 709 0 0 0 0 0 0 0 0
## 710 0 0 0 0 0 0 0 0
## 711 0 0 0 0 0 0 0 0
## 712 0 0 0 0 0 0 0 0
## 713 0 0 0 0 0 0 0 0
## 714 0 0 1 0 0 0 0 0
## 715 0 0 0 0 0 0 0 0
## 716 0 0 1 0 1 0 0 0
## 717 0 0 0 0 0 0 0 0
## 718 0 0 0 0 0 0 0 0
## 719 0 0 0 0 0 0 0 0
## 720 0 0 0 0 0 0 0 0
## 721 0 0 0 0 0 0 0 0
## 722 0 0 0 0 0 0 0 0
## 723 0 1 1 0 0 0 0 0
## 724 0 0 0 1 1 0 0 0
## 725 0 0 0 0 0 0 0 0
## 726 0 0 0 0 0 0 0 0
## 727 0 0 0 0 0 1 0 0
## 728 0 0 0 0 1 1 0 0
## 729 0 0 0 0 0 1 0 0
## 730 0 0 0 0 0 0 0 0
## 731 0 0 0 0 0 1 0 0
## 732 0 0 0 0 0 1 0 0
## 733 0 0 0 0 0 1 1 0
## 734 0 0 0 0 0 0 0 0
## 735 0 0 0 0 0 0 0 0
## 736 0 0 0 0 0 0 0 0
## 737 0 0 0 0 0 1 0 0
## 738 0 0 0 0 0 1 0 0
## 739 0 0 0 0 0 0 0 0
## 740 0 0 0 0 0 0 0 0
## 741 0 0 0 0 0 1 0 0
## 742 0 1 1 0 0 0 0 0
## 743 0 0 0 0 0 0 0 0
## 744 0 0 0 0 0 0 0 0
## 745 0 0 0 0 0 1 0 0
## 746 0 0 1 0 0 1 0 0
## 747 0 0 0 0 0 0 0 0
## 748 0 0 0 0 0 1 0 0
## 749 0 1 1 0 0 0 0 0
## 750 0 0 0 0 0 0 0 0
## 751 0 0 0 1 1 0 0 0
## 752 0 0 0 0 0 1 0 0
## 753 0 0 0 0 0 0 0 0
## 754 0 0 0 0 0 0 1 0
## 755 0 0 0 0 0 0 0 0
## 756 0 0 0 0 0 0 0 0
## 757 0 0 0 0 0 0 0 0
## 758 0 0 0 0 0 0 0 0
## 759 0 0 0 0 0 0 0 0
## 760 0 1 0 0 0 0 0 0
## 761 0 0 1 0 0 0 0 0
## 762 0 0 0 0 0 1 0 0
## 763 0 0 0 0 0 0 0 0
## 764 0 0 0 0 0 1 0 0
## 765 0 1 0 0 0 0 0 0
## 766 0 0 0 0 0 1 0 0
## 767 0 0 0 0 0 1 0 0
## 768 0 0 0 0 0 0 0 0
## 769 0 0 1 0 0 0 0 0
## 770 0 0 1 0 0 0 0 0
## 771 0 0 0 0 0 0 0 0
## 772 0 0 0 0 0 1 0 0
## 773 0 0 0 0 0 1 0 0
## 774 0 0 0 0 0 1 0 0
## 775 0 0 0 0 0 0 0 0
## 776 0 1 1 0 0 0 0 0
## 777 0 0 0 0 0 0 0 0
## 778 0 0 0 0 0 0 0 0
## 779 0 0 0 0 0 0 0 0
## 780 0 0 1 0 0 0 0 0
## 781 0 0 0 0 0 0 0 0
## 782 0 0 0 0 0 0 0 0
## 783 0 0 0 0 0 0 0 0
## 784 0 0 0 0 0 0 0 0
## 785 0 0 0 0 0 1 0 0
## 786 0 0 0 0 0 0 0 0
## 787 0 0 0 0 0 0 0 0
## 788 0 0 0 1 1 0 0 0
## 789 0 0 0 0 1 1 0 0
## 790 0 1 0 0 0 1 0 0
## 791 0 0 0 0 0 0 0 0
## 792 0 0 0 0 1 1 0 0
## 793 0 0 0 0 0 0 0 0
## 794 0 0 0 0 0 0 0 0
## 795 0 0 0 0 0 0 1 0
## 796 0 0 0 0 0 0 1 0
## 797 0 1 0 0 0 0 0 0
## 798 0 0 0 0 0 0 0 0
## 799 0 0 0 0 0 1 0 0
## 800 0 1 0 0 0 0 0 0
## 801 0 1 0 0 0 0 0 0
## 802 0 1 1 0 0 1 1 0
## 803 0 0 0 0 0 0 0 0
## 804 0 0 0 0 0 0 0 1
## 805 0 1 0 0 0 0 1 0
## 806 0 0 0 0 0 0 0 0
## 807 0 0 0 0 0 1 0 0
## 808 0 1 1 0 0 0 0 0
## 809 0 0 0 0 0 0 0 0
## 810 0 0 0 0 0 0 0 0
## 811 0 1 0 0 0 0 0 0
## 812 0 1 0 0 0 0 0 0
## 813 0 0 0 0 0 0 1 0
## 814 0 1 1 0 0 0 0 0
## 815 0 0 0 0 0 0 0 0
## 816 0 1 0 0 0 0 0 0
## 817 0 0 0 0 0 1 0 0
## 818 0 0 0 0 0 1 0 0
## 819 0 0 0 1 1 0 0 0
## 820 0 0 0 0 0 1 1 0
## 821 0 1 0 0 0 1 0 0
## 822 0 0 0 0 0 0 0 0
## 823 0 0 1 0 1 0 0 0
## 824 0 1 0 0 0 0 0 0
## 825 0 1 0 0 0 1 0 0
## 826 0 0 0 0 0 1 0 0
## 827 0 1 1 0 0 0 0 0
## 828 0 0 0 0 0 0 0 0
## 829 0 0 0 0 0 0 0 0
## 830 0 0 0 0 0 1 0 0
## 831 0 0 0 0 1 1 0 0
## 832 0 1 0 0 0 0 1 0
## 833 0 0 0 0 0 1 0 0
## 834 0 1 0 0 0 0 0 0
## 835 0 0 1 0 0 0 0 0
## 836 0 0 0 0 0 0 0 0
## 837 0 0 0 1 1 0 0 0
## 838 0 0 0 0 0 0 1 0
## 839 0 1 1 1 0 0 0 0
## 840 0 0 0 0 0 0 0 0
## 841 0 1 1 0 0 0 0 0
## 842 0 1 0 0 0 0 0 0
## 843 0 0 0 0 0 0 0 0
## 844 0 0 0 0 0 0 0 0
## 845 0 1 0 0 0 0 1 0
## 846 0 0 0 0 0 0 0 0
## 847 0 0 1 0 1 0 0 0
## 848 0 0 0 0 0 0 0 0
## 849 0 0 0 0 0 0 0 0
## 850 0 0 0 0 0 0 0 0
## 851 0 0 0 0 0 0 0 0
## 852 0 0 0 0 1 1 0 0
## 853 0 0 1 0 1 0 0 0
## 854 0 0 1 0 1 0 0 0
## 855 0 0 1 0 1 0 0 0
## 856 0 0 0 0 0 0 0 0
## 857 0 1 0 0 0 0 0 0
## 858 0 1 0 0 0 0 0 0
## 859 0 0 1 0 1 1 0 0
## 860 0 0 0 0 0 1 0 0
## 861 0 0 0 0 0 1 0 0
## 862 0 0 0 0 0 1 0 0
## 863 0 0 0 0 0 0 1 0
## 864 0 0 0 0 0 0 0 0
## 865 0 1 0 0 0 0 0 0
## 866 0 0 0 0 0 0 0 0
## 867 0 0 0 0 0 1 0 0
## 868 0 1 1 0 0 0 0 0
## 869 0 0 0 0 0 0 0 0
## 870 0 0 0 0 0 1 0 0
## 871 0 0 0 0 0 1 0 0
## 872 0 1 1 0 0 0 0 0
## 873 0 1 1 0 0 1 0 0
## 874 0 1 1 0 0 0 0 0
## 875 0 0 0 0 0 0 0 0
## 876 0 1 0 0 0 0 0 0
## 877 0 1 0 0 0 0 0 0
## 878 0 0 0 0 0 0 0 0
## 879 0 0 0 0 0 0 0 0
## 880 0 0 0 0 0 0 0 0
## 881 0 1 1 0 0 0 0 0
## 882 0 0 0 0 0 0 1 0
## 883 0 1 0 0 0 0 0 0
## 884 0 0 0 0 0 0 0 0
## 885 0 1 0 0 0 1 0 0
## 886 0 1 0 0 0 0 1 0
## 887 0 1 0 0 0 0 0 0
## 888 0 0 0 0 0 0 0 0
## 889 0 0 0 0 0 0 0 0
## 890 0 0 0 0 0 0 0 0
## 891 0 0 0 0 0 0 0 0
## 892 0 0 0 0 0 1 1 0
## 893 0 1 0 0 0 0 0 0
## 894 0 0 0 0 0 0 0 0
## 895 0 0 0 0 0 0 0 0
## 896 0 0 0 0 0 0 0 0
## 897 0 0 0 0 0 0 0 0
## 898 0 0 0 0 0 0 0 0
## 899 0 1 1 0 0 1 0 0
## 900 0 0 0 0 0 1 0 0
## 901 0 0 0 0 0 0 0 0
## 902 0 0 0 0 0 1 0 0
## 903 0 0 0 0 0 0 0 0
## 904 0 1 0 0 0 0 0 0
## 905 0 0 0 0 0 1 0 0
## 906 0 1 1 0 0 0 0 0
## 907 0 0 0 0 0 1 0 0
## 908 0 0 0 0 0 0 0 0
## 909 0 0 0 0 0 0 0 0
## 910 0 0 0 0 0 0 0 0
## 911 0 0 0 0 0 0 0 0
## 912 0 0 0 0 0 1 0 0
## 913 0 0 0 0 0 0 0 0
## 914 0 0 0 0 0 0 0 0
## 915 0 0 0 0 0 0 0 0
## 916 0 1 0 0 0 0 0 0
## 917 0 1 1 0 0 0 0 0
## 918 0 1 1 0 0 0 0 0
## 919 0 1 1 0 0 0 0 0
## 920 0 1 1 0 0 0 0 0
## 921 0 1 1 0 0 1 1 0
## 922 0 1 0 0 0 1 0 0
## 923 0 1 0 0 0 0 0 0
## 924 0 0 0 0 0 0 0 0
## 925 0 0 0 0 0 1 0 0
## 926 0 1 0 0 0 0 0 0
## 927 0 0 0 0 0 0 0 0
## 928 0 0 0 0 1 1 0 0
## 929 0 1 0 0 0 0 0 0
## 930 0 0 0 0 0 0 0 0
## 931 0 1 0 0 0 0 0 0
## 932 0 1 1 0 0 0 0 0
## 933 0 0 0 0 0 1 0 0
## 934 0 1 0 0 0 0 1 0
## 935 0 0 0 0 0 0 0 0
## 936 0 1 0 0 0 0 0 0
## 937 0 0 0 0 0 0 0 0
## 938 0 0 0 0 0 0 0 0
## 939 0 0 0 0 0 0 0 0
## 940 0 0 0 0 0 1 0 0
## 941 0 1 0 0 0 0 0 0
## 942 0 0 0 0 0 0 1 0
## 943 0 0 0 0 0 0 1 0
## 944 0 0 0 0 0 0 0 0
## 945 0 0 0 0 0 0 0 0
## 946 0 0 0 0 0 0 0 0
## 947 0 1 0 0 0 0 1 0
## 948 0 0 0 0 0 1 0 0
## 949 0 0 0 0 0 0 0 0
## 950 0 0 0 0 0 0 0 0
## 951 0 0 0 0 0 0 0 0
## 952 0 0 0 0 0 1 0 0
## 953 0 0 0 0 0 0 0 0
## 954 0 0 0 0 0 0 0 0
## 955 0 1 1 0 0 0 0 0
## 956 0 0 0 0 0 1 0 0
## 957 0 0 0 0 0 1 0 0
## 958 0 1 1 0 0 1 0 0
## 959 0 0 0 0 0 1 0 0
## 960 0 0 0 0 0 0 0 0
## 961 0 0 1 0 1 0 0 0
## 962 0 1 0 0 0 1 0 0
## 963 0 0 0 0 0 1 0 0
## 964 0 0 0 0 0 1 1 0
## 965 0 1 1 0 0 1 0 0
## 966 0 0 0 0 0 1 0 0
## 967 0 0 0 0 0 1 0 0
## 968 0 1 1 0 0 0 1 0
## 969 0 0 0 1 1 0 0 0
## 970 0 1 1 0 0 0 0 0
## 971 0 0 0 0 1 1 0 0
## 972 0 0 0 0 1 0 0 0
## 973 0 0 0 0 1 0 0 0
## 974 0 0 0 1 1 0 0 0
## 975 0 0 0 0 1 1 0 0
## 976 0 0 0 1 1 0 0 0
## 977 0 0 0 0 0 0 0 0
## 978 0 0 0 0 1 0 0 0
## 979 0 0 0 0 0 0 0 0
## 980 0 0 0 0 0 1 0 0
## 981 0 0 0 0 0 0 0 0
## 982 0 0 0 0 0 1 0 0
## 983 0 1 1 0 0 0 0 0
## 984 0 0 0 1 1 0 0 0
## 985 0 0 0 0 0 1 0 0
## 986 0 0 0 0 0 0 0 0
## 987 0 1 0 0 0 1 0 0
## 988 0 0 0 0 0 0 0 0
## 989 0 0 0 0 0 0 0 0
## 990 0 0 0 0 0 0 0 0
## 991 0 0 0 0 0 0 0 0
## 992 0 0 0 0 0 0 0 0
## 993 0 0 0 0 0 0 0 0
## 994 0 0 0 0 0 0 0 0
## 995 0 0 0 0 0 0 0 0
## 996 0 1 1 0 0 0 0 0
## 997 0 1 1 0 0 0 0 0
## 998 0 0 0 0 0 1 0 0
## 999 0 1 0 0 0 0 0 0
## 1000 0 1 0 0 0 0 0 0
## 1001 0 0 0 0 0 0 0 0
## 1002 0 0 1 0 0 0 0 0
## 1003 0 0 1 0 1 0 0 0
## 1004 0 0 0 0 0 0 0 0
## 1005 0 0 0 0 0 0 0 0
## 1006 0 1 1 0 0 0 0 0
## 1007 0 0 0 0 0 0 0 0
## 1008 0 0 0 0 0 0 0 0
## 1009 0 0 0 0 0 1 0 0
## 1010 0 0 0 0 0 1 0 0
## 1011 0 0 0 0 0 1 1 0
## 1012 0 0 0 0 0 0 0 0
## 1013 0 0 0 0 0 0 0 0
## 1014 0 0 0 0 0 0 0 0
## 1015 0 0 0 0 0 1 0 0
## 1016 0 0 0 0 0 0 0 0
## 1017 0 0 0 0 0 0 0 0
## 1018 0 1 1 0 0 0 0 0
## 1019 0 0 0 0 0 0 0 0
## 1020 0 0 1 0 0 1 0 0
## 1021 0 0 0 0 0 0 0 0
## 1022 0 0 0 0 0 1 0 0
## 1023 0 1 1 0 0 0 0 0
## 1024 0 0 0 0 0 0 0 0
## 1025 0 0 0 1 1 0 0 0
## 1026 0 0 0 0 0 1 0 0
## 1027 0 0 0 0 0 0 0 0
## 1028 0 0 0 0 0 0 1 0
## 1029 0 0 0 0 0 0 0 0
## 1030 0 0 0 0 0 0 0 0
## 1031 0 0 0 0 0 0 0 0
## 1032 0 0 0 0 0 0 0 0
## 1033 0 1 0 0 0 0 0 0
## 1034 0 0 1 0 0 0 0 0
## 1035 0 0 0 0 0 0 0 0
## 1036 0 0 0 0 0 1 0 0
## 1037 0 1 0 0 0 0 0 0
## 1038 0 0 1 0 0 0 0 0
## 1039 0 0 1 0 0 0 0 0
## 1040 0 0 0 0 0 0 0 0
## 1041 0 0 0 0 0 1 0 0
## 1042 0 1 1 0 0 0 0 0
## 1043 0 0 0 0 0 0 0 0
## 1044 0 0 0 0 0 0 0 0
## 1045 0 0 0 0 0 0 0 0
## 1046 0 0 1 0 0 0 0 0
## 1047 0 0 0 0 0 0 0 0
## 1048 0 1 0 0 0 0 0 0
## 1049 0 1 1 0 0 0 0 0
## 1050 0 0 0 1 1 0 0 0
## 1051 0 0 0 0 0 0 0 0
## 1052 0 0 0 0 0 0 1 0
## 1053 0 0 0 0 0 1 0 0
## 1054 0 1 0 0 0 0 0 0
## 1055 0 0 0 0 0 0 1 0
## 1056 0 0 0 0 1 0 0 0
## 1057 0 0 0 0 0 0 0 0
## 1058 0 1 0 0 0 0 0 0
## 1059 0 0 0 0 0 0 0 0
## 1060 0 0 0 0 0 0 0 0
## 1061 0 0 0 0 0 0 0 0
## 1062 0 1 1 0 0 0 0 0
## 1063 0 0 0 0 0 0 0 0
## 1064 0 0 0 0 0 0 0 0
## 1065 0 0 0 0 0 0 0 0
## 1066 0 0 0 0 0 0 0 0
## 1067 0 0 0 0 0 0 0 0
## 1068 0 0 1 0 1 1 0 0
## 1069 0 0 0 0 0 0 0 0
## 1070 0 1 1 0 0 0 0 0
## 1071 0 0 0 0 0 0 0 0
## 1072 0 0 0 0 0 1 0 0
## 1073 0 0 0 0 0 0 0 0
## 1074 0 1 1 0 0 0 0 0
## 1075 0 0 0 0 0 0 0 0
## 1076 0 1 0 0 0 0 0 0
## 1077 0 0 0 0 0 0 0 0
## 1078 0 0 0 0 0 0 0 0
## 1079 0 0 0 0 0 1 0 0
## 1080 0 1 0 0 0 0 0 0
## 1081 0 0 0 0 0 0 0 0
## 1082 0 0 0 0 0 0 0 0
## 1083 0 0 0 0 0 1 0 0
## 1084 0 1 1 0 0 0 1 0
## 1085 0 0 0 0 0 1 0 0
## 1086 0 1 0 0 0 0 0 0
## 1087 0 0 0 0 0 1 0 0
## 1088 0 0 0 0 0 1 0 0
## 1089 0 0 0 0 0 0 0 0
## 1090 0 0 0 0 0 0 0 0
## 1091 0 0 0 0 0 0 1 0
## 1092 0 0 0 0 1 0 0 0
## 1093 0 0 0 0 0 1 0 0
## 1094 0 1 0 0 0 0 0 0
## 1095 0 0 0 0 0 0 0 0
## 1096 0 0 0 1 1 0 0 0
## 1097 0 0 0 0 0 0 0 0
## 1098 0 1 0 0 0 0 0 0
## 1099 0 0 0 0 0 0 0 0
## 1100 0 0 0 0 0 0 0 0
## 1101 0 0 0 0 0 0 0 0
## 1102 0 0 0 0 0 0 0 0
## 1103 0 0 0 0 0 0 0 0
## 1104 0 0 0 1 1 0 0 0
## 1105 0 1 0 0 0 0 0 0
## 1106 0 0 0 0 0 1 0 0
## 1107 0 1 0 0 0 0 0 0
## 1108 0 0 0 0 1 0 0 0
## 1109 0 0 1 0 0 0 0 0
## 1110 0 0 0 0 0 0 0 0
## 1111 0 0 0 0 0 0 0 0
## 1112 0 0 0 0 0 1 0 0
## 1113 0 0 0 0 0 0 0 0
## 1114 0 0 0 0 0 0 0 0
## 1115 0 0 0 0 0 0 0 0
## 1116 0 0 0 0 0 0 0 0
## 1117 0 0 0 0 0 1 0 0
## 1118 0 0 0 0 0 0 0 0
## 1119 0 0 0 0 0 0 1 0
## 1120 0 0 0 0 0 0 0 0
## 1121 0 0 0 0 0 1 0 0
## 1122 0 0 0 0 0 0 0 0
## 1123 0 0 0 0 0 0 0 0
## 1124 0 0 0 0 0 0 0 0
## 1125 0 0 0 0 0 0 0 0
## 1126 0 0 0 0 0 0 0 0
## 1127 0 0 0 0 0 0 0 0
## 1128 0 0 0 0 0 0 0 0
## 1129 0 0 0 0 0 0 0 0
## 1130 0 0 1 0 1 0 0 0
## 1131 0 0 0 0 1 1 0 0
## 1132 0 0 0 1 1 0 0 0
## 1133 0 0 0 1 1 0 0 0
## 1134 0 0 0 0 1 0 0 0
## 1135 0 0 0 0 0 0 0 0
## 1136 0 0 0 0 0 0 1 0
## 1137 0 0 0 0 0 1 0 0
## 1138 0 0 0 0 0 1 0 0
## 1139 0 1 0 0 0 0 0 0
## 1140 0 0 0 0 0 0 0 0
## 1141 0 0 0 0 0 0 0 0
## 1142 0 0 0 0 0 0 0 1
## 1143 0 0 0 0 0 0 0 0
## 1144 0 1 1 0 0 0 0 0
## 1145 0 0 0 0 0 1 0 0
## 1146 0 0 0 0 0 0 0 0
## 1147 0 0 0 0 0 0 0 0
## 1148 0 0 0 0 0 0 0 0
## 1149 0 0 0 0 0 0 0 0
## 1150 0 0 0 0 0 0 1 0
## 1151 0 0 0 0 0 0 0 0
## 1152 0 0 0 0 0 0 0 1
## 1153 0 0 0 0 0 0 0 1
## 1154 0 0 0 0 0 0 0 0
## 1155 0 0 0 0 0 0 0 0
## 1156 0 0 0 0 0 1 0 0
## 1157 0 0 0 0 0 0 1 0
## 1158 0 0 0 0 0 0 0 0
## 1159 0 1 0 0 0 0 0 0
## 1160 0 0 0 0 0 1 0 0
## 1161 0 0 0 0 0 0 1 0
## 1162 0 0 0 0 0 0 0 0
## 1163 0 0 1 0 0 1 0 0
## 1164 0 0 0 0 0 0 1 0
## 1165 0 0 0 0 0 0 0 0
## 1166 0 0 0 0 0 0 0 0
## 1167 0 0 0 0 0 1 0 0
## 1168 0 0 0 0 0 0 0 0
## 1169 0 0 0 0 0 0 0 0
## 1170 0 0 0 0 0 0 0 0
## 1171 0 0 0 0 0 1 0 0
## 1172 0 0 0 0 0 0 0 0
## 1173 0 1 0 0 0 0 0 0
## 1174 0 0 0 0 0 0 0 0
## 1175 0 0 0 0 0 0 0 0
## 1176 0 1 0 0 0 0 0 0
## 1177 0 0 0 0 0 0 0 0
## 1178 0 0 0 0 0 0 0 0
## 1179 0 0 0 0 0 0 0 0
## 1180 0 0 0 0 0 0 0 0
## 1181 0 0 0 0 0 0 0 0
## 1182 0 0 0 0 0 0 0 0
## 1183 0 0 0 0 0 0 0 0
## 1184 0 0 0 0 0 0 0 1
## 1185 0 0 0 0 0 0 0 0
## 1186 0 1 1 0 0 0 0 0
## 1187 0 0 0 0 0 0 0 0
## 1188 0 0 0 0 0 0 0 0
## 1189 0 0 0 0 0 1 0 0
## 1190 0 0 0 0 0 0 0 0
## 1191 0 0 0 0 0 0 1 0
## 1192 0 1 0 0 0 0 0 0
## 1193 0 1 1 0 0 0 0 0
## 1194 0 0 0 0 0 0 1 0
## 1195 0 0 0 0 0 0 1 0
## 1196 0 1 0 0 0 0 0 0
## 1197 0 1 1 0 0 0 0 0
## 1198 0 0 0 0 0 0 0 0
## 1199 0 1 0 0 0 0 0 0
## 1200 0 1 0 0 0 0 1 0
## 1201 0 1 0 0 0 0 0 0
## 1202 0 1 1 0 0 0 0 0
## 1203 0 1 1 0 0 0 0 0
## 1204 0 1 0 0 0 0 0 0
## 1205 0 1 0 0 0 0 0 0
## 1206 0 1 1 0 0 0 0 0
## 1207 0 0 0 0 0 0 1 0
## 1208 0 1 0 0 0 0 0 0
## 1209 0 1 0 0 0 0 1 0
## 1210 0 1 0 0 0 0 0 0
## 1211 0 0 0 0 0 0 0 0
## 1212 0 1 0 0 0 0 0 0
## 1213 0 1 1 0 0 0 0 0
## 1214 0 1 1 0 0 0 0 0
## 1215 0 1 1 0 0 0 0 0
## 1216 0 1 1 0 0 0 0 0
## 1217 0 1 1 0 0 0 0 0
## 1218 0 1 0 0 0 0 0 0
## 1219 0 1 0 0 0 0 0 0
## 1220 0 0 0 0 1 1 0 0
## 1221 0 0 0 0 0 0 0 0
## 1222 0 0 0 0 1 1 0 0
## 1223 0 1 0 0 0 0 0 0
## 1224 0 1 0 0 0 0 1 0
## 1225 0 0 0 0 0 1 0 0
## 1226 0 0 0 0 0 1 0 0
## 1227 0 0 0 0 0 0 1 0
## 1228 0 0 0 0 0 1 0 0
## 1229 0 0 0 0 0 1 0 0
## 1230 0 1 1 0 0 0 0 0
## 1231 0 1 1 0 0 1 0 0
## 1232 0 1 1 0 0 0 1 0
## 1233 0 1 1 0 0 0 0 0
## 1234 0 1 0 0 0 1 0 0
## 1235 0 0 1 0 1 0 0 0
## 1236 0 1 0 0 0 0 0 0
## 1237 0 0 1 0 0 0 0 0
## 1238 0 0 0 0 0 0 0 0
## 1239 0 1 0 0 0 0 0 0
## 1240 0 1 1 0 0 0 0 0
## 1241 0 1 0 0 0 0 0 0
## 1242 0 1 0 0 0 0 0 0
## 1243 0 1 0 0 0 0 0 0
## 1244 0 1 0 0 0 0 0 0
## 1245 0 1 0 0 0 0 0 0
## 1246 0 0 0 0 0 1 0 0
## 1247 0 0 0 0 0 1 0 0
## 1248 0 1 0 0 0 0 0 0
## 1249 0 0 0 0 0 0 0 0
## 1250 0 0 0 0 0 0 0 0
## 1251 0 1 1 0 0 0 0 0
## 1252 0 1 1 0 0 1 0 0
## 1253 0 0 0 0 0 1 0 0
## 1254 0 0 0 0 0 0 0 0
## 1255 0 0 0 0 0 0 0 0
## 1256 0 0 0 0 0 1 0 0
## 1257 0 1 0 0 0 0 0 0
## 1258 0 0 0 0 0 0 0 0
## 1259 0 0 0 0 0 0 0 0
## 1260 0 1 1 0 0 1 0 0
## 1261 0 0 0 0 0 1 0 0
## 1262 0 0 0 0 0 0 0 0
## 1263 0 0 0 0 0 0 0 0
## 1264 0 0 0 0 0 1 0 0
## 1265 0 0 0 0 0 0 0 0
## 1266 0 0 0 0 0 0 0 0
## 1267 0 0 0 0 0 0 0 0
## 1268 0 0 0 0 0 0 0 0
## 1269 0 0 0 0 0 0 0 0
## 1270 0 0 0 0 0 0 0 0
## 1271 0 0 0 1 1 1 0 0
## 1272 0 1 0 0 0 1 0 0
## 1273 0 0 0 0 0 0 0 0
## 1274 0 0 0 0 0 0 0 0
## 1275 0 0 0 0 0 0 1 0
## 1276 0 0 0 0 0 0 1 0
## 1277 0 0 0 0 0 1 0 0
## 1278 0 0 0 0 0 1 0 0
## 1279 0 1 0 0 0 0 0 0
## 1280 0 0 0 0 0 0 0 0
## 1281 0 0 0 0 0 0 0 1
## 1282 0 1 0 0 0 0 0 0
## 1283 0 0 0 0 0 1 0 0
## 1284 0 0 0 0 0 0 0 1
## 1285 0 1 1 0 0 0 0 0
## 1286 0 0 0 0 0 0 1 0
## 1287 0 0 0 0 0 0 0 0
## 1288 0 0 0 0 0 0 0 0
## 1289 0 0 0 0 0 0 0 0
## 1290 0 0 0 0 0 1 0 0
## 1291 0 0 0 0 0 1 0 0
## 1292 0 1 1 0 0 0 0 0
## 1293 0 0 0 0 0 1 0 0
## 1294 0 0 0 0 0 1 0 0
## 1295 0 0 0 0 0 0 0 0
## 1296 0 0 0 1 1 0 0 0
## 1297 0 0 0 0 0 0 1 0
## 1298 0 0 0 0 0 1 0 0
## 1299 0 0 0 0 0 0 0 0
## 1300 0 1 0 0 0 0 1 0
## 1301 0 0 0 0 0 0 1 0
## 1302 0 0 1 0 1 0 0 0
## 1303 0 0 0 0 0 0 0 0
## 1304 0 0 0 0 0 0 0 0
## 1305 0 0 0 0 0 0 0 0
## 1306 0 0 0 0 0 0 0 0
## 1307 0 1 0 0 0 0 0 0
## 1308 0 0 0 0 0 1 0 0
## 1309 0 0 0 0 0 0 0 0
## 1310 0 0 0 0 0 0 1 0
## 1311 0 0 0 0 0 0 0 0
## 1312 0 0 0 0 0 0 0 0
## 1313 0 1 0 0 0 0 0 0
## 1314 0 0 0 0 0 0 0 0
## 1315 0 1 1 0 0 0 0 0
## 1316 0 0 0 0 0 1 0 0
## 1317 0 0 0 0 0 1 0 0
## 1318 0 1 1 0 0 0 0 0
## 1319 0 0 0 0 0 0 0 0
## 1320 0 1 0 0 0 0 0 0
## 1321 0 0 0 0 0 0 0 0
## 1322 0 0 0 0 0 0 0 0
## 1323 0 0 0 0 0 0 0 0
## 1324 0 0 0 0 0 0 1 0
## 1325 0 1 0 0 0 0 0 0
## 1326 0 0 0 0 0 0 0 0
## 1327 0 1 0 0 0 1 0 0
## 1328 0 0 0 0 0 0 0 0
## 1329 0 0 0 0 0 0 0 0
## 1330 0 0 0 0 0 1 1 0
## 1331 0 1 0 0 0 0 0 0
## 1332 0 0 0 0 0 0 0 0
## 1333 0 0 0 0 0 0 0 0
## 1334 0 0 0 0 0 0 0 0
## 1335 0 0 0 0 0 0 0 0
## 1336 0 0 0 0 0 0 0 0
## 1337 0 0 0 0 0 0 0 0
## 1338 0 0 0 0 0 1 0 0
## 1339 0 0 0 0 0 1 0 0
## 1340 0 0 0 0 0 0 0 0
## 1341 0 0 0 0 0 0 0 0
## 1342 0 0 0 0 0 0 0 0
## 1343 0 1 1 0 0 0 0 0
## 1344 0 1 0 0 0 0 0 0
## 1345 0 0 0 0 0 1 0 0
## 1346 0 1 0 0 0 0 0 0
## 1347 0 0 0 0 0 1 0 0
## 1348 0 1 0 0 0 0 1 0
## 1349 0 0 0 0 0 1 0 0
## 1350 0 0 0 0 0 0 0 0
## 1351 0 0 0 0 0 0 0 0
## 1352 0 0 0 0 0 0 0 0
## 1353 0 0 0 0 0 0 0 0
## 1354 0 0 0 0 0 0 0 0
## 1355 0 0 0 0 0 0 0 0
## 1356 0 0 0 0 0 1 0 0
## 1357 0 0 0 0 0 0 1 0
## 1358 0 0 0 0 0 1 0 0
## 1359 0 0 0 0 0 1 0 0
## 1360 0 0 0 0 0 0 0 0
## 1361 0 1 0 0 0 0 1 0
## 1362 0 0 0 0 0 0 0 0
## 1363 0 0 0 0 0 0 0 0
## 1364 0 0 0 0 0 1 0 0
## 1365 0 0 0 0 0 0 0 0
## 1366 0 1 1 0 0 1 0 0
## 1367 0 0 0 1 1 0 0 0
## 1368 0 0 0 0 0 1 0 0
## 1369 0 0 0 1 1 0 0 0
## 1370 0 0 0 1 1 0 0 0
## 1371 0 0 0 0 0 1 0 0
## 1372 0 0 0 1 1 0 0 0
## 1373 0 1 0 0 0 1 0 0
## 1374 0 0 0 0 0 0 0 0
## 1375 0 0 0 0 0 0 0 0
## 1376 0 0 0 0 0 0 0 0
## 1377 0 0 1 0 0 0 0 0
## 1378 0 0 0 0 0 0 0 0
## 1379 0 0 0 0 0 0 0 0
## 1380 0 0 0 0 0 0 0 0
## 1381 0 0 0 0 0 0 0 0
## 1382 0 0 0 0 0 1 0 0
## 1383 0 0 0 0 0 0 0 0
## 1384 0 0 0 0 0 1 0 0
## 1385 0 0 0 0 0 1 1 0
## 1386 0 0 0 0 0 0 0 0
## 1387 0 0 0 0 0 0 0 0
## 1388 0 0 0 0 0 1 0 0
## 1389 0 0 0 0 0 0 0 0
## 1390 0 0 0 0 0 0 0 0
## 1391 0 0 0 0 0 0 0 0
## 1392 0 0 1 0 0 1 0 0
## 1393 0 0 0 0 0 0 0 0
## 1394 0 0 0 0 0 1 0 0
## 1395 0 1 1 0 0 0 0 0
## 1396 0 0 0 0 0 0 0 0
## 1397 0 0 0 0 0 1 0 0
## 1398 0 0 0 0 0 0 1 0
## 1399 0 0 0 0 0 0 0 0
## 1400 0 0 0 0 0 0 0 0
## 1401 0 1 0 0 0 0 0 0
## 1402 0 0 1 0 0 0 0 0
## 1403 0 0 0 0 0 0 0 0
## 1404 0 0 0 0 0 0 0 0
## 1405 0 0 1 0 0 0 0 0
## 1406 0 0 0 0 0 0 0 0
## 1407 0 0 0 0 0 0 0 0
## 1408 0 0 0 0 0 0 0 0
## 1409 0 0 0 0 0 0 0 0
## 1410 0 0 1 0 0 0 0 0
## 1411 0 0 0 0 0 0 0 0
## 1412 0 0 0 0 0 0 0 0
## 1413 0 0 0 0 0 0 0 0
## 1414 0 0 0 1 1 0 0 0
## 1415 0 0 0 0 0 0 0 0
## 1416 0 0 0 0 0 0 0 0
## 1417 0 0 0 0 0 0 0 0
## 1418 0 0 0 0 0 1 0 0
## 1419 0 0 0 0 0 0 0 0
## 1420 0 0 0 0 0 0 0 0
## 1421 0 0 0 0 0 0 1 0
## 1422 0 0 0 0 0 0 0 0
## 1423 0 0 0 0 0 0 0 0
## 1424 0 0 0 0 0 1 0 0
## 1425 0 1 0 0 0 0 0 0
## 1426 0 0 0 0 0 1 0 0
## 1427 0 0 0 0 0 0 0 0
## 1428 0 0 1 0 0 1 0 0
## 1429 0 0 0 0 0 0 1 0
## 1430 0 0 0 0 0 0 0 0
## 1431 0 0 0 0 0 1 0 0
## 1432 0 0 0 0 0 0 0 0
## 1433 0 1 0 0 0 0 0 0
## 1434 0 0 0 0 0 1 0 0
## 1435 0 0 0 0 0 0 0 0
## 1436 0 0 0 0 0 0 0 0
## 1437 0 0 0 0 0 1 0 0
## 1438 0 0 0 0 0 0 0 0
## 1439 0 0 0 0 0 0 0 0
## 1440 0 0 0 0 0 0 0 0
## 1441 0 0 0 0 0 0 0 0
## 1442 0 0 0 0 0 1 0 0
## 1443 0 0 0 0 0 0 0 1
## 1444 0 0 0 0 0 1 0 0
## 1445 0 0 0 0 0 0 0 0
## 1446 0 0 0 0 0 0 0 0
## 1447 0 0 0 0 0 0 0 0
## 1448 0 0 0 0 0 0 0 0
## 1449 0 0 0 0 0 0 0 0
## 1450 0 0 0 0 0 0 0 0
## 1451 0 0 0 0 0 1 0 0
## 1452 0 0 0 0 0 1 0 0
## 1453 0 0 0 0 0 0 0 0
## 1454 0 0 0 0 0 1 0 0
## 1455 0 0 0 0 1 1 0 0
## 1456 0 0 0 0 0 0 0 0
## 1457 0 0 0 0 0 0 1 0
## 1458 0 0 0 0 0 0 1 0
## 1459 0 0 0 0 0 0 0 0
## 1460 0 1 0 0 0 0 0 0
## 1461 0 1 1 0 0 0 1 0
## 1462 0 0 0 0 0 1 0 0
## 1463 0 1 0 0 0 0 0 0
## 1464 0 1 1 0 0 1 1 0
## 1465 0 0 0 0 0 0 0 0
## 1466 0 1 0 0 0 0 1 0
## 1467 0 0 0 0 0 1 0 0
## 1468 0 0 0 0 0 1 0 0
## 1469 0 0 0 0 0 1 0 0
## 1470 0 0 0 0 0 0 0 0
## 1471 0 0 0 0 0 0 0 0
## 1472 0 1 0 0 0 0 0 0
## 1473 0 0 0 0 0 0 1 0
## 1474 0 0 0 0 0 0 0 0
## 1475 0 0 0 0 0 0 0 0
## 1476 0 0 0 0 0 1 0 0
## 1477 0 0 0 0 0 1 0 0
## 1478 0 1 0 0 0 0 0 0
## 1479 0 0 0 0 0 1 0 0
## 1480 0 0 0 0 0 0 0 0
## 1481 0 0 0 0 0 1 0 0
## 1482 0 0 0 0 0 1 0 0
## 1483 0 0 0 0 1 1 0 0
## 1484 0 0 1 0 0 0 0 0
## 1485 0 0 0 0 0 0 0 0
## 1486 0 0 0 0 0 0 1 0
## 1487 0 0 0 0 0 0 0 0
## 1488 0 0 0 0 0 1 0 0
## 1489 0 1 1 0 0 1 0 0
## 1490 0 0 0 0 0 1 0 0
## 1491 0 0 0 0 0 1 1 0
## 1492 0 1 0 0 0 0 0 0
## 1493 0 0 0 0 0 1 0 0
## 1494 0 0 0 0 0 0 0 0
## 1495 0 0 0 0 0 0 0 0
## 1496 0 0 0 0 0 1 0 0
## 1497 0 1 1 0 0 1 0 0
## 1498 0 0 0 0 0 0 0 0
## 1499 0 1 0 0 0 0 0 0
## 1500 0 0 0 0 0 0 0 0
## 1501 0 0 0 0 0 0 0 0
## 1502 0 0 0 0 0 0 0 0
## 1503 0 0 0 0 0 0 0 0
## 1504 0 0 0 0 0 1 1 0
## 1505 0 0 0 0 0 0 0 0
## 1506 0 0 0 0 0 0 0 0
## 1507 0 0 0 0 0 1 0 0
## 1508 0 0 0 0 0 1 0 0
## 1509 0 0 0 0 0 1 0 0
## 1510 0 0 0 0 0 0 0 0
## 1511 0 0 0 0 0 0 0 0
## 1512 0 0 0 0 0 1 0 0
## 1513 0 1 1 0 0 0 0 0
## 1514 0 1 1 0 0 0 0 0
## 1515 0 1 1 0 0 0 0 0
## 1516 0 1 1 0 0 0 0 0
## 1517 0 1 1 0 0 0 0 0
## 1518 0 0 0 0 0 0 0 0
## 1519 0 0 0 0 0 1 0 0
## 1520 0 0 0 0 0 0 1 0
## 1521 0 1 0 0 0 0 0 0
## 1522 0 0 0 0 0 0 0 0
## 1523 0 0 0 0 1 1 0 0
## 1524 0 1 0 0 0 0 0 0
## 1525 0 0 0 0 0 1 0 0
## 1526 0 0 0 0 0 0 0 0
## 1527 0 0 0 0 0 0 0 0
## 1528 0 0 0 0 0 1 0 0
## 1529 0 0 0 0 0 0 0 0
## 1530 0 1 0 0 0 0 0 0
## 1531 0 0 0 0 0 1 0 0
## 1532 0 0 0 0 0 1 1 0
## 1533 0 0 0 0 0 0 0 0
## 1534 0 0 0 0 0 0 0 0
## 1535 0 0 0 0 0 0 0 0
## 1536 0 0 0 0 0 0 1 0
## 1537 0 1 0 0 0 0 0 0
## 1538 0 0 0 0 0 0 0 0
## 1539 0 0 0 0 0 0 0 0
## 1540 0 0 0 0 0 0 0 0
## 1541 0 0 0 0 0 1 0 0
## 1542 0 0 0 0 0 0 0 0
## 1543 0 0 0 0 0 1 0 0
## 1544 0 0 0 0 0 1 0 0
## 1545 0 0 0 0 1 1 0 0
## 1546 0 0 0 0 0 1 0 0
## 1547 0 0 0 0 0 1 0 0
## 1548 0 0 0 0 0 1 0 0
## 1549 0 1 1 0 0 1 0 0
## 1550 0 0 0 0 0 1 0 0
## 1551 0 0 0 0 0 1 0 0
## 1552 0 1 1 0 0 0 0 0
## 1553 0 0 0 0 0 1 0 0
## 1554 0 0 0 0 1 0 0 0
## 1555 0 0 0 0 0 1 0 0
## 1556 0 0 0 0 0 0 0 0
## 1557 0 0 0 0 0 1 0 0
## 1558 0 0 0 0 0 0 0 0
## 1559 0 0 0 0 0 1 0 0
## 1560 0 1 1 0 0 0 0 0
## 1561 0 0 0 0 0 1 0 0
## 1562 0 0 0 0 0 0 0 0
## 1563 0 1 0 0 0 1 0 0
## 1564 0 1 1 0 0 0 0 0
## 1565 0 0 0 0 0 1 0 0
## 1566 0 1 0 0 0 0 0 0
## 1567 0 0 0 0 0 0 1 0
## 1568 0 0 0 0 0 0 0 0
## 1569 0 0 0 0 0 1 0 0
## 1570 0 0 0 0 0 0 0 0
## 1571 0 0 0 0 0 1 0 0
## 1572 0 1 1 0 0 0 0 0
## 1573 0 0 0 0 0 0 0 0
## 1574 0 0 0 0 0 0 1 0
## 1575 0 0 0 0 0 0 0 0
## 1576 0 0 0 0 0 0 0 0
## 1577 0 0 0 0 0 0 0 0
## 1578 0 0 0 0 0 0 0 0
## 1579 0 0 0 0 0 1 0 0
## 1580 0 0 0 0 0 1 0 0
## 1581 0 1 0 0 0 0 0 0
## 1582 0 0 0 0 0 0 0 0
## 1583 0 0 0 0 0 0 0 0
## 1584 0 0 0 0 0 1 0 0
## 1585 0 0 0 0 0 0 0 0
## 1586 0 0 0 0 0 1 0 0
## 1587 0 0 0 0 0 0 0 0
## 1588 0 0 0 0 0 0 0 0
## 1589 0 0 0 0 0 1 0 0
## 1590 0 0 0 0 0 0 0 0
## 1591 0 0 0 0 0 1 0 0
## 1592 0 0 0 0 0 0 0 0
## 1593 0 0 0 0 0 0 0 0
## 1594 0 0 0 0 0 1 0 0
## 1595 0 0 0 0 0 0 0 0
## 1596 0 0 0 0 0 0 0 0
## 1597 0 0 0 0 0 1 0 0
## 1598 0 0 0 0 0 0 0 0
## 1599 0 0 0 0 0 0 0 0
## 1600 0 0 0 0 0 1 0 0
## 1601 0 0 0 0 0 1 0 0
## 1602 0 1 1 0 0 0 0 0
## 1603 0 0 0 0 0 1 0 0
## 1604 0 0 0 0 0 1 0 0
## 1605 0 0 0 0 0 1 0 0
## 1606 0 0 0 0 0 0 0 0
## 1607 0 0 0 0 0 1 0 0
## 1608 0 0 0 0 1 0 0 0
## 1609 0 0 0 0 0 0 0 0
## 1610 0 0 0 0 0 1 0 0
## 1611 0 0 0 0 0 0 0 0
## 1612 0 0 0 0 0 0 0 0
## 1613 0 0 0 0 0 1 0 0
## 1614 0 0 0 0 0 1 0 0
## 1615 0 0 0 0 0 0 0 0
## 1616 0 0 0 0 0 1 0 0
## 1617 0 0 0 0 0 0 0 0
## 1618 0 0 0 0 0 0 0 0
## 1619 0 0 0 0 0 1 0 0
## 1620 0 0 0 0 0 1 0 0
## 1621 0 0 0 0 0 1 0 0
## 1622 0 0 0 0 0 0 0 0
## 1623 0 0 0 0 0 0 0 0
## 1624 0 0 0 0 0 0 0 0
## 1625 0 1 0 0 0 0 0 0
## 1626 0 0 0 0 0 0 0 0
## 1627 0 0 0 0 0 1 0 0
## 1628 0 0 0 0 0 1 0 0
## 1629 0 0 0 0 0 1 0 0
## 1630 0 1 0 0 0 0 0 0
## 1631 0 0 0 0 0 1 0 0
## 1632 0 0 0 0 0 0 0 0
## 1633 0 1 0 0 0 0 0 0
## 1634 0 1 0 0 0 0 0 0
## 1635 0 1 0 0 0 1 0 0
## 1636 0 0 0 0 0 0 0 0
## 1637 0 1 0 0 0 0 0 0
## 1638 0 1 1 0 0 0 0 0
## 1639 0 0 0 0 0 1 0 0
## 1640 0 0 0 1 1 0 0 0
## 1641 0 1 1 0 0 0 0 0
## 1642 0 0 0 0 0 1 0 0
## 1643 0 1 0 0 0 0 0 0
## 1644 0 0 1 0 0 0 0 0
## 1645 0 0 0 0 0 0 0 0
## 1646 0 1 0 0 0 0 1 0
## 1647 0 0 1 0 1 0 0 0
## 1648 0 0 0 0 0 0 0 0
## 1649 0 0 0 0 0 0 0 0
## 1650 0 0 0 0 0 0 0 0
## 1651 0 0 0 0 0 0 0 0
## 1652 0 1 0 0 0 0 0 0
## 1653 0 0 0 0 0 1 0 0
## 1654 0 0 0 0 0 1 0 0
## 1655 0 1 1 0 0 0 0 0
## 1656 0 1 1 0 0 0 0 0
## 1657 0 0 0 0 0 0 0 0
## 1658 0 1 0 0 0 0 0 0
## 1659 0 0 0 0 0 0 0 0
## 1660 0 0 0 0 0 0 0 0
## 1661 0 0 0 0 0 1 0 0
## 1662 0 0 0 0 0 0 0 0
## 1663 0 0 0 0 0 1 0 0
## 1664 0 0 0 0 0 0 0 0
## 1665 0 0 0 0 0 1 0 0
## 1666 0 1 1 0 0 0 0 0
## 1667 0 0 0 0 0 1 0 0
## 1668 0 0 0 0 0 1 0 0
## 1669 0 0 0 0 0 0 0 0
## 1670 0 0 0 0 0 0 0 0
## 1671 0 1 0 0 0 0 0 0
## 1672 0 0 0 0 0 0 0 0
## 1673 0 1 0 0 0 0 0 0
## 1674 0 0 0 0 0 1 0 0
## 1675 0 0 0 0 0 0 0 0
## 1676 0 0 0 0 0 1 0 0
## 1677 0 0 0 0 1 0 0 0
## 1678 0 0 0 0 0 0 0 0
## 1679 0 0 0 0 0 1 0 0
## 1680 0 0 0 0 0 0 0 0
## 1681 0 1 0 0 0 0 0 0
## 1682 0 0 0 0 0 0 0 0
## 1683 0 0 0 0 0 0 0 0
## 1684 0 0 0 0 0 0 0 0
## 1685 0 0 0 0 0 0 1 0
## 1686 0 0 0 1 1 1 0 0
## 1687 0 1 1 0 0 0 0 0
## 1688 0 1 0 0 0 1 0 0
## 1689 0 0 0 0 0 0 1 0
## 1690 0 0 0 0 0 0 0 0
## 1691 0 0 0 0 1 1 0 0
## 1692 0 0 0 0 0 0 0 0
## 1693 0 0 0 0 0 0 1 0
## 1694 0 0 0 0 0 0 1 0
## 1695 0 0 0 0 0 1 0 0
## 1696 0 0 0 0 0 0 0 0
## 1697 0 1 0 0 0 1 1 0
## 1698 0 1 1 0 0 1 0 0
## 1699 0 1 0 0 0 0 0 0
## 1700 0 0 0 0 0 0 0 0
## 1701 0 1 1 0 0 0 1 0
## 1702 0 0 0 0 0 1 0 0
## 1703 0 1 0 0 0 0 0 0
## 1704 0 1 0 0 0 0 0 0
## 1705 0 1 1 0 0 1 1 0
## 1706 0 0 0 0 0 0 0 1
## 1707 0 1 0 0 0 0 0 0
## 1708 0 0 0 0 0 0 0 0
## 1709 0 0 0 0 0 0 0 0
## 1710 0 1 0 0 0 0 1 0
## 1711 0 0 0 0 0 1 0 0
## 1712 0 0 0 0 0 1 0 0
## 1713 0 0 0 0 0 1 0 0
## 1714 0 0 0 0 0 0 0 1
## 1715 0 0 0 0 0 1 0 0
## 1716 0 1 1 0 0 0 0 0
## 1717 0 0 0 0 0 0 0 0
## 1718 0 1 0 0 0 0 0 0
## 1719 0 0 0 0 0 0 1 0
## 1720 0 0 0 0 0 0 0 0
## 1721 0 0 0 0 0 0 0 0
## 1722 0 0 0 0 0 0 0 0
## 1723 0 0 0 0 0 0 0 0
## 1724 0 1 1 0 0 0 0 0
## 1725 0 0 0 0 0 0 0 0
## 1726 0 0 0 0 0 1 0 0
## 1727 0 0 0 0 0 1 0 0
## 1728 0 1 0 0 0 0 0 0
## 1729 0 0 0 0 0 1 0 0
## 1730 0 0 0 0 0 1 0 0
## 1731 0 0 0 1 1 0 0 0
## 1732 0 0 0 0 0 1 1 0
## 1733 0 1 0 0 0 1 0 0
## 1734 0 0 1 0 1 0 0 0
## 1735 0 1 0 0 0 0 0 0
## 1736 0 1 1 0 0 0 0 0
## 1737 0 0 0 0 0 1 0 0
## 1738 0 0 0 0 0 0 0 0
## 1739 0 0 0 0 0 0 0 0
## 1740 0 0 0 0 0 1 0 0
## 1741 0 0 0 0 0 0 0 0
## 1742 0 0 0 0 0 1 0 0
## 1743 0 0 0 0 1 1 0 0
## 1744 0 1 0 0 0 0 1 0
## 1745 0 0 0 0 1 1 0 0
## 1746 0 0 0 1 1 1 0 0
## 1747 0 1 0 0 0 0 0 0
## 1748 0 0 1 0 0 0 0 0
## 1749 0 0 0 0 0 0 0 0
## 1750 0 0 0 1 1 0 0 0
## 1751 0 0 0 0 0 0 1 0
## 1752 0 0 0 0 0 1 0 0
## 1753 0 1 1 0 0 1 0 0
## 1754 0 0 0 0 0 1 0 0
## 1755 0 0 0 0 0 1 0 0
## 1756 0 1 1 0 0 0 0 0
## 1757 0 1 1 0 0 0 0 0
## 1758 0 1 0 0 0 0 0 0
## 1759 0 0 0 0 0 0 0 0
## 1760 0 1 0 0 0 0 1 0
## 1761 0 1 0 0 0 0 0 0
## 1762 0 0 1 0 1 0 0 0
## 1763 0 0 0 0 0 0 0 0
## 1764 0 0 0 0 0 0 0 0
## 1765 0 0 0 0 1 1 0 0
## 1766 0 0 1 0 1 0 0 0
## 1767 0 0 0 0 0 0 0 0
## 1768 0 1 0 0 0 0 0 0
## 1769 0 1 0 0 0 0 0 0
## 1770 0 1 0 0 0 0 0 0
## 1771 0 0 0 0 0 1 0 0
## 1772 0 0 0 0 0 1 0 0
## 1773 0 0 0 0 0 1 0 0
## 1774 0 0 0 0 0 1 0 0
## 1775 0 0 0 0 0 0 0 0
## 1776 0 0 0 0 0 0 0 0
## 1777 0 0 0 0 0 1 0 0
## 1778 0 0 0 0 0 0 0 0
## 1779 0 1 0 0 0 0 0 0
## 1780 0 0 0 0 0 1 0 0
## 1781 0 1 1 0 0 0 0 0
## 1782 0 0 0 0 0 0 0 0
## 1783 0 0 0 0 0 0 0 0
## 1784 0 0 0 0 0 1 0 0
## 1785 0 0 0 0 0 1 0 0
## 1786 0 0 0 0 0 1 0 0
## 1787 0 1 1 0 0 0 0 0
## 1788 0 1 1 0 0 1 0 0
## 1789 0 1 1 0 0 0 0 0
## 1790 0 0 0 0 0 0 0 0
## 1791 0 1 0 0 0 0 0 0
## 1792 0 1 0 0 0 0 0 0
## 1793 0 0 0 0 0 0 0 0
## 1794 0 0 0 0 0 0 0 0
## 1795 0 0 0 0 0 0 0 0
## 1796 0 1 1 0 0 0 0 0
## 1797 0 0 0 0 0 0 1 0
## 1798 0 1 0 0 0 0 0 0
## 1799 0 1 1 0 0 1 0 0
## 1800 0 0 0 0 0 0 0 0
## 1801 0 1 0 0 0 1 0 0
## 1802 0 1 0 0 0 0 1 0
## 1803 0 1 0 0 0 0 0 0
## 1804 0 0 0 0 0 0 0 0
## 1805 0 0 0 0 0 0 0 0
## 1806 0 0 0 0 0 0 0 0
## 1807 0 0 0 0 0 1 1 0
## 1808 0 1 0 0 0 0 0 0
## 1809 0 0 0 0 0 0 0 0
## 1810 0 0 0 0 0 0 0 0
## 1811 0 0 0 0 0 0 0 0
## 1812 0 0 0 0 0 0 0 0
## 1813 0 0 0 0 0 0 0 0
## 1814 0 1 1 0 0 1 0 0
## 1815 0 0 0 0 0 1 0 0
## 1816 0 0 0 0 0 1 0 0
## 1817 0 0 0 0 0 0 0 0
## 1818 0 0 0 0 0 1 0 0
## 1819 0 0 0 0 0 1 0 0
## 1820 0 1 1 0 0 0 0 0
## 1821 0 0 0 0 0 1 0 0
## 1822 0 0 0 0 0 0 0 0
## 1823 0 0 0 0 0 0 0 0
## 1824 0 0 0 0 0 1 0 0
## 1825 0 0 0 0 0 0 0 0
## 1826 0 0 0 0 0 0 0 0
## 1827 0 0 0 0 0 0 0 0
## 1828 0 1 1 0 0 0 0 0
## 1829 0 0 0 0 0 0 0 0
## 1830 0 0 0 0 0 0 0 0
## 1831 0 0 0 0 1 1 0 0
## 1832 0 1 0 0 0 0 0 0
## 1833 0 1 1 0 0 0 0 0
## 1834 0 1 1 0 0 0 0 0
## 1835 0 1 1 0 0 0 0 0
## 1836 0 1 1 0 0 0 0 0
## 1837 0 1 1 0 0 1 1 0
## 1838 0 1 0 0 0 1 0 0
## 1839 0 1 0 0 0 0 0 0
## 1840 0 1 0 0 0 0 0 0
## 1841 0 1 0 0 0 1 0 0
## 1842 0 0 0 0 0 0 0 0
## 1843 0 0 0 0 0 1 0 0
## 1844 0 0 0 0 0 0 1 0
## 1845 0 1 0 0 0 0 0 0
## 1846 0 0 0 0 0 1 0 0
## 1847 0 0 0 0 1 1 0 0
## 1848 0 0 0 0 0 0 0 0
## 1849 0 1 0 0 0 0 0 0
## 1850 0 0 0 0 1 1 0 0
## 1851 0 0 0 0 0 0 0 0
## 1852 0 1 0 0 0 0 0 0
## 1853 0 0 0 0 0 0 0 0
## 1854 0 1 0 0 0 0 0 0
## 1855 0 0 0 0 0 1 0 0
## 1856 0 0 0 0 0 0 0 0
## 1857 0 1 1 0 0 0 0 0
## 1858 0 0 0 0 0 0 0 0
## 1859 0 1 0 0 0 0 1 0
## 1860 0 0 0 0 0 1 0 0
## 1861 0 0 0 0 0 0 0 0
## 1862 0 0 0 0 0 0 0 0
## 1863 0 0 0 0 0 0 0 0
## 1864 0 0 0 0 0 0 0 0
## 1865 0 1 0 0 0 0 0 0
## 1866 0 0 0 0 0 0 0 0
## 1867 0 0 0 0 0 0 0 0
## 1868 0 0 0 0 0 0 0 0
## 1869 0 0 0 0 0 0 0 0
## 1870 0 0 0 0 0 0 0 0
## 1871 0 0 0 0 0 1 0 0
## 1872 0 0 0 0 0 0 0 0
## 1873 0 0 0 0 0 1 0 0
## 1874 0 0 0 0 0 0 1 0
## 1875 0 1 0 0 0 0 0 0
## 1876 0 0 0 0 0 1 0 0
## 1877 0 0 0 0 0 0 1 0
## 1878 0 0 0 0 0 0 0 0
## 1879 0 0 0 0 0 0 0 0
## 1880 0 0 0 0 0 0 1 0
## 1881 0 0 0 0 1 0 0 0
## 1882 0 0 0 0 0 0 0 0
## 1883 0 0 0 0 0 0 0 0
## 1884 0 0 0 0 0 1 1 0
## 1885 0 1 0 0 0 0 0 0
## 1886 0 1 0 0 1 0 0 0
## 1887 0 0 0 0 0 0 0 0
## 1888 0 0 0 0 0 1 0 0
## 1889 0 0 0 0 0 0 0 0
## 1890 0 0 0 0 0 0 0 0
## 1891 0 0 0 0 0 1 0 0
## 1892 0 0 0 0 0 0 0 1
## 1893 0 0 0 0 0 1 0 0
## 1894 0 0 0 0 0 0 0 0
## 1895 0 1 0 0 0 0 0 0
## 1896 0 1 0 0 0 0 0 0
## 1897 0 0 0 0 0 0 1 0
## 1898 0 1 0 0 0 0 0 0
## 1899 0 0 0 0 0 0 1 0
## 1900 0 0 1 0 0 0 0 0
## 1901 0 0 0 0 0 0 1 0
## 1902 0 0 0 0 0 0 0 0
## 1903 0 1 0 0 0 0 1 0
## 1904 0 0 0 0 0 0 1 0
## 1905 0 0 0 0 0 1 0 0
## 1906 0 1 0 0 0 0 0 0
## 1907 0 0 0 0 0 0 0 0
## 1908 0 0 0 0 0 1 0 0
## 1909 0 0 0 0 0 1 0 0
## 1910 0 1 0 0 0 0 0 0
## 1911 0 0 0 0 0 0 0 0
## 1912 0 0 0 0 0 1 0 0
## 1913 0 0 0 0 0 0 1 0
## 1914 0 0 0 0 0 1 0 0
## 1915 0 1 0 0 0 0 0 0
## 1916 0 1 0 0 0 0 0 0
## 1917 0 0 0 0 0 0 0 0
## 1918 0 1 0 0 0 0 0 0
## 1919 0 0 0 0 0 1 0 0
## 1920 0 0 1 0 0 0 0 0
## 1921 0 0 0 0 0 0 0 0
## 1922 0 1 1 0 0 0 0 0
## 1923 0 0 0 0 0 0 0 1
## 1924 0 1 0 0 0 1 0 0
## 1925 0 1 0 0 0 0 0 0
## 1926 0 0 0 0 0 1 0 0
## 1927 0 0 0 0 0 0 0 0
## 1928 0 0 0 0 0 0 0 0
## 1929 0 0 0 0 1 1 0 0
## 1930 0 0 0 0 0 0 0 0
## 1931 0 0 0 0 0 1 0 0
## 1932 0 0 0 0 0 1 0 0
## 1933 0 1 1 0 0 1 0 0
## 1934 0 0 0 0 0 0 0 0
## 1935 0 1 0 0 0 1 0 0
## 1936 0 0 0 0 0 1 0 0
## 1937 0 0 0 0 0 1 0 0
## 1938 0 0 0 0 0 1 1 0
## 1939 0 1 1 0 1 0 0 0
## 1940 0 0 0 0 1 1 0 0
## 1941 0 0 0 0 0 1 0 0
## 1942 0 0 0 0 0 1 0 0
## 1943 0 1 1 0 0 0 1 0
## 1944 0 0 0 1 1 0 0 0
## 1945 0 1 1 0 0 0 0 0
## 1946 0 0 0 0 0 0 0 0
## 1947 0 0 0 0 0 1 0 0
## 1948 0 0 0 0 0 1 0 0
## 1949 0 0 0 0 0 1 0 0
## 1950 0 0 0 0 0 0 0 0
## 1951 0 0 0 0 0 1 0 0
## 1952 0 0 0 0 1 0 0 0
## 1953 0 0 0 0 1 0 0 0
## 1954 0 0 0 1 1 0 0 0
## 1955 0 0 0 0 1 1 0 0
## 1956 0 0 0 1 1 0 0 0
## 1957 0 0 0 0 0 0 0 0
## 1958 0 0 0 0 1 0 0 0
## 1959 0 0 0 0 0 0 0 0
## 1960 0 0 0 0 0 0 0 0
## 1961 0 0 0 0 0 1 0 0
## 1962 0 0 0 0 0 0 0 0
## 1963 0 0 0 0 0 1 0 0
## 1964 0 1 1 0 0 0 0 0
## 1965 0 0 0 1 1 0 0 0
## 1966 0 0 0 0 0 1 0 0
## 1967 0 1 0 0 0 1 0 0
## 1968 0 0 0 0 0 0 0 0
## 1969 0 0 0 0 0 0 0 0
## 1970 0 0 0 0 0 0 0 0
## 1971 0 0 0 0 0 0 0 0
## 1972 0 0 0 0 0 0 0 0
## 1973 0 0 0 0 0 0 0 0
## 1974 0 0 0 0 0 0 0 0
## 1975 0 0 0 0 0 0 0 0
## 1976 0 0 0 0 0 0 0 0
## 1977 0 0 0 0 0 0 0 0
## 1978 0 0 0 0 0 0 0 0
## 1979 0 0 0 0 0 0 0 0
## 1980 0 0 0 0 0 0 0 0
## 1981 0 1 1 0 0 0 0 0
## 1982 0 1 1 0 0 0 0 0
## 1983 0 0 0 0 0 1 0 0
## 1984 0 1 0 0 0 0 0 0
## 1985 0 1 0 0 0 0 0 0
## 1986 0 1 0 0 0 0 0 0
## 1987 0 0 1 0 1 0 0 0
## 1988 0 0 0 0 0 0 0 0
## 1989 0 0 1 0 0 0 0 0
## 1990 0 0 0 0 0 0 0 0
## 1991 0 0 0 0 0 0 0 0
## 1992 0 1 1 0 0 0 0 0
## 1993 0 0 0 1 1 0 0 0
## 1994 0 0 0 0 0 0 0 0
## 1995 0 0 0 0 0 0 0 0
## 1996 0 0 0 0 0 1 0 0
## 1997 0 0 0 0 1 1 0 0
## 1998 0 0 0 0 0 1 0 0
## 1999 0 0 0 0 0 1 0 0
## 2000 0 0 0 0 0 1 0 0
## 2001 0 0 0 0 0 1 1 0
## 2002 0 0 0 0 0 0 0 0
## 2003 0 0 0 0 0 0 0 0
## 2004 0 0 0 0 0 0 0 0
## 2005 0 0 0 0 0 0 0 0
## 2006 0 1 1 0 0 0 0 0
## 2007 0 0 0 0 0 0 0 0
## 2008 0 0 0 0 0 0 0 0
## 2009 0 0 0 0 0 1 0 0
## 2010 0 0 0 0 0 1 0 0
## 2011 0 1 1 0 0 0 0 0
## 2012 0 0 0 1 1 0 0 0
## 2013 0 0 0 0 0 1 0 0
## 2014 0 0 0 0 0 0 1 0
## 2015 0 0 0 0 0 0 0 0
## 2016 0 0 0 0 0 0 0 0
## 2017 0 0 0 0 0 0 0 0
## 2018 0 0 0 0 0 0 0 0
## 2019 0 0 0 0 0 0 0 0
## 2020 0 1 0 0 0 0 0 0
## 2021 0 0 1 0 0 0 0 0
## 2022 0 0 0 0 0 1 0 0
## 2023 0 1 0 0 0 0 0 0
## 2024 0 0 0 0 0 1 0 0
## 2025 0 0 0 0 0 1 0 0
## 2026 0 0 0 0 0 0 0 0
## 2027 0 0 1 0 0 0 0 0
## 2028 0 0 1 0 0 0 0 0
## 2029 0 0 0 0 0 1 0 0
## 2030 0 0 0 0 0 1 0 0
## 2031 0 0 0 0 0 1 0 0
## 2032 0 0 0 0 0 0 0 0
## 2033 0 1 1 0 0 0 0 0
## 2034 0 0 0 0 0 0 0 0
## 2035 0 0 0 0 0 0 0 0
## 2036 0 0 1 0 0 0 0 0
## 2037 0 0 0 0 0 0 0 0
## 2038 0 0 0 1 1 0 0 0
## 2039 0 0 0 0 1 1 0 0
## 2040 0 1 0 0 0 0 0 0
## 2041 0 1 1 0 0 0 0 0
## 2042 0 1 0 0 0 0 0 0
## 2043 0 0 0 0 0 0 1 0
## 2044 0 0 0 0 1 0 0 0
## 2045 0 0 0 0 0 0 0 0
## 2046 0 1 0 0 0 0 0 0
## 2047 0 0 0 0 0 0 0 0
## 2048 0 0 0 0 0 0 0 0
## 2049 0 1 1 0 0 0 0 0
## 2050 0 0 0 0 0 0 0 0
## 2051 0 0 0 0 0 0 0 0
## 2052 0 0 0 0 0 0 0 0
## 2053 0 0 0 0 0 0 0 0
## 2054 0 0 0 0 0 1 0 0
## 2055 0 0 0 0 0 0 0 0
## 2056 0 1 1 0 0 0 0 0
## 2057 0 0 0 0 0 0 0 0
## 2058 0 1 0 0 0 0 0 0
## 2059 0 0 0 0 0 0 0 0
## 2060 0 0 0 0 0 0 0 0
## 2061 0 1 0 0 0 0 0 0
## 2062 0 0 0 0 0 0 0 0
## 2063 0 1 1 0 0 0 1 0
## 2064 0 1 0 0 0 0 0 0
## 2065 0 0 0 0 0 1 0 0
## 2066 0 1 0 0 0 0 0 0
## 2067 0 0 0 1 1 0 0 0
## 2068 0 0 0 0 0 0 0 0
## 2069 0 1 0 0 0 0 0 0
## 2070 0 0 0 1 1 0 0 0
## 2071 0 1 0 0 0 0 0 0
## 2072 0 0 1 0 0 0 0 0
## 2073 0 0 0 0 0 0 0 0
## 2074 0 0 0 0 0 0 0 0
## 2075 0 0 0 0 0 1 0 0
## 2076 0 0 0 0 0 0 0 0
## 2077 0 0 0 0 0 0 0 0
## 2078 0 0 0 0 0 0 0 0
## 2079 0 0 0 0 0 1 0 0
## 2080 0 0 0 0 0 0 0 0
## 2081 0 0 0 0 0 0 0 0
## 2082 0 0 0 0 0 0 0 0
## 2083 0 0 0 0 0 0 0 0
## 2084 0 0 0 0 0 0 0 0
## 2085 0 0 0 1 1 0 0 0
## 2086 0 0 0 1 1 0 0 0
## 2087 0 0 0 0 0 1 0 0
## 2088 0 0 0 0 0 1 0 0
## 2089 0 1 0 0 0 0 0 0
## 2090 0 0 0 0 0 0 0 0
## 2091 0 0 0 0 0 0 0 0
## 2092 0 1 1 0 0 0 0 0
## 2093 0 0 0 0 0 1 0 0
## 2094 0 0 0 0 0 0 0 0
## 2095 0 0 0 0 0 0 0 0
## 2096 0 0 0 0 0 0 0 0
## 2097 0 0 0 0 0 0 0 0
## 2098 0 0 0 0 0 0 0 0
## 2099 0 1 0 0 0 0 0 0
## 2100 0 0 0 0 0 1 0 0
## 2101 0 0 0 0 0 0 0 0
## 2102 0 0 1 0 0 1 0 0
## 2103 0 0 0 0 0 0 1 0
## 2104 0 0 0 0 0 0 0 0
## 2105 0 0 0 0 0 1 0 0
## 2106 0 0 0 0 0 0 0 0
## 2107 0 0 0 0 0 0 0 0
## 2108 0 0 0 0 0 1 0 0
## 2109 0 1 0 0 0 0 0 0
## 2110 0 0 0 0 0 0 0 0
## 2111 0 1 0 0 0 0 0 0
## 2112 0 0 0 0 0 0 0 0
## 2113 0 0 0 0 0 0 0 0
## 2114 0 0 0 0 0 0 0 0
## 2115 0 0 0 0 0 0 0 0
## 2116 0 0 0 0 0 0 0 0
## 2117 0 0 0 0 0 0 0 0
## 2118 0 0 0 0 0 0 0 0
## 2119 0 1 1 0 0 0 0 0
## 2120 0 0 0 0 0 0 0 0
## 2121 0 0 0 0 0 1 0 0
## 2122 0 1 0 0 0 0 0 0
## 2123 0 1 0 0 0 0 0 0
## 2124 0 1 0 0 0 0 0 0
## 2125 0 0 0 0 0 1 0 0
## 2126 0 0 0 0 0 1 0 0
## 2127 0 1 0 0 0 0 0 0
## 2128 0 0 0 0 0 0 0 0
## 2129 0 0 0 0 0 0 0 0
## 2130 0 0 0 0 0 1 0 0
## 2131 0 0 0 0 0 0 0 0
## 2132 0 0 0 0 0 0 0 0
## 2133 0 0 0 0 0 0 0 0
## 2134 0 0 0 0 0 1 0 0
## 2135 0 0 0 0 0 1 0 0
## 2136 0 0 0 0 0 0 0 0
## 2137 0 1 1 0 0 0 0 0
## 2138 0 0 0 0 0 1 0 0
## 2139 0 0 0 0 0 1 0 0
## 2140 0 0 0 0 0 0 0 0
## 2141 0 0 0 0 0 0 0 0
## 2142 0 0 0 0 0 0 0 0
## 2143 0 0 0 0 0 1 0 0
## 2144 0 0 0 0 0 1 0 0
## 2145 0 0 0 0 0 0 0 0
## 2146 0 0 0 0 0 1 0 0
## 2147 0 0 0 0 0 1 0 0
## 2148 0 1 0 0 0 0 0 0
## 2149 0 0 0 0 0 1 0 0
## 2150 0 0 0 0 0 0 0 0
## 2151 0 1 0 0 0 0 0 0
## 2152 0 1 0 0 0 0 0 0
## 2153 0 0 0 0 0 0 1 0
## 2154 0 1 1 0 1 0 0 0
## 2155 0 0 0 0 0 1 0 0
## 2156 0 0 0 0 0 0 0 1
## 2157 0 0 0 0 0 0 0 0
## 2158 0 1 0 0 0 0 0 0
## 2159 0 0 0 0 0 0 0 0
## 2160 0 1 0 0 0 0 0 0
## 2161 0 0 0 0 0 0 0 0
## 2162 0 0 0 0 0 1 0 0
## 2163 0 0 0 0 0 1 0 0
## 2164 0 0 0 0 0 1 0 0
## 2165 0 0 0 0 0 0 0 1
## 2166 0 0 0 0 0 0 0 0
## 2167 0 0 1 0 1 0 0 0
## 2168 0 1 1 0 0 0 0 0
## 2169 0 0 0 0 0 0 1 0
## 2170 0 1 0 0 0 0 0 0
## 2171 0 0 0 0 0 0 0 0
## 2172 0 0 0 0 0 0 0 0
## 2173 0 0 0 0 0 0 0 0
## 2174 0 0 0 0 0 1 0 0
## 2175 0 0 0 0 0 0 0 0
## 2176 0 0 0 0 0 0 0 0
## 2177 0 0 0 0 0 1 0 0
## 2178 0 1 0 0 0 0 0 0
## 2179 0 0 0 0 0 1 0 0
## 2180 0 0 0 0 0 1 0 0
## 2181 0 0 0 0 0 0 0 0
## 2182 0 0 0 0 0 1 0 0
## 2183 0 0 0 0 0 0 0 0
## 2184 0 0 0 0 0 1 0 0
## 2185 0 0 0 0 0 1 0 0
## 2186 0 0 0 0 0 1 0 0
## 2187 0 0 0 0 0 0 0 0
## 2188 0 0 0 0 0 1 0 0
## 2189 0 0 0 0 0 1 0 0
## 2190 0 0 0 0 1 0 0 0
## 2191 0 0 0 0 0 1 0 0
## 2192 0 0 0 0 0 1 0 0
## 2193 0 0 0 0 0 0 0 0
## 2194 0 0 0 0 1 1 0 0
## 2195 0 0 0 0 0 1 0 0
## 2196 0 1 0 0 0 0 0 0
## 2197 0 1 0 0 0 0 0 0
## 2198 0 0 0 0 0 0 0 0
## 2199 0 0 0 0 0 0 0 0
## 2200 0 0 0 0 0 1 0 0
## 2201 0 1 1 0 0 0 1 0
## 2202 0 1 0 0 0 0 0 0
## 2203 0 0 0 0 0 1 0 0
## 2204 0 0 0 0 0 1 0 0
## 2205 0 1 0 0 0 0 1 0
## 2206 0 0 0 0 0 0 0 0
## 2207 0 1 0 0 0 0 0 0
## 2208 0 1 0 0 0 0 0 0
## 2209 0 1 0 0 0 0 0 0
## 2210 0 0 0 0 0 0 0 1
## 2211 0 0 1 0 1 0 0 0
## 2212 0 0 0 0 0 0 0 1
## 2213 0 0 0 0 0 0 0 1
## 2214 0 0 0 0 0 0 0 0
## 2215 0 0 0 0 0 0 0 0
## 2216 0 0 0 0 0 0 0 0
## 2217 0 0 0 0 0 1 0 0
## 2218 0 0 0 0 0 1 0 0
## 2219 0 0 1 1 1 1 0 0
## 2220 0 0 0 0 0 1 0 0
## 2221 0 0 0 0 0 0 0 0
## 2222 0 0 0 0 0 0 1 0
## 2223 0 0 0 0 0 1 0 0
## 2224 0 1 0 0 0 0 0 0
## 2225 0 0 1 0 0 0 0 0
## 2226 0 1 1 0 0 0 0 0
## 2227 0 0 1 0 1 0 0 0
## 2228 0 1 1 0 0 0 0 0
## 2229 0 1 0 0 0 0 0 0
## 2230 0 1 1 0 0 0 0 0
## 2231 0 0 0 0 1 0 0 0
## 2232 0 1 0 0 0 0 0 0
## 2233 0 0 0 0 0 0 0 0
## 2234 0 0 0 0 0 1 0 0
## 2235 0 0 0 0 0 1 0 0
## 2236 0 0 0 0 0 0 0 0
## 2237 0 1 0 0 0 0 0 0
## 2238 0 0 0 0 0 0 0 0
## 2239 0 1 0 0 0 0 0 0
## 2240 0 1 0 0 0 0 0 0
## 2241 0 0 0 0 1 1 0 0
## 2242 0 0 0 0 1 1 0 0
## 2243 0 0 0 0 0 0 1 0
## 2244 0 0 0 0 0 1 0 0
## 2245 0 0 0 0 0 0 0 0
## 2246 0 0 0 0 0 0 0 1
## 2247 0 0 0 0 0 0 0 0
## 2248 0 1 0 0 0 0 0 0
## 2249 0 0 0 0 0 0 0 1
## 2250 0 0 0 0 0 0 0 0
## 2251 0 0 0 0 0 0 0 0
## 2252 0 0 0 0 0 1 0 0
## 2253 0 0 0 0 0 1 0 0
## 2254 0 1 0 0 0 0 0 0
## 2255 0 0 0 0 0 1 0 0
## 2256 0 0 0 0 0 0 0 1
## 2257 0 0 0 0 0 0 0 0
## 2258 0 0 0 0 0 1 0 0
## 2259 0 0 0 0 0 0 0 0
## 2260 0 0 0 0 0 0 0 0
## 2261 0 0 1 0 1 1 0 0
## 2262 0 0 0 0 0 0 0 0
## 2263 0 0 0 0 0 1 0 0
## 2264 0 0 0 0 0 1 0 0
## 2265 0 0 0 0 0 0 0 0
## 2266 0 0 0 0 0 0 0 0
## 2267 0 0 0 0 0 1 0 0
## 2268 0 0 0 0 0 0 0 0
## 2269 0 0 0 0 0 1 0 0
## 2270 0 0 0 0 0 0 0 0
## 2271 0 0 0 0 0 1 0 0
## 2272 0 0 0 0 0 0 0 0
## 2273 0 0 0 0 0 0 0 0
## 2274 0 1 0 0 0 1 0 0
## 2275 0 0 1 0 0 0 0 0
## 2276 0 0 0 0 1 1 0 0
## 2277 0 1 0 0 0 0 0 0
## 2278 0 0 0 0 0 0 0 0
## 2279 0 0 0 0 0 0 0 0
## 2280 0 0 0 0 0 0 0 0
## 2281 0 0 0 0 0 0 0 1
## 2282 0 0 0 0 0 0 0 0
## 2283 0 0 0 0 0 0 0 0
## 2284 0 0 0 0 0 0 0 0
## 2285 0 0 0 0 0 0 0 0
## 2286 0 0 0 0 0 0 0 0
## 2287 0 1 1 0 0 0 0 0
## 2288 0 0 0 0 0 0 0 0
## 2289 0 0 0 0 1 1 0 0
## 2290 0 0 0 0 0 1 0 0
## 2291 0 0 0 0 1 1 0 0
## 2292 0 0 0 0 0 0 0 0
## 2293 0 0 0 0 0 0 0 0
## 2294 0 1 1 0 0 0 0 0
## 2295 0 0 0 0 0 0 0 0
## 2296 0 0 0 0 0 0 0 0
## 2297 0 0 0 0 0 0 0 0
## 2298 0 0 0 0 0 1 0 0
## 2299 0 0 0 0 0 1 1 0
## 2300 0 0 0 0 0 0 0 0
## 2301 0 0 0 0 0 1 0 0
## 2302 0 0 0 0 0 0 0 0
## 2303 0 0 0 0 0 0 0 0
## 2304 0 0 0 0 0 1 0 0
## 2305 0 0 0 0 0 1 0 0
## 2306 0 0 0 0 0 0 0 0
## 2307 0 0 0 0 0 0 0 0
## 2308 0 0 0 0 0 0 1 0
## 2309 0 1 0 0 0 0 0 0
## 2310 0 0 0 0 0 1 0 0
## 2311 0 0 0 0 0 0 1 0
## 2312 0 0 0 0 0 0 0 0
## 2313 0 1 0 0 0 0 0 0
## 2314 0 1 0 0 0 0 0 0
## 2315 0 0 0 0 0 0 0 0
## 2316 0 0 0 0 0 0 0 0
## 2317 0 0 0 0 0 0 0 0
## 2318 0 0 0 0 0 0 1 0
## 2319 0 0 0 0 0 1 0 0
## 2320 0 0 0 0 0 0 0 0
## 2321 0 0 0 0 0 0 0 0
## 2322 0 0 0 0 0 0 0 0
## 2323 0 0 0 0 0 0 0 0
## 2324 0 1 0 0 0 0 0 0
## 2325 0 0 0 0 0 0 0 0
## 2326 0 0 0 0 0 1 0 0
## 2327 0 0 0 0 0 0 0 1
## 2328 0 0 0 0 0 1 0 0
## 2329 0 1 1 0 0 0 0 0
## 2330 0 0 0 0 0 0 1 0
## 2331 0 0 0 0 0 1 0 0
## 2332 0 0 0 0 0 1 0 0
## 2333 0 0 0 0 0 1 0 0
## 2334 0 1 0 0 0 0 0 0
## 2335 0 0 0 0 0 0 0 0
## 2336 0 0 0 0 0 0 1 0
## 2337 0 0 0 0 0 1 0 0
## 2338 0 0 0 0 0 1 0 0
## 2339 0 1 0 0 0 0 0 0
## 2340 0 0 0 0 0 0 0 0
## 2341 0 1 0 0 0 0 1 0
## 2342 0 0 1 0 1 1 0 0
## 2343 0 0 0 0 0 1 0 0
## 2344 0 1 1 0 0 0 0 0
## 2345 0 1 1 0 0 1 0 0
## 2346 0 1 1 0 0 0 0 0
## 2347 0 0 0 0 0 0 0 0
## 2348 0 1 0 0 0 0 0 0
## 2349 0 1 1 0 0 0 0 0
## 2350 0 1 0 0 0 1 0 0
## 2351 0 0 0 0 0 0 0 0
## 2352 0 1 0 0 0 0 0 0
## 2353 0 0 0 0 0 1 0 0
## 2354 0 0 0 0 0 1 0 0
## 2355 0 1 1 0 0 0 0 0
## 2356 0 0 0 0 0 1 0 0
## 2357 0 0 0 0 0 0 0 0
## 2358 0 1 1 0 0 0 0 0
## 2359 0 0 0 0 0 1 0 0
## 2360 0 0 0 1 0 1 0 0
## 2361 0 0 0 0 0 1 0 0
## 2362 0 1 0 0 0 0 0 0
## 2363 0 0 0 0 0 1 0 0
## 2364 0 0 0 0 0 0 0 0
## 2365 0 0 0 0 0 0 0 0
## 2366 0 0 0 0 0 0 0 0
## 2367 0 0 0 0 0 0 0 0
## 2368 0 0 0 0 0 0 0 0
## 2369 0 0 0 0 0 0 1 0
## 2370 0 1 0 0 0 0 0 0
## 2371 0 0 0 0 0 1 0 0
## 2372 0 0 0 0 0 0 0 0
## 2373 0 0 0 0 0 1 0 0
## 2374 0 0 0 1 0 1 0 0
## 2375 0 0 0 0 0 0 0 0
## 2376 0 0 0 0 0 1 0 0
## 2377 0 0 0 0 0 1 0 0
## 2378 0 1 0 0 0 0 0 0
## 2379 0 0 0 1 1 0 0 0
## 2380 0 0 0 0 0 0 0 0
## 2381 0 0 0 0 0 0 0 0
## 2382 0 0 0 0 1 1 0 0
## 2383 0 0 0 0 0 0 0 0
## 2384 0 1 1 0 0 0 0 0
## 2385 0 0 0 0 0 0 0 0
## 2386 0 0 0 0 0 0 0 0
## 2387 0 0 0 0 0 1 0 0
## 2388 0 0 0 0 0 1 0 0
## 2389 0 0 1 0 0 0 0 0
## 2390 0 0 0 0 0 1 0 0
## 2391 0 0 0 0 0 1 0 0
## 2392 0 0 0 0 0 0 0 0
## 2393 0 0 1 0 0 0 0 0
## 2394 0 0 0 1 1 0 0 0
## 2395 0 0 0 1 1 0 0 0
## 2396 0 0 0 0 0 0 0 0
## 2397 0 0 0 0 0 0 1 0
## 2398 0 0 0 0 0 0 0 0
## 2399 0 0 1 0 0 1 0 0
## 2400 0 0 0 0 0 1 0 0
## 2401 0 0 0 0 0 1 0 0
## 2402 0 0 0 0 0 0 0 0
## 2403 0 0 0 0 0 0 0 0
## 2404 0 0 0 0 0 0 0 0
## 2405 0 0 0 0 0 1 0 0
## 2406 0 0 0 0 0 0 0 1
## 2407 0 0 1 1 1 1 0 0
## 2408 0 0 0 0 0 1 0 0
## 2409 0 0 1 0 0 0 0 0
## 2410 0 0 0 0 0 0 0 0
## 2411 0 0 0 0 0 0 0 0
## 2412 0 0 0 0 0 0 0 0
## 2413 0 0 0 0 0 0 0 0
## 2414 0 0 0 1 1 1 0 0
## 2415 0 0 0 0 0 0 0 0
## 2416 0 0 0 0 0 0 0 0
## 2417 0 0 0 0 0 1 0 0
## 2418 0 0 0 0 0 0 0 0
## 2419 0 0 0 0 0 0 0 0
## 2420 0 0 0 0 0 0 0 0
## 2421 0 0 0 0 0 0 0 0
## 2422 0 0 0 0 0 1 0 0
## 2423 0 1 1 0 0 0 0 0
## 2424 0 0 0 0 0 1 0 0
## 2425 0 1 1 0 0 0 0 0
## 2426 0 1 0 0 0 0 0 0
## 2427 0 0 0 0 0 0 0 0
## 2428 0 1 0 0 0 0 1 0
## 2429 0 0 0 0 0 0 0 0
## 2430 0 1 1 0 0 0 0 0
## 2431 0 1 1 0 0 0 0 0
## 2432 0 0 0 0 0 1 0 0
## 2433 0 1 1 0 0 0 0 0
## 2434 0 0 0 0 1 1 0 0
## 2435 0 1 0 0 0 1 0 0
## 2436 0 0 0 0 0 0 0 0
## 2437 0 0 0 0 1 1 0 0
## 2438 0 1 0 0 0 0 0 0
## 2439 0 0 0 0 0 1 1 0
## 2440 0 0 0 0 0 1 0 0
## 2441 0 0 0 0 0 1 0 0
## 2442 0 1 1 0 0 0 0 0
## 2443 0 0 0 0 0 1 0 0
## 2444 0 1 1 0 0 1 0 0
## 2445 0 0 0 0 0 0 0 0
## 2446 0 0 0 0 0 1 0 0
## 2447 0 0 0 0 0 1 0 0
## 2448 0 0 0 0 0 0 0 0
## 2449 0 0 0 0 0 0 0 0
## 2450 0 0 0 0 0 0 0 0
## 2451 0 0 0 0 0 0 0 0
## 2452 0 0 0 0 0 0 0 0
## 2453 0 0 0 0 0 0 0 0
## 2454 0 0 0 0 0 0 0 0
## 2455 0 0 0 0 0 0 0 0
## 2456 0 0 0 0 0 0 0 0
## 2457 0 0 0 0 0 0 0 0
## 2458 0 0 0 0 0 0 0 0
## 2459 0 1 0 0 0 0 0 0
## 2460 0 0 0 0 0 1 0 0
## 2461 0 0 0 0 0 0 1 0
## 2462 0 0 0 0 0 0 0 0
## 2463 0 0 0 0 0 0 1 0
## 2464 0 0 0 0 1 0 0 0
## 2465 0 0 0 0 0 0 0 0
## 2466 0 0 0 0 0 0 0 0
## 2467 0 1 0 0 0 0 0 0
## 2468 0 1 0 0 0 0 0 0
## 2469 0 0 1 0 0 0 0 0
## 2470 0 0 0 0 0 0 0 0
## 2471 0 1 1 0 0 0 0 0
## 2472 0 0 0 0 0 1 0 0
## 2473 0 0 0 0 0 1 0 0
## 2474 0 1 0 0 0 0 0 0
## 2475 0 0 0 0 0 0 0 0
## 2476 0 0 0 0 0 0 0 0
## 2477 0 0 0 0 0 0 0 0
## 2478 0 1 1 0 0 0 0 0
## 2479 0 0 0 1 1 0 0 0
## 2480 0 0 0 0 0 1 0 0
## 2481 0 0 0 0 0 0 0 0
## 2482 0 1 0 0 0 0 0 0
## 2483 0 0 0 0 0 0 0 0
## 2484 0 0 0 0 0 0 0 0
## 2485 0 0 0 0 0 0 0 0
## 2486 0 0 0 0 0 0 0 0
## 2487 0 1 0 0 0 0 0 0
## 2488 0 0 0 0 0 0 0 0
## 2489 0 0 0 0 0 0 0 0
## 2490 0 0 0 0 0 0 0 0
## 2491 0 0 0 0 0 0 0 0
## 2492 0 1 0 0 0 0 0 0
## 2493 0 0 0 0 0 1 0 0
## 2494 0 0 0 0 0 0 1 0
## 2495 0 0 0 0 0 0 0 0
## 2496 0 0 0 0 0 0 1 0
## 2497 0 0 0 0 0 1 0 0
## 2498 0 0 0 0 0 1 0 0
## 2499 0 0 0 0 0 1 0 0
## 2500 0 1 0 0 0 0 0 0
## 2501 0 0 0 0 0 0 0 0
## 2502 0 0 1 0 0 0 0 0
## 2503 0 0 0 0 0 0 0 0
## 2504 0 0 0 0 0 1 0 0
## 2505 0 0 0 0 0 0 0 0
## 2506 0 0 0 0 0 0 0 0
## 2507 0 0 0 0 1 1 0 0
## 2508 0 1 1 0 0 0 0 0
## 2509 0 0 0 0 0 0 0 0
## 2510 0 0 0 0 1 1 0 0
## 2511 0 0 0 0 0 0 0 0
## 2512 0 0 0 0 0 0 0 0
## 2513 0 0 0 0 0 0 0 0
## 2514 0 0 0 0 0 1 0 0
## 2515 0 0 0 0 0 0 0 0
## 2516 0 0 0 0 0 1 0 0
## 2517 0 0 0 1 1 1 0 0
## 2518 0 1 0 0 0 1 0 0
## 2519 0 0 0 0 0 0 0 0
## 2520 0 0 0 0 1 1 0 0
## 2521 0 0 0 0 0 0 0 0
## 2522 0 0 0 0 0 0 1 0
## 2523 0 0 0 0 0 0 1 0
## 2524 0 0 0 0 0 0 0 0
## 2525 0 1 0 0 0 0 0 0
## 2526 0 1 0 0 0 0 0 0
## 2527 0 1 0 0 0 0 0 0
## 2528 0 0 0 0 0 0 0 0
## 2529 0 1 0 0 0 0 0 0
## 2530 0 1 0 0 0 0 1 0
## 2531 0 0 0 0 0 0 0 0
## 2532 0 0 0 0 0 0 1 0
## 2533 0 0 0 0 0 0 1 0
## 2534 0 0 0 0 0 0 0 0
## 2535 0 0 0 0 0 0 0 0
## 2536 0 0 0 0 0 1 0 0
## 2537 0 0 0 0 0 1 0 0
## 2538 0 0 0 0 0 1 0 0
## 2539 0 0 0 1 1 0 0 0
## 2540 0 0 0 0 0 0 1 0
## 2541 0 1 0 0 0 0 0 0
## 2542 0 0 0 0 0 0 0 0
## 2543 0 0 0 0 0 0 0 0
## 2544 0 1 0 0 0 0 1 0
## 2545 0 0 0 1 1 1 0 0
## 2546 0 1 0 0 0 0 0 0
## 2547 0 0 0 0 0 0 0 0
## 2548 0 0 0 1 1 0 0 0
## 2549 0 0 0 0 0 0 1 0
## 2550 0 0 0 0 0 1 0 0
## 2551 0 0 0 0 0 0 0 0
## 2552 0 1 0 0 0 0 1 0
## 2553 0 0 0 0 0 0 0 0
## 2554 0 0 0 0 0 0 0 0
## 2555 0 0 0 0 0 0 0 0
## 2556 0 1 0 0 0 0 0 0
## 2557 0 0 1 0 1 1 0 0
## 2558 0 0 0 0 0 1 0 0
## 2559 0 0 0 0 0 0 0 0
## 2560 0 0 0 0 0 0 1 0
## 2561 0 0 0 0 0 1 0 0
## 2562 0 0 0 0 0 0 0 0
## 2563 0 1 0 0 0 0 0 0
## 2564 0 1 1 0 0 0 0 0
## 2565 0 0 0 0 0 1 0 0
## 2566 0 1 1 0 0 0 0 0
## 2567 0 1 1 0 0 0 0 0
## 2568 0 0 0 0 0 0 0 0
## 2569 0 0 0 0 0 0 0 0
## 2570 0 0 0 0 0 0 1 0
## 2571 0 1 0 0 0 0 0 0
## 2572 0 0 0 0 0 0 0 0
## 2573 0 0 0 0 0 1 1 0
## 2574 0 1 0 0 0 0 0 0
## 2575 0 0 0 0 0 0 0 0
## 2576 0 0 0 0 0 0 0 0
## 2577 0 0 0 0 0 0 0 0
## 2578 0 0 0 0 0 1 0 0
## 2579 0 0 0 0 0 1 0 0
## 2580 0 0 0 0 0 1 0 0
## 2581 0 0 0 0 0 1 0 0
## 2582 0 0 0 0 0 1 0 0
## 2583 0 1 1 0 0 0 0 0
## 2584 0 1 1 0 0 0 0 0
## 2585 0 1 1 0 0 0 0 0
## 2586 0 1 0 0 0 0 0 0
## 2587 0 1 0 0 0 0 0 0
## 2588 0 0 0 0 0 0 0 0
## 2589 0 0 0 1 0 1 0 0
## 2590 0 1 0 0 0 0 1 0
## 2591 0 0 0 0 0 0 0 0
## 2592 0 0 0 0 0 1 0 0
## 2593 0 0 0 0 0 0 0 0
## 2594 0 0 0 0 0 0 0 0
## 2595 0 0 0 0 0 1 0 0
## 2596 0 1 0 0 0 0 0 0
## 2597 0 0 0 0 0 0 1 0
## 2598 0 0 0 0 0 0 0 0
## 2599 0 0 0 0 0 1 0 0
## 2600 0 0 0 0 0 0 0 0
## 2601 0 0 0 0 0 1 0 0
## 2602 0 1 1 0 0 1 0 0
## 2603 0 0 0 1 1 0 0 0
## 2604 0 0 0 0 0 1 0 0
## 2605 0 0 0 1 1 0 0 0
## 2606 0 0 0 0 1 0 0 0
## 2607 0 0 0 0 0 0 0 0
## 2608 0 0 0 0 0 0 0 0
## 2609 0 0 0 0 0 0 0 0
## 2610 0 0 0 0 0 0 0 0
## 2611 0 0 0 0 0 0 0 0
## 2612 0 0 0 0 0 0 0 0
## 2613 0 0 0 0 0 0 0 0
## 2614 0 0 0 0 0 1 0 0
## 2615 0 0 0 0 0 0 0 0
## 2616 0 0 0 0 0 1 0 0
## 2617 0 0 0 0 0 1 1 0
## 2618 0 0 0 0 0 0 0 0
## 2619 0 1 1 0 0 0 0 0
## 2620 0 0 0 0 0 1 0 0
## 2621 0 0 0 0 0 0 1 0
## 2622 0 0 0 0 0 0 0 0
## 2623 0 1 0 0 0 0 0 0
## 2624 0 0 0 0 0 0 0 0
## 2625 0 1 0 0 0 0 0 0
## 2626 0 0 0 0 0 1 0 0
## 2627 0 0 0 0 0 0 1 0
## 2628 0 0 0 0 0 0 0 0
## 2629 0 0 0 0 0 0 0 0
## 2630 0 0 0 0 0 0 0 0
## 2631 0 0 0 0 0 0 0 0
## 2632 0 0 0 0 0 1 0 0
## 2633 0 0 0 0 0 0 1 0
## 2634 0 0 0 0 0 0 0 0
## 2635 0 0 1 0 0 1 0 0
## 2636 0 0 0 0 0 0 0 0
## 2637 0 0 0 0 0 0 0 0
## 2638 0 1 0 0 0 0 0 0
## 2639 0 0 0 0 0 1 0 0
## 2640 0 0 0 0 0 0 0 0
## 2641 0 0 0 0 0 0 0 0
## 2642 0 0 0 0 0 1 0 0
## 2643 0 0 0 0 0 0 0 0
## 2644 0 1 0 0 0 0 0 0
## 2645 0 0 0 0 0 0 1 0
## 2646 0 0 1 0 1 0 0 0
## 2647 0 0 0 0 0 0 0 0
## 2648 0 0 0 0 0 1 0 0
## 2649 0 0 0 0 0 1 0 0
## 2650 0 0 0 0 0 0 0 0
## 2651 0 0 0 0 0 0 0 0
## 2652 0 0 0 0 0 1 0 0
## 2653 0 0 0 0 0 1 0 0
## 2654 0 0 0 1 1 0 0 0
## 2655 0 0 1 0 0 0 0 0
## 2656 0 0 0 0 0 1 0 0
## 2657 0 0 0 1 1 1 0 0
## 2658 0 0 0 0 0 0 0 0
## 2659 0 0 0 0 0 0 0 0
## 2660 0 0 0 0 0 1 0 0
## 2661 0 0 0 0 0 0 1 0
## 2662 0 0 0 0 0 1 0 0
## 2663 0 1 1 0 0 0 0 0
## 2664 0 0 0 0 0 0 0 0
## 2665 0 0 0 0 0 0 0 0
## 2666 0 0 0 0 0 0 0 0
## 2667 0 0 0 0 0 1 0 0
## 2668 0 0 1 0 1 1 0 0
## 2669 0 0 0 0 0 0 0 0
## 2670 0 1 1 0 0 0 0 0
## 2671 0 0 0 0 0 0 0 0
## 2672 0 0 0 0 1 1 0 0
## 2673 0 1 0 0 0 0 0 0
## 2674 0 0 0 0 0 1 0 0
## 2675 0 0 0 0 0 0 0 0
## 2676 0 0 0 0 0 0 0 0
## 2677 0 0 0 0 0 1 0 0
## 2678 0 1 0 0 0 0 0 0
## 2679 0 0 0 0 0 0 0 0
## 2680 0 0 0 0 0 0 0 0
## 2681 0 0 0 0 0 0 0 0
## 2682 0 0 0 0 0 0 1 0
## 2683 0 0 0 0 0 0 0 0
## 2684 0 0 1 0 0 0 0 0
## 2685 0 0 0 1 1 1 0 0
## 2686 0 1 0 0 0 1 0 0
## 2687 0 0 0 0 0 0 0 0
## 2688 0 0 0 0 1 1 0 0
## 2689 0 0 0 0 0 0 0 0
## 2690 0 0 0 0 0 0 1 0
## 2691 0 0 0 0 0 1 0 0
## 2692 0 0 0 0 0 0 0 0
## 2693 0 0 0 0 0 0 0 0
## 2694 0 0 0 0 0 0 0 0
## 2695 0 1 0 0 0 0 0 0
## 2696 0 0 0 0 0 0 0 0
## 2697 0 0 0 0 0 1 0 0
## 2698 0 0 0 0 0 1 0 0
## 2699 0 1 0 0 0 0 0 0
## 2700 0 0 0 0 0 0 0 1
## 2701 0 0 0 0 0 1 0 0
## 2702 0 0 0 0 0 1 0 0
## 2703 0 0 0 0 0 1 0 0
## 2704 0 0 0 0 0 0 0 1
## 2705 0 1 1 0 0 0 0 0
## 2706 0 0 0 0 0 0 0 0
## 2707 0 0 0 0 0 0 1 0
## 2708 0 0 0 0 0 0 0 0
## 2709 0 0 0 0 0 0 0 0
## 2710 0 0 0 0 0 0 0 0
## 2711 0 0 0 0 0 0 0 0
## 2712 0 0 0 0 0 0 0 0
## 2713 0 0 0 0 0 0 0 0
## 2714 0 0 0 0 0 1 0 0
## 2715 0 0 0 0 0 1 0 0
## 2716 0 0 0 0 0 1 0 0
## 2717 0 0 0 0 0 1 0 0
## 2718 0 0 0 1 1 0 0 0
## 2719 0 0 0 0 0 1 1 0
## 2720 0 1 0 0 0 0 0 0
## 2721 0 0 0 0 0 1 0 0
## 2722 0 1 1 0 0 0 0 0
## 2723 0 0 0 0 0 1 0 0
## 2724 0 0 0 0 0 0 0 0
## 2725 0 0 0 0 0 1 0 0
## 2726 0 0 0 0 0 0 0 0
## 2727 0 0 0 0 1 1 0 0
## 2728 0 0 0 0 1 1 0 0
## 2729 0 0 0 1 1 1 0 0
## 2730 0 0 1 0 0 0 0 0
## 2731 0 0 0 0 0 0 0 0
## 2732 0 0 0 1 1 0 0 0
## 2733 0 0 0 0 0 0 1 0
## 2734 0 0 0 0 0 1 0 0
## 2735 0 0 0 0 0 0 0 0
## 2736 0 0 0 0 0 1 0 0
## 2737 0 0 0 0 0 0 0 0
## 2738 0 0 0 0 0 0 0 0
## 2739 0 1 0 0 0 0 1 0
## 2740 0 0 0 0 0 0 0 0
## 2741 0 0 1 0 1 0 0 0
## 2742 0 0 0 0 0 0 0 0
## 2743 0 0 0 0 0 0 0 0
## 2744 0 0 0 0 0 0 0 0
## 2745 0 0 0 0 0 0 0 0
## 2746 0 0 0 0 0 0 0 0
## 2747 0 0 1 0 1 0 0 0
## 2748 0 0 0 0 0 0 0 0
## 2749 0 0 1 0 1 1 0 0
## 2750 0 0 0 0 0 1 0 0
## 2751 0 0 0 0 0 1 0 0
## 2752 0 0 0 0 0 1 0 0
## 2753 0 0 0 0 0 0 0 0
## 2754 0 0 0 0 0 0 0 0
## 2755 0 0 0 0 0 0 0 0
## 2756 0 0 0 0 0 0 0 0
## 2757 0 0 0 0 0 1 0 0
## 2758 0 0 0 1 0 1 0 0
## 2759 0 0 0 0 0 1 0 0
## 2760 0 1 1 0 0 0 0 0
## 2761 0 1 1 0 0 0 0 0
## 2762 0 0 0 0 0 0 0 0
## 2763 0 1 0 0 0 0 0 0
## 2764 0 0 0 0 0 0 0 0
## 2765 0 0 0 0 0 0 0 0
## 2766 0 0 0 0 0 0 0 0
## 2767 0 1 1 0 0 0 0 0
## 2768 0 0 0 0 0 0 1 0
## 2769 0 0 0 0 0 0 0 0
## 2770 0 1 0 0 0 1 0 0
## 2771 0 1 0 0 0 0 1 0
## 2772 0 1 0 0 0 0 0 0
## 2773 0 0 0 1 0 1 0 0
## 2774 0 0 0 0 0 0 0 0
## 2775 0 0 0 0 0 0 0 0
## 2776 0 0 0 0 0 0 0 0
## 2777 0 0 0 0 0 1 1 0
## 2778 0 1 0 0 0 0 0 0
## 2779 0 0 0 0 0 0 0 0
## 2780 0 0 0 0 0 0 0 0
## 2781 0 0 0 0 0 0 0 0
## 2782 0 0 0 0 0 0 0 0
## 2783 0 0 0 0 0 0 0 0
## 2784 0 0 0 0 0 1 0 0
## 2785 0 0 0 0 0 1 0 0
## 2786 0 0 0 0 0 1 0 0
## 2787 0 0 0 0 0 1 0 0
## 2788 0 1 1 0 0 0 0 0
## 2789 0 0 0 0 0 1 0 0
## 2790 0 0 0 0 0 0 0 0
## 2791 0 0 0 0 0 0 0 0
## 2792 0 0 0 0 0 0 0 0
## 2793 0 0 0 0 0 0 0 0
## 2794 0 0 0 0 0 1 0 0
## 2795 0 0 0 0 0 0 0 0
## 2796 0 0 0 0 0 0 0 0
## 2797 0 0 0 0 0 0 0 0
## 2798 0 1 0 0 0 0 0 0
## 2799 0 0 0 0 0 1 0 0
## 2800 0 0 0 0 0 0 0 0
## 2801 0 0 0 0 0 1 0 0
## 2802 0 1 0 0 0 0 0 0
## 2803 0 0 0 0 0 1 0 0
## 2804 0 0 0 0 0 1 0 0
## 2805 0 0 0 0 0 0 0 0
## 2806 0 0 0 0 0 0 0 0
## 2807 0 0 0 0 0 0 0 0
## 2808 0 0 0 0 0 1 0 0
## 2809 0 0 0 0 0 0 0 0
## 2810 0 0 0 0 0 0 0 0
## 2811 0 0 0 0 0 0 0 0
## 2812 0 0 0 0 0 0 0 0
## 2813 0 0 0 0 0 0 0 0
## 2814 0 0 0 0 0 1 0 0
## 2815 0 0 0 0 0 0 0 0
## 2816 0 0 0 0 0 1 0 0
## 2817 0 0 0 0 0 0 0 0
## 2818 0 0 0 0 0 1 0 0
## 2819 0 0 0 0 0 1 0 0
## 2820 0 0 0 0 0 1 0 0
## 2821 0 0 0 0 0 0 0 0
## 2822 0 0 0 0 0 0 0 0
## 2823 0 0 0 0 0 1 0 0
## 2824 0 0 0 0 0 1 0 0
## 2825 0 1 1 0 0 0 1 0
## 2826 0 0 0 1 1 0 0 0
## 2827 0 0 0 1 0 1 0 0
## 2828 0 0 0 0 0 1 0 0
## 2829 0 0 0 0 0 1 0 0
## 2830 0 0 0 0 1 0 0 0
## 2831 0 0 0 1 1 0 0 0
## 2832 0 0 0 0 1 1 0 0
## 2833 0 0 0 0 1 0 0 0
## 2834 0 0 0 0 0 1 0 0
## 2835 0 0 0 0 0 0 0 0
## 2836 0 0 0 0 0 1 0 0
## 2837 0 0 0 0 0 1 0 0
## 2838 0 0 0 1 1 0 0 0
## 2839 0 0 0 0 0 0 0 0
## 2840 0 1 0 0 0 1 0 0
## 2841 0 0 0 0 0 0 0 0
## 2842 0 0 0 0 0 1 0 0
## 2843 0 0 0 0 0 0 0 0
## 2844 0 0 0 0 0 0 0 0
## 2845 0 0 1 0 0 0 0 0
## 2846 0 0 0 0 0 0 0 0
## 2847 0 0 0 0 0 1 0 0
## 2848 0 0 0 0 0 1 0 0
## 2849 0 0 0 0 0 0 0 0
## 2850 0 0 0 0 0 1 0 0
## 2851 0 0 0 0 0 1 1 0
## 2852 0 0 0 0 0 0 0 0
## 2853 0 0 0 0 0 0 0 0
## 2854 0 0 0 0 0 1 0 0
## 2855 0 0 0 0 0 1 0 0
## 2856 0 0 0 0 0 0 0 0
## 2857 0 0 0 0 0 0 0 0
## 2858 0 0 0 0 0 0 0 0
## 2859 0 0 0 0 0 0 0 0
## 2860 0 0 0 0 0 1 0 0
## 2861 0 0 0 0 0 0 0 0
## 2862 0 0 0 0 0 1 0 0
## 2863 0 1 1 0 0 0 0 0
## 2864 0 0 0 0 0 0 1 0
## 2865 0 0 0 0 0 0 0 0
## 2866 0 1 0 0 0 0 0 0
## 2867 0 0 0 0 0 1 0 0
## 2868 0 0 0 0 0 0 0 0
## 2869 0 0 0 0 0 1 0 0
## 2870 0 1 0 0 0 0 0 0
## 2871 0 0 0 0 0 1 0 0
## 2872 0 0 0 0 0 1 0 0
## 2873 0 0 1 0 0 0 0 0
## 2874 0 0 1 0 0 0 0 0
## 2875 0 0 0 0 0 1 0 0
## 2876 0 0 0 0 0 1 0 0
## 2877 0 1 1 0 0 0 0 0
## 2878 0 0 0 0 0 0 0 0
## 2879 0 0 0 0 0 0 0 0
## 2880 0 0 0 0 0 0 0 0
## 2881 0 0 1 0 0 0 0 0
## 2882 0 0 0 0 0 0 0 0
## 2883 0 0 0 0 0 0 0 0
## 2884 0 0 0 1 1 0 0 0
## 2885 0 0 0 0 0 0 0 0
## 2886 0 0 0 0 0 0 0 0
## 2887 0 0 0 0 0 1 0 0
## 2888 0 0 0 0 0 0 0 0
## 2889 0 0 0 0 0 1 0 0
## 2890 0 0 0 0 0 0 0 0
## 2891 0 0 0 0 0 0 0 0
## 2892 0 0 0 0 0 1 0 0
## 2893 0 0 0 0 0 0 0 0
## 2894 0 0 0 0 0 0 0 0
## 2895 0 0 0 0 0 1 0 0
## 2896 0 0 0 0 0 1 0 0
## 2897 0 1 0 0 0 0 0 0
## 2898 0 0 0 0 0 0 0 0
## 2899 0 0 0 0 0 0 0 0
## 2900 0 0 0 0 0 0 0 0
## 2901 0 0 0 0 0 0 1 0
## 2902 0 0 0 0 0 0 0 0
## 2903 0 0 0 0 0 1 0 0
## 2904 0 0 0 0 0 0 0 0
## 2905 0 0 0 0 0 1 0 0
## 2906 0 0 0 0 0 1 0 0
## 2907 0 0 0 0 0 0 0 0
## 2908 0 0 0 0 0 1 0 0
## 2909 0 0 0 0 0 0 0 0
## 2910 0 0 0 0 0 0 0 0
## 2911 0 0 0 0 0 0 0 0
## 2912 0 0 0 0 0 0 0 0
## 2913 0 0 0 0 0 1 0 0
## 2914 0 0 0 0 0 0 0 0
## 2915 0 0 0 0 0 0 0 0
## 2916 0 0 0 0 0 0 0 0
## 2917 0 0 0 0 0 0 0 0
## 2918 0 0 0 0 0 1 0 0
## 2919 0 0 0 0 0 0 0 0
## 2920 0 0 0 0 0 0 0 0
## 2921 0 0 0 0 0 1 0 0
## 2922 0 0 0 0 0 1 0 0
## 2923 0 0 0 0 0 1 0 0
## 2924 0 0 0 0 0 0 0 0
## 2925 0 0 0 0 0 0 0 0
## 2926 0 0 0 0 0 1 0 0
## 2927 0 0 0 0 0 1 0 0
## 2928 0 0 0 0 0 1 0 0
## 2929 0 0 0 0 0 1 0 0
## 2930 0 0 0 0 0 0 0 0
## 2931 0 0 0 0 0 1 0 0
## 2932 0 0 0 0 0 1 0 0
## 2933 0 0 0 0 0 1 0 0
## 2934 0 0 0 0 0 0 0 0
## 2935 0 0 0 0 0 0 0 0
## 2936 0 0 0 0 0 0 0 0
## 2937 0 0 0 0 0 0 0 0
## 2938 0 0 0 0 0 0 0 0
## 2939 0 0 1 0 1 0 0 0
## 2940 0 0 0 0 0 1 0 0
## 2941 0 0 0 0 0 1 0 0
## 2942 0 0 0 0 0 0 0 1
## 2943 0 0 0 0 0 0 0 0
## 2944 0 0 0 0 0 0 0 0
## 2945 0 0 0 0 0 1 0 0
## 2946 0 0 0 0 0 0 0 0
## 2947 0 0 0 0 0 1 0 0
## 2948 0 0 0 0 0 0 0 0
## 2949 0 0 0 0 0 0 0 0
## 2950 0 0 0 0 0 0 0 0
## 2951 0 0 0 0 0 0 0 0
## 2952 0 0 0 0 0 1 0 0
## 2953 0 0 0 0 0 1 0 0
## 2954 0 0 0 0 0 0 0 0
## 2955 0 0 0 0 0 0 0 0
## 2956 0 0 0 0 0 0 0 0
## 2957 0 0 0 1 1 0 0 0
## 2958 0 0 0 0 0 1 0 0
## 2959 0 0 0 0 0 1 0 0
## 2960 0 0 0 0 0 0 0 0
## 2961 0 0 0 0 0 0 0 1
## 2962 0 1 0 0 0 1 0 0
## 2963 0 0 0 0 1 1 0 0
## 2964 0 0 0 0 0 1 0 0
## 2965 0 1 1 0 0 1 0 0
## 2966 0 0 0 0 0 1 0 0
## 2967 0 1 1 0 0 0 0 0
## 2968 0 0 0 0 0 1 0 0
## 2969 0 0 0 0 0 0 0 0
## 2970 0 0 0 0 0 0 0 0
## 2971 0 0 0 0 0 1 0 0
## 2972 0 0 0 0 0 0 0 0
## 2973 0 1 0 0 0 0 0 0
## 2974 0 0 0 0 0 1 0 0
## 2975 0 0 0 0 0 0 0 0
## 2976 0 0 0 0 0 1 0 0
## 2977 0 1 0 0 0 1 0 0
## 2978 0 0 1 0 0 1 0 0
## 2979 0 0 0 0 0 1 0 0
## 2980 0 0 0 0 0 0 0 0
## 2981 0 0 0 1 1 1 0 0
## 2982 0 0 0 0 0 0 1 0
## 2983 0 0 0 0 0 0 0 0
## 2984 0 1 0 0 0 0 0 0
## 2985 0 1 1 0 0 0 0 0
## 2986 0 0 0 0 0 1 0 0
## 2987 0 1 1 0 0 0 0 0
## 2988 0 0 0 0 0 0 0 0
## 2989 0 0 0 0 1 1 0 0
## 2990 0 0 0 1 1 1 0 0
## 2991 0 0 0 0 0 0 0 0
## 2992 0 1 1 0 0 0 0 0
## 2993 0 1 0 0 0 0 0 0
## 2994 0 0 0 0 0 0 0 0
## 2995 0 1 0 0 0 0 0 0
## 2996 0 1 1 0 0 0 0 0
## 2997 0 0 1 0 1 1 0 0
## 2998 0 1 1 0 0 0 0 0
## 2999 0 1 1 0 0 0 0 0
## 3000 0 1 0 0 0 0 0 0
## 3001 0 1 1 0 0 0 0 0
## 3002 0 1 0 0 0 1 0 0
## 3003 0 0 0 0 0 1 1 0
## 3004 0 0 0 0 0 1 0 0
## 3005 0 0 0 0 0 1 0 0
## 3006 0 1 1 0 0 0 0 0
## 3007 0 0 0 0 1 1 0 0
## 3008 0 1 1 0 0 0 0 0
## 3009 0 0 0 0 0 1 0 0
## 3010 0 0 0 0 0 0 0 0
## 3011 0 1 0 0 0 0 0 0
## 3012 0 0 0 0 0 0 0 0
## 3013 0 0 0 0 0 0 0 0
## 3014 0 1 1 0 0 0 0 0
## 3015 0 0 0 0 1 0 0 0
## 3016 0 0 0 0 0 0 0 0
## 3017 0 1 1 0 0 0 0 0
## 3018 0 1 0 0 0 0 0 0
## 3019 0 0 0 1 1 0 0 0
## 3020 0 1 0 0 0 0 0 0
## 3021 0 0 0 0 0 0 0 0
## 3022 0 0 0 0 0 0 0 0
## 3023 0 0 0 0 0 0 0 0
## 3024 0 0 0 0 0 1 0 0
## 3025 0 0 1 1 1 1 0 0
## 3026 0 0 0 0 0 1 0 0
## 3027 0 0 0 0 0 0 0 0
## 3028 0 0 0 0 0 0 0 0
## 3029 0 0 0 1 1 1 0 0
## 3030 0 0 0 0 0 0 1 0
## 3031 0 0 0 0 0 0 0 0
## 3032 0 0 0 0 0 0 0 0
## 3033 0 0 0 0 0 0 0 0
## 3034 0 1 0 0 0 1 1 0
## 3035 0 1 1 0 0 0 0 0
## 3036 0 1 0 0 0 0 0 0
## 3037 0 0 0 0 0 0 1 0
## 3038 0 0 0 0 0 0 0 0
## 3039 0 0 0 0 0 0 1 0
## 3040 0 0 0 1 1 0 0 0
## 3041 0 0 0 0 0 0 0 0
## 3042 0 1 1 0 0 0 0 0
## 3043 0 1 0 0 0 0 0 0
## 3044 0 0 0 0 0 1 0 0
## 3045 0 1 0 0 0 0 1 0
## 3046 0 0 0 0 0 0 1 0
## 3047 0 1 0 0 0 0 0 0
## 3048 0 1 1 0 0 0 0 0
## 3049 0 1 1 0 0 0 0 0
## 3050 0 1 1 0 0 1 0 0
## 3051 0 0 0 0 0 0 0 0
## 3052 0 0 0 0 0 0 0 0
## 3053 0 1 1 0 0 1 0 0
## 3054 0 0 0 0 0 0 0 0
## 3055 0 0 0 0 0 0 0 0
## 3056 0 0 0 0 0 0 0 0
## 3057 0 1 1 0 0 0 0 0
## 3058 0 1 0 0 0 0 0 0
## 3059 0 0 0 1 0 1 0 0
## 3060 0 0 0 0 0 1 0 0
## 3061 0 0 0 0 1 1 0 0
## 3062 0 1 0 0 0 0 0 0
## 3063 0 1 0 0 0 0 0 0
## 3064 0 0 0 0 0 0 0 0
## 3065 0 0 0 0 1 1 0 0
## 3066 0 1 0 0 0 0 0 0
## 3067 0 0 0 0 1 1 0 0
## 3068 0 0 0 0 0 0 0 0
## 3069 0 1 0 0 0 0 0 0
## 3070 0 0 0 0 0 0 0 0
## 3071 0 1 0 0 0 0 1 0
## 3072 0 1 0 0 0 0 0 0
## 3073 0 0 0 0 0 0 0 0
## 3074 0 0 0 0 0 0 0 0
## 3075 0 0 0 0 0 0 0 0
## 3076 0 0 0 0 0 0 0 0
## 3077 0 0 0 0 0 0 0 0
## 3078 0 0 0 0 0 1 0 0
## 3079 0 1 0 0 0 0 0 0
## 3080 0 1 0 0 0 0 0 0
## 3081 0 0 0 0 0 0 1 0
## 3082 0 1 0 0 0 0 0 0
## 3083 0 0 0 0 0 1 0 0
## 3084 0 0 0 0 0 1 0 0
## 3085 0 0 0 0 0 0 0 1
## 3086 0 0 0 0 0 1 0 0
## 3087 0 0 0 0 0 0 0 0
## 3088 0 1 0 0 0 0 0 0
## 3089 0 0 0 0 0 0 0 0
## 3090 0 0 0 0 0 0 0 0
## 3091 0 1 0 0 0 0 0 0
## 3092 0 0 0 0 0 0 1 0
## 3093 0 1 0 0 0 0 0 0
## 3094 0 0 0 0 0 0 0 0
## 3095 0 1 1 0 0 0 0 0
## 3096 0 0 0 0 0 0 0 0
## 3097 0 0 0 0 0 0 0 0
## 3098 0 0 0 0 0 1 1 0
## 3099 0 0 0 0 0 0 0 0
## 3100 0 0 0 1 0 1 0 0
## 3101 0 0 0 0 0 0 0 0
## 3102 0 0 0 0 0 0 0 0
## 3103 0 0 0 0 0 0 0 0
## 3104 0 0 0 0 0 0 0 0
## 3105 0 0 0 0 0 0 0 0
## 3106 0 0 0 0 0 0 0 0
## 3107 0 0 0 0 0 0 0 0
## 3108 0 0 0 0 0 0 0 0
## 3109 0 0 0 0 0 0 0 0
## 3110 0 0 0 0 0 0 0 0
## 3111 0 0 0 0 0 0 0 0
## 3112 0 0 0 0 0 0 0 0
## 3113 0 0 0 0 0 0 0 0
## 3114 0 1 0 0 0 0 0 0
## 3115 0 1 0 0 0 0 0 0
## 3116 0 0 1 0 1 0 0 0
## 3117 0 0 0 1 1 0 0 0
## 3118 0 0 0 0 0 0 1 0
## 3119 0 0 0 0 0 0 0 0
## 3120 0 0 0 0 0 0 0 0
## 3121 0 0 0 0 0 0 0 0
## 3122 0 0 0 0 0 0 0 0
## 3123 0 0 0 0 0 0 0 0
## 3124 0 0 0 0 0 1 0 0
## 3125 0 0 0 0 0 0 0 0
## 3126 0 0 0 0 0 0 0 0
## 3127 0 0 0 0 0 0 0 0
## 3128 0 0 0 0 0 0 0 0
## 3129 0 1 0 0 0 0 0 0
## 3130 0 0 0 0 0 0 0 0
## 3131 0 0 0 0 0 0 0 0
## 3132 0 0 0 1 1 0 0 0
## 3133 0 0 0 0 0 0 0 0
## 3134 0 0 0 0 0 0 1 0
## 3135 0 0 0 0 0 0 0 0
## 3136 0 0 0 0 0 1 0 0
## 3137 0 0 0 0 0 0 1 0
## 3138 0 1 0 0 0 0 0 0
## 3139 0 1 0 0 0 0 0 0
## 3140 0 0 0 0 0 0 0 0
## 3141 0 0 0 0 0 0 0 0
## 3142 0 0 0 0 0 0 0 0
## 3143 0 0 0 0 0 0 0 0
## 3144 0 0 0 0 0 0 0 0
## 3145 0 0 0 0 0 0 0 0
## 3146 0 0 0 0 0 1 0 0
## 3147 0 0 0 0 0 1 0 0
## 3148 0 0 0 0 0 0 0 0
## 3149 0 0 0 0 0 0 0 0
## 3150 0 0 0 0 0 0 0 0
## 3151 0 0 0 0 0 0 0 0
## 3152 0 0 0 0 0 0 0 0
## 3153 0 1 0 0 0 0 0 0
## 3154 0 0 0 0 0 0 0 0
## 3155 0 0 0 0 0 0 0 0
## 3156 0 0 0 0 0 0 0 0
## 3157 0 1 1 0 0 0 0 0
## 3158 0 0 0 0 0 0 0 0
## 3159 0 0 0 0 0 0 0 0
## 3160 0 0 0 0 0 0 0 0
## 3161 0 0 0 0 0 0 0 0
## 3162 0 0 0 0 0 0 0 0
## 3163 0 0 1 1 1 1 0 0
## 3164 0 0 0 0 0 0 0 0
## 3165 0 0 0 0 0 0 0 0
## 3166 0 0 0 0 0 0 1 0
## 3167 0 0 0 0 0 1 0 0
## 3168 0 0 0 0 0 1 0 0
## 3169 0 0 0 0 0 0 0 0
## 3170 0 0 0 0 0 1 0 0
## 3171 0 0 0 0 0 0 0 0
## 3172 0 0 0 0 0 0 0 0
## 3173 0 0 0 0 0 1 0 0
## 3174 0 0 0 0 0 0 0 0
## 3175 0 0 0 0 0 0 0 0
## 3176 0 1 0 0 0 1 0 0
## 3177 0 0 1 0 0 0 0 0
## 3178 0 0 0 0 1 1 0 0
## 3179 0 0 0 0 0 0 0 0
## 3180 0 0 0 0 0 0 0 0
## 3181 0 1 1 0 0 0 0 0
## 3182 0 0 0 0 0 0 0 0
## 3183 0 0 0 0 0 1 0 0
## 3184 0 0 0 0 0 0 0 0
## 3185 0 0 0 0 0 0 0 0
## 3186 0 1 0 0 0 0 0 0
## 3187 0 1 0 0 0 0 0 0
## 3188 0 0 0 0 0 0 0 0
## 3189 0 0 0 0 0 0 0 0
## 3190 0 0 0 0 0 0 0 0
## 3191 0 0 0 0 0 0 0 0
## 3192 0 1 1 0 0 0 0 0
## 3193 0 0 0 0 0 0 0 0
## 3194 0 0 0 0 0 0 0 0
## 3195 0 0 0 0 0 0 0 0
## 3196 0 0 0 0 0 0 0 0
## 3197 0 0 0 0 0 0 0 0
## 3198 0 0 0 0 0 1 0 0
## 3199 0 0 0 1 1 0 0 0
## 3200 0 0 0 0 0 0 0 0
## 3201 0 0 0 0 0 0 1 0
## 3202 0 0 0 0 0 1 0 0
## 3203 0 0 1 1 1 1 0 0
## 3204 0 0 0 0 0 0 0 0
## 3205 0 0 0 0 0 1 0 0
## 3206 0 1 1 0 0 0 0 0
## 3207 0 1 0 0 0 1 0 0
## 3208 0 1 0 0 0 1 1 0
## 3209 0 1 1 0 0 1 0 0
## 3210 0 1 1 0 0 0 1 0
## 3211 0 1 1 0 0 1 1 0
## 3212 0 1 1 0 0 0 0 0
## 3213 0 1 0 0 0 0 0 0
## 3214 0 1 1 0 0 0 0 0
## 3215 0 1 0 0 0 0 0 0
## 3216 0 1 0 0 0 0 0 0
## 3217 0 1 0 0 0 1 0 0
## 3218 0 0 0 0 0 1 0 0
## 3219 0 0 0 0 0 0 0 0
## 3220 0 0 0 0 1 1 0 0
## 3221 0 1 0 0 0 0 0 0
## 3222 0 0 0 0 0 1 0 0
## 3223 0 0 0 0 0 1 0 0
## 3224 0 1 1 0 0 1 0 0
## 3225 0 1 1 0 0 0 0 0
## 3226 0 1 1 0 0 0 0 0
## 3227 0 1 0 0 0 0 0 0
## 3228 0 1 0 0 0 0 1 0
## 3229 0 1 0 0 0 0 0 0
## 3230 0 1 0 0 0 0 0 0
## 3231 0 0 0 0 0 1 0 0
## 3232 0 0 0 0 0 1 0 0
## 3233 0 1 0 0 0 0 0 0
## 3234 0 0 0 0 0 1 0 0
## 3235 0 0 0 0 0 1 0 0
## 3236 0 0 0 0 0 1 0 0
## 3237 0 1 1 0 0 0 0 0
## 3238 0 1 1 0 0 1 0 0
## 3239 0 1 1 0 0 0 0 0
## 3240 0 0 0 0 0 0 0 0
## 3241 0 1 0 0 0 0 0 0
## 3242 0 1 1 0 0 0 0 0
## 3243 0 1 1 0 0 1 0 0
## 3244 0 1 0 0 0 1 0 0
## 3245 0 1 0 0 0 0 1 0
## 3246 0 0 0 0 0 1 1 0
## 3247 0 1 0 0 0 0 0 0
## 3248 0 1 1 0 0 1 0 0
## 3249 0 0 0 0 0 1 0 0
## 3250 0 0 0 0 0 1 0 0
## 3251 0 0 0 0 0 1 0 0
## 3252 0 0 0 0 0 1 0 0
## 3253 0 1 1 0 0 0 0 0
## 3254 0 0 0 0 0 1 0 0
## 3255 0 0 0 0 0 1 0 0
## 3256 0 1 1 0 0 0 0 0
## 3257 0 1 0 0 0 0 0 0
## 3258 0 1 1 0 0 0 0 0
## 3259 0 1 1 0 0 0 0 0
## 3260 0 1 1 0 0 0 0 0
## 3261 0 1 1 0 0 0 0 0
## 3262 0 1 1 0 0 1 1 0
## 3263 0 1 0 0 0 0 0 0
## 3264 0 0 0 0 0 1 0 0
## 3265 0 1 0 0 0 0 0 0
## 3266 0 1 0 0 0 0 0 0
## 3267 0 0 0 0 0 0 0 0
## 3268 0 1 0 0 0 0 0 0
## 3269 0 0 0 0 0 1 0 0
## 3270 0 0 0 0 0 1 0 0
## 3271 0 1 1 0 0 0 0 0
## 3272 0 0 0 0 0 1 0 0
## 3273 0 0 0 0 0 1 0 0
## 3274 0 0 0 0 1 1 0 0
## 3275 0 0 0 0 0 1 0 0
## 3276 0 1 1 0 0 1 0 0
## 3277 0 0 0 0 0 1 0 0
## 3278 0 0 0 0 0 1 0 0
## 3279 0 1 1 0 0 1 0 0
## 3280 0 1 1 0 0 0 1 0
## 3281 0 1 1 0 0 0 0 0
## 3282 0 0 0 0 0 1 0 0
## 3283 0 0 0 0 0 1 0 0
## 3284 0 0 0 0 0 1 0 0
## 3285 0 1 1 0 0 0 0 0
## 3286 0 0 0 0 0 1 0 0
## 3287 0 1 0 0 0 1 0 0
## 3288 0 1 1 0 0 0 0 0
## 3289 0 0 0 0 0 1 0 0
## 3290 0 1 0 0 0 0 0 0
## 3291 0 1 0 0 0 1 0 0
## 3292 0 0 0 0 0 1 0 0
## 3293 0 1 0 0 0 0 0 0
## 3294 0 0 1 0 0 0 0 0
## 3295 0 1 0 0 0 0 0 0
## 3296 0 0 0 0 0 1 0 0
## 3297 0 1 1 0 0 0 0 0
## 3298 0 1 0 0 0 0 0 0
## 3299 0 1 0 0 0 0 0 0
## 3300 0 1 1 0 0 0 0 0
## 3301 0 1 1 0 0 0 0 0
## 3302 0 1 0 0 0 0 0 0
## 3303 0 1 1 0 0 0 0 0
## 3304 0 0 0 0 0 1 0 0
## 3305 0 1 0 0 0 0 0 0
## 3306 0 1 0 0 0 0 0 0
## 3307 0 0 0 0 0 1 0 0
## 3308 0 1 0 0 0 0 0 0
## 3309 0 0 0 0 0 1 0 0
## 3310 0 0 0 0 0 1 0 0
## 3311 0 0 0 0 0 1 0 0
## 3312 0 0 0 0 0 1 0 0
## 3313 0 0 0 0 0 1 0 0
## 3314 0 0 0 0 0 1 0 0
## 3315 0 0 0 0 0 1 0 0
## 3316 0 0 0 0 1 0 0 0
## 3317 0 0 0 0 0 1 0 0
## 3318 0 1 0 0 0 0 0 0
## 3319 0 0 1 0 1 1 0 0
## 3320 0 0 0 0 0 1 0 0
## 3321 0 0 0 0 1 1 0 0
## 3322 0 0 0 0 0 1 0 0
## 3323 0 0 0 0 1 1 0 0
## 3324 0 0 0 0 0 1 0 0
## 3325 0 0 0 0 0 1 0 0
## 3326 0 0 0 0 1 1 0 0
## 3327 0 0 0 0 0 1 0 0
## 3328 0 0 0 0 0 1 0 0
## 3329 0 0 0 0 0 1 0 0
## 3330 0 0 0 0 0 1 0 0
## 3331 0 0 0 0 0 1 0 0
## 3332 0 0 0 0 0 1 0 0
## 3333 0 0 0 1 1 1 0 0
## 3334 0 0 0 0 0 0 0 0
## 3335 0 0 0 0 1 1 0 0
## 3336 0 0 0 0 0 1 0 0
## 3337 0 0 0 0 0 0 0 0
## 3338 0 0 0 0 0 0 0 0
## 3339 0 1 0 0 0 0 0 0
## 3340 0 0 0 0 0 0 0 1
## 3341 0 1 1 0 0 0 0 0
## 3342 0 0 0 0 0 0 1 0
## 3343 0 0 0 0 0 0 1 0
## 3344 0 0 0 0 0 0 0 0
## 3345 0 1 1 0 0 0 0 0
## 3346 0 0 0 0 0 1 0 0
## 3347 0 0 0 1 1 0 0 0
## 3348 0 1 0 0 0 1 0 0
## 3349 0 1 0 0 0 0 0 0
## 3350 0 1 1 0 0 0 0 0
## 3351 0 0 0 0 0 1 0 0
## 3352 0 0 0 0 0 1 0 0
## 3353 0 0 0 0 0 0 0 0
## 3354 0 0 0 0 0 1 0 0
## 3355 0 0 0 0 1 1 0 0
## 3356 0 0 0 1 1 1 0 0
## 3357 0 1 0 0 0 0 0 0
## 3358 0 0 0 0 0 0 0 0
## 3359 0 0 0 1 1 0 0 0
## 3360 0 0 0 0 0 0 1 0
## 3361 0 0 0 1 1 0 0 0
## 3362 0 0 0 0 0 1 0 0
## 3363 0 0 0 0 0 1 0 0
## 3364 0 0 0 0 0 0 0 0
## 3365 0 0 0 0 0 0 0 0
## 3366 0 0 1 0 1 0 0 0
## 3367 0 0 0 0 0 0 0 0
## 3368 0 0 0 0 0 0 0 0
## 3369 0 0 0 0 0 0 0 0
## 3370 0 1 0 0 0 0 0 0
## 3371 0 1 0 0 0 0 0 0
## 3372 0 0 1 0 1 1 0 0
## 3373 0 0 0 0 0 1 0 0
## 3374 0 0 0 0 0 1 0 0
## 3375 0 0 0 0 0 0 0 0
## 3376 0 0 0 0 0 0 1 0
## 3377 0 1 0 0 0 0 0 0
## 3378 0 0 0 0 0 0 0 0
## 3379 0 0 0 0 0 1 0 0
## 3380 0 0 0 0 0 1 0 0
## 3381 0 1 1 0 0 0 0 0
## 3382 0 1 1 0 0 1 0 0
## 3383 0 1 1 0 0 0 0 0
## 3384 0 0 0 0 0 0 0 0
## 3385 0 1 0 0 0 0 0 0
## 3386 0 1 0 0 0 0 0 0
## 3387 0 1 1 0 0 0 0 0
## 3388 0 1 0 0 0 0 0 0
## 3389 0 0 0 0 0 0 0 0
## 3390 0 1 0 0 0 0 0 0
## 3391 0 0 0 1 0 1 0 0
## 3392 0 0 0 0 0 0 0 0
## 3393 0 0 0 0 0 1 1 0
## 3394 0 1 0 0 0 0 0 0
## 3395 0 0 0 0 0 0 0 0
## 3396 0 0 0 0 0 1 0 0
## 3397 0 0 0 0 0 0 0 0
## 3398 0 0 0 0 0 1 0 0
## 3399 0 0 0 0 0 1 0 0
## 3400 0 0 0 0 0 1 0 0
## 3401 0 0 0 0 0 0 0 0
## 3402 0 0 0 0 0 0 0 0
## 3403 0 0 0 0 0 0 0 0
## 3404 0 0 0 0 0 1 0 0
## 3405 0 0 0 0 0 0 0 0
## 3406 0 0 0 0 0 0 0 0
## 3407 0 1 1 0 0 0 0 0
## 3408 0 0 0 0 0 0 0 0
## 3409 0 1 1 0 0 0 0 0
## 3410 0 1 1 0 0 0 0 0
## 3411 0 1 1 0 0 0 0 0
## 3412 0 1 1 0 0 0 0 0
## 3413 0 1 0 0 0 0 0 0
## 3414 0 1 0 0 0 1 0 0
## 3415 0 0 0 0 0 1 0 0
## 3416 0 1 0 0 0 0 0 0
## 3417 0 1 1 0 0 1 0 0
## 3418 0 0 0 0 0 0 0 0
## 3419 0 0 0 0 0 1 0 0
## 3420 0 0 0 0 0 0 0 0
## 3421 0 0 0 0 0 0 0 0
## 3422 0 0 0 0 0 1 0 0
## 3423 0 0 0 0 0 0 0 0
## 3424 0 1 0 0 0 0 0 0
## 3425 0 0 0 0 0 0 0 0
## 3426 0 0 0 0 0 1 0 0
## 3427 0 1 1 0 0 0 0 0
## 3428 0 0 0 0 0 1 0 0
## 3429 0 1 1 0 0 1 0 0
## 3430 0 0 0 0 0 1 0 0
## 3431 0 0 0 0 0 0 0 0
## 3432 0 0 0 1 1 0 0 0
## 3433 0 1 1 0 0 0 0 0
## 3434 0 0 0 1 0 1 0 0
## 3435 0 0 0 0 0 1 0 0
## 3436 0 0 0 1 1 0 0 0
## 3437 0 0 0 0 1 1 0 0
## 3438 0 0 0 0 0 0 0 0
## 3439 0 0 0 0 1 0 0 0
## 3440 0 0 0 0 0 0 0 0
## 3441 0 0 0 1 1 0 0 0
## 3442 0 0 0 0 0 1 0 0
## 3443 0 1 1 0 0 0 0 0
## 3444 0 0 0 0 0 1 0 0
## 3445 0 0 1 0 0 0 0 0
## 3446 0 1 1 0 0 0 0 0
## 3447 0 0 0 0 0 0 0 0
## 3448 0 0 0 0 0 0 0 0
## 3449 0 0 0 0 0 0 1 0
## 3450 0 0 1 0 0 0 0 0
## 3451 0 0 0 0 0 1 0 0
## 3452 0 0 0 0 0 1 0 0
## 3453 0 0 0 0 0 0 0 0
## 3454 0 0 0 0 0 1 0 0
## 3455 0 1 1 0 0 0 0 0
## 3456 0 0 0 0 0 0 0 0
## 3457 0 0 0 0 0 0 0 0
## 3458 0 0 1 0 0 0 0 0
## 3459 0 1 1 0 0 0 0 0
## 3460 0 1 0 0 0 0 0 0
## 3461 0 0 0 0 0 0 0 0
## 3462 0 0 0 1 1 0 0 0
## 3463 0 1 0 0 0 0 0 0
## 3464 0 0 0 0 0 0 0 0
## 3465 0 0 0 0 0 1 0 0
## 3466 0 0 0 0 0 0 1 0
## 3467 0 0 0 0 0 1 0 0
## 3468 0 0 1 0 0 1 0 0
## 3469 0 0 0 0 0 0 0 0
## 3470 0 1 1 0 0 0 0 0
## 3471 0 0 0 0 0 0 0 0
## 3472 0 0 0 0 0 0 0 0
## 3473 0 0 0 0 0 1 0 0
## 3474 0 0 0 0 0 0 0 0
## 3475 0 0 0 0 0 1 0 0
## 3476 0 0 0 0 0 1 0 0
## 3477 0 0 0 0 0 1 0 0
## 3478 0 0 0 0 0 1 0 0
## 3479 0 0 1 0 0 0 0 0
## 3480 0 0 0 0 0 0 0 0
## 3481 0 0 0 0 0 0 0 0
## 3482 0 0 0 0 0 0 0 0
## 3483 0 0 0 0 0 0 0 0
## 3484 0 0 0 0 0 0 0 0
## 3485 0 0 0 0 1 1 0 0
## 3486 0 0 0 0 0 0 0 0
## 3487 0 0 0 0 0 0 1 0
## 3488 0 0 0 0 0 0 1 0
## 3489 0 0 0 0 0 1 0 0
## 3490 0 0 0 0 0 1 0 0
## 3491 0 0 0 0 0 0 1 0
## 3492 0 0 0 0 0 0 1 0
## 3493 0 0 0 0 0 0 0 0
## 3494 0 0 0 0 0 0 0 0
## 3495 0 0 0 0 0 1 0 0
## 3496 0 0 0 1 1 0 0 0
## 3497 0 1 0 0 0 0 0 0
## 3498 0 1 0 0 0 0 1 0
## 3499 0 0 1 0 0 0 0 0
## 3500 0 0 0 0 0 0 0 0
## 3501 0 0 0 0 0 0 1 0
## 3502 0 0 0 0 0 1 0 0
## 3503 0 1 1 0 0 0 0 0
## 3504 0 1 0 0 0 0 1 0
## 3505 0 0 0 0 0 0 1 0
## 3506 0 0 1 0 1 0 0 0
## 3507 0 0 1 0 1 1 0 0
## 3508 0 0 0 0 0 1 0 0
## 3509 0 1 1 0 0 1 0 0
## 3510 0 1 0 0 0 0 0 0
## 3511 0 0 0 0 0 0 0 0
## 3512 0 0 0 0 0 0 0 0
## 3513 0 0 0 0 0 0 0 0
## 3514 0 0 0 0 0 0 0 0
## 3515 0 0 0 0 0 1 0 0
## 3516 0 0 0 0 0 0 0 0
## 3517 0 0 0 0 0 0 0 0
## 3518 0 0 0 0 0 1 0 0
## 3519 0 0 0 0 0 1 0 0
## 3520 0 0 0 0 0 0 0 0
## 3521 0 0 0 0 0 0 0 0
## 3522 0 0 0 0 0 0 0 0
## 3523 0 0 0 0 0 0 0 0
## 3524 0 0 0 0 0 0 0 0
## 3525 0 0 0 0 0 0 0 0
## 3526 0 0 0 0 0 1 0 0
## 3527 0 1 0 0 0 0 0 0
## 3528 0 0 0 0 0 0 0 0
## 3529 0 0 0 0 0 0 0 0
## 3530 0 0 0 0 0 0 0 0
## 3531 0 1 1 0 0 0 0 0
## 3532 0 0 0 0 0 1 0 0
## 3533 0 0 0 0 0 1 0 0
## 3534 0 0 0 0 0 1 0 0
## 3535 0 0 0 0 0 0 0 0
## 3536 0 0 0 0 0 0 0 0
## 3537 0 0 0 0 0 0 0 0
## 3538 0 0 0 0 1 1 0 0
## 3539 0 0 0 0 0 1 0 0
## 3540 0 0 0 0 0 0 0 0
## 3541 0 0 0 0 0 0 0 0
## 3542 0 0 0 0 0 0 0 0
## 3543 0 0 1 0 0 1 0 0
## 3544 0 0 0 0 0 0 0 0
## 3545 0 0 0 0 0 0 0 0
## 3546 0 0 0 0 0 0 0 0
## 3547 0 0 0 0 0 0 0 0
## 3548 0 0 0 0 0 0 0 0
## 3549 0 0 0 0 0 1 0 0
## 3550 0 0 1 0 0 0 0 0
## 3551 0 0 0 0 0 1 0 0
## 3552 0 0 0 1 1 1 0 0
## 3553 0 0 0 0 0 0 0 0
## 3554 0 0 0 0 1 1 0 0
## 3555 0 0 0 0 0 1 0 0
## 3556 0 0 0 0 0 0 0 0
## 3557 0 0 0 0 0 1 0 0
## 3558 0 1 1 0 0 0 0 0
## 3559 0 1 0 0 0 0 0 0
## 3560 0 1 1 0 0 0 0 0
## 3561 0 0 0 0 0 0 0 0
## 3562 0 0 0 0 0 0 0 0
## 3563 0 0 0 1 0 0 0 0
## 3564 0 0 0 0 0 1 0 0
## 3565 0 1 0 0 0 0 0 0
## 3566 0 0 0 0 0 0 0 0
## 3567 0 1 0 0 0 0 1 0
## 3568 0 0 0 0 0 0 0 0
## 3569 0 0 0 0 0 0 0 0
## 3570 0 0 0 0 0 0 0 0
## 3571 0 0 0 0 0 0 0 0
## 3572 0 0 1 0 1 0 0 0
## 3573 0 0 0 0 0 0 0 0
## 3574 0 0 1 0 1 1 0 0
## 3575 0 0 0 1 0 1 0 0
## 3576 0 1 1 0 0 1 0 0
## 3577 0 1 1 0 0 0 0 0
## 3578 0 1 0 0 0 0 0 0
## 3579 0 1 0 0 0 0 0 0
## 3580 0 1 1 0 0 0 0 0
## 3581 0 1 0 0 0 0 0 0
## 3582 0 1 0 0 0 1 0 0
## 3583 0 0 0 1 0 1 0 0
## 3584 0 1 0 0 0 0 0 0
## 3585 0 0 0 0 0 0 0 0
## 3586 0 0 0 0 0 1 0 0
## 3587 0 0 0 0 0 1 0 0
## 3588 0 1 1 0 0 0 0 0
## 3589 0 1 1 0 0 0 0 0
## 3590 0 0 0 0 0 1 0 0
## 3591 0 0 0 0 0 0 1 0
## 3592 0 1 1 0 0 1 0 0
## 3593 0 0 0 0 0 0 0 0
## 3594 0 1 0 0 0 0 0 0
## 3595 0 0 0 0 0 1 0 0
## 3596 0 0 0 0 0 0 0 0
## 3597 0 0 0 0 0 0 0 0
## 3598 0 0 0 1 1 0 0 0
## 3599 0 0 0 1 0 1 0 0
## 3600 0 0 0 0 1 1 0 0
## 3601 0 0 0 0 0 0 0 0
## 3602 0 0 0 0 0 1 0 0
## 3603 0 0 0 1 1 0 0 0
## 3604 0 1 0 0 0 0 0 0
## 3605 0 0 1 0 0 0 0 0
## 3606 0 0 0 0 0 0 0 0
## 3607 0 0 0 0 1 1 0 0
## 3608 0 0 0 0 0 1 0 0
## 3609 0 0 0 0 0 0 0 0
## 3610 0 0 0 0 0 1 0 0
## 3611 0 0 1 0 0 1 0 0
## 3612 0 1 1 0 0 0 0 0
## 3613 0 0 0 1 1 0 0 0
## 3614 0 0 1 0 0 0 0 0
## 3615 0 0 0 0 0 0 0 0
## 3616 0 1 0 0 0 0 0 0
## 3617 0 0 0 0 0 1 0 0
## 3618 0 0 0 0 0 0 0 0
## 3619 0 0 0 0 0 0 0 0
## 3620 0 0 0 0 0 0 0 0
## 3621 0 0 1 0 0 1 0 0
## 3622 0 0 0 0 0 0 0 0
## 3623 0 0 0 0 0 1 0 0
## 3624 0 0 0 0 0 0 0 0
## 3625 0 0 0 0 0 0 0 0
## 3626 0 0 0 0 0 0 0 0
## 3627 0 0 0 0 1 1 0 0
## 3628 0 0 0 0 0 0 0 0
## 3629 0 0 0 1 1 0 0 0
## 3630 0 0 0 1 1 1 0 0
## 3631 0 0 0 0 0 0 0 0
## 3632 0 0 0 0 0 0 0 0
## 3633 0 0 0 0 0 1 0 0
## 3634 0 0 0 0 0 0 0 0
## 3635 0 0 0 0 0 0 0 0
## 3636 0 1 1 0 0 0 1 0
## 3637 0 0 0 0 0 1 0 0
## 3638 0 1 1 0 0 0 0 0
## 3639 0 0 0 0 0 0 1 0
## 3640 0 0 0 0 0 1 0 0
## 3641 0 0 0 0 0 1 0 0
## 3642 0 0 0 0 0 1 0 0
## 3643 0 1 1 0 0 0 0 0
## 3644 0 1 1 0 0 0 0 0
## 3645 0 1 0 0 0 0 0 0
## 3646 0 0 0 0 0 1 0 0
## 3647 0 0 0 0 0 0 0 0
## 3648 0 0 0 0 0 0 0 0
## 3649 0 1 0 0 0 0 1 0
## 3650 0 0 0 0 0 0 1 0
## 3651 0 1 1 0 0 0 0 0
## 3652 0 0 0 0 0 1 0 0
## 3653 0 0 1 0 1 1 0 0
## 3654 0 1 1 0 0 0 0 0
## 3655 0 1 1 0 0 0 0 0
## 3656 0 1 0 0 0 1 0 0
## 3657 0 0 0 0 0 0 0 0
## 3658 0 0 0 1 0 1 0 0
## 3659 0 0 0 0 0 0 0 0
## 3660 0 0 0 0 0 1 1 0
## 3661 0 0 0 0 0 1 0 0
## 3662 0 1 0 0 0 0 0 0
## 3663 0 1 1 0 0 0 0 0
## 3664 0 0 0 0 0 1 0 0
## 3665 0 1 1 0 0 1 0 0
## 3666 0 0 0 0 0 0 0 0
## 3667 0 0 0 0 0 1 0 0
## 3668 0 1 1 0 0 0 0 0
## 3669 0 0 0 0 0 1 0 0
## 3670 0 0 0 0 0 0 0 0
## 3671 0 0 0 0 0 0 0 0
## 3672 0 0 0 0 0 0 0 0
## 3673 0 0 0 0 0 1 0 0
## 3674 0 0 0 0 0 0 0 0
## 3675 0 0 0 0 0 0 0 0
## 3676 0 0 0 0 0 0 0 0
## 3677 0 0 0 0 0 0 0 0
## 3678 0 0 0 0 0 0 1 0
## 3679 0 0 0 0 0 1 0 0
## 3680 0 1 0 0 0 0 0 0
## 3681 0 1 0 0 0 0 0 0
## 3682 0 0 0 0 0 0 1 0
## 3683 0 0 1 0 1 0 0 0
## 3684 0 1 0 0 0 0 0 0
## 3685 0 0 0 0 0 0 0 0
## 3686 0 0 0 0 0 1 0 0
## 3687 0 0 0 0 0 1 0 0
## 3688 0 0 0 0 0 0 0 0
## 3689 0 1 0 0 0 0 0 0
## 3690 0 1 0 0 0 0 0 0
## 3691 0 0 0 0 0 0 0 0
## 3692 0 1 0 0 0 0 0 0
## 3693 0 0 0 0 0 1 0 0
## 3694 0 1 1 0 0 0 0 0
## 3695 0 0 0 0 0 1 0 0
## 3696 0 0 0 0 0 0 0 0
## 3697 0 1 0 0 0 0 0 0
## 3698 0 1 0 0 0 1 0 0
## 3699 0 0 0 0 0 0 0 0
## 3700 0 0 0 0 0 0 0 0
## 3701 0 0 0 0 0 0 0 0
## 3702 0 0 0 0 0 1 0 0
## 3703 0 0 0 0 0 0 0 0
## 3704 0 1 0 0 0 0 0 0
## 3705 0 1 0 0 0 0 0 0
## 3706 0 0 0 0 0 0 0 0
## 3707 0 1 0 0 0 0 0 0
## 3708 0 0 0 0 0 0 1 0
## 3709 0 0 0 0 0 0 0 0
## 3710 0 0 0 0 0 1 0 0
## 3711 0 1 0 0 0 0 0 0
## 3712 0 0 0 0 0 0 0 0
## 3713 0 1 0 0 0 0 0 0
## 3714 0 0 0 0 0 0 0 0
## 3715 0 1 0 0 0 0 0 0
## 3716 0 0 0 0 0 0 0 0
## 3717 0 0 0 0 0 0 0 0
## 3718 0 1 1 0 0 0 0 0
## 3719 0 1 0 0 0 0 0 0
## 3720 0 1 0 0 0 0 0 0
## 3721 0 0 0 0 0 1 0 0
## 3722 0 0 0 0 0 1 0 0
## 3723 0 0 0 0 0 1 0 0
## 3724 0 0 0 0 0 1 0 0
## 3725 0 1 1 0 0 0 0 0
## 3726 0 0 0 0 0 1 0 0
## 3727 0 0 0 0 0 0 0 0
## 3728 0 0 0 0 0 0 0 0
## 3729 0 0 0 0 0 0 0 0
## 3730 0 0 0 0 0 0 0 0
## 3731 0 0 0 0 0 0 1 0
## 3732 0 0 0 0 0 1 0 0
## 3733 0 1 1 0 0 0 0 0
## 3734 0 0 0 0 0 1 0 0
## 3735 0 0 0 0 1 0 0 0
## 3736 0 1 1 0 0 0 0 0
## 3737 0 0 0 0 0 0 0 0
## 3738 0 1 1 0 0 0 0 0
## 3739 0 0 0 0 0 0 1 0
## 3740 0 1 1 0 0 0 0 0
## 3741 0 1 0 0 0 0 0 0
## 3742 0 0 0 0 0 1 0 0
## 3743 0 1 1 0 0 0 0 0
## 3744 0 1 0 0 0 0 0 0
## 3745 0 0 0 0 0 0 0 0
## 3746 0 1 0 0 0 0 0 0
## 3747 0 0 0 0 0 0 0 0
## 3748 0 0 0 0 0 0 0 0
## 3749 0 1 0 0 0 0 0 0
## 3750 0 1 0 0 0 0 0 0
## 3751 0 0 0 0 0 0 0 0
## 3752 0 0 0 0 0 0 0 0
## 3753 0 0 0 0 0 0 0 0
## 3754 0 0 0 0 0 0 0 0
## 3755 0 1 0 0 0 0 0 0
## 3756 0 0 0 1 1 0 0 0
## 3757 0 0 0 0 0 0 0 0
## 3758 0 0 0 0 0 0 0 0
## 3759 0 1 1 0 0 0 0 0
## 3760 0 0 0 0 0 0 0 0
## 3761 0 0 0 0 0 0 0 0
## 3762 0 0 0 0 0 0 1 0
## 3763 0 0 0 0 0 0 0 0
## 3764 0 0 0 0 0 0 1 0
## 3765 0 0 0 0 0 0 1 0
## 3766 0 1 0 0 0 0 0 0
## 3767 0 0 0 0 0 0 0 0
## 3768 0 1 1 0 0 0 0 0
## 3769 0 0 0 0 0 0 1 0
## 3770 0 0 0 0 0 1 0 0
## 3771 0 1 0 0 0 0 0 0
## 3772 0 0 0 0 0 0 0 0
## 3773 0 0 0 1 1 1 0 0
## 3774 0 1 0 0 0 0 0 0
## 3775 0 0 0 0 0 0 0 0
## 3776 0 0 0 0 0 0 1 0
## 3777 0 1 1 0 0 0 0 0
## 3778 0 0 0 0 0 0 0 0
## 3779 0 1 0 0 0 0 0 0
## 3780 0 0 0 0 0 1 0 0
## 3781 0 1 1 0 0 0 0 0
## 3782 0 1 1 0 0 1 0 0
## 3783 0 1 1 0 0 0 0 0
## 3784 0 1 0 0 0 0 0 0
## 3785 0 1 1 0 0 1 0 0
## 3786 0 0 0 0 0 0 0 0
## 3787 0 1 0 0 0 0 0 0
## 3788 0 0 0 0 0 0 0 0
## 3789 0 0 0 0 0 0 0 0
## 3790 0 1 1 0 0 1 0 0
## 3791 0 0 0 0 0 1 0 0
## 3792 0 0 0 0 0 0 0 0
## 3793 0 0 0 0 0 0 0 0
## 3794 0 0 0 0 0 0 0 0
## 3795 0 1 1 0 0 0 0 0
## 3796 0 0 0 0 0 0 0 0
## 3797 0 1 1 0 0 0 0 0
## 3798 0 1 1 0 0 0 0 0
## 3799 0 1 1 0 0 0 0 0
## 3800 0 1 1 0 0 0 0 0
## 3801 0 1 0 0 0 0 0 0
## 3802 0 0 0 0 0 0 0 0
## 3803 0 1 1 0 0 0 0 0
## 3804 0 0 0 0 0 0 0 0
## 3805 0 0 0 0 0 0 0 0
## 3806 0 0 0 0 0 0 0 0
## 3807 0 0 0 0 0 1 0 0
## 3808 0 0 0 0 0 0 0 0
## 3809 0 1 0 0 0 0 0 0
## 3810 0 0 0 0 0 0 1 0
## 3811 0 1 1 0 0 0 0 0
## 3812 0 0 0 0 1 0 0 0
## 3813 0 0 0 0 0 0 0 0
## 3814 0 0 0 0 0 0 0 0
## 3815 0 0 0 0 0 0 0 0
## 3816 0 0 0 0 0 0 0 0
## 3817 0 0 0 0 0 0 0 0
## 3818 0 0 0 0 0 0 0 0
## 3819 0 0 0 0 0 0 0 0
## 3820 0 0 0 0 0 0 0 0
## 3821 0 1 1 0 0 0 0 0
## 3822 0 1 1 0 0 0 0 0
## 3823 0 0 0 0 0 0 0 0
## 3824 0 0 0 0 0 1 0 0
## 3825 0 0 0 0 0 0 0 0
## 3826 0 0 0 0 0 0 0 0
## 3827 0 1 0 0 0 0 0 0
## 3828 0 0 0 0 0 0 0 0
## 3829 0 0 0 1 1 0 0 0
## 3830 0 0 0 0 0 0 0 0
## 3831 0 0 0 0 0 1 0 0
## 3832 0 0 0 0 0 0 0 0
## 3833 0 1 0 0 0 0 0 0
## 3834 0 0 0 0 0 0 0 0
## 3835 0 0 0 0 0 0 0 0
## 3836 0 0 0 0 0 0 0 0
## 3837 0 0 0 0 0 0 0 0
## 3838 0 0 0 0 0 1 0 0
## 3839 0 0 0 0 0 0 0 0
## 3840 0 0 0 0 0 0 1 0
## 3841 0 1 0 0 0 0 0 0
## 3842 0 0 0 0 0 0 0 0
## 3843 0 0 0 0 0 0 0 0
## 3844 0 0 0 0 0 0 1 0
## 3845 0 0 0 1 0 1 0 0
## 3846 0 1 0 0 0 0 0 0
## 3847 0 0 0 0 1 1 0 0
## 3848 0 0 0 0 0 0 0 0
## 3849 0 0 0 0 0 1 0 0
## 3850 0 0 0 0 0 0 0 0
## 3851 0 0 0 0 0 0 0 0
## 3852 0 0 0 0 0 1 0 0
## 3853 0 1 0 0 0 0 0 0
## 3854 0 0 0 0 0 0 1 0
## 3855 0 0 0 0 0 0 0 0
## 3856 0 0 0 0 0 1 1 0
## 3857 0 1 0 0 0 0 0 0
## 3858 0 0 0 0 0 0 1 0
## 3859 0 1 0 0 0 0 0 0
## 3860 0 1 1 0 0 0 0 0
## 3861 0 0 0 0 0 1 0 0
## 3862 0 0 0 0 1 1 0 0
## 3863 0 0 0 0 0 0 0 0
## 3864 0 0 0 0 0 0 0 0
## 3865 0 0 0 0 0 0 0 0
## 3866 0 1 0 0 0 0 0 0
## 3867 0 1 0 0 0 0 0 0
## 3868 0 0 0 0 0 0 0 0
## 3869 0 1 0 0 0 0 0 0
## 3870 0 0 0 0 0 0 0 0
## 3871 0 1 0 0 0 0 0 0
## 3872 0 1 1 0 0 0 0 0
## 3873 0 0 0 0 0 0 0 0
## 3874 0 1 0 0 0 0 0 0
## 3875 0 1 1 0 0 1 1 0
## 3876 0 1 1 0 0 0 0 0
## 3877 0 0 0 0 0 1 0 0
## 3878 0 1 1 0 0 0 0 0
## 3879 0 0 0 0 0 0 0 0
## 3880 0 1 0 0 0 0 0 0
## 3881 0 1 1 0 0 0 0 0
## 3882 0 1 1 0 0 0 0 0
## 3883 0 1 1 0 0 0 0 0
## 3884 0 1 1 0 0 0 0 0
## 3885 0 1 1 0 0 1 1 0
## 3886 0 0 0 0 0 1 0 0
## 3887 0 1 1 0 0 0 0 0
## 3888 0 0 0 0 0 1 0 0
## 3889 0 1 1 0 0 1 0 0
## 3890 0 0 0 0 0 0 0 0
## 3891 0 0 0 0 1 1 0 0
## 3892 0 0 0 0 0 0 0 0
## 3893 0 0 0 0 0 0 0 0
## 3894 0 0 0 0 0 1 0 0
## 3895 0 0 0 0 0 1 0 0
## 3896 0 0 1 0 1 0 0 0
## 3897 0 1 0 0 0 0 0 0
## 3898 0 0 0 0 0 0 0 0
## 3899 0 0 0 0 0 1 0 0
## 3900 0 0 0 0 0 1 0 0
## 3901 0 1 1 0 0 0 1 0
## 3902 0 1 0 0 0 1 0 0
## 3903 0 0 0 0 0 0 0 0
## 3904 0 0 0 1 1 0 0 0
## 3905 0 0 0 0 1 1 0 0
## 3906 0 0 0 0 0 0 0 0
## 3907 0 0 0 0 0 1 0 0
## 3908 0 0 0 0 0 1 0 0
## 3909 0 1 0 0 0 0 0 0
## 3910 0 0 0 0 0 1 0 0
## 3911 0 0 0 0 0 1 0 0
## 3912 0 0 0 0 1 1 0 0
## 3913 0 0 0 0 0 1 0 0
## 3914 0 1 1 0 0 0 0 0
## 3915 0 0 0 0 0 0 0 1
## 3916 0 1 0 0 0 0 0 0
## 3917 0 0 0 0 0 0 0 0
## 3918 0 0 0 0 0 0 0 0
## 3919 0 0 0 0 0 0 0 0
## 3920 0 0 0 0 0 1 0 0
## 3921 0 0 0 0 0 0 0 0
## 3922 0 0 0 0 0 0 0 0
## 3923 0 0 0 0 0 0 0 0
## 3924 0 1 1 0 0 0 0 0
## 3925 0 0 0 0 0 0 1 0
## 3926 0 0 0 0 0 0 1 0
## 3927 0 0 0 0 0 0 0 0
## 3928 0 0 0 0 0 1 0 0
## 3929 0 0 0 0 0 1 0 0
## 3930 0 1 0 0 0 0 0 0
## 3931 0 0 0 0 0 0 0 0
## 3932 0 0 0 0 0 0 0 0
## 3933 0 0 0 0 0 1 0 0
## 3934 0 0 0 0 0 0 0 0
## 3935 0 1 1 0 0 0 0 0
## 3936 0 0 0 0 0 0 1 0
## 3937 0 0 0 0 0 1 0 0
## 3938 0 0 1 0 0 0 0 0
## 3939 0 0 0 0 0 0 1 0
## 3940 0 0 0 0 0 0 0 0
## 3941 0 0 0 0 0 0 0 0
## 3942 0 0 0 0 0 0 0 1
## 3943 0 0 0 0 0 0 0 0
## 3944 0 0 0 0 0 0 0 0
## 3945 0 1 0 0 0 0 0 0
## 3946 0 0 0 0 0 0 0 0
## 3947 0 0 0 0 0 0 0 0
## 3948 0 0 0 0 0 0 0 1
## 3949 0 0 0 0 0 0 0 0
## 3950 0 0 0 0 0 0 0 0
## 3951 0 1 1 0 0 0 0 0
## 3952 0 0 0 0 0 0 1 0
## 3953 0 0 0 0 0 1 0 0
## 3954 0 1 1 0 0 0 0 0
## 3955 0 1 1 0 0 0 0 0
## 3956 0 0 0 0 0 1 0 0
## 3957 0 0 1 0 1 1 0 0
## 3958 0 1 1 0 0 0 0 0
## 3959 0 1 1 0 0 0 0 0
## 3960 0 1 0 0 0 1 0 0
## 3961 0 0 0 1 0 1 0 0
## 3962 0 1 0 0 0 0 0 0
## 3963 0 0 0 0 0 0 0 0
## 3964 0 0 0 0 0 1 1 0
## 3965 0 0 0 0 0 1 0 0
## 3966 0 1 0 0 0 0 0 0
## 3967 0 1 1 0 0 1 0 0
## 3968 0 0 0 0 1 1 0 0
## 3969 0 1 1 0 0 0 0 0
## 3970 0 0 0 0 0 0 0 0
## 3971 0 0 0 0 0 0 0 0
## 3972 0 0 0 0 0 1 0 0
## 3973 0 0 0 0 0 1 0 0
## 3974 0 1 0 0 0 0 0 0
## 3975 0 0 0 0 0 0 1 0
## 3976 0 1 0 0 0 0 0 0
## 3977 0 1 1 0 0 0 0 0
## 3978 0 0 0 1 0 1 0 0
## 3979 0 1 0 0 0 0 0 0
## 3980 0 0 0 0 0 0 0 0
## 3981 0 0 0 0 0 0 0 0
## 3982 0 0 0 0 0 0 0 0
## 3983 0 0 0 0 0 0 1 0
## 3984 0 0 0 0 0 0 0 0
## 3985 0 0 0 0 0 1 0 0
## 3986 0 0 0 0 0 1 0 0
## 3987 0 1 1 0 0 0 0 0
## 3988 0 0 0 0 0 1 0 0
## 3989 0 1 0 0 0 0 0 0
## 3990 0 0 0 0 0 0 0 0
## 3991 0 1 0 0 0 0 0 0
## 3992 0 1 1 0 0 0 0 0
## 3993 0 0 0 0 0 0 0 0
## 3994 0 0 0 0 0 0 0 0
## 3995 0 0 0 0 0 1 0 0
## 3996 0 1 0 0 0 0 0 0
## 3997 0 0 0 0 0 0 1 0
## 3998 0 1 0 0 0 0 0 0
## 3999 0 1 0 0 0 0 0 0
## 4000 0 1 0 0 0 0 0 0
## 4001 0 0 0 0 0 0 1 0
## 4002 0 0 0 0 0 0 0 0
## 4003 0 1 0 0 0 0 0 0
## 4004 0 1 0 0 0 0 0 0
## 4005 0 0 0 0 0 0 0 0
## 4006 0 0 0 0 0 0 0 0
## 4007 0 1 0 0 0 0 0 0
## 4008 0 0 0 0 0 0 0 0
## 4009 0 1 0 0 0 0 0 0
## 4010 0 0 0 0 0 0 0 0
## 4011 0 0 0 0 0 0 0 0
## 4012 0 0 0 0 0 1 0 0
## 4013 0 1 0 0 0 0 0 0
## 4014 0 0 0 0 1 1 0 0
## 4015 0 0 0 0 0 0 0 0
## 4016 0 0 0 0 0 0 0 0
## 4017 0 0 0 0 0 0 0 0
## 4018 0 0 0 0 0 0 0 0
## 4019 0 0 0 0 0 1 0 0
## 4020 0 0 0 0 0 0 1 0
## 4021 0 0 0 0 0 0 0 0
## 4022 0 0 0 0 0 1 1 0
## 4023 0 0 0 0 0 0 0 0
## 4024 0 0 0 0 0 0 1 0
## 4025 0 0 0 0 0 0 1 0
## 4026 0 0 0 0 0 0 0 0
## 4027 0 0 0 0 0 0 0 0
## 4028 0 0 0 0 0 0 0 0
## 4029 0 0 0 0 0 0 0 0
## 4030 0 0 0 0 0 0 1 0
## 4031 0 0 0 0 0 0 0 0
## 4032 0 0 0 0 0 1 0 0
## 4033 0 0 0 0 1 1 0 0
## 4034 0 0 0 0 0 0 0 0
## 4035 0 0 0 0 1 1 0 0
## 4036 0 0 0 0 1 1 0 0
## 4037 0 0 0 0 0 0 0 0
## 4038 0 1 1 0 0 0 0 0
## 4039 0 1 0 0 0 0 0 0
## 4040 0 0 0 0 0 1 0 0
## 4041 0 0 0 0 0 0 0 0
## 4042 0 1 0 0 0 0 0 0
## 4043 0 0 0 0 0 0 1 0
## 4044 0 1 0 0 0 0 0 0
## 4045 0 0 0 0 0 0 1 0
## 4046 0 0 0 0 0 0 0 0
## 4047 0 1 1 0 0 0 0 0
## 4048 0 0 0 0 0 0 0 0
## 4049 0 1 0 0 0 0 0 0
## 4050 0 1 0 0 0 1 0 0
## 4051 0 0 1 0 0 0 0 0
## 4052 0 1 0 0 0 0 0 0
## 4053 0 0 0 0 0 0 0 0
## 4054 0 1 0 0 0 0 0 0
## 4055 0 0 0 0 1 1 0 0
## 4056 0 0 0 0 0 1 0 0
## 4057 0 0 0 0 0 0 0 0
## 4058 0 0 0 0 0 0 0 0
## 4059 0 0 0 0 0 0 1 0
## 4060 0 0 0 0 0 0 0 0
## 4061 0 0 0 0 0 1 0 0
## 4062 0 0 0 0 0 0 0 0
## 4063 0 1 0 0 0 0 0 0
## 4064 0 1 1 0 0 0 0 0
## 4065 0 0 0 0 0 0 0 0
## 4066 0 1 0 0 0 0 0 0
## 4067 0 0 0 0 0 1 0 0
## 4068 0 0 0 0 0 0 0 0
## 4069 0 0 0 0 1 1 0 0
## 4070 0 0 0 0 0 0 0 0
## 4071 0 0 0 0 0 0 0 0
## 4072 0 0 0 0 0 0 0 0
## 4073 0 0 0 0 0 1 0 0
## 4074 0 0 0 0 0 0 0 0
## 4075 0 0 0 0 0 0 1 0
## 4076 0 1 0 0 0 0 0 0
## 4077 0 1 1 0 0 0 1 0
## 4078 0 1 0 0 0 0 0 0
## 4079 0 1 1 0 0 0 0 0
## 4080 0 0 0 0 0 0 1 0
## 4081 0 0 0 0 0 0 1 0
## 4082 0 1 1 0 0 0 0 0
## 4083 0 1 0 0 0 0 0 0
## 4084 0 1 0 0 0 0 0 0
## 4085 0 1 1 0 0 0 0 0
## 4086 0 0 0 0 0 0 0 0
## 4087 0 1 0 0 0 0 1 0
## 4088 0 1 0 0 0 0 0 0
## 4089 0 1 1 0 0 0 0 0
## 4090 0 1 1 0 0 0 0 0
## 4091 0 1 0 0 0 0 0 0
## 4092 0 1 0 0 0 0 1 0
## 4093 0 1 0 0 0 0 0 0
## 4094 0 1 0 0 0 0 0 0
## 4095 0 1 1 0 0 0 0 0
## 4096 0 1 1 0 0 0 0 0
## 4097 0 1 0 0 0 0 0 0
## 4098 0 1 0 0 0 0 0 0
## 4099 0 1 0 0 0 0 0 0
## 4100 0 1 1 0 0 0 0 0
## 4101 0 1 1 0 0 0 0 0
## 4102 0 1 0 0 0 0 0 0
## 4103 0 1 1 0 0 0 0 0
## 4104 0 1 1 0 0 1 1 0
## 4105 0 1 0 0 0 0 0 0
## 4106 0 1 0 0 0 0 0 0
## 4107 0 1 0 0 0 0 1 0
## 4108 0 0 0 0 0 0 0 0
## 4109 0 1 0 0 0 0 0 0
## 4110 0 1 1 0 0 1 0 0
## 4111 0 1 1 0 0 0 1 0
## 4112 0 1 1 0 0 0 0 0
## 4113 0 1 1 0 0 0 0 0
## 4114 0 1 0 0 0 0 0 0
## 4115 0 1 0 0 0 0 0 0
## 4116 0 1 0 0 0 0 0 0
## 4117 0 1 1 0 0 0 0 0
## 4118 0 1 0 0 0 0 0 0
## 4119 0 1 0 0 0 0 0 0
## 4120 0 1 0 0 0 0 0 0
## 4121 0 1 0 0 0 0 0 0
## 4122 0 1 0 0 0 0 0 0
## 4123 0 1 0 0 0 0 0 0
## 4124 0 1 1 0 0 0 0 0
## 4125 0 1 1 0 0 0 0 0
## 4126 0 1 0 0 0 0 0 0
## 4127 0 1 0 0 0 0 0 0
## 4128 0 1 1 0 0 0 0 0
## 4129 0 0 0 0 0 1 0 0
## 4130 0 1 0 0 0 0 0 0
## 4131 0 0 0 1 1 1 0 0
## 4132 0 1 0 0 0 0 0 0
## 4133 0 1 0 0 0 0 0 0
## 4134 0 0 1 0 1 0 0 0
## 4135 0 0 0 0 0 1 0 0
## 4136 0 0 0 0 0 1 0 0
## 4137 0 0 0 0 0 1 0 0
## 4138 0 0 0 1 1 0 0 0
## 4139 0 0 1 0 1 0 0 0
## 4140 0 1 0 0 0 0 0 0
## 4141 0 1 1 0 0 0 0 0
## 4142 0 0 0 0 0 0 0 0
## 4143 0 0 0 0 0 1 0 0
## 4144 0 0 0 0 1 1 0 0
## 4145 0 0 0 1 1 1 0 0
## 4146 0 0 1 0 0 0 0 0
## 4147 0 0 0 1 1 0 0 0
## 4148 0 0 0 0 0 1 0 0
## 4149 0 0 1 0 1 0 0 0
## 4150 0 1 1 0 0 0 0 0
## 4151 0 0 0 0 0 1 0 0
## 4152 0 1 0 0 0 0 1 0
## 4153 0 0 0 0 0 0 0 0
## 4154 0 0 0 0 1 1 0 0
## 4155 0 0 1 0 1 0 0 0
## 4156 0 1 0 0 0 0 0 0
## 4157 0 1 0 0 0 0 0 0
## 4158 0 0 0 0 0 1 0 0
## 4159 0 0 0 0 0 0 0 0
## 4160 0 1 0 0 0 0 0 0
## 4161 0 0 0 0 0 0 0 0
## 4162 0 0 0 0 0 0 0 0
## 4163 0 1 0 0 0 0 0 0
## 4164 0 1 0 0 0 0 0 0
## 4165 0 0 0 0 0 0 0 0
## 4166 0 0 0 0 0 1 0 0
## Drama Fantasy Film-Noir Horror Musical Mystery Romance Sci-Fi Thriller War
## 1 0 0 0 0 0 0 0 0 0 0
## 2 0 0 0 0 0 0 0 0 1 0
## 3 0 0 0 0 0 0 0 0 1 0
## 4 1 0 0 0 0 0 0 0 0 0
## 5 1 0 0 0 0 0 0 0 1 0
## 6 1 0 0 0 0 0 0 0 0 0
## 7 1 0 0 0 0 0 0 1 0 0
## 8 1 0 0 0 0 0 0 0 0 0
## 9 1 0 0 0 0 0 0 0 0 0
## 10 1 0 0 0 0 0 0 0 0 1
## 11 0 0 0 0 0 0 0 0 1 0
## 12 0 0 0 0 0 0 0 0 1 0
## 13 0 0 0 0 0 0 0 0 0 0
## 14 1 0 0 0 0 0 1 0 0 0
## 15 1 0 0 0 0 0 0 0 0 0
## 16 0 0 0 0 0 0 1 0 0 0
## 17 0 0 0 1 0 0 0 0 1 0
## 18 1 0 0 0 0 0 0 0 0 0
## 19 1 0 0 0 0 0 0 0 0 0
## 20 1 0 0 0 0 0 1 0 0 0
## 21 0 0 0 0 1 0 0 0 1 0
## 22 1 0 0 0 0 0 0 0 0 1
## 23 1 0 0 0 0 0 0 0 1 0
## 24 0 0 0 0 0 0 0 0 0 0
## 25 0 0 0 0 0 0 0 0 0 0
## 26 0 0 0 0 0 0 0 0 0 0
## 27 0 0 0 0 0 0 0 0 0 0
## 28 1 0 0 0 0 0 0 0 1 0
## 29 0 0 0 0 0 0 0 0 0 0
## 30 1 0 0 0 0 0 0 0 0 0
## 31 1 0 0 0 0 0 0 0 1 1
## 32 0 0 0 0 0 0 0 0 0 0
## 33 0 0 0 0 0 0 1 0 1 0
## 34 1 0 0 0 0 0 0 0 0 0
## 35 1 0 0 0 0 0 0 0 0 0
## 36 1 0 0 0 0 0 1 0 0 0
## 37 1 0 0 0 0 0 0 0 0 0
## 38 0 0 0 0 0 0 0 1 1 0
## 39 0 0 0 0 0 0 0 1 0 0
## 40 0 0 0 0 0 0 0 0 0 0
## 41 0 0 0 0 0 0 0 0 0 0
## 42 0 0 0 0 0 0 0 0 0 0
## 43 1 0 0 0 0 0 0 0 1 0
## 44 1 0 0 0 0 0 0 0 1 0
## 45 1 0 0 0 0 0 0 0 0 0
## 46 1 0 0 0 0 0 0 0 0 0
## 47 1 0 0 0 0 0 0 0 0 0
## 48 0 0 0 0 0 0 0 0 0 0
## 49 0 0 0 0 0 0 1 0 0 0
## 50 0 0 0 0 0 0 1 1 0 1
## 51 1 0 0 0 0 0 1 0 0 1
## 52 1 0 0 0 0 0 0 0 0 0
## 53 0 0 0 0 0 0 0 0 1 0
## 54 1 0 0 0 0 0 0 0 1 0
## 55 1 0 0 0 0 0 1 0 1 0
## 56 1 0 0 0 0 0 0 0 0 0
## 57 1 0 0 0 0 0 0 0 0 0
## 58 1 0 0 0 0 0 0 0 0 0
## 59 1 0 0 0 0 0 0 0 0 0
## 60 1 0 0 0 0 0 0 0 0 0
## 61 1 0 0 0 0 0 0 0 0 0
## 62 0 0 0 0 0 0 0 1 0 0
## 63 0 0 0 0 0 0 0 0 0 0
## 64 1 0 0 0 0 0 0 0 0 0
## 65 1 0 0 0 0 0 0 0 0 0
## 66 0 0 0 0 0 0 1 0 0 0
## 67 0 0 0 0 0 0 0 0 0 0
## 68 0 0 0 0 0 0 1 0 1 0
## 69 0 0 0 0 0 0 1 0 0 1
## 70 0 0 0 0 0 0 1 0 0 0
## 71 0 0 0 0 1 0 0 0 0 0
## 72 0 1 0 0 0 0 0 0 0 0
## 73 0 0 0 0 0 0 0 0 0 0
## 74 1 0 0 0 0 0 0 0 0 0
## 75 0 0 0 0 0 0 0 0 0 0
## 76 1 0 0 0 0 0 0 0 0 0
## 77 1 0 0 0 0 0 0 0 1 0
## 78 1 0 0 0 0 0 0 0 0 0
## 79 0 0 0 0 0 0 0 0 1 0
## 80 0 0 0 0 0 0 0 0 0 1
## 81 0 0 0 0 0 0 1 0 0 0
## 82 0 0 0 0 0 0 0 1 0 0
## 83 0 0 0 0 0 0 1 0 0 0
## 84 0 0 0 1 0 0 0 1 0 0
## 85 0 0 0 0 0 0 0 0 0 0
## 86 1 0 0 0 0 0 0 0 0 0
## 87 1 0 0 0 0 0 0 0 0 0
## 88 0 0 0 0 0 0 1 0 0 0
## 89 0 0 1 0 0 0 0 1 0 0
## 90 0 0 0 0 0 0 1 0 1 0
## 91 0 0 0 0 1 0 0 0 0 0
## 92 0 0 0 0 0 0 1 0 0 0
## 93 1 0 0 0 0 0 0 0 0 0
## 94 0 0 0 0 0 0 0 0 0 0
## 95 0 0 0 0 1 0 0 0 0 0
## 96 0 0 0 0 0 0 0 1 1 0
## 97 1 0 0 0 0 0 0 0 0 0
## 98 1 0 0 0 0 0 0 0 1 0
## 99 0 0 0 0 1 0 0 0 0 0
## 100 1 0 0 0 0 0 0 0 1 0
## 101 0 0 0 1 0 0 0 1 0 0
## 102 0 0 0 0 0 0 0 0 0 0
## 103 0 0 0 0 1 0 0 0 0 0
## 104 0 0 0 0 0 0 0 0 0 0
## 105 0 0 0 0 0 0 0 0 0 0
## 106 1 0 0 0 0 0 0 0 1 0
## 107 1 0 0 0 0 0 0 0 0 0
## 108 0 0 0 0 0 0 0 0 0 0
## 109 0 0 0 0 0 0 0 1 0 0
## 110 0 0 0 0 0 0 0 0 0 1
## 111 0 0 0 0 0 0 1 0 0 0
## 112 0 0 0 0 0 0 0 0 0 0
## 113 1 0 0 0 0 0 0 0 0 0
## 114 0 0 0 0 0 0 0 0 0 0
## 115 0 0 0 0 0 0 0 0 0 0
## 116 0 0 0 0 0 0 0 0 0 0
## 117 0 0 0 0 0 0 0 0 1 0
## 118 0 0 0 0 0 0 0 0 1 0
## 119 0 0 0 0 0 0 0 0 0 0
## 120 0 0 0 0 0 0 0 0 0 0
## 121 0 0 0 0 0 0 0 1 0 1
## 122 0 0 0 0 0 0 0 0 0 0
## 123 0 0 0 1 0 0 0 0 0 0
## 124 1 0 0 0 0 1 0 0 0 0
## 125 1 0 0 0 0 0 1 0 0 0
## 126 1 0 0 0 0 0 0 0 0 0
## 127 1 0 0 0 0 0 0 0 0 0
## 128 0 0 0 0 0 0 0 0 1 0
## 129 1 0 0 0 0 0 1 0 1 0
## 130 0 0 0 0 0 0 0 0 0 0
## 131 1 0 0 0 0 0 1 0 0 0
## 132 1 0 0 0 1 0 0 0 0 0
## 133 1 0 0 0 0 0 1 0 0 1
## 134 1 0 0 0 0 0 0 0 0 0
## 135 1 0 0 0 0 1 0 1 1 0
## 136 1 0 0 0 0 0 0 0 0 0
## 137 1 0 0 0 0 0 0 0 0 0
## 138 0 0 0 0 0 0 0 0 0 0
## 139 0 0 0 0 0 0 0 0 0 0
## 140 0 0 0 0 0 0 0 0 0 0
## 141 0 1 0 0 0 0 0 1 0 0
## 142 0 0 0 0 1 0 0 0 0 0
## 143 0 0 0 0 1 0 0 0 0 0
## 144 0 0 0 0 0 0 0 0 1 0
## 145 0 0 0 0 0 0 0 1 1 0
## 146 1 0 0 0 0 0 0 0 0 0
## 147 0 0 0 0 0 0 0 0 1 0
## 148 0 0 0 0 0 0 0 0 0 0
## 149 1 0 0 0 0 0 0 0 0 0
## 150 1 0 0 0 0 0 0 0 0 0
## 151 0 0 0 0 0 0 0 0 0 0
## 152 0 0 0 0 0 0 0 1 0 0
## 153 0 0 0 0 0 0 0 0 0 0
## 154 0 0 0 0 0 0 0 0 0 0
## 155 0 0 0 0 1 0 1 0 0 0
## 156 0 0 0 0 0 0 0 0 1 0
## 157 1 0 0 0 0 0 0 0 0 1
## 158 0 0 0 0 0 0 0 0 0 0
## 159 0 0 0 0 0 1 0 0 1 0
## 160 1 0 0 0 0 0 0 0 0 0
## 161 0 0 0 0 0 0 1 0 0 0
## 162 1 0 0 0 0 0 0 0 0 0
## 163 0 0 0 0 0 0 0 0 0 0
## 164 0 0 0 0 0 0 0 1 1 0
## 165 1 0 0 0 0 0 0 0 0 0
## 166 1 0 0 0 0 0 0 0 0 0
## 167 0 0 0 0 0 0 0 0 0 0
## 168 0 0 0 0 0 0 0 0 0 0
## 169 0 0 0 0 0 0 0 0 0 0
## 170 1 0 0 0 0 0 1 0 0 0
## 171 0 0 0 0 0 0 0 1 0 0
## 172 1 0 0 0 0 0 1 1 0 1
## 173 0 0 0 0 0 0 1 0 0 0
## 174 0 0 0 0 0 0 0 0 0 0
## 175 0 0 0 0 0 0 0 1 0 0
## 176 0 0 0 0 0 0 0 1 1 1
## 177 0 0 0 0 0 0 0 0 0 0
## 178 1 0 0 0 0 0 0 0 0 0
## 179 0 0 0 0 0 0 0 1 0 0
## 180 1 0 0 0 0 0 0 0 0 1
## 181 0 0 0 0 0 0 1 1 0 1
## 182 1 0 0 0 0 0 0 0 0 0
## 183 0 0 0 1 0 0 0 1 1 0
## 184 0 0 0 1 0 0 0 1 0 0
## 185 0 0 0 1 0 0 1 0 1 0
## 186 0 0 0 0 1 0 0 0 0 0
## 187 1 0 0 0 0 0 0 0 0 0
## 188 1 0 0 0 0 0 0 0 0 1
## 189 0 0 0 0 0 0 0 0 0 0
## 190 1 0 0 0 0 0 0 0 0 1
## 191 1 0 0 0 0 1 0 0 0 0
## 192 1 0 0 0 0 0 0 0 0 0
## 193 1 0 0 0 0 0 0 0 0 0
## 194 0 0 0 0 0 0 0 0 0 0
## 195 0 0 0 0 0 0 0 1 1 0
## 196 1 0 0 0 0 0 0 0 0 0
## 197 1 0 0 0 0 0 1 0 0 0
## 198 0 0 0 0 0 0 0 0 1 0
## 199 1 0 0 0 0 0 0 0 0 1
## 200 0 0 0 1 0 0 0 0 0 0
## 201 0 0 0 1 0 0 0 0 0 0
## 202 0 0 0 0 0 0 1 0 0 0
## 203 0 0 0 0 0 0 0 0 0 0
## 204 0 0 0 0 0 0 0 1 0 0
## 205 1 0 0 0 0 0 0 0 0 1
## 206 0 0 0 0 0 0 0 1 1 0
## 207 1 0 0 0 0 0 1 0 0 0
## 208 0 0 0 1 0 0 0 0 0 0
## 209 1 0 0 0 1 0 0 0 0 0
## 210 0 0 0 0 0 0 0 0 0 0
## 211 0 0 0 0 0 0 0 0 0 1
## 212 1 0 0 0 0 0 0 0 0 0
## 213 1 0 0 0 0 0 1 0 0 0
## 214 1 0 0 0 1 0 0 0 0 1
## 215 1 0 0 0 0 0 0 0 0 0
## 216 0 0 0 0 0 0 1 0 0 0
## 217 0 0 0 1 0 0 1 0 0 0
## 218 0 0 0 0 0 0 0 0 1 0
## 219 0 0 0 1 0 0 0 0 0 0
## 220 0 0 0 0 0 0 1 0 0 0
## 221 1 0 0 0 0 0 0 0 0 0
## 222 0 0 0 0 0 0 0 1 0 0
## 223 1 0 0 0 0 0 0 0 1 0
## 224 1 0 0 0 0 0 0 0 0 0
## 225 0 0 0 0 0 0 0 0 0 0
## 226 0 0 0 0 0 0 0 0 1 0
## 227 0 0 0 0 0 0 0 1 0 0
## 228 0 0 0 0 0 0 0 1 0 0
## 229 0 0 0 0 0 0 0 1 0 0
## 230 0 0 0 0 0 0 0 1 0 0
## 231 0 0 0 0 0 0 0 0 0 0
## 232 0 0 0 0 0 0 0 0 0 0
## 233 0 0 0 0 0 0 0 0 0 0
## 234 0 0 0 1 0 0 0 0 0 0
## 235 0 0 0 0 0 0 0 1 0 1
## 236 1 0 0 0 0 0 0 0 0 0
## 237 1 0 0 0 0 0 1 0 0 0
## 238 0 0 0 0 0 0 0 0 0 0
## 239 1 0 0 0 0 0 0 1 0 0
## 240 0 0 0 0 0 0 0 0 0 0
## 241 0 0 0 0 0 0 1 0 0 1
## 242 0 0 0 0 0 0 0 0 0 0
## 243 0 0 0 0 0 0 0 0 0 0
## 244 1 0 0 0 0 0 0 0 1 0
## 245 1 0 0 0 0 0 0 0 1 1
## 246 1 0 0 0 0 0 1 0 0 0
## 247 0 0 0 0 0 0 0 0 0 0
## 248 0 0 0 0 0 0 0 0 0 0
## 249 0 0 0 0 0 0 0 0 0 0
## 250 0 0 0 0 0 0 0 1 0 0
## 251 0 0 0 0 0 0 0 0 0 0
## 252 0 0 0 0 0 0 0 1 1 0
## 253 1 0 0 0 0 0 1 0 0 0
## 254 0 0 0 0 0 0 0 0 0 0
## 255 0 0 0 0 0 0 1 0 0 0
## 256 0 0 0 0 0 0 1 0 0 0
## 257 0 0 0 0 0 0 0 1 0 0
## 258 1 0 0 0 0 0 0 1 0 0
## 259 0 0 0 0 0 0 0 0 0 0
## 260 0 0 0 0 0 1 0 1 1 0
## 261 0 0 0 0 0 0 0 0 0 0
## 262 1 0 0 0 0 0 0 0 0 0
## 263 0 0 0 0 0 0 0 0 0 0
## 264 0 0 0 0 0 0 0 1 1 0
## 265 0 0 0 0 0 0 0 0 1 0
## 266 0 0 0 0 0 0 0 0 0 0
## 267 0 0 0 0 0 0 0 0 0 0
## 268 0 0 0 0 0 0 0 0 0 0
## 269 1 0 0 0 0 0 0 1 1 0
## 270 0 0 0 0 0 0 0 1 0 1
## 271 1 0 0 0 0 0 0 0 0 0
## 272 0 0 0 0 0 0 0 0 0 0
## 273 1 0 0 0 0 0 0 0 0 1
## 274 0 0 0 0 0 0 0 0 0 0
## 275 1 0 0 0 0 0 1 0 0 0
## 276 1 0 0 0 0 0 0 0 0 0
## 277 0 0 0 0 0 0 0 0 0 0
## 278 0 0 0 0 0 0 1 1 0 1
## 279 1 0 0 0 0 0 0 0 1 0
## 280 0 0 0 0 0 0 1 0 0 0
## 281 1 0 0 0 0 0 0 0 0 0
## 282 1 0 0 0 0 0 1 0 0 0
## 283 0 0 0 0 0 0 0 0 0 0
## 284 0 0 0 0 0 0 0 0 0 0
## 285 0 0 0 0 0 0 1 0 0 0
## 286 0 0 0 0 0 0 0 1 0 0
## 287 1 0 0 0 0 0 0 1 0 0
## 288 0 0 0 0 0 0 0 0 0 0
## 289 1 0 0 0 0 0 0 0 0 0
## 290 0 0 0 0 0 0 0 0 1 0
## 291 0 0 0 0 0 0 1 0 0 0
## 292 1 0 0 0 0 0 1 0 0 0
## 293 1 0 0 0 0 0 1 0 0 0
## 294 1 0 0 0 0 0 0 0 0 0
## 295 1 0 0 0 0 0 1 0 0 0
## 296 1 0 0 0 0 0 0 0 0 0
## 297 1 0 0 0 0 0 1 0 0 0
## 298 0 0 0 0 0 0 0 0 1 0
## 299 1 0 0 0 0 0 0 0 0 0
## 300 1 0 0 0 0 0 1 0 0 0
## 301 0 0 0 0 0 0 1 0 0 0
## 302 1 0 0 0 0 0 0 0 0 0
## 303 1 0 0 0 0 0 1 0 0 1
## 304 1 0 0 0 0 0 0 0 0 0
## 305 0 0 0 1 0 0 0 0 1 0
## 306 1 0 0 0 1 0 0 0 0 0
## 307 0 0 0 0 0 0 0 0 0 0
## 308 0 0 0 0 0 1 0 0 1 0
## 309 1 0 0 0 0 0 0 0 0 0
## 310 1 0 0 0 0 0 0 0 0 0
## 311 0 0 0 0 0 0 0 0 0 0
## 312 0 0 0 0 0 0 0 0 1 0
## 313 1 0 0 0 0 0 0 0 0 0
## 314 1 0 0 0 0 0 0 0 0 0
## 315 0 0 0 0 0 0 0 1 1 0
## 316 1 0 1 0 0 0 0 0 0 0
## 317 0 0 0 0 0 0 0 0 1 0
## 318 0 0 0 0 0 0 0 0 0 0
## 319 0 0 1 0 0 1 0 0 1 0
## 320 0 0 0 0 0 0 0 0 0 0
## 321 1 0 0 0 0 0 0 0 0 0
## 322 1 0 0 0 0 0 1 0 0 0
## 323 0 0 0 1 0 1 0 0 1 0
## 324 1 1 0 0 0 0 0 0 0 0
## 325 0 0 0 0 0 0 0 0 0 0
## 326 1 0 0 0 0 0 0 0 0 0
## 327 1 0 0 0 0 0 1 0 1 0
## 328 1 0 0 0 0 1 0 0 0 0
## 329 1 0 0 0 0 0 1 0 0 0
## 330 0 0 0 0 0 0 0 0 0 0
## 331 1 0 0 0 0 0 0 0 1 0
## 332 1 0 0 0 0 0 0 0 0 0
## 333 0 0 0 0 0 0 1 1 0 1
## 334 1 0 0 0 0 0 0 0 1 1
## 335 1 0 0 0 0 0 0 1 0 0
## 336 0 0 0 0 0 1 0 1 1 0
## 337 0 0 0 0 0 0 0 1 1 0
## 338 0 0 0 0 0 0 0 1 0 1
## 339 1 0 0 0 0 0 0 0 0 0
## 340 0 0 0 1 0 0 0 0 1 0
## 341 0 0 0 0 0 0 0 0 0 0
## 342 1 0 1 0 0 0 0 0 0 0
## 343 0 0 0 0 0 0 0 0 1 0
## 344 0 0 1 0 0 1 0 0 1 0
## 345 0 0 0 1 0 1 0 0 1 0
## 346 1 0 0 0 0 0 0 0 0 0
## 347 1 0 0 0 0 0 0 0 0 1
## 348 0 0 0 0 1 0 1 0 0 0
## 349 0 0 0 0 0 0 0 0 0 0
## 350 0 0 0 0 0 0 0 0 0 0
## 351 0 0 0 0 0 1 0 0 1 0
## 352 0 0 0 0 0 0 0 0 1 0
## 353 0 0 0 0 0 1 0 0 0 0
## 354 1 0 0 0 0 0 0 0 1 0
## 355 1 0 0 0 0 0 0 0 0 1
## 356 1 0 0 0 0 1 0 0 0 0
## 357 0 0 0 0 0 1 1 0 1 0
## 358 1 0 0 0 0 0 0 0 1 0
## 359 1 0 0 0 0 0 0 0 0 0
## 360 0 0 0 0 0 0 0 0 1 0
## 361 1 0 0 0 0 0 0 0 1 0
## 362 0 0 0 0 0 1 0 0 1 0
## 363 0 0 0 0 0 1 0 0 0 0
## 364 0 0 0 0 0 0 0 0 0 0
## 365 0 0 0 0 0 0 0 0 1 0
## 366 1 0 0 0 0 0 0 0 1 0
## 367 0 0 0 0 0 0 0 0 0 0
## 368 1 0 0 0 0 0 0 0 0 0
## 369 1 0 0 0 0 0 0 0 0 0
## 370 0 0 0 0 0 0 0 0 0 0
## 371 0 0 0 0 0 1 0 0 0 0
## 372 0 0 0 1 0 0 0 1 0 0
## 373 1 0 0 0 0 0 0 0 0 0
## 374 1 0 0 0 0 0 0 0 0 0
## 375 1 0 0 0 0 0 0 0 0 0
## 376 1 0 0 0 0 0 0 0 0 0
## 377 0 0 0 0 0 0 0 0 1 0
## 378 0 0 0 0 0 1 0 0 1 0
## 379 0 0 0 1 0 0 0 0 0 0
## 380 0 0 0 0 1 0 0 0 0 0
## 381 0 0 0 1 0 0 0 1 0 0
## 382 0 0 0 0 0 0 1 0 0 0
## 383 0 0 0 0 0 0 0 1 1 0
## 384 0 0 0 0 0 0 0 0 1 0
## 385 0 0 0 0 0 0 1 1 0 1
## 386 0 0 0 0 0 0 0 0 0 0
## 387 1 0 0 0 0 0 0 1 0 0
## 388 0 0 0 0 0 1 0 1 1 0
## 389 0 0 0 0 0 0 0 1 1 0
## 390 0 0 0 0 0 0 0 1 0 1
## 391 0 0 0 1 0 0 0 0 1 0
## 392 0 0 0 0 0 0 0 0 0 0
## 393 0 0 0 0 0 0 0 0 1 0
## 394 0 0 0 0 0 0 0 0 0 0
## 395 0 0 0 0 0 1 0 0 0 0
## 396 1 0 0 0 0 1 0 0 0 0
## 397 0 0 0 0 0 1 1 0 1 0
## 398 1 0 0 0 0 0 0 0 1 0
## 399 0 0 0 0 0 0 1 0 0 0
## 400 1 0 0 0 0 1 0 0 1 0
## 401 1 0 0 0 0 0 0 0 0 0
## 402 0 0 0 0 0 0 0 1 1 0
## 403 0 0 0 0 0 0 0 0 1 0
## 404 0 0 0 0 0 0 0 0 0 0
## 405 0 0 0 0 0 0 0 0 1 0
## 406 0 0 0 0 1 0 0 0 0 0
## 407 0 0 0 0 0 0 0 0 0 0
## 408 0 0 0 0 0 0 0 0 1 0
## 409 0 0 0 1 0 0 0 0 1 0
## 410 0 0 0 0 1 0 0 0 1 0
## 411 0 0 0 0 0 0 0 0 0 0
## 412 0 0 0 0 0 0 0 0 0 0
## 413 0 0 0 0 0 0 0 0 0 0
## 414 0 0 0 0 0 0 0 0 0 0
## 415 0 0 0 0 0 0 0 0 0 0
## 416 0 0 0 0 0 0 1 1 0 1
## 417 0 0 0 0 0 0 0 1 0 0
## 418 0 0 0 0 0 0 0 0 0 0
## 419 0 0 0 0 0 0 1 0 0 0
## 420 0 0 0 0 0 0 1 0 0 1
## 421 0 0 0 0 0 0 1 0 0 0
## 422 0 0 0 0 0 0 0 0 1 0
## 423 0 0 0 0 0 0 0 0 0 1
## 424 0 0 1 0 0 0 0 1 0 0
## 425 0 0 0 0 0 0 1 0 1 0
## 426 0 0 0 0 0 0 0 0 0 0
## 427 0 0 0 0 1 0 0 0 0 0
## 428 1 0 0 0 0 0 0 0 1 0
## 429 0 0 0 0 1 0 0 0 0 0
## 430 1 0 0 0 0 0 0 0 1 0
## 431 0 0 0 1 0 0 0 1 0 0
## 432 0 0 0 0 0 0 0 0 0 0
## 433 0 0 0 0 0 0 0 0 0 0
## 434 0 0 0 0 0 0 0 1 0 0
## 435 0 0 0 0 0 0 0 0 0 1
## 436 0 0 0 0 0 0 0 1 0 1
## 437 1 0 0 0 0 1 0 1 1 0
## 438 0 0 0 0 0 0 0 0 0 0
## 439 0 0 0 0 1 0 0 0 0 0
## 440 0 0 0 0 0 0 0 0 1 0
## 441 0 0 0 0 0 0 0 1 1 0
## 442 0 0 0 0 0 0 0 0 0 0
## 443 0 0 0 0 0 0 0 0 0 0
## 444 0 0 0 0 0 0 0 0 0 0
## 445 1 0 0 0 0 0 0 0 0 0
## 446 0 0 0 0 0 0 0 0 0 0
## 447 0 0 0 0 0 0 0 0 0 0
## 448 0 0 0 0 0 0 0 0 0 0
## 449 0 0 0 0 0 0 0 0 0 0
## 450 1 0 0 0 0 0 1 1 0 1
## 451 0 0 0 0 0 0 1 0 0 0
## 452 0 0 0 0 0 0 0 0 0 0
## 453 0 0 0 0 0 0 0 1 1 1
## 454 0 0 0 0 0 0 1 1 0 1
## 455 0 0 0 1 0 0 0 1 1 0
## 456 0 0 0 1 0 0 1 0 1 0
## 457 0 0 0 0 1 0 0 0 0 0
## 458 0 0 0 0 0 0 0 0 0 0
## 459 0 0 0 0 0 0 0 0 0 0
## 460 0 0 0 1 0 0 0 0 0 0
## 461 0 0 0 0 0 0 0 1 0 0
## 462 0 0 0 1 0 0 0 0 0 0
## 463 1 0 0 0 1 0 0 0 0 0
## 464 0 0 0 0 0 0 0 0 0 0
## 465 0 0 0 0 0 0 0 0 0 1
## 466 1 0 0 0 1 0 0 0 0 1
## 467 0 0 0 0 0 0 1 0 0 0
## 468 0 0 0 1 0 0 0 0 0 0
## 469 0 0 0 0 0 0 0 1 0 0
## 470 0 0 0 0 0 0 0 0 0 0
## 471 0 0 0 0 0 0 0 0 1 0
## 472 0 0 0 0 0 0 0 1 0 0
## 473 0 0 0 0 0 0 0 1 0 0
## 474 0 0 0 0 0 0 0 1 0 0
## 475 0 0 0 0 0 0 0 1 0 0
## 476 0 0 0 0 0 0 0 0 0 0
## 477 0 0 0 0 0 0 0 0 0 0
## 478 0 0 0 1 0 0 0 0 0 0
## 479 0 0 0 0 0 0 0 1 0 1
## 480 1 0 0 0 0 0 0 1 0 0
## 481 0 0 0 0 0 0 1 0 0 1
## 482 0 0 0 0 0 0 0 0 0 0
## 483 0 0 0 0 0 0 0 1 0 0
## 484 0 0 0 0 0 0 0 1 0 0
## 485 0 0 0 0 0 0 0 0 0 0
## 486 0 0 0 0 0 0 0 0 0 0
## 487 0 0 0 0 0 0 0 0 0 0
## 488 0 0 0 0 0 0 0 0 0 0
## 489 1 0 0 0 0 0 0 0 0 0
## 490 1 0 0 0 0 0 0 0 0 0
## 491 0 0 0 0 0 0 0 0 0 0
## 492 0 0 0 0 0 0 0 0 0 0
## 493 0 0 0 0 0 0 0 0 0 0
## 494 1 0 0 0 0 0 0 0 1 0
## 495 1 0 0 0 0 0 1 0 0 0
## 496 0 0 0 0 0 0 0 0 0 0
## 497 0 0 0 0 0 0 0 1 0 0
## 498 0 0 0 0 0 0 0 0 0 0
## 499 1 0 0 0 0 0 0 0 0 0
## 500 0 0 0 0 0 0 0 0 0 0
## 501 0 0 0 0 0 0 0 0 0 0
## 502 1 0 0 0 0 0 0 0 0 0
## 503 0 0 0 1 0 0 0 0 0 0
## 504 0 0 0 0 0 0 0 1 0 0
## 505 0 0 0 0 0 0 1 0 0 0
## 506 1 0 0 0 0 0 0 0 0 0
## 507 0 0 0 0 0 0 0 0 0 0
## 508 0 0 0 0 0 0 0 0 0 0
## 509 0 0 0 0 0 0 1 0 0 0
## 510 0 0 0 0 0 0 0 0 0 0
## 511 1 0 0 0 0 0 0 0 0 0
## 512 0 0 0 0 0 0 0 0 0 0
## 513 0 0 0 0 0 0 0 0 0 0
## 514 0 0 0 0 0 0 0 0 0 0
## 515 0 0 0 0 0 0 0 0 0 0
## 516 1 0 0 0 0 0 0 0 0 0
## 517 0 0 0 0 0 0 0 0 0 0
## 518 0 0 0 0 0 1 1 0 0 0
## 519 0 0 0 0 0 0 0 0 0 0
## 520 0 0 0 1 0 0 0 0 0 0
## 521 0 0 0 0 0 0 0 0 0 0
## 522 0 0 0 0 0 0 0 1 0 0
## 523 0 0 0 0 0 0 0 0 0 0
## 524 0 0 0 0 0 0 0 0 0 0
## 525 0 0 0 0 0 0 0 0 0 0
## 526 0 0 0 0 0 0 1 0 1 0
## 527 1 0 0 0 0 0 0 0 0 0
## 528 0 0 0 0 0 0 0 0 0 0
## 529 0 0 0 0 0 1 0 0 0 0
## 530 0 0 0 1 0 0 0 0 1 0
## 531 0 0 0 0 0 0 0 0 0 0
## 532 0 0 0 0 0 0 0 0 1 0
## 533 1 0 0 0 0 0 0 0 0 0
## 534 0 0 0 0 0 0 0 0 0 0
## 535 0 1 0 0 0 0 1 1 0 0
## 536 0 0 0 0 0 0 0 0 0 0
## 537 0 0 0 1 0 0 0 0 0 0
## 538 0 0 0 0 0 0 0 0 0 0
## 539 0 0 0 0 0 0 0 0 0 0
## 540 1 0 0 0 0 0 0 0 0 0
## 541 1 0 0 0 0 0 0 0 0 0
## 542 0 0 0 0 1 0 0 0 0 0
## 543 0 0 0 0 1 0 0 0 0 0
## 544 0 0 0 0 1 0 0 0 0 0
## 545 1 0 0 0 0 0 1 0 0 0
## 546 0 0 0 0 0 0 0 0 0 0
## 547 1 1 0 0 0 0 0 1 0 0
## 548 0 0 0 1 0 0 0 0 0 0
## 549 0 0 0 0 0 0 0 0 0 0
## 550 0 0 0 0 0 0 0 1 1 1
## 551 1 0 0 0 0 0 0 0 0 0
## 552 0 0 0 0 0 0 0 0 0 0
## 553 1 0 0 0 0 0 0 1 0 0
## 554 0 0 0 0 0 0 0 0 0 1
## 555 0 0 0 0 0 0 0 0 0 0
## 556 0 0 0 0 1 0 0 0 0 0
## 557 0 0 0 0 0 0 0 0 0 0
## 558 0 0 0 0 0 0 0 1 0 0
## 559 0 0 0 0 0 0 0 0 0 0
## 560 0 0 0 1 0 0 0 0 0 0
## 561 0 0 0 1 0 0 0 0 0 0
## 562 0 0 0 1 0 0 0 0 0 0
## 563 0 0 0 1 0 0 0 0 0 0
## 564 0 0 0 1 0 0 0 0 0 0
## 565 0 0 0 1 0 0 0 0 0 0
## 566 0 0 0 1 0 0 0 0 0 0
## 567 0 0 0 1 0 0 0 0 0 0
## 568 0 0 0 1 0 0 0 1 0 0
## 569 0 0 0 1 0 0 0 0 0 0
## 570 0 0 0 1 0 0 0 0 0 0
## 571 0 0 0 1 0 0 0 0 0 0
## 572 0 0 0 1 0 0 0 0 0 0
## 573 0 0 0 0 0 0 0 1 0 0
## 574 0 0 0 0 0 0 0 1 0 0
## 575 0 0 0 0 1 0 1 0 0 0
## 576 0 0 0 1 0 0 0 0 0 0
## 577 0 0 0 1 0 0 0 0 0 0
## 578 1 0 0 0 0 0 0 0 0 0
## 579 0 0 0 0 0 0 0 0 0 0
## 580 0 0 0 0 0 0 0 0 0 0
## 581 1 0 0 0 0 0 0 0 0 0
## 582 0 0 0 0 0 0 0 0 0 0
## 583 1 0 0 0 0 0 0 1 0 0
## 584 1 0 0 0 0 0 0 0 0 0
## 585 1 0 0 0 0 0 0 0 0 0
## 586 0 0 0 0 0 0 0 0 1 0
## 587 0 0 0 0 0 0 0 0 0 0
## 588 1 0 0 0 0 0 1 0 0 0
## 589 1 0 0 0 0 0 0 0 0 0
## 590 1 0 0 0 0 0 0 0 0 0
## 591 0 0 0 0 1 0 0 0 1 0
## 592 1 0 0 0 0 0 0 0 0 1
## 593 1 0 0 0 0 0 0 0 1 0
## 594 1 0 0 0 0 0 0 0 1 0
## 595 0 0 0 0 0 0 0 0 0 0
## 596 1 0 0 0 0 0 0 0 0 0
## 597 0 0 0 0 0 0 1 1 0 1
## 598 1 0 0 0 0 0 0 0 0 0
## 599 1 0 0 0 0 0 0 0 0 0
## 600 1 0 0 0 0 0 0 0 0 0
## 601 0 0 0 0 0 0 1 0 0 1
## 602 0 0 0 0 0 0 1 0 0 0
## 603 0 0 0 0 1 0 0 0 0 0
## 604 0 0 0 0 0 0 0 0 1 0
## 605 0 0 0 0 0 0 1 0 0 0
## 606 1 0 0 0 0 0 0 0 0 0
## 607 1 0 0 0 0 0 0 0 0 0
## 608 0 0 1 0 0 0 0 1 0 0
## 609 0 0 0 0 1 0 0 0 0 0
## 610 1 0 0 0 0 0 0 0 1 0
## 611 1 0 0 0 0 0 0 0 1 0
## 612 0 0 0 0 0 0 1 0 0 0
## 613 0 0 0 0 0 0 0 0 1 0
## 614 1 0 0 0 0 1 0 0 0 0
## 615 1 0 0 0 0 0 1 0 0 0
## 616 1 0 0 0 0 0 0 0 0 0
## 617 1 0 0 0 0 0 1 0 0 0
## 618 1 0 0 0 1 0 0 0 0 0
## 619 1 0 0 0 0 0 1 0 0 1
## 620 1 0 0 0 0 0 0 0 0 0
## 621 1 0 0 0 0 1 0 1 1 0
## 622 1 0 0 0 0 0 0 0 0 0
## 623 1 0 0 0 0 0 0 0 0 0
## 624 0 0 0 0 1 0 0 0 0 0
## 625 0 0 0 0 0 0 0 0 0 0
## 626 0 0 0 0 0 0 0 0 0 0
## 627 0 0 0 0 0 0 0 0 0 0
## 628 0 0 0 0 0 0 0 0 1 0
## 629 1 0 0 0 0 0 0 0 0 0
## 630 1 0 0 0 0 0 0 0 0 0
## 631 0 0 0 0 0 0 0 0 0 0
## 632 0 0 0 0 0 0 0 0 0 0
## 633 1 0 0 0 0 0 1 0 0 0
## 634 0 0 0 0 0 0 1 0 0 0
## 635 0 0 0 0 0 0 0 0 0 0
## 636 0 0 0 0 0 0 0 1 0 0
## 637 0 0 0 0 0 0 0 0 0 0
## 638 1 0 0 0 0 0 0 0 0 0
## 639 1 0 0 0 0 0 0 0 0 1
## 640 1 0 0 0 0 0 0 0 0 0
## 641 0 0 0 1 0 0 0 1 1 0
## 642 0 0 0 1 0 0 1 0 1 0
## 643 0 0 0 0 1 0 0 0 0 0
## 644 1 0 0 0 0 0 0 0 0 0
## 645 1 0 0 0 0 0 0 0 0 1
## 646 0 0 0 0 0 0 0 0 0 0
## 647 1 0 0 0 0 1 0 0 0 0
## 648 1 0 0 0 0 0 0 0 0 0
## 649 1 0 0 0 0 0 0 0 0 0
## 650 0 0 0 0 0 0 0 0 0 0
## 651 0 0 0 0 0 0 0 1 1 0
## 652 1 0 0 0 0 0 1 0 0 0
## 653 1 0 0 0 0 0 0 0 0 1
## 654 0 0 0 1 0 0 0 0 0 0
## 655 0 0 0 0 0 0 1 0 0 0
## 656 0 0 0 0 0 0 0 0 0 0
## 657 0 0 0 0 0 0 0 1 0 0
## 658 1 0 0 0 0 0 0 0 0 1
## 659 0 0 0 1 0 0 0 0 0 0
## 660 1 0 0 0 1 0 0 0 0 0
## 661 0 0 0 0 0 0 0 0 0 1
## 662 1 0 0 0 0 0 1 0 0 0
## 663 0 0 0 0 0 0 1 0 0 0
## 664 1 0 0 0 0 0 0 0 0 0
## 665 1 0 0 0 0 0 0 0 1 0
## 666 1 0 0 0 0 0 1 0 0 0
## 667 0 0 0 0 0 0 0 0 0 0
## 668 0 0 0 0 0 0 0 0 0 0
## 669 1 0 0 0 0 0 1 0 0 0
## 670 0 0 0 0 0 0 0 0 0 0
## 671 0 0 0 0 0 0 0 1 0 0
## 672 1 0 0 0 0 0 0 1 0 0
## 673 0 0 0 0 0 0 0 0 0 0
## 674 0 0 0 0 0 0 0 0 0 0
## 675 0 0 0 0 0 0 0 0 0 0
## 676 1 0 0 0 0 0 0 0 0 0
## 677 0 0 0 0 0 0 1 0 0 0
## 678 1 0 0 0 0 0 1 0 0 0
## 679 1 0 0 0 0 0 1 0 0 0
## 680 0 0 0 0 0 0 1 0 0 0
## 681 1 0 0 0 0 0 0 0 0 0
## 682 1 0 0 0 0 0 1 0 0 1
## 683 1 0 0 0 0 0 0 0 0 0
## 684 0 0 0 0 0 0 0 0 0 0
## 685 1 0 0 0 0 0 0 0 0 0
## 686 0 0 0 0 0 0 0 1 1 0
## 687 0 0 0 0 0 0 0 0 0 0
## 688 0 0 1 0 0 1 0 0 1 0
## 689 0 0 0 0 0 0 0 0 0 0
## 690 1 0 0 0 0 0 1 0 0 0
## 691 1 1 0 0 0 0 0 0 0 0
## 692 0 0 0 0 0 0 0 0 0 0
## 693 1 0 0 0 0 0 0 0 0 0
## 694 1 0 0 0 0 0 0 0 0 0
## 695 1 0 0 0 0 0 0 0 0 1
## 696 0 0 0 0 0 0 0 0 0 0
## 697 1 0 0 0 0 0 0 0 0 0
## 698 1 0 0 0 0 0 0 0 0 0
## 699 0 0 0 0 0 0 0 0 0 0
## 700 0 0 0 0 0 1 0 0 0 0
## 701 0 0 0 0 0 0 0 0 1 0
## 702 0 0 0 0 0 0 0 0 0 0
## 703 0 0 0 0 1 0 0 0 0 0
## 704 1 1 0 0 0 0 0 1 0 0
## 705 0 0 0 0 0 0 0 0 0 0
## 706 1 0 0 0 0 0 0 0 0 0
## 707 0 0 0 0 1 0 0 0 0 0
## 708 0 0 0 0 0 0 0 0 0 0
## 709 1 0 0 0 0 0 0 0 0 0
## 710 1 0 0 0 0 0 0 0 0 0
## 711 1 0 0 0 0 0 0 0 0 0
## 712 1 0 0 0 0 0 0 0 0 0
## 713 1 0 0 0 0 0 1 0 0 0
## 714 0 0 0 0 0 0 0 0 0 0
## 715 1 0 0 0 0 0 0 0 0 0
## 716 0 0 0 0 0 0 1 0 0 0
## 717 0 0 0 0 0 0 0 0 1 0
## 718 1 0 0 0 0 0 0 0 0 0
## 719 1 0 0 0 0 0 0 0 0 0
## 720 1 0 0 0 0 0 0 0 0 0
## 721 0 0 0 0 0 0 0 0 0 0
## 722 1 0 0 0 0 0 0 0 0 1
## 723 0 1 0 0 0 0 0 0 0 0
## 724 0 0 0 0 1 0 0 0 0 0
## 725 0 0 0 0 0 0 0 1 0 1
## 726 1 0 0 0 0 0 0 0 0 0
## 727 0 0 0 0 0 0 0 0 0 0
## 728 0 0 0 0 0 0 0 0 0 0
## 729 0 0 0 0 0 0 1 0 0 0
## 730 0 0 0 0 0 1 0 0 1 0
## 731 0 0 0 0 0 0 0 0 1 0
## 732 1 0 0 0 0 0 0 0 0 0
## 733 0 0 0 0 0 0 0 0 0 0
## 734 1 0 0 0 0 0 1 0 0 1
## 735 0 0 1 0 0 1 0 0 0 0
## 736 0 0 0 0 1 0 1 0 0 0
## 737 0 0 0 0 0 0 1 0 0 0
## 738 0 0 0 0 0 0 1 0 0 0
## 739 0 0 1 0 0 0 0 0 0 0
## 740 0 0 1 0 0 0 1 0 1 0
## 741 0 0 0 0 0 0 1 0 1 0
## 742 0 0 0 0 0 0 0 0 0 0
## 743 1 0 0 0 0 0 0 0 0 0
## 744 0 0 0 0 0 1 0 0 0 0
## 745 0 0 0 0 0 0 0 0 0 0
## 746 0 0 0 0 0 0 0 0 0 0
## 747 1 0 0 0 0 0 0 0 0 0
## 748 0 0 0 0 0 0 0 0 0 0
## 749 0 0 0 0 0 0 1 0 0 1
## 750 1 0 0 0 0 0 0 0 0 0
## 751 0 0 0 0 1 0 0 0 0 0
## 752 0 0 0 0 0 0 0 0 0 1
## 753 1 0 0 0 0 0 0 0 0 0
## 754 1 0 0 0 0 0 0 0 0 0
## 755 0 0 0 0 0 1 0 0 1 0
## 756 1 0 0 0 0 0 0 0 0 0
## 757 1 0 0 0 0 0 0 0 0 0
## 758 1 0 0 0 0 0 0 0 0 0
## 759 1 0 0 0 0 0 0 0 0 0
## 760 1 0 0 0 0 0 0 0 0 0
## 761 0 0 0 0 0 0 0 0 0 1
## 762 1 0 0 0 0 0 1 0 0 0
## 763 0 0 0 0 0 1 0 0 1 0
## 764 0 0 0 0 0 0 1 0 0 0
## 765 1 0 0 0 0 0 0 0 0 1
## 766 0 0 0 0 0 0 0 0 0 0
## 767 1 0 0 0 0 0 1 0 0 0
## 768 1 0 0 0 0 0 0 0 0 0
## 769 0 0 0 0 0 0 0 0 0 0
## 770 0 0 0 0 0 0 0 0 0 1
## 771 1 0 0 0 0 0 0 0 0 1
## 772 1 0 0 0 0 0 0 0 0 0
## 773 1 0 0 0 0 0 0 0 0 0
## 774 0 0 0 0 0 0 0 0 0 0
## 775 0 0 1 0 0 1 0 0 0 0
## 776 1 0 0 0 0 0 0 0 0 0
## 777 1 0 0 0 0 0 0 0 0 0
## 778 1 0 0 0 0 0 0 0 0 1
## 779 1 0 0 0 0 0 0 0 0 0
## 780 0 0 0 0 0 0 0 0 0 0
## 781 1 0 0 0 0 0 1 0 0 0
## 782 0 0 0 0 0 0 1 0 0 0
## 783 0 0 0 0 0 1 0 0 0 0
## 784 1 0 0 0 0 0 0 0 0 0
## 785 0 0 0 0 0 0 1 0 0 0
## 786 1 0 0 0 0 0 0 0 0 0
## 787 1 0 0 0 0 0 0 0 0 0
## 788 0 0 0 0 1 0 0 0 0 0
## 789 0 0 0 0 0 0 0 0 0 0
## 790 1 0 0 0 0 0 0 0 0 0
## 791 1 0 0 0 0 0 0 1 0 0
## 792 1 0 0 0 0 0 0 0 0 0
## 793 1 0 0 0 0 0 0 0 0 0
## 794 1 0 0 0 0 0 0 0 0 1
## 795 0 0 0 0 0 0 0 0 1 0
## 796 0 0 0 0 0 0 0 0 1 0
## 797 1 0 0 0 0 0 0 0 0 1
## 798 1 0 0 0 0 0 0 0 1 0
## 799 0 0 0 0 0 0 0 0 0 0
## 800 0 0 0 0 0 0 0 0 0 0
## 801 1 0 0 0 0 0 0 0 1 0
## 802 0 0 0 0 0 0 0 0 0 0
## 803 1 0 0 0 0 0 0 0 1 1
## 804 0 0 0 0 0 0 0 0 0 0
## 805 0 0 0 0 0 0 0 1 0 0
## 806 1 0 0 0 0 0 0 0 1 0
## 807 1 0 0 0 0 0 0 0 0 0
## 808 0 0 0 0 0 0 1 1 0 1
## 809 1 0 0 0 0 0 1 0 0 1
## 810 1 0 0 0 0 0 0 0 0 0
## 811 0 0 0 0 0 0 0 0 1 0
## 812 1 0 0 0 0 0 0 0 1 0
## 813 1 0 0 0 0 0 0 0 0 0
## 814 0 0 0 0 0 0 0 1 0 0
## 815 1 0 0 0 0 0 0 0 0 0
## 816 0 0 0 0 0 0 1 0 1 0
## 817 0 0 0 0 0 0 1 0 0 1
## 818 0 0 0 0 0 0 1 0 0 0
## 819 0 0 0 0 1 0 0 0 0 0
## 820 0 1 0 0 0 0 0 0 0 0
## 821 0 0 0 0 0 0 0 0 0 0
## 822 1 0 0 0 0 0 0 0 1 0
## 823 1 0 0 0 0 0 0 0 0 0
## 824 0 0 0 0 0 0 0 0 1 0
## 825 0 0 0 0 0 0 0 0 0 1
## 826 0 0 0 0 0 0 1 0 0 0
## 827 0 0 0 0 0 0 0 1 0 0
## 828 1 0 0 0 0 0 0 0 0 0
## 829 0 0 1 0 0 0 0 1 0 0
## 830 0 0 0 0 0 0 1 0 1 0
## 831 0 0 0 0 1 0 0 0 0 0
## 832 0 0 0 0 0 0 1 0 0 0
## 833 1 0 0 0 0 0 0 0 0 0
## 834 0 0 0 0 0 0 0 1 1 0
## 835 1 0 0 0 0 0 0 0 0 0
## 836 1 0 0 0 0 0 0 0 1 0
## 837 0 0 0 0 1 0 0 0 0 0
## 838 1 0 0 0 0 0 0 0 1 0
## 839 0 0 0 1 0 0 0 1 0 0
## 840 1 0 0 0 0 0 0 0 1 0
## 841 0 0 0 0 0 0 0 0 1 0
## 842 0 0 0 0 0 0 0 1 0 1
## 843 1 0 0 0 0 0 1 0 0 0
## 844 1 0 0 0 0 0 0 0 0 0
## 845 1 0 0 0 0 0 0 0 0 0
## 846 1 0 0 0 0 0 1 0 0 0
## 847 1 0 0 0 1 0 0 0 0 0
## 848 1 0 0 0 0 0 1 0 0 1
## 849 1 0 0 0 0 0 0 0 0 0
## 850 1 0 0 0 0 1 0 1 1 0
## 851 1 0 0 0 0 0 0 0 0 0
## 852 0 0 0 0 0 0 0 0 0 0
## 853 0 0 0 0 0 0 0 0 0 0
## 854 0 1 0 0 0 0 0 1 0 0
## 855 0 0 0 0 1 0 0 0 0 0
## 856 0 0 0 0 1 0 0 0 0 0
## 857 0 0 0 0 0 0 0 0 1 0
## 858 0 0 0 0 0 0 0 1 1 0
## 859 0 0 0 0 0 0 0 0 0 0
## 860 0 0 0 0 0 0 0 1 0 0
## 861 0 0 0 0 0 0 0 0 0 0
## 862 0 0 0 0 0 0 0 0 0 0
## 863 0 0 0 0 0 0 0 0 1 0
## 864 1 0 0 0 0 0 0 0 0 1
## 865 0 0 0 0 0 0 1 0 0 0
## 866 1 0 0 0 0 0 0 0 0 0
## 867 0 0 0 0 0 0 0 0 0 0
## 868 0 0 0 0 0 0 0 1 1 0
## 869 1 0 0 0 0 0 0 0 0 0
## 870 0 0 0 0 0 0 0 0 0 0
## 871 0 0 0 0 0 0 0 1 0 0
## 872 1 0 0 0 0 0 1 1 0 1
## 873 0 0 0 0 0 0 1 0 0 0
## 874 0 0 0 0 0 0 0 0 0 0
## 875 0 0 0 0 0 0 0 1 0 0
## 876 0 0 0 0 0 0 0 1 1 1
## 877 0 0 0 0 0 0 0 0 0 0
## 878 1 0 0 0 0 0 0 0 0 0
## 879 0 0 0 0 0 0 0 1 0 0
## 880 1 0 0 0 0 0 0 0 0 1
## 881 0 0 0 0 0 0 1 1 0 1
## 882 1 0 0 0 0 0 0 0 0 0
## 883 0 0 0 1 0 0 0 1 1 0
## 884 0 0 0 1 0 0 1 0 1 0
## 885 0 0 0 0 1 0 0 0 0 0
## 886 1 0 0 0 0 0 0 0 0 0
## 887 1 0 0 0 0 0 0 0 0 1
## 888 1 0 0 0 0 0 0 0 0 1
## 889 1 0 0 0 0 1 0 0 0 0
## 890 1 0 0 0 0 0 0 0 0 0
## 891 1 0 0 0 0 0 0 0 0 0
## 892 0 0 0 0 0 0 0 0 0 0
## 893 0 0 0 0 0 0 0 1 1 0
## 894 1 0 0 0 0 0 0 0 0 0
## 895 1 0 0 0 0 0 1 0 0 0
## 896 0 0 0 0 0 0 0 0 1 0
## 897 1 0 0 0 0 0 0 0 0 1
## 898 0 0 0 1 0 0 0 0 0 0
## 899 0 0 0 1 0 0 0 0 0 0
## 900 0 0 0 0 0 0 1 0 0 0
## 901 0 0 0 0 0 0 0 0 0 0
## 902 0 0 0 0 0 0 0 1 0 0
## 903 1 0 0 0 0 0 0 0 0 1
## 904 1 0 0 0 0 0 1 0 0 0
## 905 0 0 0 1 0 0 0 0 0 0
## 906 0 0 0 0 0 0 0 0 0 0
## 907 0 0 0 0 0 0 0 0 0 1
## 908 1 0 0 0 0 0 0 0 0 0
## 909 1 0 0 0 0 0 1 0 0 0
## 910 1 0 0 0 1 0 0 0 0 1
## 911 1 0 0 0 0 0 0 0 0 0
## 912 0 0 0 0 0 0 1 0 0 0
## 913 0 0 0 1 0 0 1 0 0 0
## 914 0 0 0 1 0 0 0 0 0 0
## 915 1 0 0 0 0 0 0 0 1 0
## 916 0 0 0 0 0 0 0 0 1 0
## 917 0 0 0 0 0 0 0 1 0 0
## 918 0 0 0 0 0 0 0 1 0 0
## 919 0 0 0 0 0 0 0 1 0 0
## 920 0 0 0 0 0 0 0 1 0 0
## 921 0 0 0 0 0 0 0 0 0 0
## 922 0 0 0 0 0 0 0 0 0 0
## 923 0 0 0 1 0 0 0 0 0 0
## 924 1 0 0 0 0 0 1 0 0 0
## 925 0 0 0 0 0 0 0 0 0 0
## 926 0 0 0 0 0 0 1 0 0 1
## 927 1 0 0 0 0 0 0 1 0 0
## 928 0 0 0 0 0 0 0 0 0 0
## 929 0 0 0 0 0 1 0 1 1 0
## 930 0 0 0 0 0 0 0 1 1 0
## 931 0 0 0 0 0 0 0 0 1 0
## 932 0 0 0 0 0 0 0 0 0 0
## 933 0 0 0 0 0 0 0 0 0 0
## 934 0 0 0 0 0 0 0 0 1 0
## 935 1 0 0 0 0 0 1 0 0 0
## 936 0 0 0 0 0 0 0 0 1 0
## 937 1 0 0 0 0 0 0 0 0 0
## 938 1 0 0 0 0 0 1 0 0 1
## 939 0 0 0 1 0 0 0 0 1 0
## 940 0 0 0 0 0 0 0 0 0 0
## 941 0 0 0 0 0 0 0 0 1 0
## 942 0 0 0 1 0 1 0 0 1 0
## 943 0 0 0 0 0 0 0 0 0 0
## 944 1 0 0 0 0 0 0 0 0 0
## 945 1 0 0 0 0 0 0 0 0 1
## 946 0 0 0 0 0 1 0 0 0 0
## 947 0 0 0 0 0 1 0 0 0 0
## 948 0 0 0 0 0 0 0 0 0 0
## 949 1 0 0 0 0 1 0 0 1 0
## 950 1 0 0 0 0 0 0 0 0 0
## 951 1 0 0 0 0 0 0 0 0 0
## 952 0 0 0 0 0 0 0 0 0 0
## 953 1 0 0 0 0 0 0 0 0 0
## 954 0 0 0 1 0 0 0 0 0 0
## 955 0 0 0 0 0 0 0 1 0 0
## 956 1 0 0 0 0 0 0 0 0 0
## 957 0 0 0 0 0 0 0 0 0 0
## 958 0 0 0 0 0 0 1 0 0 0
## 959 0 0 0 0 0 0 0 0 0 0
## 960 1 0 0 0 0 0 0 0 0 0
## 961 0 0 0 0 0 0 0 0 0 0
## 962 0 0 0 0 0 0 0 0 0 0
## 963 0 0 0 0 0 0 0 0 0 0
## 964 0 0 0 1 0 0 0 0 0 0
## 965 0 0 0 0 0 0 0 0 0 0
## 966 0 0 0 0 0 0 0 0 0 0
## 967 0 0 0 0 0 0 1 0 1 0
## 968 1 0 0 0 0 0 0 0 0 0
## 969 0 0 0 0 0 0 0 0 0 0
## 970 0 0 0 0 0 1 0 0 0 0
## 971 0 0 0 0 0 0 0 0 0 0
## 972 1 0 0 0 0 0 0 0 0 0
## 973 1 0 0 0 0 0 0 0 0 0
## 974 0 0 0 0 1 0 0 0 0 0
## 975 0 0 0 0 1 0 0 0 0 0
## 976 0 0 0 0 1 0 0 0 0 0
## 977 1 0 0 0 0 0 1 0 0 0
## 978 1 1 0 0 0 0 0 1 0 0
## 979 1 0 0 0 0 0 0 0 0 0
## 980 0 0 0 0 0 0 0 0 0 0
## 981 1 0 0 0 0 0 0 1 0 0
## 982 0 0 0 0 0 0 0 0 0 1
## 983 0 0 0 0 0 0 0 0 0 0
## 984 0 0 0 0 1 0 0 0 0 0
## 985 0 0 0 0 0 0 0 0 0 0
## 986 0 0 0 0 0 0 0 1 0 0
## 987 0 0 0 0 0 0 0 0 0 0
## 988 0 0 0 1 0 0 0 0 0 0
## 989 0 0 0 1 0 0 0 0 0 0
## 990 0 0 0 1 0 0 0 0 0 0
## 991 0 0 0 1 0 0 0 0 0 0
## 992 0 0 0 1 0 0 0 1 0 0
## 993 0 0 0 1 0 0 0 0 0 0
## 994 0 0 0 1 0 0 0 0 0 0
## 995 0 0 0 1 0 0 0 0 0 0
## 996 0 0 0 0 0 0 0 1 0 0
## 997 0 0 0 0 0 0 0 1 0 0
## 998 0 0 0 0 1 0 1 0 0 0
## 999 0 0 0 1 0 0 0 0 0 0
## 1000 0 0 0 0 0 0 0 0 0 0
## 1001 1 0 0 0 0 0 0 0 0 0
## 1002 0 0 0 0 0 0 0 0 0 0
## 1003 0 0 0 0 0 0 1 0 0 0
## 1004 0 0 0 0 0 0 0 0 0 0
## 1005 1 0 0 0 0 0 0 0 0 1
## 1006 0 1 0 0 0 0 0 0 0 0
## 1007 0 0 0 0 0 0 0 1 0 1
## 1008 0 0 0 0 0 1 0 0 1 0
## 1009 0 0 0 0 0 0 0 0 1 0
## 1010 1 0 0 0 0 0 0 0 0 0
## 1011 0 0 0 0 0 0 0 0 0 0
## 1012 1 0 0 0 0 0 1 0 0 1
## 1013 0 0 1 0 0 1 0 0 0 0
## 1014 0 0 0 0 1 0 1 0 0 0
## 1015 0 0 0 0 0 0 1 0 0 0
## 1016 0 0 1 0 0 0 0 0 0 0
## 1017 0 0 1 0 0 0 1 0 1 0
## 1018 0 0 0 0 0 0 0 0 0 0
## 1019 1 0 0 0 0 0 0 0 0 0
## 1020 0 0 0 0 0 0 0 0 0 0
## 1021 1 0 0 0 0 0 0 0 0 0
## 1022 0 0 0 0 0 0 0 0 0 0
## 1023 0 0 0 0 0 0 1 0 0 1
## 1024 1 0 0 0 0 0 0 0 0 0
## 1025 0 0 0 0 1 0 0 0 0 0
## 1026 0 0 0 0 0 0 0 0 0 1
## 1027 1 0 0 0 0 0 0 0 0 0
## 1028 1 0 0 0 0 0 0 0 0 0
## 1029 0 0 0 0 0 1 0 0 1 0
## 1030 1 0 0 0 0 0 0 0 0 0
## 1031 1 0 0 0 0 0 0 0 0 0
## 1032 1 0 0 0 0 0 0 0 0 0
## 1033 1 0 0 0 0 0 0 0 0 0
## 1034 0 0 0 0 0 0 0 0 0 1
## 1035 0 0 0 0 0 1 0 0 1 0
## 1036 0 0 0 0 0 0 1 0 0 0
## 1037 1 0 0 0 0 0 0 0 0 1
## 1038 0 0 0 0 0 0 0 0 0 0
## 1039 0 0 0 0 0 0 0 0 0 1
## 1040 1 0 0 0 0 0 0 0 0 1
## 1041 1 0 0 0 0 0 0 0 0 0
## 1042 1 0 0 0 0 0 0 0 0 0
## 1043 1 0 0 0 0 0 0 0 0 0
## 1044 1 0 0 0 0 0 0 0 0 1
## 1045 1 0 0 0 0 0 0 0 0 0
## 1046 0 0 0 0 0 0 0 0 0 0
## 1047 1 0 0 0 0 0 0 0 0 0
## 1048 0 0 0 0 0 0 0 0 0 0
## 1049 0 0 0 0 0 0 0 0 0 0
## 1050 0 0 0 0 1 0 1 0 0 0
## 1051 1 0 0 0 1 0 0 0 0 0
## 1052 1 0 0 0 0 0 1 0 0 0
## 1053 0 0 0 0 0 0 1 0 0 0
## 1054 0 0 0 0 0 0 0 0 1 0
## 1055 0 0 0 0 0 0 0 0 0 0
## 1056 0 1 0 0 0 0 0 0 0 0
## 1057 1 0 0 0 0 0 1 0 0 1
## 1058 0 0 0 0 0 0 0 0 1 0
## 1059 0 0 0 1 0 0 0 0 0 0
## 1060 0 0 0 0 0 0 0 1 0 0
## 1061 1 0 0 0 0 0 1 0 0 0
## 1062 0 0 0 0 0 0 0 0 0 0
## 1063 1 0 0 0 0 0 0 0 0 0
## 1064 0 0 0 0 0 0 0 0 0 0
## 1065 1 0 0 0 1 0 0 0 0 0
## 1066 1 1 0 0 0 0 0 0 1 0
## 1067 1 0 0 1 0 0 0 0 0 0
## 1068 0 1 0 0 0 0 1 1 0 0
## 1069 1 0 0 1 0 0 0 0 0 0
## 1070 0 0 0 0 0 0 0 0 0 0
## 1071 0 0 0 1 0 0 0 0 0 0
## 1072 0 0 0 1 0 0 0 0 0 0
## 1073 0 0 0 1 0 0 0 0 1 0
## 1074 0 0 0 0 0 0 0 0 1 0
## 1075 0 0 0 1 0 0 0 0 0 0
## 1076 0 0 0 0 0 0 1 0 1 0
## 1077 1 0 0 1 0 0 0 0 0 0
## 1078 0 0 0 0 0 0 0 0 0 0
## 1079 0 0 0 0 0 0 0 0 1 0
## 1080 0 0 0 0 0 0 0 0 1 0
## 1081 0 0 0 1 0 0 0 1 1 0
## 1082 0 0 0 0 0 1 1 0 1 0
## 1083 0 0 0 0 0 0 0 0 0 0
## 1084 0 0 0 0 0 0 0 0 0 0
## 1085 0 0 0 0 0 0 0 1 0 0
## 1086 0 0 0 0 0 0 0 1 0 0
## 1087 0 0 0 0 0 0 0 0 0 0
## 1088 0 0 0 0 0 0 1 0 0 0
## 1089 1 0 0 0 0 0 0 0 1 0
## 1090 1 0 0 0 0 0 1 0 0 0
## 1091 0 0 0 0 0 0 0 0 1 0
## 1092 1 0 0 0 0 0 0 0 0 0
## 1093 0 0 0 0 0 0 0 0 0 0
## 1094 0 0 0 0 0 0 0 0 0 0
## 1095 1 0 0 0 0 1 0 0 0 0
## 1096 0 0 0 0 1 0 0 0 0 0
## 1097 0 0 0 0 0 0 0 0 0 0
## 1098 0 0 0 1 0 0 0 1 0 0
## 1099 1 0 0 0 0 0 0 0 1 0
## 1100 0 0 0 0 0 1 0 0 1 0
## 1101 0 0 0 0 0 0 0 0 0 1
## 1102 1 0 0 0 0 0 1 0 0 0
## 1103 0 0 0 0 0 0 0 0 1 0
## 1104 0 0 0 0 1 0 0 0 0 0
## 1105 0 0 0 0 0 0 0 0 1 0
## 1106 1 0 0 0 0 0 0 0 0 0
## 1107 0 0 0 0 0 0 0 0 0 0
## 1108 0 0 0 0 0 0 0 0 0 0
## 1109 0 0 0 0 0 0 0 0 0 1
## 1110 0 0 0 0 1 0 1 0 0 0
## 1111 0 0 0 0 0 1 0 0 1 0
## 1112 0 0 0 0 0 0 0 0 0 0
## 1113 0 0 0 0 1 0 0 0 0 0
## 1114 1 0 0 0 0 0 0 0 0 0
## 1115 0 0 0 0 0 0 1 0 1 0
## 1116 0 0 0 0 0 1 1 0 1 0
## 1117 0 0 0 0 0 0 0 0 0 0
## 1118 0 0 0 0 1 0 0 0 0 0
## 1119 0 0 1 0 0 1 0 0 0 0
## 1120 1 0 0 0 0 0 0 0 0 0
## 1121 0 0 0 0 0 0 0 0 0 0
## 1122 1 0 0 0 0 0 0 0 0 0
## 1123 0 0 0 0 0 0 0 0 1 0
## 1124 0 0 0 1 0 0 0 1 0 0
## 1125 1 0 0 0 0 0 0 0 0 0
## 1126 1 0 0 0 0 0 0 0 0 0
## 1127 1 0 0 0 0 0 0 0 1 0
## 1128 1 0 0 0 0 0 0 0 0 0
## 1129 0 0 0 0 0 0 0 0 0 0
## 1130 0 0 0 0 0 0 0 0 0 0
## 1131 0 0 0 0 0 0 0 0 0 0
## 1132 0 0 0 0 1 0 0 0 0 0
## 1133 0 0 0 0 0 0 0 0 0 0
## 1134 1 0 0 0 0 0 0 0 0 0
## 1135 1 0 0 0 0 0 0 0 0 0
## 1136 1 0 0 0 0 0 0 0 0 0
## 1137 0 0 0 0 1 0 0 0 0 0
## 1138 0 0 0 0 1 0 0 0 0 0
## 1139 1 0 0 0 0 0 1 0 0 1
## 1140 1 0 0 0 0 0 0 0 0 0
## 1141 1 0 0 0 0 0 0 0 0 0
## 1142 0 0 0 0 0 0 0 0 0 0
## 1143 0 0 0 1 0 0 0 0 0 0
## 1144 0 0 0 0 0 0 0 1 1 0
## 1145 0 0 0 1 0 0 0 0 0 0
## 1146 1 0 0 0 0 0 0 0 0 0
## 1147 1 0 0 0 0 0 0 0 0 0
## 1148 1 0 0 0 0 0 0 0 0 0
## 1149 1 0 0 0 0 0 0 0 0 1
## 1150 1 0 1 0 0 0 0 0 0 0
## 1151 1 0 0 0 0 0 1 0 0 0
## 1152 0 0 0 0 0 0 0 0 0 0
## 1153 0 0 0 0 0 0 0 0 0 0
## 1154 0 0 0 0 0 0 0 0 0 0
## 1155 1 0 0 0 0 0 0 0 0 1
## 1156 0 0 0 0 0 0 1 0 0 0
## 1157 1 0 0 0 0 0 0 0 1 0
## 1158 1 0 0 0 0 0 0 0 0 0
## 1159 1 0 0 0 0 0 0 0 0 1
## 1160 1 0 0 0 0 0 0 0 0 0
## 1161 0 0 1 0 0 0 0 0 1 0
## 1162 0 0 1 0 0 1 0 0 1 0
## 1163 1 0 0 0 0 0 0 0 0 0
## 1164 0 0 1 0 0 0 0 0 1 0
## 1165 0 0 1 0 0 0 0 0 1 0
## 1166 1 0 0 0 0 0 0 0 0 0
## 1167 0 0 0 0 0 1 0 0 1 0
## 1168 1 0 0 0 0 0 0 0 0 0
## 1169 0 0 0 0 0 0 0 0 0 0
## 1170 1 0 0 0 0 0 1 0 0 0
## 1171 0 0 0 0 0 0 0 0 0 0
## 1172 1 0 0 0 0 0 0 0 0 0
## 1173 0 0 0 1 0 0 0 1 1 0
## 1174 0 0 0 1 0 0 0 0 0 0
## 1175 0 0 0 1 0 0 0 0 0 0
## 1176 0 0 0 1 0 0 0 0 0 0
## 1177 0 0 0 1 0 0 0 0 0 0
## 1178 0 0 0 1 0 0 0 0 0 0
## 1179 0 0 0 1 0 0 0 0 0 0
## 1180 0 0 1 0 0 0 0 0 1 0
## 1181 0 0 0 1 0 0 0 0 0 0
## 1182 0 0 0 1 0 0 0 0 0 0
## 1183 1 0 0 0 0 0 0 0 0 0
## 1184 0 0 0 0 0 0 0 0 0 0
## 1185 1 0 0 0 0 0 0 0 1 0
## 1186 0 0 0 0 0 0 0 0 0 0
## 1187 0 0 0 1 0 0 0 0 0 0
## 1188 0 0 0 1 0 1 0 0 1 0
## 1189 0 0 0 0 0 0 0 0 0 0
## 1190 1 0 0 0 0 0 0 1 0 0
## 1191 0 0 0 0 0 0 0 0 1 0
## 1192 1 0 0 0 0 0 0 0 0 1
## 1193 0 0 0 0 0 0 1 1 0 1
## 1194 1 0 0 0 0 0 1 0 1 0
## 1195 1 0 0 0 0 0 0 0 0 0
## 1196 0 0 0 0 0 0 0 0 1 0
## 1197 0 0 0 0 0 0 0 1 0 0
## 1198 0 0 1 0 0 0 0 1 0 0
## 1199 0 0 0 0 0 0 0 1 1 0
## 1200 1 0 0 0 0 0 0 0 0 0
## 1201 0 0 0 0 0 0 0 0 1 0
## 1202 1 0 0 0 0 0 1 1 0 1
## 1203 0 0 0 0 0 0 0 0 0 0
## 1204 0 0 0 0 0 0 0 1 1 1
## 1205 0 0 0 0 0 0 0 0 0 0
## 1206 0 0 0 0 0 0 1 1 0 1
## 1207 1 0 0 0 0 0 0 0 0 0
## 1208 0 0 0 1 0 0 0 1 1 0
## 1209 1 0 0 0 0 0 0 0 0 0
## 1210 1 0 0 0 0 0 0 0 0 1
## 1211 1 0 0 0 0 0 0 0 0 1
## 1212 0 0 0 0 0 0 0 1 1 0
## 1213 0 0 0 0 0 0 0 0 0 0
## 1214 0 0 0 0 0 0 0 1 0 0
## 1215 0 0 0 0 0 0 0 1 0 0
## 1216 0 0 0 0 0 0 0 1 0 0
## 1217 0 0 0 0 0 0 0 1 0 0
## 1218 0 0 0 0 0 0 0 0 0 0
## 1219 0 0 0 0 0 0 1 0 0 1
## 1220 0 0 0 0 0 0 0 0 0 0
## 1221 1 0 0 0 0 0 0 1 0 0
## 1222 0 0 0 0 0 0 0 0 0 0
## 1223 0 0 0 0 0 1 0 1 1 0
## 1224 0 0 0 0 0 0 0 0 1 0
## 1225 0 0 0 0 0 0 0 0 0 0
## 1226 0 0 0 0 0 0 0 0 0 0
## 1227 0 0 0 0 0 0 0 0 1 0
## 1228 0 0 0 0 0 0 0 0 0 0
## 1229 0 0 0 0 0 0 0 0 0 0
## 1230 0 0 0 0 0 0 0 1 1 0
## 1231 0 0 0 0 0 0 1 0 0 0
## 1232 1 0 0 0 0 0 0 0 0 0
## 1233 0 0 0 0 0 0 0 0 0 0
## 1234 0 0 0 0 0 0 0 0 0 0
## 1235 1 0 0 0 0 0 0 0 0 0
## 1236 1 0 0 0 0 0 0 0 0 0
## 1237 0 0 0 0 0 0 0 0 0 1
## 1238 1 0 0 0 0 0 0 0 0 0
## 1239 0 0 0 0 0 0 0 0 1 0
## 1240 0 0 0 0 0 0 0 0 1 0
## 1241 0 0 0 0 0 0 1 0 1 0
## 1242 1 0 0 0 0 0 0 0 0 1
## 1243 0 0 0 0 0 0 0 0 1 0
## 1244 0 0 0 0 0 0 0 0 1 0
## 1245 1 0 0 0 0 0 0 0 0 0
## 1246 0 0 0 0 0 0 0 0 0 1
## 1247 0 0 0 0 0 0 0 0 0 0
## 1248 0 0 0 0 0 0 0 0 1 0
## 1249 1 0 0 0 0 0 0 0 0 0
## 1250 1 0 0 0 0 0 0 1 0 0
## 1251 0 0 0 0 0 0 1 1 0 1
## 1252 0 0 0 1 0 0 0 0 0 0
## 1253 0 0 0 0 0 0 0 0 0 0
## 1254 1 0 0 0 0 0 1 0 0 0
## 1255 1 0 0 0 0 0 1 0 0 1
## 1256 0 0 0 0 0 0 0 0 0 0
## 1257 0 0 0 0 0 0 0 1 1 0
## 1258 1 0 0 0 0 0 0 0 0 0
## 1259 1 0 0 0 0 0 1 0 0 0
## 1260 0 0 0 0 0 0 1 0 0 0
## 1261 0 0 0 0 0 0 1 0 1 0
## 1262 0 0 0 0 0 1 0 0 1 0
## 1263 1 0 0 0 0 0 1 0 0 1
## 1264 0 0 0 0 0 0 1 0 0 0
## 1265 1 0 0 0 0 0 0 0 0 0
## 1266 1 0 0 0 0 0 0 0 0 1
## 1267 1 0 0 0 0 0 0 0 0 0
## 1268 0 0 0 0 0 0 0 0 1 0
## 1269 1 0 0 0 0 0 0 0 0 1
## 1270 0 0 1 0 0 0 0 1 1 0
## 1271 0 0 0 0 0 0 0 0 0 0
## 1272 1 0 0 0 0 0 0 0 0 0
## 1273 1 0 0 0 0 0 0 1 0 0
## 1274 1 0 0 0 0 0 0 0 0 0
## 1275 0 0 0 0 0 0 0 0 1 0
## 1276 0 0 0 0 0 0 0 0 1 0
## 1277 0 0 0 0 0 0 0 0 0 0
## 1278 0 0 0 0 0 0 1 0 0 0
## 1279 1 0 0 0 0 0 0 0 0 1
## 1280 1 0 0 0 0 0 0 0 1 0
## 1281 0 0 0 0 0 0 0 0 0 0
## 1282 0 0 0 0 0 0 1 0 1 0
## 1283 0 0 0 0 0 0 0 0 0 0
## 1284 0 0 0 0 0 0 0 0 0 0
## 1285 0 0 0 0 0 0 1 1 0 1
## 1286 1 0 0 0 0 0 0 0 0 0
## 1287 1 0 0 0 0 0 0 0 0 0
## 1288 1 0 0 0 0 0 0 0 0 0
## 1289 1 0 0 0 0 0 0 0 0 0
## 1290 0 0 0 0 0 0 1 0 0 1
## 1291 0 0 0 0 0 0 1 0 0 0
## 1292 0 0 0 0 0 0 0 1 0 0
## 1293 0 0 0 0 0 0 0 0 0 0
## 1294 1 0 0 0 0 0 0 0 0 0
## 1295 1 0 0 0 0 0 0 0 1 0
## 1296 0 0 0 0 1 0 0 0 0 0
## 1297 1 0 0 0 0 0 0 0 1 0
## 1298 0 0 0 0 0 0 0 0 0 0
## 1299 1 0 0 0 0 1 0 0 0 0
## 1300 1 0 0 0 0 0 0 0 0 0
## 1301 1 0 0 0 0 0 1 0 1 0
## 1302 1 0 0 0 1 0 0 0 0 0
## 1303 1 0 0 0 0 0 1 0 0 1
## 1304 1 0 0 0 0 0 0 0 0 0
## 1305 1 0 0 0 0 1 0 1 1 0
## 1306 1 0 0 0 0 0 0 0 0 0
## 1307 0 0 0 0 0 0 0 0 1 0
## 1308 0 0 0 0 0 0 0 0 0 0
## 1309 0 0 0 0 1 0 1 0 0 0
## 1310 0 0 0 0 0 0 0 0 1 0
## 1311 1 0 0 0 0 0 0 0 0 1
## 1312 1 0 0 0 0 0 0 0 0 0
## 1313 0 0 0 0 0 0 1 0 0 0
## 1314 1 0 0 0 0 0 0 0 0 0
## 1315 0 0 0 0 0 0 0 1 1 0
## 1316 0 0 0 0 0 0 0 0 0 0
## 1317 1 0 0 0 0 0 1 0 0 0
## 1318 0 0 0 0 0 0 0 0 0 0
## 1319 0 0 0 0 0 0 0 1 0 0
## 1320 0 0 0 0 0 0 0 1 1 1
## 1321 1 0 0 0 0 0 0 0 0 0
## 1322 0 0 0 0 0 0 0 1 0 0
## 1323 1 0 0 0 0 0 0 0 0 1
## 1324 1 0 0 0 0 0 0 0 0 0
## 1325 0 0 0 1 0 0 0 1 1 0
## 1326 0 0 0 1 0 0 1 0 1 0
## 1327 0 0 0 0 1 0 0 0 0 0
## 1328 1 0 0 0 0 1 0 0 0 0
## 1329 1 0 0 0 0 0 0 0 0 0
## 1330 0 0 0 0 0 0 0 0 0 0
## 1331 0 0 0 0 0 0 0 1 1 0
## 1332 1 0 0 0 0 0 1 0 0 0
## 1333 0 0 0 0 0 0 0 0 1 0
## 1334 1 0 0 0 0 0 0 0 0 1
## 1335 0 0 0 1 0 0 0 0 0 0
## 1336 0 0 0 0 0 0 0 0 0 0
## 1337 1 0 0 0 0 0 0 0 0 1
## 1338 0 0 0 0 0 0 0 0 0 1
## 1339 0 0 0 0 0 0 1 0 0 0
## 1340 0 0 0 0 0 0 0 0 1 0
## 1341 1 0 0 0 0 0 0 0 0 0
## 1342 1 0 0 0 0 0 0 0 1 0
## 1343 0 0 0 0 0 0 0 1 0 0
## 1344 0 0 0 1 0 0 0 0 0 0
## 1345 0 0 0 0 0 0 0 0 0 0
## 1346 1 0 0 0 0 0 0 0 1 1
## 1347 0 0 0 0 0 0 0 0 0 0
## 1348 0 0 0 0 0 0 0 0 1 0
## 1349 0 0 0 0 0 0 1 0 0 0
## 1350 1 0 0 0 0 0 1 0 0 0
## 1351 1 0 0 0 0 0 1 0 0 0
## 1352 1 0 0 0 0 0 1 0 0 0
## 1353 1 0 0 0 0 0 0 0 0 0
## 1354 1 0 0 0 0 0 1 0 0 1
## 1355 1 0 0 0 1 0 0 0 0 0
## 1356 0 0 0 0 0 0 0 0 0 0
## 1357 0 0 1 0 0 1 0 0 1 0
## 1358 0 0 0 0 1 0 1 0 0 0
## 1359 0 0 0 0 0 0 0 0 0 0
## 1360 0 0 0 0 0 1 0 0 1 0
## 1361 0 0 0 0 0 1 0 0 0 0
## 1362 1 0 0 0 0 0 0 0 0 0
## 1363 1 0 0 0 0 0 0 0 0 0
## 1364 0 0 0 0 0 0 0 0 0 0
## 1365 1 0 0 0 0 0 1 0 0 0
## 1366 0 0 0 0 0 0 1 0 0 0
## 1367 0 0 0 0 0 0 0 0 0 0
## 1368 0 0 0 0 0 0 0 0 0 0
## 1369 0 0 0 0 1 0 0 0 0 0
## 1370 0 0 0 0 1 0 0 0 0 0
## 1371 0 0 0 0 0 0 0 0 0 1
## 1372 0 0 0 0 1 0 0 0 0 0
## 1373 0 0 0 0 0 0 0 0 0 0
## 1374 0 0 0 1 0 0 0 0 0 0
## 1375 1 0 0 0 0 0 0 0 0 0
## 1376 1 0 0 0 0 0 1 0 0 0
## 1377 0 0 0 0 0 0 0 0 0 0
## 1378 1 0 0 0 0 0 0 0 0 0
## 1379 0 0 0 0 0 0 0 0 0 0
## 1380 0 0 0 0 0 0 0 1 0 1
## 1381 1 0 0 0 0 0 0 0 0 0
## 1382 0 0 0 0 0 0 1 0 0 0
## 1383 0 0 0 0 0 1 0 0 1 0
## 1384 0 0 0 0 0 0 0 0 1 0
## 1385 0 0 0 0 0 0 0 0 0 0
## 1386 1 0 0 0 0 0 1 0 0 1
## 1387 0 0 1 0 0 1 0 0 0 0
## 1388 0 0 0 0 0 0 1 0 0 0
## 1389 0 0 1 0 0 0 0 0 0 0
## 1390 0 0 1 0 0 0 1 0 1 0
## 1391 0 0 0 0 0 1 0 0 0 0
## 1392 0 0 0 0 0 0 0 0 0 0
## 1393 1 0 0 0 0 0 0 0 0 0
## 1394 0 0 0 0 0 0 0 0 0 0
## 1395 0 0 0 0 0 0 1 0 0 1
## 1396 1 0 0 0 0 0 0 0 0 0
## 1397 0 0 0 0 0 0 0 0 0 1
## 1398 1 0 0 0 0 0 0 0 0 0
## 1399 0 0 0 0 0 1 0 0 1 0
## 1400 1 0 0 0 0 0 0 0 0 0
## 1401 1 0 0 0 0 0 0 0 0 0
## 1402 0 0 0 0 0 0 0 0 0 1
## 1403 0 0 0 0 0 1 0 0 1 0
## 1404 1 0 0 0 0 0 0 0 0 0
## 1405 0 0 0 0 0 0 0 0 0 0
## 1406 1 0 0 0 0 0 0 0 0 1
## 1407 0 0 1 0 0 1 0 0 0 0
## 1408 1 0 0 0 0 0 0 0 0 0
## 1409 1 0 0 0 0 0 0 0 0 0
## 1410 0 0 0 0 0 0 0 0 0 0
## 1411 1 0 0 0 0 0 1 0 0 0
## 1412 1 1 0 0 0 0 0 0 1 0
## 1413 1 0 0 0 0 0 1 0 0 0
## 1414 0 0 0 0 1 0 0 0 0 0
## 1415 0 0 0 0 0 0 0 0 0 0
## 1416 0 0 0 0 1 0 1 0 0 0
## 1417 0 0 0 0 0 1 0 0 1 0
## 1418 0 0 0 0 0 0 0 0 0 0
## 1419 1 0 0 0 0 0 0 0 0 0
## 1420 0 0 0 0 1 0 0 0 0 0
## 1421 0 0 1 0 0 1 0 0 0 0
## 1422 0 0 0 0 0 0 0 0 1 0
## 1423 1 0 0 0 0 0 0 0 0 0
## 1424 0 0 0 0 1 0 0 0 0 0
## 1425 1 0 0 0 0 0 0 0 0 1
## 1426 1 0 0 0 0 0 0 0 0 0
## 1427 0 0 1 0 0 1 0 0 1 0
## 1428 1 0 0 0 0 0 0 0 0 0
## 1429 0 0 1 0 0 0 0 0 1 0
## 1430 0 0 1 0 0 0 0 0 1 0
## 1431 0 0 0 0 0 0 0 0 0 0
## 1432 1 0 0 0 0 0 0 0 0 0
## 1433 1 0 0 0 0 0 0 0 0 0
## 1434 1 0 0 0 0 0 1 0 0 0
## 1435 1 0 0 0 0 0 0 0 0 0
## 1436 0 0 0 0 0 0 1 0 0 0
## 1437 1 0 0 0 0 0 0 0 0 0
## 1438 1 0 0 0 0 0 0 0 1 0
## 1439 1 0 0 0 0 0 0 0 0 0
## 1440 1 0 0 0 0 0 0 0 0 0
## 1441 1 0 0 0 0 0 0 0 0 0
## 1442 0 0 0 0 0 0 0 0 0 0
## 1443 0 0 0 0 0 0 0 0 0 0
## 1444 0 0 0 0 0 0 1 0 0 0
## 1445 1 0 0 0 0 0 0 0 0 0
## 1446 1 0 0 0 0 0 1 0 0 0
## 1447 0 0 0 0 1 0 1 0 0 0
## 1448 0 0 0 1 0 0 0 0 0 0
## 1449 1 0 0 0 0 0 0 0 0 0
## 1450 1 0 0 0 0 0 0 0 0 0
## 1451 0 0 0 0 0 0 1 0 0 0
## 1452 0 0 0 0 0 0 0 0 0 0
## 1453 1 0 0 0 0 0 0 0 0 0
## 1454 1 0 0 0 0 0 0 0 0 0
## 1455 1 0 0 0 0 0 0 0 0 0
## 1456 1 0 0 0 0 0 0 0 0 0
## 1457 0 0 0 0 0 0 0 0 1 0
## 1458 0 0 0 0 0 0 0 0 1 0
## 1459 1 0 0 0 0 0 0 0 0 0
## 1460 1 0 0 0 0 0 0 0 0 1
## 1461 0 0 0 0 0 0 0 0 0 0
## 1462 0 0 0 0 0 0 0 0 0 0
## 1463 1 0 0 0 0 0 0 0 1 0
## 1464 0 0 0 0 0 0 0 0 0 0
## 1465 0 0 0 0 0 0 0 1 1 0
## 1466 0 0 0 0 0 0 0 1 0 0
## 1467 0 0 0 0 0 0 0 0 0 0
## 1468 0 0 0 0 0 0 0 0 0 0
## 1469 1 0 0 0 0 0 0 0 0 0
## 1470 1 0 0 0 0 0 1 0 0 1
## 1471 1 0 0 0 0 0 0 0 0 0
## 1472 1 0 0 0 0 0 0 0 1 0
## 1473 1 0 0 0 0 0 0 0 0 0
## 1474 1 0 0 0 0 0 0 0 0 0
## 1475 1 0 0 0 0 0 0 0 0 0
## 1476 0 0 0 0 0 0 1 0 0 1
## 1477 0 0 0 0 0 0 1 0 0 0
## 1478 0 0 0 0 0 0 0 0 1 0
## 1479 0 0 0 0 0 0 1 0 0 0
## 1480 1 0 0 0 0 0 0 0 0 0
## 1481 0 0 0 0 0 0 1 0 0 0
## 1482 0 0 0 0 0 0 1 0 1 0
## 1483 0 0 0 0 0 0 0 0 0 0
## 1484 1 0 0 0 0 0 0 0 0 0
## 1485 1 0 0 0 0 0 0 0 1 0
## 1486 1 0 0 0 0 0 0 0 1 0
## 1487 1 0 0 0 0 0 0 0 0 0
## 1488 0 0 0 0 0 0 0 1 0 0
## 1489 0 0 0 0 0 0 0 0 0 1
## 1490 0 0 0 0 0 0 1 0 0 0
## 1491 0 0 0 0 0 0 0 0 0 0
## 1492 0 0 0 0 0 0 0 1 0 1
## 1493 0 0 0 1 0 0 0 0 0 0
## 1494 1 0 0 0 0 0 1 0 0 0
## 1495 1 0 0 0 0 1 0 1 1 0
## 1496 0 0 0 0 0 0 0 0 0 0
## 1497 0 0 0 0 0 0 1 0 0 0
## 1498 0 0 0 0 0 0 0 1 0 0
## 1499 0 0 0 0 0 0 0 1 1 1
## 1500 1 0 0 0 0 0 0 0 0 1
## 1501 0 0 0 1 0 0 1 0 1 0
## 1502 1 0 0 0 0 0 0 0 0 1
## 1503 1 0 0 0 0 1 0 0 0 0
## 1504 0 0 0 0 0 0 0 0 0 0
## 1505 1 0 0 0 0 0 0 0 0 0
## 1506 0 0 0 0 0 0 0 0 0 0
## 1507 0 0 0 0 0 0 0 1 0 0
## 1508 0 0 0 1 0 0 0 0 0 0
## 1509 0 0 0 0 0 0 0 0 0 1
## 1510 1 0 0 0 0 0 1 0 0 0
## 1511 1 0 0 0 0 0 0 0 0 0
## 1512 0 0 0 0 0 0 1 0 0 0
## 1513 0 0 0 0 0 0 0 1 0 0
## 1514 0 0 0 0 0 0 0 1 0 0
## 1515 0 0 0 0 0 0 0 1 0 0
## 1516 0 0 0 0 0 0 0 1 0 0
## 1517 0 0 0 0 0 0 0 1 0 0
## 1518 1 0 0 0 0 0 1 0 0 0
## 1519 0 0 0 0 0 0 0 0 0 0
## 1520 1 0 0 0 0 0 0 1 0 0
## 1521 0 0 0 0 0 0 1 0 0 1
## 1522 1 0 0 0 0 0 0 1 0 0
## 1523 0 0 0 0 0 0 0 0 0 0
## 1524 0 0 0 0 0 1 0 1 1 0
## 1525 0 0 0 0 0 0 1 0 0 0
## 1526 1 0 0 0 0 0 0 0 0 0
## 1527 1 0 0 0 0 0 1 0 0 1
## 1528 0 0 0 0 0 0 0 0 0 0
## 1529 0 0 0 0 0 1 0 0 1 0
## 1530 0 0 0 0 0 0 0 0 1 0
## 1531 0 0 0 0 0 0 0 0 0 0
## 1532 1 0 0 0 0 1 0 0 0 0
## 1533 1 0 0 0 0 0 0 0 0 0
## 1534 1 0 0 0 0 0 0 0 0 1
## 1535 0 0 0 0 0 1 0 0 0 0
## 1536 1 0 0 0 0 0 0 0 1 0
## 1537 0 0 0 0 0 1 0 0 1 0
## 1538 1 0 0 0 0 1 0 0 1 0
## 1539 1 0 0 0 0 0 0 0 0 0
## 1540 1 0 0 0 0 0 0 0 0 0
## 1541 0 0 0 0 0 0 0 0 0 0
## 1542 1 0 0 0 0 0 0 0 1 0
## 1543 0 0 0 0 0 0 0 0 0 0
## 1544 1 0 0 0 0 0 0 0 0 0
## 1545 0 0 0 0 0 0 0 0 0 0
## 1546 0 0 0 0 0 0 0 0 0 0
## 1547 0 0 0 0 0 0 0 0 0 0
## 1548 0 0 0 0 0 0 0 0 0 0
## 1549 0 0 0 0 0 0 0 0 0 0
## 1550 0 0 0 0 0 0 0 0 0 0
## 1551 0 0 0 0 0 0 1 0 1 0
## 1552 0 0 0 0 0 1 0 0 0 0
## 1553 0 0 0 0 0 0 0 0 0 0
## 1554 1 1 0 0 0 0 0 1 0 0
## 1555 0 0 0 0 0 0 0 0 0 0
## 1556 1 0 0 0 0 0 0 0 0 0
## 1557 0 0 0 0 0 0 0 0 0 0
## 1558 1 0 0 0 0 0 0 1 0 0
## 1559 0 0 0 0 0 0 0 0 0 1
## 1560 0 0 0 0 0 0 0 0 0 0
## 1561 0 0 0 0 0 0 0 0 0 0
## 1562 0 0 0 0 0 0 0 1 0 0
## 1563 0 0 0 0 0 0 0 0 0 0
## 1564 0 0 0 0 0 0 0 1 0 0
## 1565 0 0 0 0 1 0 1 0 0 0
## 1566 0 0 0 0 0 0 0 0 0 0
## 1567 1 0 0 0 0 0 0 0 0 0
## 1568 1 0 0 0 0 0 0 0 0 0
## 1569 1 0 0 0 0 0 1 0 0 0
## 1570 1 0 0 0 0 0 0 0 0 1
## 1571 0 0 0 0 0 0 0 0 0 0
## 1572 1 0 0 0 0 0 0 0 0 0
## 1573 1 0 0 0 0 0 0 0 0 0
## 1574 1 0 0 0 0 0 1 0 0 0
## 1575 1 0 0 0 0 0 1 0 0 1
## 1576 1 1 0 0 0 0 0 0 1 0
## 1577 1 0 0 1 0 0 0 0 0 0
## 1578 0 0 0 1 0 0 0 1 1 0
## 1579 0 0 0 0 0 0 0 1 0 0
## 1580 0 0 0 0 0 0 1 0 0 0
## 1581 0 0 0 0 0 0 0 0 1 0
## 1582 0 0 0 0 0 1 0 0 1 0
## 1583 0 0 0 0 0 0 0 0 0 0
## 1584 1 0 0 0 0 0 0 0 0 0
## 1585 0 0 1 0 0 1 0 0 1 0
## 1586 0 0 0 0 0 1 0 0 1 0
## 1587 1 0 0 0 0 0 0 0 0 0
## 1588 1 0 0 0 0 0 1 0 0 0
## 1589 0 0 0 0 0 0 0 0 0 0
## 1590 1 0 0 0 0 0 0 0 0 1
## 1591 1 0 0 0 0 0 1 0 0 0
## 1592 1 0 0 0 0 0 0 0 0 0
## 1593 1 0 0 0 0 0 0 0 0 0
## 1594 0 0 0 0 0 0 0 0 0 0
## 1595 1 0 0 0 0 0 0 0 0 0
## 1596 1 0 0 0 0 0 1 0 0 0
## 1597 1 0 0 0 0 0 0 0 0 0
## 1598 1 0 0 0 0 0 1 0 0 0
## 1599 1 0 0 0 0 0 0 0 1 0
## 1600 0 0 0 0 0 0 0 0 0 0
## 1601 0 0 0 0 0 0 0 0 0 1
## 1602 1 0 0 0 0 0 1 0 0 0
## 1603 0 0 0 0 0 0 0 0 0 0
## 1604 0 0 0 0 0 0 0 0 0 0
## 1605 1 0 0 0 0 0 0 0 0 0
## 1606 1 0 0 0 0 0 1 0 0 0
## 1607 0 0 0 0 0 0 0 0 0 0
## 1608 1 0 0 0 0 0 0 0 0 0
## 1609 1 0 0 0 0 0 1 0 0 0
## 1610 0 0 0 0 0 0 0 1 0 0
## 1611 1 0 0 0 0 0 0 0 0 0
## 1612 1 0 0 0 0 0 1 0 0 0
## 1613 1 0 0 0 0 0 1 0 0 0
## 1614 0 0 0 0 0 0 1 0 0 0
## 1615 1 0 0 0 0 0 1 0 0 0
## 1616 0 0 0 0 0 0 0 0 0 0
## 1617 1 0 0 0 0 0 0 0 0 0
## 1618 1 0 0 0 0 0 1 0 0 0
## 1619 1 0 0 0 0 0 0 0 0 0
## 1620 0 0 0 0 0 0 1 0 0 0
## 1621 0 0 0 0 0 0 1 0 0 0
## 1622 1 0 0 0 0 0 1 0 0 0
## 1623 1 0 0 0 0 0 0 0 1 0
## 1624 1 0 0 0 0 0 0 0 1 0
## 1625 0 0 0 0 0 0 0 0 1 0
## 1626 1 0 0 0 0 0 0 0 0 1
## 1627 0 0 0 0 0 0 0 0 0 0
## 1628 0 0 0 0 0 0 0 0 0 0
## 1629 0 0 0 0 0 0 1 0 0 0
## 1630 0 0 0 0 0 0 1 0 1 0
## 1631 0 0 0 0 0 0 1 0 0 0
## 1632 1 0 0 0 0 0 0 0 0 0
## 1633 0 0 0 0 0 0 1 0 1 0
## 1634 0 0 0 0 0 0 0 0 1 0
## 1635 1 0 0 0 0 0 0 0 0 0
## 1636 1 0 0 0 0 0 0 0 0 0
## 1637 1 0 0 0 0 0 0 0 1 0
## 1638 0 0 0 0 0 0 1 1 0 1
## 1639 0 0 0 0 0 0 1 0 0 1
## 1640 0 0 0 0 1 0 0 0 0 0
## 1641 0 0 0 0 0 0 0 1 0 0
## 1642 0 0 0 0 0 0 1 0 0 0
## 1643 0 0 0 0 0 0 0 1 1 0
## 1644 1 0 0 0 0 0 0 0 0 0
## 1645 1 0 0 0 0 0 0 0 1 0
## 1646 1 0 0 0 0 0 0 0 0 0
## 1647 1 0 0 0 1 0 0 0 0 0
## 1648 1 0 0 0 0 0 1 0 0 1
## 1649 0 0 0 0 1 0 0 0 0 0
## 1650 1 0 0 0 0 0 0 0 0 1
## 1651 0 0 0 0 0 1 0 0 1 0
## 1652 0 0 0 0 0 0 1 0 0 0
## 1653 0 0 0 0 0 0 0 0 0 0
## 1654 1 0 0 0 0 0 1 0 0 0
## 1655 1 0 0 0 0 0 1 1 0 1
## 1656 0 0 0 0 0 0 0 0 0 0
## 1657 1 0 0 0 0 1 0 0 0 0
## 1658 0 0 0 0 0 0 0 1 1 0
## 1659 1 0 0 0 0 0 0 0 0 0
## 1660 0 0 0 1 0 0 0 0 0 0
## 1661 0 0 0 0 0 0 1 0 0 0
## 1662 0 0 0 0 0 0 0 0 0 0
## 1663 0 0 0 0 0 0 0 1 0 0
## 1664 1 0 0 0 0 0 0 0 0 0
## 1665 0 0 0 0 0 0 1 0 0 0
## 1666 0 0 0 0 0 0 0 1 0 0
## 1667 0 0 0 0 0 0 0 0 0 0
## 1668 0 0 0 0 0 0 0 0 0 0
## 1669 1 0 0 0 0 0 1 0 0 0
## 1670 1 0 0 0 0 0 0 0 0 0
## 1671 0 0 0 0 0 0 0 0 1 0
## 1672 1 0 0 0 0 0 0 0 0 1
## 1673 0 0 0 0 0 1 1 0 1 0
## 1674 0 0 0 0 0 0 1 0 0 0
## 1675 1 0 0 0 0 0 0 0 0 0
## 1676 0 0 0 0 0 0 1 0 1 0
## 1677 1 0 0 0 0 0 0 0 0 0
## 1678 1 0 0 0 0 0 0 0 0 1
## 1679 0 0 0 0 0 0 0 0 1 0
## 1680 1 0 0 0 0 0 0 0 1 0
## 1681 0 0 0 0 0 0 0 0 1 0
## 1682 1 0 0 0 0 0 0 0 0 0
## 1683 1 0 0 0 0 0 0 0 0 0
## 1684 1 0 0 0 0 0 0 0 0 0
## 1685 0 0 0 0 0 0 0 0 1 0
## 1686 0 0 0 0 0 0 0 0 0 0
## 1687 0 0 0 0 0 0 0 0 1 0
## 1688 1 0 0 0 0 0 0 0 0 0
## 1689 1 0 0 0 0 0 0 0 1 0
## 1690 1 0 0 0 0 0 0 1 0 0
## 1691 1 0 0 0 0 0 0 0 0 0
## 1692 1 0 0 0 0 0 0 0 0 0
## 1693 0 0 0 0 0 0 0 0 1 0
## 1694 0 0 0 0 0 0 0 0 1 0
## 1695 0 0 0 0 0 0 0 0 0 0
## 1696 1 0 0 0 0 0 1 0 0 0
## 1697 0 0 0 1 0 0 0 0 1 0
## 1698 0 0 0 0 1 0 0 0 1 0
## 1699 1 0 0 0 0 0 0 0 0 1
## 1700 1 0 0 0 0 0 0 0 1 0
## 1701 0 0 0 0 0 0 0 0 0 0
## 1702 0 0 0 0 0 0 0 0 0 0
## 1703 0 0 0 0 0 0 0 0 0 0
## 1704 1 0 0 0 0 0 0 0 1 0
## 1705 0 0 0 0 0 0 0 0 0 0
## 1706 0 0 0 0 0 0 0 0 0 0
## 1707 0 0 0 0 0 0 1 0 1 0
## 1708 1 0 0 0 0 0 0 0 0 0
## 1709 0 0 0 0 0 0 0 1 1 0
## 1710 0 0 0 0 0 0 0 1 0 0
## 1711 0 0 0 0 0 0 0 0 0 0
## 1712 0 0 0 0 0 0 0 0 0 0
## 1713 1 0 0 0 0 0 0 0 0 0
## 1714 0 0 0 0 0 0 0 0 0 0
## 1715 0 0 0 0 0 0 1 0 0 0
## 1716 0 0 0 0 0 0 1 1 0 1
## 1717 1 0 0 0 0 0 1 0 0 1
## 1718 0 0 0 0 0 0 0 0 1 0
## 1719 1 0 0 0 0 0 0 0 0 0
## 1720 1 0 0 0 0 0 0 0 0 0
## 1721 1 0 0 0 0 0 0 0 0 0
## 1722 1 0 0 0 0 0 0 0 0 0
## 1723 1 0 0 0 0 0 0 0 0 0
## 1724 0 0 0 0 0 0 0 1 0 0
## 1725 1 0 0 0 0 0 0 0 0 0
## 1726 0 0 0 0 0 0 1 0 0 0
## 1727 0 0 0 0 0 0 0 0 0 0
## 1728 0 0 0 0 0 0 1 0 1 0
## 1729 0 0 0 0 0 0 1 0 0 1
## 1730 0 0 0 0 0 0 1 0 0 0
## 1731 0 0 0 0 1 0 0 0 0 0
## 1732 0 1 0 0 0 0 0 0 0 0
## 1733 0 0 0 0 0 0 0 0 0 0
## 1734 1 0 0 0 0 0 0 0 0 0
## 1735 0 0 0 0 0 0 0 0 1 0
## 1736 0 0 0 0 0 0 0 1 0 0
## 1737 0 0 0 0 0 0 1 0 0 0
## 1738 1 0 0 0 0 0 0 0 0 0
## 1739 1 0 0 0 0 0 0 0 0 0
## 1740 0 0 0 0 0 0 1 0 0 0
## 1741 0 0 1 0 0 0 0 1 0 0
## 1742 0 0 0 0 0 0 1 0 1 0
## 1743 0 0 0 0 1 0 0 0 0 0
## 1744 0 0 0 0 0 0 1 0 0 0
## 1745 0 0 0 0 0 0 0 0 0 0
## 1746 0 0 0 0 1 0 0 0 0 0
## 1747 0 0 0 0 0 0 0 1 1 0
## 1748 1 0 0 0 0 0 0 0 0 0
## 1749 1 0 0 0 0 0 0 0 1 0
## 1750 0 0 0 0 1 0 0 0 0 0
## 1751 1 0 0 0 0 0 0 0 1 0
## 1752 0 0 0 0 0 0 0 1 0 0
## 1753 0 0 0 0 0 0 0 0 0 1
## 1754 0 0 0 0 0 0 1 0 0 0
## 1755 0 0 0 0 0 0 0 0 0 0
## 1756 0 0 0 0 0 0 0 0 1 0
## 1757 0 0 0 0 0 0 0 0 1 0
## 1758 0 0 0 0 0 0 0 1 0 1
## 1759 1 0 0 0 0 1 0 0 0 0
## 1760 1 0 0 0 0 0 0 0 0 0
## 1761 0 0 0 0 0 0 0 0 1 0
## 1762 1 0 0 0 1 0 0 0 0 0
## 1763 1 0 0 0 0 1 0 1 1 0
## 1764 1 0 0 0 0 0 0 0 0 0
## 1765 0 0 0 0 0 0 0 0 0 0
## 1766 0 1 0 0 0 0 0 1 0 0
## 1767 0 0 0 0 1 0 0 0 0 0
## 1768 0 0 0 0 0 0 0 0 1 0
## 1769 0 0 0 0 0 0 0 1 1 0
## 1770 0 0 0 0 0 0 0 0 1 0
## 1771 1 0 0 0 0 0 0 0 0 0
## 1772 0 0 0 0 0 0 0 1 0 0
## 1773 0 0 0 0 0 0 0 0 0 0
## 1774 0 0 0 0 0 0 0 0 0 0
## 1775 0 0 0 0 1 0 1 0 0 0
## 1776 1 0 0 0 0 0 0 0 0 1
## 1777 0 0 0 0 0 0 0 0 0 0
## 1778 1 0 0 0 0 0 0 0 0 0
## 1779 0 0 0 0 0 0 1 0 0 0
## 1780 0 0 0 0 0 0 0 0 0 0
## 1781 0 0 0 0 0 0 0 1 1 0
## 1782 1 0 0 0 0 0 0 0 0 0
## 1783 1 0 0 0 0 0 0 0 0 0
## 1784 0 0 0 0 0 0 0 0 0 0
## 1785 0 0 0 0 0 0 0 0 0 0
## 1786 1 0 0 0 0 0 1 0 0 0
## 1787 1 0 0 0 0 0 1 1 0 1
## 1788 0 0 0 0 0 0 1 0 0 0
## 1789 0 0 0 0 0 0 0 0 0 0
## 1790 0 0 0 0 0 0 0 1 0 0
## 1791 0 0 0 0 0 0 0 1 1 1
## 1792 0 0 0 0 0 0 0 0 0 0
## 1793 1 0 0 0 0 0 0 0 0 0
## 1794 0 0 0 0 0 0 0 1 0 0
## 1795 1 0 0 0 0 0 0 0 0 1
## 1796 0 0 0 0 0 0 1 1 0 1
## 1797 1 0 0 0 0 0 0 0 0 0
## 1798 0 0 0 1 0 0 0 1 1 0
## 1799 0 0 0 1 0 0 0 1 0 0
## 1800 0 0 0 1 0 0 1 0 1 0
## 1801 0 0 0 0 1 0 0 0 0 0
## 1802 1 0 0 0 0 0 0 0 0 0
## 1803 1 0 0 0 0 0 0 0 0 1
## 1804 1 0 0 0 0 0 0 0 0 1
## 1805 1 0 0 0 0 1 0 0 0 0
## 1806 1 0 0 0 0 0 0 0 0 0
## 1807 0 0 0 0 0 0 0 0 0 0
## 1808 0 0 0 0 0 0 0 1 1 0
## 1809 1 0 0 0 0 0 0 0 0 0
## 1810 1 0 0 0 0 0 1 0 0 0
## 1811 0 0 0 0 0 0 0 0 1 0
## 1812 1 0 0 0 0 0 0 0 0 1
## 1813 0 0 0 1 0 0 0 0 0 0
## 1814 0 0 0 1 0 0 0 0 0 0
## 1815 0 0 0 0 0 0 1 0 0 0
## 1816 0 0 0 0 0 0 0 1 0 0
## 1817 1 0 0 0 0 0 0 0 0 1
## 1818 0 0 0 1 0 0 0 0 0 0
## 1819 1 0 0 0 1 0 0 0 0 0
## 1820 0 0 0 0 0 0 0 0 0 0
## 1821 0 0 0 0 0 0 0 0 0 1
## 1822 1 0 0 0 0 0 0 0 0 0
## 1823 1 0 0 0 0 0 0 0 0 0
## 1824 0 0 0 0 0 0 1 0 0 0
## 1825 0 0 0 1 0 0 1 0 0 0
## 1826 0 0 0 0 0 0 0 0 1 0
## 1827 0 0 0 1 0 0 0 0 0 0
## 1828 0 0 0 0 0 0 0 1 0 0
## 1829 1 0 0 0 0 0 0 0 1 0
## 1830 1 0 0 0 0 0 0 0 0 0
## 1831 0 0 0 0 0 0 0 0 0 0
## 1832 0 0 0 0 0 0 0 0 1 0
## 1833 0 0 0 0 0 0 0 1 0 0
## 1834 0 0 0 0 0 0 0 1 0 0
## 1835 0 0 0 0 0 0 0 1 0 0
## 1836 0 0 0 0 0 0 0 1 0 0
## 1837 0 0 0 0 0 0 0 0 0 0
## 1838 0 0 0 0 0 0 0 0 0 0
## 1839 0 0 0 0 0 0 0 0 0 0
## 1840 0 0 0 1 0 0 0 0 0 0
## 1841 0 0 0 0 0 0 0 1 0 1
## 1842 1 0 0 0 0 0 1 0 0 0
## 1843 0 0 0 0 0 0 0 0 0 0
## 1844 1 0 0 0 0 0 0 1 0 0
## 1845 0 0 0 0 0 0 1 0 0 1
## 1846 0 0 0 0 0 0 0 0 0 0
## 1847 0 0 0 0 0 0 0 0 0 0
## 1848 1 0 0 0 0 0 0 1 0 0
## 1849 0 0 0 0 0 1 0 1 1 0
## 1850 0 0 0 0 0 0 0 0 0 0
## 1851 1 0 0 0 0 0 0 0 0 0
## 1852 0 0 0 0 0 0 0 0 0 0
## 1853 0 0 0 0 0 0 0 1 1 0
## 1854 0 0 0 0 0 0 0 0 1 0
## 1855 0 0 0 0 0 0 0 0 0 0
## 1856 1 0 0 0 0 0 0 1 1 0
## 1857 0 0 0 0 0 0 0 1 0 1
## 1858 1 0 0 0 0 0 0 0 0 0
## 1859 0 0 0 0 0 0 0 0 1 0
## 1860 0 0 0 0 0 0 1 0 0 0
## 1861 1 0 0 0 0 0 1 0 0 0
## 1862 1 0 0 0 0 0 1 0 0 0
## 1863 1 0 0 0 0 0 0 0 0 0
## 1864 1 0 0 0 0 0 1 0 0 0
## 1865 0 0 0 0 0 0 0 0 1 0
## 1866 1 0 0 0 0 0 0 0 0 0
## 1867 1 0 0 0 0 0 1 0 0 1
## 1868 1 0 0 0 0 0 0 0 0 0
## 1869 0 0 0 1 0 0 0 0 1 0
## 1870 1 0 0 0 1 0 0 0 0 0
## 1871 0 0 0 0 0 0 0 0 0 0
## 1872 1 0 0 0 0 0 0 0 0 0
## 1873 0 0 0 0 0 0 0 0 0 0
## 1874 1 0 1 0 0 0 0 0 0 0
## 1875 0 0 0 0 0 0 0 0 1 0
## 1876 0 0 0 0 0 0 0 0 0 0
## 1877 0 0 1 0 0 1 0 0 1 0
## 1878 1 0 0 0 0 0 0 0 0 0
## 1879 1 0 0 0 0 0 1 0 0 0
## 1880 0 0 0 1 0 1 0 0 1 0
## 1881 1 1 0 0 0 0 0 0 0 0
## 1882 1 0 0 0 0 0 0 0 0 0
## 1883 1 0 0 0 0 0 1 0 1 0
## 1884 1 0 0 0 0 1 0 0 0 0
## 1885 1 0 0 0 0 0 1 0 0 0
## 1886 0 0 0 0 0 0 0 0 0 0
## 1887 1 0 0 0 0 0 0 0 1 0
## 1888 1 0 0 0 0 0 0 0 0 0
## 1889 1 0 0 0 0 0 0 0 0 0
## 1890 1 0 0 0 0 0 0 0 0 1
## 1891 0 0 0 0 1 0 1 0 0 0
## 1892 0 0 0 0 0 0 0 0 0 0
## 1893 0 0 0 0 0 0 0 0 0 0
## 1894 0 0 0 0 0 1 0 0 1 0
## 1895 0 0 0 0 0 0 0 0 1 0
## 1896 1 0 0 0 0 0 0 0 0 1
## 1897 1 0 0 0 0 1 0 0 0 0
## 1898 0 0 0 0 0 1 1 0 1 0
## 1899 1 0 0 0 0 0 0 0 1 0
## 1900 0 0 0 0 0 0 0 0 1 0
## 1901 1 0 0 0 0 0 0 0 1 0
## 1902 0 0 0 0 0 1 0 0 1 0
## 1903 0 0 0 0 0 1 0 0 0 0
## 1904 0 0 0 0 0 0 0 0 1 0
## 1905 0 0 0 0 0 0 0 0 0 0
## 1906 1 0 0 0 0 0 0 0 0 0
## 1907 1 0 0 0 0 0 0 0 0 0
## 1908 0 0 0 0 0 0 0 0 0 0
## 1909 0 0 0 0 0 1 0 0 0 0
## 1910 0 0 0 1 0 0 0 1 0 0
## 1911 1 0 0 0 0 0 0 0 0 0
## 1912 1 0 0 0 0 0 0 0 0 0
## 1913 1 0 0 0 0 0 0 0 0 0
## 1914 1 0 0 0 0 0 0 0 0 0
## 1915 0 0 0 0 0 0 0 0 1 0
## 1916 0 0 0 0 0 1 0 0 1 0
## 1917 0 0 0 1 0 0 0 0 0 0
## 1918 0 0 0 1 0 0 0 1 0 0
## 1919 0 0 0 0 0 0 1 0 0 0
## 1920 0 0 0 0 0 0 0 1 1 0
## 1921 1 0 0 0 0 0 0 0 0 0
## 1922 0 0 0 0 0 0 0 1 1 0
## 1923 0 0 0 0 0 0 0 0 0 0
## 1924 0 0 0 0 1 0 0 0 0 0
## 1925 0 0 0 0 0 0 0 0 0 0
## 1926 0 0 0 0 0 0 0 0 0 0
## 1927 1 0 0 0 0 0 0 0 1 0
## 1928 1 0 0 0 0 0 1 0 0 0
## 1929 0 0 0 0 0 0 0 0 0 0
## 1930 0 0 0 1 0 0 0 0 0 0
## 1931 1 0 0 0 0 0 0 0 0 0
## 1932 0 0 0 0 0 0 0 0 0 0
## 1933 0 0 0 0 0 0 1 0 0 0
## 1934 1 0 0 0 0 0 0 0 0 0
## 1935 0 0 0 0 0 0 0 0 0 0
## 1936 0 0 0 0 0 0 0 0 0 0
## 1937 0 0 0 0 0 1 1 0 0 0
## 1938 0 0 0 1 0 0 0 0 0 0
## 1939 0 0 0 0 0 0 0 1 0 0
## 1940 0 0 0 0 0 0 0 0 0 0
## 1941 0 0 0 0 0 0 0 0 0 0
## 1942 0 0 0 0 0 0 1 0 1 0
## 1943 1 0 0 0 0 0 0 0 0 0
## 1944 0 0 0 0 0 0 0 0 0 0
## 1945 0 0 0 0 0 1 0 0 0 0
## 1946 0 0 0 1 0 0 0 0 1 0
## 1947 1 0 0 0 0 0 0 0 0 0
## 1948 0 0 0 0 0 0 0 0 0 0
## 1949 0 1 0 0 0 0 1 1 0 0
## 1950 0 0 0 1 0 0 0 0 0 0
## 1951 0 0 0 0 0 0 0 0 0 0
## 1952 1 0 0 0 0 0 0 0 0 0
## 1953 1 0 0 0 0 0 0 0 0 0
## 1954 0 0 0 0 1 0 0 0 0 0
## 1955 0 0 0 0 1 0 0 0 0 0
## 1956 0 0 0 0 1 0 0 0 0 0
## 1957 1 0 0 0 0 0 1 0 0 0
## 1958 1 1 0 0 0 0 0 1 0 0
## 1959 0 0 0 1 0 0 0 0 0 0
## 1960 1 0 0 0 0 0 0 0 0 0
## 1961 0 0 0 0 0 0 0 0 0 0
## 1962 1 0 0 0 0 0 0 1 0 0
## 1963 0 0 0 0 0 0 0 0 0 1
## 1964 0 0 0 0 0 0 0 0 0 0
## 1965 0 0 0 0 1 0 0 0 0 0
## 1966 0 0 0 0 0 0 0 0 0 0
## 1967 0 0 0 0 0 0 0 0 0 0
## 1968 0 0 0 1 0 0 0 0 0 0
## 1969 0 0 0 1 0 0 0 0 0 0
## 1970 0 0 0 1 0 0 0 0 0 0
## 1971 0 0 0 1 0 0 0 0 0 0
## 1972 0 0 0 1 0 0 0 0 0 0
## 1973 0 0 0 1 0 0 0 0 0 0
## 1974 0 0 0 1 0 0 0 0 0 0
## 1975 0 0 0 1 0 0 0 0 0 0
## 1976 0 0 0 1 0 0 0 1 0 0
## 1977 0 0 0 1 0 0 0 0 0 0
## 1978 0 0 0 1 0 0 0 0 0 0
## 1979 0 0 0 1 0 0 0 0 0 0
## 1980 0 0 0 1 0 0 0 0 0 0
## 1981 0 0 0 0 0 0 0 1 0 0
## 1982 0 0 0 0 0 0 0 1 0 0
## 1983 0 0 0 0 1 0 1 0 0 0
## 1984 0 0 0 1 0 0 0 0 0 0
## 1985 0 0 0 1 0 0 0 0 0 0
## 1986 0 0 0 0 0 0 0 0 0 0
## 1987 1 0 0 0 0 0 0 0 0 0
## 1988 1 0 0 0 0 0 1 0 0 0
## 1989 0 0 0 0 0 0 0 0 0 0
## 1990 1 0 0 0 0 0 0 0 0 0
## 1991 1 0 0 0 0 0 0 0 0 1
## 1992 0 1 0 0 0 0 0 0 0 0
## 1993 0 0 0 0 1 0 0 0 0 0
## 1994 0 0 0 0 0 0 0 1 0 1
## 1995 1 0 0 0 0 0 0 0 0 0
## 1996 0 0 0 0 0 0 0 0 0 0
## 1997 0 0 0 0 0 0 0 0 0 0
## 1998 0 0 0 0 0 0 1 0 0 0
## 1999 0 0 0 0 0 0 0 0 1 0
## 2000 1 0 0 0 0 0 0 0 0 0
## 2001 0 0 0 0 0 0 0 0 0 0
## 2002 1 0 0 0 0 0 1 0 0 1
## 2003 0 0 1 0 0 1 0 0 0 0
## 2004 0 0 0 0 1 0 1 0 0 0
## 2005 0 0 1 0 0 0 0 0 0 0
## 2006 0 0 0 0 0 0 0 0 0 0
## 2007 1 0 0 0 0 0 0 0 0 0
## 2008 0 0 0 0 0 1 0 0 0 0
## 2009 0 0 0 0 0 0 0 0 0 0
## 2010 0 0 0 0 0 0 0 0 0 0
## 2011 0 0 0 0 0 0 1 0 0 1
## 2012 0 0 0 0 1 0 0 0 0 0
## 2013 0 0 0 0 0 0 0 0 0 1
## 2014 1 0 0 0 0 0 0 0 0 0
## 2015 0 0 0 0 0 1 0 0 1 0
## 2016 1 0 0 0 0 0 0 0 0 0
## 2017 1 0 0 0 0 0 0 0 0 0
## 2018 1 0 0 0 0 0 0 0 0 0
## 2019 1 0 0 0 0 0 0 0 0 0
## 2020 1 0 0 0 0 0 0 0 0 0
## 2021 0 0 0 0 0 0 0 0 0 1
## 2022 0 0 0 0 0 0 1 0 0 0
## 2023 1 0 0 0 0 0 0 0 0 1
## 2024 0 0 0 0 0 0 0 0 0 0
## 2025 1 0 0 0 0 0 1 0 0 0
## 2026 1 0 0 0 0 0 0 0 0 0
## 2027 0 0 0 0 0 0 0 0 0 0
## 2028 0 0 0 0 0 0 0 0 0 1
## 2029 1 0 0 0 0 0 0 0 0 0
## 2030 1 0 0 0 0 0 0 0 0 0
## 2031 0 0 0 0 0 0 0 0 0 0
## 2032 0 0 1 0 0 1 0 0 0 0
## 2033 1 0 0 0 0 0 0 0 0 0
## 2034 1 0 0 0 0 0 0 0 0 0
## 2035 1 0 0 0 0 0 0 0 0 0
## 2036 0 0 0 0 0 0 0 0 0 0
## 2037 1 0 0 0 0 0 1 0 0 0
## 2038 0 0 0 0 1 0 0 0 0 0
## 2039 0 0 0 0 0 0 0 0 0 0
## 2040 0 0 0 0 0 0 0 0 0 0
## 2041 0 0 0 0 0 0 0 0 0 0
## 2042 0 0 0 0 0 0 0 0 1 0
## 2043 0 0 0 0 0 0 0 0 0 0
## 2044 0 1 0 0 0 0 0 0 0 0
## 2045 1 0 0 0 0 0 1 0 0 1
## 2046 0 0 0 0 0 0 0 0 1 0
## 2047 0 0 0 1 0 0 0 0 0 0
## 2048 1 0 0 0 0 0 1 0 0 0
## 2049 0 0 0 0 0 0 0 0 0 0
## 2050 1 1 0 0 0 0 0 0 1 0
## 2051 1 0 0 1 0 0 0 0 0 0
## 2052 1 0 0 1 0 0 0 0 0 0
## 2053 0 0 0 1 0 0 0 0 0 0
## 2054 0 0 0 1 0 0 0 0 0 0
## 2055 0 0 0 1 0 0 0 0 1 0
## 2056 0 0 0 0 0 0 0 0 1 0
## 2057 0 0 0 1 0 0 0 0 0 0
## 2058 0 0 0 0 0 0 1 0 1 0
## 2059 1 0 0 1 0 0 0 0 0 0
## 2060 0 0 0 0 0 0 0 0 0 0
## 2061 0 0 0 0 0 0 0 0 1 0
## 2062 0 0 0 1 0 0 0 1 1 0
## 2063 0 0 0 0 0 0 0 0 0 0
## 2064 0 0 0 0 0 0 0 1 0 0
## 2065 0 0 0 0 0 0 0 0 0 0
## 2066 0 0 0 0 0 0 0 0 0 0
## 2067 0 0 0 0 1 0 0 0 0 0
## 2068 0 0 0 0 0 0 0 0 0 0
## 2069 0 0 0 1 0 0 0 1 0 0
## 2070 0 0 0 0 1 0 0 0 0 0
## 2071 0 0 0 0 0 0 0 0 1 0
## 2072 0 0 0 0 0 0 0 0 0 1
## 2073 0 0 0 0 1 0 1 0 0 0
## 2074 0 0 0 0 0 1 0 0 1 0
## 2075 0 0 0 0 0 0 0 0 0 0
## 2076 1 0 0 0 0 0 0 0 0 0
## 2077 0 0 0 0 1 0 0 0 0 0
## 2078 1 0 0 0 0 0 0 0 0 0
## 2079 0 0 0 0 0 0 0 0 0 0
## 2080 1 0 0 0 0 0 0 0 0 0
## 2081 0 0 0 0 0 0 0 0 1 0
## 2082 1 0 0 0 0 0 0 0 0 0
## 2083 1 0 0 0 0 0 0 0 1 0
## 2084 0 0 0 0 0 0 0 0 0 0
## 2085 0 0 0 0 1 0 0 0 0 0
## 2086 0 0 0 0 0 0 0 0 0 0
## 2087 0 0 0 0 1 0 0 0 0 0
## 2088 0 0 0 0 1 0 0 0 0 0
## 2089 1 0 0 0 0 0 1 0 0 1
## 2090 1 0 0 0 0 0 0 0 0 0
## 2091 0 0 0 1 0 0 0 0 0 0
## 2092 0 0 0 0 0 0 0 1 1 0
## 2093 0 0 0 1 0 0 0 0 0 0
## 2094 1 0 0 0 0 0 0 0 0 0
## 2095 1 0 0 0 0 0 0 0 0 0
## 2096 0 0 0 0 0 0 0 0 0 0
## 2097 1 0 0 0 0 0 0 0 0 1
## 2098 1 0 0 0 0 0 0 0 0 0
## 2099 1 0 0 0 0 0 0 0 0 1
## 2100 1 0 0 0 0 0 0 0 0 0
## 2101 0 0 1 0 0 1 0 0 1 0
## 2102 1 0 0 0 0 0 0 0 0 0
## 2103 0 0 1 0 0 0 0 0 1 0
## 2104 0 0 1 0 0 0 0 0 1 0
## 2105 0 0 0 0 0 1 0 0 1 0
## 2106 0 0 0 0 0 0 0 0 0 0
## 2107 1 0 0 0 0 0 1 0 0 0
## 2108 0 0 0 0 0 0 0 0 0 0
## 2109 0 0 0 1 0 0 0 1 1 0
## 2110 0 0 0 1 0 0 0 0 0 0
## 2111 0 0 0 1 0 0 0 0 0 0
## 2112 0 0 0 1 0 0 0 0 0 0
## 2113 0 0 0 1 0 0 0 0 0 0
## 2114 0 0 0 1 0 0 0 0 0 0
## 2115 0 0 1 0 0 0 0 0 1 0
## 2116 0 0 0 1 0 0 0 0 0 0
## 2117 0 0 0 1 0 0 0 0 0 0
## 2118 1 0 0 0 0 0 0 0 1 0
## 2119 0 0 0 0 0 0 0 0 0 0
## 2120 0 0 0 1 0 1 0 0 1 0
## 2121 0 0 0 0 0 0 0 0 0 0
## 2122 0 0 0 0 0 0 0 0 1 0
## 2123 0 0 0 0 0 0 0 0 1 0
## 2124 1 0 0 0 0 0 0 0 0 0
## 2125 0 0 0 0 0 0 0 0 0 1
## 2126 0 0 0 0 0 0 0 0 0 0
## 2127 0 0 0 0 0 0 0 0 1 0
## 2128 1 0 0 0 0 0 0 0 0 1
## 2129 0 0 1 0 0 0 0 1 1 0
## 2130 1 0 0 0 0 0 1 0 0 0
## 2131 0 0 0 0 0 0 1 0 0 0
## 2132 0 0 0 0 1 0 1 0 0 0
## 2133 0 0 0 1 0 0 0 0 0 0
## 2134 0 0 0 0 0 0 1 0 0 0
## 2135 1 0 0 0 0 0 0 0 0 0
## 2136 1 0 0 0 0 0 1 0 0 0
## 2137 1 0 0 0 0 0 1 0 0 0
## 2138 0 0 0 0 0 0 0 0 0 0
## 2139 0 0 0 0 0 0 1 0 0 0
## 2140 1 0 0 0 0 0 1 0 0 0
## 2141 1 0 0 0 0 0 0 0 0 0
## 2142 1 0 0 0 0 0 1 0 0 0
## 2143 1 0 0 0 0 0 0 0 0 0
## 2144 0 0 0 0 0 0 1 0 0 0
## 2145 1 0 0 0 0 0 1 0 0 0
## 2146 0 0 0 0 0 0 0 0 0 0
## 2147 0 0 0 0 0 0 1 0 0 0
## 2148 0 0 0 0 0 0 1 0 1 0
## 2149 0 0 0 0 0 0 1 0 0 0
## 2150 1 0 0 0 0 0 0 0 0 0
## 2151 0 0 0 0 0 0 1 0 1 0
## 2152 0 0 0 0 0 0 0 0 1 0
## 2153 0 0 0 0 0 0 0 0 1 0
## 2154 0 1 0 0 0 0 0 1 0 0
## 2155 0 0 0 0 0 0 0 0 0 0
## 2156 0 0 0 0 0 0 0 0 0 0
## 2157 0 0 0 0 0 0 0 1 1 0
## 2158 0 0 0 0 0 0 0 0 0 0
## 2159 0 0 0 0 0 0 0 1 0 0
## 2160 0 0 0 0 0 0 0 0 1 0
## 2161 1 0 0 0 0 0 0 0 0 0
## 2162 0 0 0 0 0 0 0 0 0 0
## 2163 0 0 0 0 0 0 1 0 0 0
## 2164 0 0 0 0 0 0 1 0 0 0
## 2165 0 0 0 0 0 0 0 0 0 0
## 2166 0 0 0 1 0 0 0 0 0 0
## 2167 0 0 0 0 0 0 0 0 0 0
## 2168 0 0 0 0 0 1 0 1 0 0
## 2169 0 0 1 0 0 1 0 0 1 0
## 2170 0 0 0 0 0 0 0 1 1 0
## 2171 1 0 0 0 0 0 0 0 0 0
## 2172 0 0 0 0 0 0 0 0 1 0
## 2173 0 0 0 1 0 0 0 0 0 0
## 2174 1 0 0 0 0 0 1 0 0 0
## 2175 1 0 0 0 0 0 0 0 0 0
## 2176 0 0 0 1 0 0 0 0 0 0
## 2177 1 0 0 0 0 0 1 0 0 0
## 2178 0 0 0 0 0 0 0 0 0 0
## 2179 0 0 0 0 0 0 0 0 0 0
## 2180 0 0 0 0 0 0 1 0 0 0
## 2181 1 0 0 0 0 0 0 0 0 0
## 2182 0 0 0 0 0 0 1 0 0 0
## 2183 1 0 0 1 0 0 0 0 0 0
## 2184 0 0 0 0 0 0 1 0 0 0
## 2185 0 0 0 0 0 0 1 0 0 0
## 2186 1 0 0 0 0 0 0 0 0 0
## 2187 0 0 0 1 0 0 0 0 1 0
## 2188 1 0 0 0 0 0 0 0 0 0
## 2189 0 0 0 0 0 0 0 0 0 0
## 2190 0 0 0 0 0 0 0 0 0 0
## 2191 0 0 0 0 0 0 0 0 0 0
## 2192 0 0 0 0 0 0 0 0 0 0
## 2193 1 0 0 0 0 0 1 0 0 0
## 2194 0 0 0 0 0 0 0 0 0 0
## 2195 0 0 0 0 0 0 1 0 0 0
## 2196 0 0 0 0 0 0 0 1 0 0
## 2197 0 0 0 0 0 0 0 0 0 0
## 2198 1 0 0 0 0 0 0 0 0 0
## 2199 0 0 0 1 0 0 0 0 1 0
## 2200 0 0 0 0 0 0 0 0 0 0
## 2201 0 0 0 0 0 0 0 0 1 0
## 2202 1 0 0 0 0 0 0 0 0 1
## 2203 0 0 0 0 0 0 0 0 0 0
## 2204 0 0 0 0 0 1 0 0 0 0
## 2205 1 0 0 0 0 0 0 0 0 0
## 2206 1 0 0 0 0 0 0 0 0 0
## 2207 1 0 0 0 0 0 0 0 0 0
## 2208 1 0 0 0 0 1 0 0 0 0
## 2209 0 0 0 0 0 0 0 0 0 0
## 2210 0 0 0 0 0 0 0 0 0 0
## 2211 0 0 0 0 0 0 0 0 0 0
## 2212 0 0 0 0 0 0 0 0 0 0
## 2213 0 0 0 0 0 0 0 0 0 0
## 2214 1 0 0 0 0 0 1 0 0 0
## 2215 0 0 0 1 0 0 0 0 0 0
## 2216 1 0 0 0 0 0 0 0 0 0
## 2217 0 0 0 0 0 0 0 0 0 0
## 2218 0 0 0 0 0 0 0 0 0 0
## 2219 0 1 0 0 0 0 0 0 0 0
## 2220 0 0 0 0 0 0 1 0 0 0
## 2221 1 0 0 0 0 0 0 0 0 0
## 2222 0 0 1 0 0 0 0 0 1 0
## 2223 0 0 0 0 0 0 0 0 0 0
## 2224 0 0 0 0 0 0 0 1 1 0
## 2225 0 0 0 0 0 0 0 0 0 0
## 2226 0 0 0 0 0 0 0 0 1 0
## 2227 0 0 0 0 0 0 0 0 0 0
## 2228 0 0 0 0 0 0 0 0 0 0
## 2229 0 0 0 0 0 1 0 0 1 0
## 2230 0 0 0 0 0 0 0 1 1 0
## 2231 1 1 0 0 0 0 0 0 0 0
## 2232 0 0 0 0 0 0 0 0 0 0
## 2233 0 0 0 1 0 0 0 0 1 0
## 2234 0 0 0 0 1 0 1 0 0 0
## 2235 0 0 0 0 0 0 1 0 0 0
## 2236 1 0 0 0 0 0 0 0 0 0
## 2237 0 0 0 0 0 0 0 0 0 0
## 2238 0 0 0 1 0 0 0 0 1 0
## 2239 1 0 0 0 0 0 0 0 0 0
## 2240 0 0 0 0 0 0 0 0 1 0
## 2241 1 0 0 0 0 0 0 0 0 0
## 2242 0 0 0 0 0 0 0 0 0 0
## 2243 0 0 0 0 0 0 0 0 0 0
## 2244 0 0 0 0 0 0 0 0 0 0
## 2245 1 0 0 0 0 0 1 0 0 0
## 2246 1 0 0 0 0 0 0 0 0 0
## 2247 0 0 1 0 0 0 0 0 1 0
## 2248 0 0 0 0 0 0 1 0 0 0
## 2249 0 0 0 0 0 0 0 0 0 0
## 2250 1 0 0 0 0 0 0 0 0 0
## 2251 1 0 0 0 0 0 0 0 1 0
## 2252 0 0 0 1 0 0 0 0 0 0
## 2253 0 0 0 1 0 0 0 0 0 0
## 2254 1 0 0 0 0 1 1 0 1 0
## 2255 1 0 0 0 0 0 0 0 0 0
## 2256 0 0 0 0 0 0 0 0 0 0
## 2257 0 0 0 1 0 0 0 0 0 0
## 2258 0 0 0 1 0 0 0 0 0 0
## 2259 0 0 0 1 0 0 0 0 1 0
## 2260 0 0 0 1 0 0 0 0 0 0
## 2261 0 0 0 0 0 0 0 0 0 0
## 2262 1 0 0 0 0 0 0 0 0 0
## 2263 0 0 0 0 0 0 0 0 0 0
## 2264 0 0 0 0 0 0 1 0 0 0
## 2265 1 0 0 0 0 0 0 0 0 0
## 2266 1 0 0 0 0 0 0 0 0 0
## 2267 0 0 0 0 0 0 1 0 0 0
## 2268 0 0 0 0 0 0 1 0 0 0
## 2269 0 0 0 0 0 0 0 0 0 0
## 2270 0 0 0 0 0 0 1 0 0 0
## 2271 0 0 0 0 0 0 1 0 0 0
## 2272 1 0 0 0 0 0 0 0 0 0
## 2273 1 0 0 0 0 0 1 0 0 0
## 2274 0 0 0 0 0 0 0 0 0 0
## 2275 0 0 0 0 0 0 1 0 0 0
## 2276 0 0 0 0 0 1 0 0 0 0
## 2277 0 0 0 0 0 0 0 0 1 1
## 2278 1 0 0 0 0 0 0 0 0 0
## 2279 1 0 0 0 0 0 0 0 0 0
## 2280 1 0 0 0 0 0 0 0 0 0
## 2281 0 0 0 0 0 0 0 0 0 0
## 2282 0 0 0 1 0 0 0 0 0 0
## 2283 0 0 0 0 0 0 1 0 1 0
## 2284 1 0 0 0 0 0 0 0 0 0
## 2285 1 0 0 0 0 0 0 0 0 0
## 2286 0 0 0 0 0 0 1 0 0 0
## 2287 0 0 0 0 0 0 0 0 0 0
## 2288 1 0 0 0 0 0 0 0 0 1
## 2289 0 1 0 0 0 0 0 0 0 0
## 2290 0 0 0 0 0 0 0 0 0 0
## 2291 0 0 0 0 0 0 0 0 0 0
## 2292 0 0 0 1 0 0 0 0 1 0
## 2293 1 0 0 0 0 0 0 0 0 0
## 2294 0 0 0 0 0 0 0 1 0 0
## 2295 1 0 0 0 0 0 0 0 0 0
## 2296 1 0 0 0 0 0 0 0 0 0
## 2297 1 0 0 0 0 0 0 0 0 0
## 2298 0 0 0 0 0 0 0 0 0 0
## 2299 0 0 0 0 0 1 0 0 1 0
## 2300 1 0 0 0 0 0 1 0 0 0
## 2301 1 0 0 0 0 0 0 0 0 0
## 2302 1 0 0 0 0 0 1 0 0 0
## 2303 1 0 0 0 0 0 1 0 0 0
## 2304 0 0 0 0 0 0 0 0 0 0
## 2305 0 0 0 0 0 0 0 0 0 0
## 2306 1 0 0 0 0 0 0 0 0 0
## 2307 1 0 0 0 0 0 0 0 0 0
## 2308 1 0 0 0 0 0 0 0 0 0
## 2309 0 0 0 0 0 0 0 0 1 0
## 2310 0 0 0 0 0 0 0 0 0 0
## 2311 1 0 0 0 0 1 0 0 1 0
## 2312 1 0 0 0 0 0 0 0 0 0
## 2313 0 0 0 0 0 0 0 1 1 0
## 2314 1 0 0 0 0 0 0 0 1 0
## 2315 0 0 0 0 0 0 1 0 0 0
## 2316 1 0 0 0 0 0 0 1 0 0
## 2317 1 0 0 0 0 0 0 0 0 0
## 2318 0 0 0 0 0 0 0 0 1 0
## 2319 0 0 0 0 0 0 0 0 0 0
## 2320 1 0 0 0 0 0 1 0 0 0
## 2321 1 0 0 0 0 0 0 0 0 0
## 2322 1 0 0 0 0 0 0 0 0 0
## 2323 1 0 0 0 0 0 0 0 0 0
## 2324 1 0 0 0 0 0 0 0 0 1
## 2325 1 0 0 0 0 0 0 0 1 0
## 2326 0 0 0 0 0 0 0 0 0 0
## 2327 0 0 0 0 0 0 0 0 0 0
## 2328 0 0 0 0 0 0 0 0 0 0
## 2329 0 0 0 0 0 0 1 1 0 1
## 2330 1 0 0 0 0 0 0 0 0 0
## 2331 0 0 0 0 0 0 1 0 0 0
## 2332 0 0 0 0 0 0 1 0 0 0
## 2333 1 0 0 0 0 0 0 0 0 0
## 2334 0 0 0 0 0 0 0 1 1 0
## 2335 1 0 0 0 0 0 0 0 1 0
## 2336 1 0 0 0 0 0 0 0 1 0
## 2337 0 0 0 0 0 0 1 0 0 0
## 2338 0 0 0 0 0 0 0 0 0 0
## 2339 0 0 0 0 0 0 0 1 0 1
## 2340 1 0 0 0 0 1 0 0 0 0
## 2341 1 0 0 0 0 0 0 0 0 0
## 2342 0 0 0 0 0 0 0 0 0 0
## 2343 0 0 0 0 0 0 0 0 0 0
## 2344 1 0 0 0 0 0 1 1 0 1
## 2345 0 0 0 0 0 0 1 0 0 0
## 2346 0 0 0 0 0 0 0 0 0 0
## 2347 0 0 0 0 0 0 0 1 0 0
## 2348 0 0 0 0 0 0 0 1 1 1
## 2349 0 0 0 0 0 0 1 1 0 1
## 2350 0 0 0 0 1 0 0 0 0 0
## 2351 1 0 0 0 0 1 0 0 0 0
## 2352 0 0 0 0 0 0 0 1 1 0
## 2353 0 0 0 0 0 0 1 0 0 0
## 2354 0 0 0 0 0 0 0 1 0 0
## 2355 0 0 0 0 0 0 0 0 0 0
## 2356 0 0 0 0 0 0 0 0 0 1
## 2357 1 0 0 0 0 0 1 0 0 0
## 2358 0 0 0 0 0 0 0 1 0 0
## 2359 0 0 0 0 0 0 0 0 0 0
## 2360 0 0 0 0 0 0 0 0 0 0
## 2361 0 0 0 0 0 0 0 0 0 0
## 2362 0 0 0 0 0 0 0 0 1 0
## 2363 0 0 0 0 0 0 0 0 0 0
## 2364 1 0 0 0 0 0 1 0 0 0
## 2365 1 0 0 0 0 0 1 0 0 0
## 2366 1 0 0 0 0 0 1 0 0 0
## 2367 1 0 0 0 0 0 0 0 0 0
## 2368 0 0 0 1 0 0 0 0 1 0
## 2369 0 0 1 0 0 1 0 0 1 0
## 2370 1 0 0 0 0 0 1 0 0 0
## 2371 0 0 0 0 1 0 1 0 0 0
## 2372 1 0 0 0 0 0 0 0 0 0
## 2373 1 0 0 0 0 0 0 0 0 0
## 2374 0 0 0 0 0 0 0 0 1 0
## 2375 1 0 0 0 0 0 0 0 0 0
## 2376 0 0 0 0 0 0 0 0 0 0
## 2377 0 0 0 0 0 0 0 0 0 1
## 2378 0 0 0 0 0 0 0 0 0 0
## 2379 0 0 0 0 1 0 0 0 0 0
## 2380 0 0 0 0 0 0 0 1 0 1
## 2381 1 0 0 0 0 0 0 0 0 0
## 2382 0 0 0 0 0 0 0 0 0 0
## 2383 1 0 0 0 0 0 0 0 0 0
## 2384 0 0 0 0 0 0 1 0 0 1
## 2385 1 0 0 0 0 0 0 0 0 0
## 2386 1 0 0 0 0 0 0 0 0 0
## 2387 0 0 0 0 0 0 1 0 0 0
## 2388 1 0 0 0 0 0 1 0 0 0
## 2389 0 0 0 0 0 0 0 0 0 0
## 2390 1 0 0 0 0 0 0 0 0 0
## 2391 0 0 0 0 0 0 0 0 0 0
## 2392 0 0 1 0 0 1 0 0 0 0
## 2393 0 0 0 0 0 0 0 0 0 0
## 2394 0 0 0 0 1 0 0 0 0 0
## 2395 0 0 0 0 1 0 0 0 0 0
## 2396 0 0 0 0 0 1 0 0 1 0
## 2397 1 0 0 0 0 0 0 0 0 0
## 2398 0 0 1 0 0 1 0 0 1 0
## 2399 1 0 0 0 0 0 0 0 0 0
## 2400 0 0 0 0 0 0 0 0 0 0
## 2401 0 0 0 0 0 0 1 0 0 0
## 2402 1 0 0 0 0 0 1 0 0 0
## 2403 1 0 0 0 0 0 0 0 0 0
## 2404 1 0 0 0 0 0 0 0 0 0
## 2405 0 0 0 0 0 0 0 0 0 0
## 2406 0 0 0 0 0 0 0 0 0 0
## 2407 0 1 0 0 0 0 0 0 0 0
## 2408 0 0 0 0 0 0 0 0 0 0
## 2409 0 0 0 0 0 0 0 1 0 0
## 2410 1 0 0 0 0 0 0 0 0 0
## 2411 1 0 0 0 0 0 1 0 0 0
## 2412 0 0 0 0 0 0 0 0 0 0
## 2413 1 0 0 0 0 0 0 0 0 0
## 2414 0 0 0 0 0 0 0 0 0 0
## 2415 1 0 0 0 0 0 0 1 0 0
## 2416 1 0 0 0 0 0 0 0 0 0
## 2417 0 0 0 0 0 0 0 0 0 0
## 2418 1 0 0 0 0 0 1 0 0 0
## 2419 1 0 0 0 0 0 0 0 0 0
## 2420 1 0 0 0 0 0 0 0 0 0
## 2421 1 0 0 0 0 0 1 0 0 0
## 2422 0 0 0 0 0 0 0 0 0 0
## 2423 0 0 0 0 0 0 1 1 0 1
## 2424 0 0 0 0 0 0 1 0 0 0
## 2425 0 0 0 0 0 0 0 0 1 0
## 2426 0 0 0 0 0 0 0 1 0 1
## 2427 1 0 0 0 0 0 1 0 0 0
## 2428 1 0 0 0 0 0 0 0 0 0
## 2429 1 0 0 0 0 0 0 0 0 0
## 2430 0 0 0 0 0 0 0 0 0 0
## 2431 0 0 0 0 0 0 1 1 0 1
## 2432 0 0 0 0 0 0 1 0 0 0
## 2433 0 0 0 0 0 0 0 1 0 0
## 2434 0 0 0 0 0 0 0 0 0 0
## 2435 0 0 0 0 0 0 0 1 0 1
## 2436 1 0 0 0 0 0 1 0 0 0
## 2437 0 0 0 0 0 0 0 0 0 0
## 2438 1 0 0 0 0 0 0 0 1 0
## 2439 0 0 0 0 0 0 0 0 0 0
## 2440 0 0 0 0 0 0 0 0 0 0
## 2441 0 0 0 0 0 0 0 0 0 0
## 2442 0 0 0 0 0 0 0 1 1 0
## 2443 0 0 0 0 0 0 1 0 0 0
## 2444 0 0 0 0 0 0 0 1 0 0
## 2445 1 0 0 0 0 0 0 1 0 0
## 2446 0 0 0 0 0 0 0 0 0 0
## 2447 0 0 0 0 0 0 1 0 0 0
## 2448 1 0 0 0 0 0 1 0 0 0
## 2449 1 0 0 0 0 0 1 0 0 0
## 2450 1 0 0 0 0 0 1 0 0 0
## 2451 1 0 0 0 0 0 0 0 0 0
## 2452 1 0 0 0 0 0 1 0 0 0
## 2453 1 0 0 0 0 0 0 0 0 0
## 2454 1 0 0 0 0 0 1 0 0 1
## 2455 1 0 0 0 1 0 0 0 0 0
## 2456 0 0 0 0 0 1 0 0 1 0
## 2457 1 0 0 0 0 0 0 0 0 0
## 2458 1 0 0 0 0 0 0 0 0 0
## 2459 0 0 0 0 0 0 0 0 1 0
## 2460 0 0 0 0 0 0 0 0 0 0
## 2461 0 0 1 0 0 1 0 0 1 0
## 2462 1 0 0 0 0 0 1 0 0 0
## 2463 0 0 0 1 0 1 0 0 1 0
## 2464 1 1 0 0 0 0 0 0 0 0
## 2465 1 0 0 0 0 0 0 0 0 0
## 2466 0 0 0 0 0 1 0 0 1 0
## 2467 0 0 0 0 0 0 0 0 1 0
## 2468 0 0 0 0 0 1 1 0 1 0
## 2469 0 0 0 0 0 0 0 0 1 0
## 2470 0 0 0 0 0 1 0 0 1 0
## 2471 0 0 0 0 0 1 0 0 0 0
## 2472 1 0 0 0 0 0 0 0 0 0
## 2473 0 1 0 0 0 0 1 1 0 0
## 2474 0 0 0 0 0 0 0 0 0 0
## 2475 1 0 0 0 0 0 0 0 0 0
## 2476 1 0 0 0 0 0 0 0 0 0
## 2477 1 0 0 0 0 0 0 0 0 1
## 2478 0 1 0 0 0 0 0 0 0 0
## 2479 0 0 0 0 1 0 0 0 0 0
## 2480 0 0 0 0 0 0 0 0 0 0
## 2481 1 0 0 0 0 0 0 0 0 0
## 2482 0 0 0 0 0 0 0 0 1 0
## 2483 1 0 0 0 0 0 0 0 1 0
## 2484 1 0 0 0 0 0 0 0 0 0
## 2485 1 0 0 0 0 0 0 0 0 0
## 2486 1 0 0 0 0 0 0 0 1 0
## 2487 0 0 0 0 0 0 0 0 1 0
## 2488 1 0 0 0 0 0 0 0 0 1
## 2489 1 0 0 0 0 0 0 0 1 0
## 2490 1 0 0 0 0 0 0 0 1 0
## 2491 1 0 0 0 0 0 0 0 0 1
## 2492 0 0 0 0 0 0 1 0 1 0
## 2493 0 0 0 0 0 0 1 0 0 0
## 2494 0 0 0 0 0 0 0 0 1 0
## 2495 1 0 0 0 0 0 1 0 0 0
## 2496 0 0 1 0 0 0 0 0 1 0
## 2497 0 0 0 0 0 0 0 0 0 0
## 2498 0 0 0 0 0 0 0 0 0 0
## 2499 0 0 0 0 0 0 1 0 0 0
## 2500 0 0 0 0 0 0 0 0 1 1
## 2501 0 0 0 0 0 0 1 0 0 0
## 2502 1 0 0 0 0 0 0 0 0 0
## 2503 0 0 0 0 0 0 0 1 1 0
## 2504 0 0 0 0 0 0 0 0 0 0
## 2505 1 0 0 0 0 0 0 0 0 0
## 2506 1 0 0 1 0 0 0 0 0 0
## 2507 0 0 0 0 0 0 0 0 0 0
## 2508 0 0 0 0 0 0 0 0 1 0
## 2509 0 0 0 0 0 0 0 1 1 0
## 2510 0 0 0 0 0 0 0 0 0 0
## 2511 1 0 0 0 0 0 0 0 0 0
## 2512 1 0 0 0 0 0 0 0 0 0
## 2513 1 0 0 0 0 0 0 0 0 1
## 2514 1 0 0 0 0 0 1 0 0 0
## 2515 1 0 0 0 0 0 0 0 0 0
## 2516 0 0 0 0 0 0 1 0 0 0
## 2517 0 0 0 0 0 0 0 0 0 0
## 2518 1 0 0 0 0 0 0 0 0 0
## 2519 1 0 0 0 0 0 0 1 0 0
## 2520 1 0 0 0 0 0 0 0 0 0
## 2521 1 0 0 0 0 0 0 0 0 0
## 2522 0 0 0 0 0 0 0 0 1 0
## 2523 0 0 0 0 0 0 0 0 1 0
## 2524 1 0 0 0 0 0 0 0 0 0
## 2525 1 0 0 0 0 0 0 0 0 1
## 2526 0 0 0 0 0 0 0 0 0 0
## 2527 1 0 0 0 0 0 0 0 1 0
## 2528 1 0 0 0 0 0 0 0 1 1
## 2529 0 0 0 0 0 0 1 0 1 0
## 2530 0 0 0 0 0 0 0 1 0 0
## 2531 1 0 0 0 0 0 1 0 0 1
## 2532 1 0 0 0 0 0 1 0 1 0
## 2533 1 0 0 0 0 0 0 0 0 0
## 2534 1 0 0 0 0 0 0 0 0 0
## 2535 1 0 0 0 0 0 0 0 0 0
## 2536 0 0 0 0 0 0 1 0 0 0
## 2537 0 0 0 0 0 0 1 0 0 1
## 2538 0 0 0 0 0 0 1 0 0 0
## 2539 0 0 0 0 1 0 0 0 0 0
## 2540 1 0 0 0 0 0 0 0 0 0
## 2541 0 0 0 0 0 0 0 0 1 0
## 2542 1 0 0 0 0 0 0 0 0 0
## 2543 0 0 1 0 0 0 0 1 0 0
## 2544 0 0 0 0 0 0 1 0 0 0
## 2545 0 0 0 0 1 0 0 0 0 0
## 2546 0 0 0 0 0 0 0 1 1 0
## 2547 1 0 0 0 0 0 0 0 1 0
## 2548 0 0 0 0 1 0 0 0 0 0
## 2549 1 0 0 0 0 0 0 0 1 0
## 2550 0 0 0 0 0 0 0 1 0 0
## 2551 1 0 0 0 0 0 1 0 0 0
## 2552 1 0 0 0 0 0 0 0 0 0
## 2553 1 0 0 0 0 0 0 0 0 0
## 2554 1 0 0 0 0 1 0 1 1 0
## 2555 0 0 0 0 1 0 0 0 0 0
## 2556 0 0 0 0 0 0 0 0 1 0
## 2557 0 0 0 0 0 0 0 0 0 0
## 2558 0 0 0 0 0 0 0 1 0 0
## 2559 0 0 0 0 1 0 1 0 0 0
## 2560 0 0 0 0 0 0 0 0 1 0
## 2561 0 0 0 0 0 0 0 0 0 0
## 2562 1 0 0 0 0 0 0 0 0 0
## 2563 0 0 0 0 0 0 1 0 0 0
## 2564 0 0 0 0 0 0 0 1 1 0
## 2565 0 0 0 0 0 0 0 0 0 0
## 2566 1 0 0 0 0 0 1 1 0 1
## 2567 0 0 0 0 0 0 0 0 0 0
## 2568 1 0 0 0 0 0 0 0 0 0
## 2569 1 0 0 0 0 0 0 0 0 1
## 2570 1 0 0 0 0 0 0 0 0 0
## 2571 0 0 0 1 0 0 0 1 1 0
## 2572 1 0 0 0 0 1 0 0 0 0
## 2573 0 0 0 0 0 0 0 0 0 0
## 2574 0 0 0 0 0 0 0 1 1 0
## 2575 1 0 0 0 0 0 1 0 0 0
## 2576 1 0 0 0 0 0 0 0 0 1
## 2577 0 0 0 1 0 0 0 0 0 0
## 2578 0 0 0 0 0 0 1 0 0 0
## 2579 0 0 0 0 0 0 0 1 0 0
## 2580 0 0 0 1 0 0 0 0 0 0
## 2581 1 0 0 0 1 0 0 0 0 0
## 2582 0 0 0 0 0 0 1 0 0 0
## 2583 0 0 0 0 0 0 0 1 0 0
## 2584 0 0 0 0 0 0 0 1 0 0
## 2585 0 0 0 0 0 0 0 1 0 0
## 2586 0 0 0 0 0 0 0 0 0 0
## 2587 0 0 0 1 0 0 0 0 0 0
## 2588 1 0 0 0 0 0 1 0 0 0
## 2589 0 0 0 0 0 0 0 0 0 0
## 2590 0 0 0 0 0 0 0 0 1 0
## 2591 1 0 0 0 0 0 0 0 0 0
## 2592 0 0 0 0 0 0 1 0 0 0
## 2593 1 0 0 0 0 0 1 0 0 1
## 2594 0 0 0 1 0 0 0 0 1 0
## 2595 0 0 0 0 0 0 0 0 0 0
## 2596 0 0 0 0 0 0 0 0 1 0
## 2597 0 0 1 0 0 1 0 0 1 0
## 2598 1 0 0 0 0 0 0 0 0 1
## 2599 0 0 0 0 0 0 0 0 0 0
## 2600 1 0 0 0 0 0 0 0 0 0
## 2601 0 0 0 0 0 0 0 0 0 0
## 2602 0 0 0 0 0 0 1 0 0 0
## 2603 0 0 0 0 0 0 0 0 0 0
## 2604 0 0 0 0 0 0 0 0 0 0
## 2605 0 0 0 0 1 0 0 0 0 0
## 2606 1 1 0 0 0 0 0 1 0 0
## 2607 1 0 0 0 0 0 0 0 0 0
## 2608 0 0 0 1 0 0 0 0 0 0
## 2609 0 0 0 1 0 0 0 0 0 0
## 2610 0 0 0 1 0 0 0 0 0 0
## 2611 1 0 0 0 0 0 0 0 0 0
## 2612 1 0 0 0 0 0 0 0 0 0
## 2613 1 0 0 0 0 0 0 0 0 1
## 2614 0 0 0 0 0 0 0 0 0 0
## 2615 0 0 0 0 0 1 0 0 1 0
## 2616 0 0 0 0 0 0 0 0 1 0
## 2617 0 0 0 0 0 0 0 0 0 0
## 2618 1 0 0 0 0 0 0 0 0 0
## 2619 0 0 0 0 0 0 1 0 0 1
## 2620 0 0 0 0 0 0 0 0 0 1
## 2621 1 0 0 0 0 0 0 0 0 0
## 2622 1 0 0 0 0 0 0 0 0 0
## 2623 1 0 0 0 0 0 0 0 0 0
## 2624 1 0 0 0 0 0 1 0 0 0
## 2625 0 0 0 0 0 0 0 0 1 0
## 2626 0 0 0 1 0 0 0 0 0 0
## 2627 0 0 0 0 0 0 0 0 1 0
## 2628 1 0 0 0 0 0 0 0 1 0
## 2629 0 0 0 0 1 0 1 0 0 0
## 2630 0 0 0 0 0 1 0 0 1 0
## 2631 1 0 0 0 0 0 0 0 0 0
## 2632 0 0 0 0 1 0 0 0 0 0
## 2633 1 0 1 0 0 0 0 0 0 0
## 2634 0 0 1 0 0 1 0 0 1 0
## 2635 1 0 0 0 0 0 0 0 0 0
## 2636 0 0 1 0 0 0 0 0 1 0
## 2637 0 0 0 0 0 0 0 0 0 0
## 2638 0 0 0 0 0 0 0 0 1 0
## 2639 1 0 0 0 0 0 1 0 0 0
## 2640 1 0 0 0 0 0 0 0 0 0
## 2641 0 0 0 0 1 0 1 0 0 0
## 2642 0 0 0 0 0 0 1 0 0 0
## 2643 1 0 0 0 0 0 0 0 0 0
## 2644 0 0 0 0 0 0 0 0 1 0
## 2645 0 0 1 0 0 1 0 0 1 0
## 2646 0 0 0 0 0 0 0 0 0 0
## 2647 1 0 0 0 0 0 0 0 1 0
## 2648 0 0 0 0 0 0 0 0 0 0
## 2649 1 0 0 0 0 0 0 0 0 0
## 2650 1 0 0 0 0 0 0 0 0 0
## 2651 0 0 0 0 0 0 0 0 1 0
## 2652 1 0 0 0 0 0 0 0 0 1
## 2653 0 0 0 0 0 1 1 0 1 0
## 2654 0 0 0 0 0 0 0 0 0 0
## 2655 0 0 0 0 0 0 1 0 0 0
## 2656 0 0 0 0 0 0 1 0 0 0
## 2657 0 0 0 0 0 0 0 0 0 0
## 2658 1 0 0 0 0 0 0 1 0 0
## 2659 1 0 0 0 0 0 0 0 0 0
## 2660 0 0 0 0 0 0 0 0 0 0
## 2661 1 0 0 0 0 0 0 0 1 0
## 2662 0 0 0 0 0 0 1 0 0 0
## 2663 0 0 0 0 0 0 0 0 1 0
## 2664 1 0 0 0 0 0 1 0 0 0
## 2665 1 0 0 0 0 0 0 0 0 0
## 2666 1 0 0 0 0 0 0 0 0 0
## 2667 1 0 0 0 0 0 0 0 0 0
## 2668 0 0 0 0 0 0 0 0 0 0
## 2669 1 0 0 0 0 0 0 0 0 0
## 2670 0 0 0 0 0 0 0 1 0 0
## 2671 1 0 0 0 0 0 1 0 0 0
## 2672 0 0 0 0 0 0 0 0 0 0
## 2673 1 0 0 0 0 0 0 0 1 1
## 2674 0 0 0 0 0 0 0 0 0 0
## 2675 1 0 0 0 0 0 1 0 0 0
## 2676 1 0 0 0 0 0 1 0 0 1
## 2677 0 0 0 0 0 0 0 0 0 0
## 2678 0 0 0 0 0 0 0 0 1 0
## 2679 1 0 0 0 0 0 0 0 0 1
## 2680 1 0 0 0 0 0 0 0 0 0
## 2681 1 0 0 0 0 0 0 0 0 0
## 2682 1 0 0 0 0 0 0 0 0 0
## 2683 1 0 0 0 0 0 0 0 0 1
## 2684 0 0 0 0 0 0 0 1 0 0
## 2685 0 0 0 0 0 0 0 0 0 0
## 2686 1 0 0 0 0 0 0 0 0 0
## 2687 1 0 0 0 0 0 0 0 0 0
## 2688 1 0 0 0 0 0 0 0 0 0
## 2689 1 0 0 0 0 0 0 0 0 0
## 2690 0 0 0 0 0 0 0 0 1 0
## 2691 0 0 0 0 0 0 0 0 0 0
## 2692 1 0 0 0 0 0 1 0 0 0
## 2693 1 0 0 0 0 0 0 0 0 0
## 2694 1 0 0 0 0 0 0 0 0 0
## 2695 1 0 0 0 0 0 0 0 0 1
## 2696 1 0 0 0 0 0 0 0 1 0
## 2697 0 0 0 0 0 0 0 0 0 0
## 2698 0 0 0 0 0 0 0 0 0 0
## 2699 1 0 0 0 0 0 0 0 1 0
## 2700 0 0 0 0 0 0 0 0 0 0
## 2701 0 0 0 0 0 0 0 0 0 0
## 2702 1 0 0 0 0 0 0 0 0 0
## 2703 1 0 0 0 0 0 0 0 0 0
## 2704 0 0 0 0 0 0 0 0 0 0
## 2705 0 0 0 0 0 0 1 1 0 1
## 2706 1 0 0 0 0 0 0 0 0 0
## 2707 1 0 0 0 0 0 0 0 0 0
## 2708 1 0 0 0 0 0 0 0 0 0
## 2709 1 0 0 0 0 0 0 0 0 0
## 2710 1 0 0 0 0 0 0 0 0 0
## 2711 1 0 0 0 0 0 0 0 0 0
## 2712 1 0 0 0 0 0 0 0 0 0
## 2713 1 0 0 0 0 0 0 0 0 0
## 2714 1 0 0 0 0 0 0 0 0 0
## 2715 0 0 0 0 0 0 1 0 0 0
## 2716 0 0 0 0 0 0 1 0 0 1
## 2717 0 0 0 0 0 0 1 0 0 0
## 2718 0 0 0 0 1 0 0 0 0 0
## 2719 0 1 0 0 0 0 0 0 0 0
## 2720 0 0 0 0 0 0 0 0 1 0
## 2721 0 0 0 0 0 0 1 0 0 0
## 2722 0 0 0 0 0 0 0 1 0 0
## 2723 0 0 0 0 0 0 1 0 0 0
## 2724 1 0 0 0 0 0 0 0 0 0
## 2725 0 0 0 0 0 0 1 0 0 0
## 2726 0 0 1 0 0 0 0 1 0 0
## 2727 0 0 0 0 1 0 0 0 0 0
## 2728 0 0 0 0 0 0 0 0 0 0
## 2729 0 0 0 0 1 0 0 0 0 0
## 2730 1 0 0 0 0 0 0 0 0 0
## 2731 1 0 0 0 0 0 0 0 1 0
## 2732 0 0 0 0 1 0 0 0 0 0
## 2733 1 0 0 0 0 0 0 0 1 0
## 2734 0 0 0 0 0 0 1 0 0 0
## 2735 1 0 0 0 0 0 0 0 0 0
## 2736 0 0 0 0 0 0 0 0 0 0
## 2737 1 0 0 0 0 0 1 0 0 0
## 2738 1 0 0 0 0 0 0 0 0 0
## 2739 1 0 0 0 0 0 0 0 0 0
## 2740 1 0 0 0 0 0 1 0 0 0
## 2741 1 0 0 0 1 0 0 0 0 0
## 2742 1 0 0 0 0 0 1 0 0 1
## 2743 1 0 0 0 0 0 0 0 0 0
## 2744 1 0 0 0 0 1 0 1 1 0
## 2745 1 0 0 0 0 0 0 0 0 0
## 2746 1 0 0 0 0 0 0 0 0 0
## 2747 0 0 0 0 1 0 0 0 0 0
## 2748 0 0 0 0 1 0 0 0 0 0
## 2749 0 0 0 0 0 0 0 0 0 0
## 2750 0 0 0 0 0 0 0 1 0 0
## 2751 0 0 0 0 0 0 0 0 0 0
## 2752 0 0 0 0 0 0 0 0 0 0
## 2753 1 0 0 0 0 0 0 0 0 1
## 2754 1 0 0 0 0 0 0 0 0 0
## 2755 1 0 0 0 0 0 0 0 0 0
## 2756 1 0 0 0 0 0 0 0 0 0
## 2757 0 0 0 0 0 0 0 0 0 0
## 2758 0 0 0 0 0 0 0 0 0 0
## 2759 1 0 0 0 0 0 1 0 0 0
## 2760 1 0 0 0 0 0 1 1 0 1
## 2761 0 0 0 0 0 0 0 0 0 0
## 2762 0 0 0 0 0 0 0 1 0 0
## 2763 0 0 0 0 0 0 0 0 0 0
## 2764 1 0 0 0 0 0 0 0 0 0
## 2765 0 0 0 0 0 0 0 1 0 0
## 2766 1 0 0 0 0 0 0 0 0 1
## 2767 0 0 0 0 0 0 1 1 0 1
## 2768 1 0 0 0 0 0 0 0 0 0
## 2769 0 0 0 1 0 0 1 0 1 0
## 2770 0 0 0 0 1 0 0 0 0 0
## 2771 1 0 0 0 0 0 0 0 0 0
## 2772 1 0 0 0 0 0 0 0 0 1
## 2773 0 0 0 0 0 0 0 0 0 0
## 2774 1 0 0 0 0 0 0 0 0 1
## 2775 1 0 0 0 0 1 0 0 0 0
## 2776 1 0 0 0 0 0 0 0 0 0
## 2777 0 0 0 0 0 0 0 0 0 0
## 2778 0 0 0 0 0 0 0 1 1 0
## 2779 1 0 0 0 0 0 0 0 0 0
## 2780 1 0 0 0 0 0 1 0 0 0
## 2781 0 0 0 0 0 0 0 0 1 0
## 2782 1 0 0 0 0 0 0 0 0 1
## 2783 0 0 0 1 0 0 0 0 0 0
## 2784 0 0 0 0 0 0 1 0 0 0
## 2785 0 0 0 0 0 0 0 1 0 0
## 2786 0 0 0 1 0 0 0 0 0 0
## 2787 1 0 0 0 1 0 0 0 0 0
## 2788 0 0 0 0 0 0 0 0 0 0
## 2789 0 0 0 0 0 0 0 0 0 1
## 2790 1 0 0 0 0 0 0 0 0 0
## 2791 1 0 0 0 0 0 1 0 0 0
## 2792 1 0 0 0 1 0 0 0 0 1
## 2793 1 0 0 0 0 0 0 0 0 0
## 2794 0 0 0 0 0 0 1 0 0 0
## 2795 1 0 0 0 0 0 0 0 0 0
## 2796 1 0 0 0 0 0 0 0 1 0
## 2797 1 0 0 0 0 0 0 0 0 0
## 2798 0 0 0 1 0 0 0 0 0 0
## 2799 1 0 0 0 0 0 0 0 0 0
## 2800 1 0 0 0 0 0 1 0 0 0
## 2801 0 0 0 0 0 0 0 0 0 0
## 2802 0 0 0 0 0 0 1 0 0 1
## 2803 0 0 0 0 0 0 0 0 0 0
## 2804 0 0 0 0 0 0 0 0 0 0
## 2805 1 0 0 0 0 0 1 0 0 0
## 2806 1 0 0 0 0 0 1 0 0 0
## 2807 1 0 0 0 0 0 1 0 0 0
## 2808 0 0 0 0 0 0 1 0 0 0
## 2809 1 0 0 0 0 0 0 0 0 0
## 2810 1 0 0 0 0 0 1 0 0 1
## 2811 1 0 0 0 0 0 0 0 0 0
## 2812 1 0 0 0 0 0 0 0 0 0
## 2813 1 0 0 0 0 0 0 0 0 1
## 2814 0 0 0 0 1 0 1 0 0 0
## 2815 1 0 0 0 0 0 0 0 0 0
## 2816 0 0 0 0 0 0 0 0 0 0
## 2817 1 0 0 0 0 0 0 0 0 0
## 2818 0 0 0 0 0 0 1 0 0 0
## 2819 1 0 0 0 0 0 0 0 0 0
## 2820 0 0 0 0 0 0 0 0 0 0
## 2821 1 0 0 0 0 0 0 0 0 0
## 2822 1 0 0 0 0 0 0 0 0 0
## 2823 0 0 0 0 0 0 0 0 0 0
## 2824 0 0 0 0 0 0 1 0 1 0
## 2825 1 0 0 0 0 0 0 0 0 0
## 2826 0 0 0 0 0 0 0 0 0 0
## 2827 0 0 0 0 0 0 0 0 1 0
## 2828 0 1 0 0 0 0 1 1 0 0
## 2829 0 0 0 0 0 0 0 0 0 0
## 2830 1 0 0 0 0 0 0 0 0 0
## 2831 0 0 0 0 1 0 0 0 0 0
## 2832 0 0 0 0 1 0 0 0 0 0
## 2833 1 1 0 0 0 0 0 1 0 0
## 2834 0 0 0 0 0 0 0 0 0 0
## 2835 1 0 0 0 0 0 0 0 0 0
## 2836 0 0 0 0 0 0 0 0 0 0
## 2837 0 0 0 0 0 0 0 0 0 1
## 2838 0 0 0 0 1 0 0 0 0 0
## 2839 0 0 0 0 0 0 0 1 0 0
## 2840 0 0 0 0 0 0 0 0 0 0
## 2841 0 0 0 1 0 0 0 0 0 0
## 2842 0 0 0 0 1 0 1 0 0 0
## 2843 1 0 0 0 0 0 0 0 0 0
## 2844 1 0 0 0 0 0 1 0 0 0
## 2845 0 0 0 0 0 0 0 0 0 0
## 2846 0 0 0 0 0 0 0 1 0 1
## 2847 0 0 0 0 0 0 0 0 0 0
## 2848 0 0 0 0 0 0 1 0 0 0
## 2849 0 0 0 0 0 1 0 0 1 0
## 2850 0 0 0 0 0 0 0 0 1 0
## 2851 0 0 0 0 0 0 0 0 0 0
## 2852 1 0 0 0 0 0 1 0 0 1
## 2853 0 0 0 0 1 0 1 0 0 0
## 2854 0 0 0 0 0 0 1 0 0 0
## 2855 0 0 0 0 0 0 1 0 0 0
## 2856 0 0 1 0 0 0 0 0 0 0
## 2857 0 0 1 0 0 0 1 0 1 0
## 2858 1 0 0 0 0 0 0 0 0 0
## 2859 0 0 0 0 0 1 0 0 0 0
## 2860 0 0 0 0 0 0 0 0 0 0
## 2861 1 0 0 0 0 0 0 0 0 0
## 2862 0 0 0 0 0 0 0 0 0 0
## 2863 0 0 0 0 0 0 1 0 0 1
## 2864 1 0 0 0 0 0 0 0 0 0
## 2865 1 0 0 0 0 0 0 0 0 0
## 2866 1 0 0 0 0 0 0 0 0 0
## 2867 1 0 0 0 0 0 1 0 0 0
## 2868 0 0 0 0 0 1 0 0 1 0
## 2869 0 0 0 0 0 0 1 0 0 0
## 2870 1 0 0 0 0 0 0 0 0 1
## 2871 0 0 0 0 0 0 0 0 0 0
## 2872 1 0 0 0 0 0 1 0 0 0
## 2873 0 0 0 0 0 0 0 0 0 0
## 2874 0 0 0 0 0 0 0 0 0 1
## 2875 1 0 0 0 0 0 0 0 0 0
## 2876 0 0 0 0 0 0 0 0 0 0
## 2877 1 0 0 0 0 0 0 0 0 0
## 2878 1 0 0 0 0 0 0 0 0 0
## 2879 1 0 0 0 0 0 0 0 0 1
## 2880 1 0 0 0 0 0 0 0 0 0
## 2881 0 0 0 0 0 0 0 0 0 0
## 2882 1 0 0 0 0 0 1 0 0 1
## 2883 1 0 0 0 0 0 1 0 0 0
## 2884 0 0 0 0 1 0 0 0 0 0
## 2885 0 0 0 0 1 0 1 0 0 0
## 2886 0 0 0 0 0 1 0 0 1 0
## 2887 0 0 0 0 0 0 0 0 0 0
## 2888 0 0 0 0 0 0 1 0 1 0
## 2889 0 0 0 0 0 0 0 0 0 0
## 2890 0 0 0 0 1 0 0 0 0 0
## 2891 1 0 0 0 0 0 0 0 0 0
## 2892 0 0 0 0 0 0 0 0 0 0
## 2893 1 0 0 0 0 0 0 0 0 0
## 2894 1 0 0 0 0 0 0 0 0 0
## 2895 0 0 0 0 1 0 0 0 0 0
## 2896 0 0 0 0 1 0 0 0 0 0
## 2897 1 0 0 0 0 0 1 0 0 1
## 2898 1 0 0 0 0 0 0 0 0 0
## 2899 1 0 0 0 0 0 0 0 0 0
## 2900 1 0 0 0 0 0 0 0 0 1
## 2901 1 0 0 0 0 0 0 0 1 0
## 2902 0 0 1 0 0 1 0 0 1 0
## 2903 0 0 0 0 0 1 0 0 1 0
## 2904 1 0 0 0 0 0 0 0 0 0
## 2905 0 0 0 0 0 0 0 0 0 0
## 2906 1 0 0 0 0 0 1 0 0 0
## 2907 1 0 0 0 0 0 0 0 0 0
## 2908 0 0 0 0 0 0 1 0 0 0
## 2909 1 0 0 0 0 0 1 0 0 0
## 2910 0 0 0 0 1 0 1 0 0 0
## 2911 1 0 0 0 0 0 0 0 0 0
## 2912 1 0 0 0 0 0 0 0 0 0
## 2913 0 0 0 0 0 0 1 0 0 0
## 2914 1 0 0 0 0 0 1 0 0 0
## 2915 1 0 0 0 0 0 1 0 0 0
## 2916 1 0 0 0 0 0 1 0 0 0
## 2917 1 0 0 0 0 0 0 0 0 0
## 2918 0 0 0 0 0 0 1 0 0 0
## 2919 1 0 0 0 0 0 0 0 0 0
## 2920 1 0 0 0 0 0 1 0 0 0
## 2921 1 0 0 0 0 0 0 0 0 0
## 2922 0 0 0 0 0 0 1 0 0 0
## 2923 0 0 0 0 0 0 1 0 0 0
## 2924 1 0 0 0 0 0 0 0 0 0
## 2925 1 0 0 0 0 0 0 0 0 0
## 2926 1 0 0 0 0 0 1 0 0 0
## 2927 1 0 0 0 0 0 1 0 0 0
## 2928 0 0 0 0 0 0 1 0 0 0
## 2929 0 0 0 0 0 0 0 0 0 0
## 2930 1 0 0 0 0 0 1 0 0 0
## 2931 0 0 0 0 0 1 0 0 0 0
## 2932 0 0 0 0 0 0 0 0 0 0
## 2933 1 0 0 0 0 0 0 0 0 0
## 2934 1 0 0 0 0 0 0 0 0 0
## 2935 1 0 0 0 0 0 1 0 0 0
## 2936 1 0 0 0 0 0 0 0 0 0
## 2937 1 0 0 0 0 0 1 0 0 0
## 2938 1 0 0 0 0 0 0 0 0 0
## 2939 0 1 0 0 0 0 0 0 0 0
## 2940 0 0 0 0 0 0 0 0 0 0
## 2941 1 0 0 0 0 0 0 0 0 0
## 2942 0 0 0 0 0 0 0 0 0 0
## 2943 1 0 0 0 0 0 1 0 0 0
## 2944 1 0 0 0 0 0 0 0 0 0
## 2945 0 0 0 0 0 0 0 0 0 0
## 2946 1 0 0 0 0 0 0 0 0 0
## 2947 0 0 0 0 0 0 0 0 0 0
## 2948 1 0 0 0 0 0 0 0 0 0
## 2949 1 0 0 0 0 0 0 0 0 0
## 2950 1 0 0 0 0 0 0 0 0 0
## 2951 1 0 0 0 0 0 0 0 1 0
## 2952 1 0 0 0 0 0 0 0 0 0
## 2953 0 0 0 0 1 0 0 0 0 0
## 2954 0 0 0 0 0 0 1 0 0 0
## 2955 1 0 0 0 0 0 0 0 0 0
## 2956 0 0 0 0 1 0 0 0 0 0
## 2957 0 0 0 0 0 0 0 0 0 0
## 2958 0 0 0 0 0 0 0 0 0 0
## 2959 0 0 0 0 0 0 0 0 0 1
## 2960 1 0 0 0 0 0 0 0 0 0
## 2961 0 0 0 0 0 0 0 0 0 0
## 2962 1 0 0 0 0 0 0 0 0 0
## 2963 1 0 0 0 0 0 0 0 0 0
## 2964 0 0 0 0 0 0 0 0 0 0
## 2965 0 0 0 1 0 0 0 0 0 0
## 2966 0 0 0 0 0 0 1 0 0 0
## 2967 0 0 0 0 0 0 0 0 0 0
## 2968 0 0 0 0 0 0 0 0 0 1
## 2969 1 0 0 0 0 0 0 1 0 0
## 2970 0 0 0 1 0 0 0 0 1 0
## 2971 0 0 0 0 0 0 0 0 0 0
## 2972 1 0 0 0 0 0 0 0 0 0
## 2973 1 0 0 0 0 0 1 0 0 0
## 2974 0 0 0 0 1 0 1 0 0 0
## 2975 1 0 0 0 0 0 0 0 1 0
## 2976 1 0 0 0 0 0 0 0 0 0
## 2977 0 0 0 0 0 0 0 0 0 0
## 2978 1 0 0 0 0 0 0 0 0 0
## 2979 1 0 0 0 0 0 1 0 0 0
## 2980 1 0 0 0 0 0 0 0 0 0
## 2981 0 0 0 0 0 0 0 0 0 0
## 2982 0 0 0 0 0 0 0 0 1 0
## 2983 1 0 0 0 0 0 0 0 0 0
## 2984 1 0 0 0 0 0 0 0 0 1
## 2985 0 0 0 0 0 0 1 1 0 1
## 2986 0 0 0 0 0 0 1 0 0 1
## 2987 0 0 0 0 0 0 0 1 0 0
## 2988 1 0 0 0 0 0 0 0 0 0
## 2989 0 0 0 0 0 0 0 0 0 0
## 2990 0 0 0 0 1 0 0 0 0 0
## 2991 1 0 0 0 0 0 0 0 1 0
## 2992 0 0 0 0 0 0 0 0 1 0
## 2993 0 0 0 0 0 0 0 1 0 1
## 2994 0 0 0 0 1 0 0 0 0 0
## 2995 0 0 0 0 0 0 0 0 1 0
## 2996 0 0 0 0 0 0 0 0 0 0
## 2997 0 0 0 0 0 0 0 0 0 0
## 2998 1 0 0 0 0 0 1 1 0 1
## 2999 0 0 0 0 0 0 0 0 0 0
## 3000 0 0 0 0 0 0 0 1 1 1
## 3001 0 0 0 0 0 0 1 1 0 1
## 3002 0 0 0 0 1 0 0 0 0 0
## 3003 0 0 0 0 0 0 0 0 0 0
## 3004 0 0 0 0 0 0 0 1 0 0
## 3005 0 0 0 1 0 0 0 0 0 0
## 3006 0 0 0 0 0 0 0 0 0 0
## 3007 0 0 0 0 0 0 0 0 0 0
## 3008 0 0 0 0 0 0 0 1 1 0
## 3009 0 0 0 0 0 0 1 0 0 0
## 3010 0 0 0 1 0 0 0 0 1 0
## 3011 0 0 0 0 0 0 0 0 1 0
## 3012 1 0 0 0 0 0 0 0 0 0
## 3013 1 0 0 0 0 0 0 0 0 0
## 3014 0 0 0 0 0 1 0 0 0 0
## 3015 1 1 0 0 0 0 0 1 0 0
## 3016 1 0 0 0 0 0 0 0 0 0
## 3017 0 0 0 0 0 0 1 0 0 1
## 3018 0 0 0 0 0 0 1 0 1 0
## 3019 0 0 0 0 1 0 0 0 0 0
## 3020 0 0 0 0 0 0 0 0 1 0
## 3021 1 0 0 0 0 0 0 0 0 0
## 3022 1 0 0 0 0 0 0 0 1 0
## 3023 1 0 0 0 0 0 0 0 1 0
## 3024 0 0 0 0 0 0 0 0 0 0
## 3025 0 1 0 0 0 0 0 0 0 0
## 3026 0 0 0 0 0 0 1 0 0 0
## 3027 0 0 0 0 0 0 0 1 1 0
## 3028 1 0 0 0 0 0 0 0 0 0
## 3029 0 0 0 0 0 0 0 0 0 0
## 3030 1 0 0 0 0 0 0 0 1 0
## 3031 1 0 0 0 0 0 0 1 0 0
## 3032 1 0 0 0 0 0 0 0 0 0
## 3033 1 0 0 0 0 0 0 0 0 0
## 3034 0 0 0 1 0 0 0 0 1 0
## 3035 0 0 0 0 0 0 1 1 0 1
## 3036 0 0 0 0 0 0 0 0 1 0
## 3037 1 0 0 0 0 0 0 0 0 0
## 3038 1 0 0 0 0 0 0 0 1 0
## 3039 1 0 0 0 0 0 0 0 1 0
## 3040 0 0 0 0 1 0 0 0 0 0
## 3041 1 0 0 0 0 0 0 0 1 0
## 3042 0 0 0 0 0 0 0 0 1 0
## 3043 0 0 0 0 0 0 0 1 0 1
## 3044 0 0 0 1 0 0 0 0 0 0
## 3045 1 0 0 0 0 0 0 0 0 0
## 3046 1 0 0 0 0 0 1 0 1 0
## 3047 0 0 0 0 0 0 0 1 1 0
## 3048 0 0 0 0 0 0 0 0 0 0
## 3049 0 0 0 0 0 0 0 1 1 0
## 3050 0 0 0 1 0 0 0 1 0 0
## 3051 0 0 0 1 0 0 1 0 1 0
## 3052 0 0 0 1 0 0 0 0 0 0
## 3053 0 0 0 1 0 0 0 0 0 0
## 3054 0 0 0 1 0 0 1 0 0 0
## 3055 0 0 0 0 0 0 0 0 1 0
## 3056 0 0 0 1 0 0 0 0 0 0
## 3057 0 0 0 0 0 0 0 1 0 0
## 3058 0 0 0 1 0 0 0 0 0 0
## 3059 0 0 0 0 0 0 0 0 0 0
## 3060 0 0 0 0 0 0 0 0 0 0
## 3061 0 0 0 0 0 0 0 0 0 0
## 3062 1 0 0 0 0 0 0 0 1 0
## 3063 1 0 0 0 0 0 0 0 1 1
## 3064 1 0 0 0 0 0 0 1 0 0
## 3065 0 0 0 0 0 0 0 0 0 0
## 3066 0 0 0 0 0 1 0 1 1 0
## 3067 0 0 0 0 0 0 0 0 0 0
## 3068 1 0 0 0 0 0 0 0 0 0
## 3069 0 0 0 0 0 0 0 0 0 0
## 3070 0 0 0 0 0 0 0 1 1 0
## 3071 0 0 0 0 0 0 0 0 1 0
## 3072 0 0 0 0 0 0 0 0 1 0
## 3073 1 0 0 0 0 0 1 0 0 1
## 3074 0 0 0 1 0 0 0 0 1 0
## 3075 1 0 0 0 1 0 0 0 0 0
## 3076 0 0 0 0 0 1 0 0 1 0
## 3077 1 0 0 0 0 0 0 0 0 0
## 3078 0 0 0 0 0 0 0 0 0 0
## 3079 0 0 0 0 0 0 0 0 1 0
## 3080 0 0 0 0 0 0 0 1 1 0
## 3081 1 0 1 0 0 0 0 0 0 0
## 3082 0 0 0 0 0 0 0 0 1 0
## 3083 0 0 0 0 0 0 0 0 0 0
## 3084 0 0 0 0 1 0 1 0 0 0
## 3085 0 0 0 0 0 0 0 0 0 0
## 3086 0 0 0 0 0 0 0 0 0 0
## 3087 0 0 0 0 0 1 0 0 1 0
## 3088 0 0 0 0 0 0 0 0 1 0
## 3089 0 0 0 0 0 1 0 0 0 0
## 3090 1 0 0 0 0 0 0 0 1 0
## 3091 1 0 0 0 0 0 0 0 0 1
## 3092 1 0 0 0 0 1 0 0 0 0
## 3093 0 0 0 0 0 1 1 0 1 0
## 3094 1 0 0 0 0 0 0 0 0 0
## 3095 0 0 0 0 0 0 0 1 1 0
## 3096 1 0 0 0 0 0 0 0 1 0
## 3097 0 0 0 1 0 0 0 0 0 0
## 3098 0 0 0 1 0 0 0 0 0 0
## 3099 0 0 0 1 0 0 0 0 1 0
## 3100 0 0 0 0 0 0 0 0 1 0
## 3101 0 0 0 1 0 0 0 0 0 0
## 3102 0 0 0 1 0 0 0 0 0 0
## 3103 0 0 0 1 0 0 0 0 0 0
## 3104 0 0 0 1 0 0 0 0 0 0
## 3105 0 0 0 1 0 0 0 0 0 0
## 3106 0 0 0 1 0 0 0 0 0 0
## 3107 0 0 0 1 0 0 0 0 0 0
## 3108 0 0 0 1 0 0 0 0 0 0
## 3109 0 0 0 1 0 0 0 0 0 0
## 3110 0 0 0 1 0 0 0 1 0 0
## 3111 0 0 0 1 0 0 0 0 0 0
## 3112 0 0 0 1 0 0 0 0 0 0
## 3113 0 0 0 1 0 0 0 0 0 0
## 3114 0 0 0 1 0 0 0 0 0 0
## 3115 0 0 0 1 0 0 0 0 0 0
## 3116 1 0 0 0 0 0 0 0 0 0
## 3117 0 0 0 0 1 0 0 0 0 0
## 3118 0 0 0 0 0 0 0 0 0 0
## 3119 0 0 0 1 0 0 0 0 0 0
## 3120 1 1 0 0 0 0 0 0 1 0
## 3121 1 0 0 1 0 0 0 0 0 0
## 3122 1 0 0 1 0 0 0 0 0 0
## 3123 0 0 0 1 0 0 0 0 0 0
## 3124 0 0 0 1 0 0 0 0 0 0
## 3125 0 0 0 1 0 0 0 0 1 0
## 3126 0 0 0 1 0 0 0 0 0 0
## 3127 1 0 0 1 0 0 0 0 0 0
## 3128 0 0 0 1 0 0 0 1 1 0
## 3129 0 0 0 1 0 0 0 1 0 0
## 3130 1 0 0 0 0 0 0 0 1 0
## 3131 0 0 0 0 0 0 0 0 1 0
## 3132 0 0 0 0 1 0 0 0 0 0
## 3133 1 0 0 0 0 0 0 0 1 0
## 3134 1 0 0 0 0 0 0 0 0 0
## 3135 0 0 0 1 0 0 0 0 0 0
## 3136 0 0 0 1 0 0 0 0 0 0
## 3137 0 0 1 0 0 0 0 0 1 0
## 3138 0 0 0 1 0 0 0 1 1 0
## 3139 0 0 0 1 0 0 0 0 0 0
## 3140 0 0 0 1 0 0 0 0 0 0
## 3141 0 0 0 1 0 0 0 0 0 0
## 3142 0 0 0 1 0 0 0 0 0 0
## 3143 0 0 0 1 0 0 0 0 0 0
## 3144 0 0 0 1 0 0 0 0 0 0
## 3145 1 0 0 0 0 0 0 0 1 0
## 3146 0 0 0 0 0 0 0 0 0 1
## 3147 0 0 0 0 0 0 0 0 0 0
## 3148 1 0 0 0 0 0 0 0 1 0
## 3149 0 0 0 1 0 0 0 0 0 0
## 3150 1 0 0 0 0 0 0 0 1 0
## 3151 1 0 0 0 0 0 0 0 1 0
## 3152 1 0 0 0 0 0 0 0 1 0
## 3153 0 0 0 0 0 0 1 0 1 0
## 3154 0 0 0 0 0 0 0 1 1 0
## 3155 0 0 0 0 0 0 0 1 0 0
## 3156 0 0 0 1 0 0 0 0 0 0
## 3157 0 0 0 0 0 1 0 1 0 0
## 3158 0 0 0 0 0 0 0 0 1 0
## 3159 0 0 0 1 0 0 0 0 0 0
## 3160 0 0 0 1 0 0 0 0 1 0
## 3161 0 0 0 1 0 0 0 0 0 0
## 3162 1 0 0 0 0 0 0 0 0 0
## 3163 0 1 0 0 0 0 0 0 0 0
## 3164 0 0 0 1 0 0 0 0 1 0
## 3165 0 0 0 1 0 0 0 0 1 0
## 3166 0 0 0 0 0 0 0 0 0 0
## 3167 0 0 0 1 0 0 0 0 0 0
## 3168 0 0 0 1 0 0 0 0 0 0
## 3169 0 0 0 1 0 0 0 0 0 0
## 3170 0 0 0 1 0 0 0 0 0 0
## 3171 0 0 0 1 0 0 0 0 1 0
## 3172 0 0 0 0 0 0 1 0 0 0
## 3173 0 0 0 0 0 0 1 0 0 0
## 3174 1 0 0 0 0 0 0 0 0 0
## 3175 1 0 0 0 0 0 1 0 0 0
## 3176 0 0 0 0 0 0 0 0 0 0
## 3177 0 0 0 0 0 0 1 0 0 0
## 3178 0 0 0 0 0 1 0 0 0 0
## 3179 0 0 0 0 0 0 0 1 1 0
## 3180 1 0 0 1 0 0 0 0 0 0
## 3181 0 0 0 0 0 0 0 0 1 0
## 3182 0 0 0 0 0 0 0 1 1 0
## 3183 0 0 0 0 0 0 1 0 0 0
## 3184 1 0 0 0 0 0 0 0 1 0
## 3185 0 0 0 0 0 0 0 0 1 0
## 3186 0 0 0 0 0 0 0 1 1 0
## 3187 0 0 0 0 0 0 0 0 0 0
## 3188 0 0 0 0 0 1 0 0 1 0
## 3189 1 0 0 0 0 0 0 0 1 0
## 3190 1 0 0 0 0 0 0 0 0 0
## 3191 1 0 0 0 0 0 0 0 0 0
## 3192 0 0 0 0 0 0 0 0 1 0
## 3193 0 0 0 0 0 0 0 0 1 0
## 3194 0 0 0 0 0 0 0 0 1 0
## 3195 1 0 0 0 0 0 0 0 0 0
## 3196 0 0 0 0 0 0 0 0 1 0
## 3197 0 0 0 0 0 0 0 0 1 0
## 3198 0 0 0 0 0 0 1 0 0 0
## 3199 0 0 0 0 1 0 0 0 0 0
## 3200 1 0 0 0 0 0 1 0 0 0
## 3201 0 0 0 0 0 0 0 0 0 0
## 3202 0 0 0 0 0 0 0 0 1 0
## 3203 0 0 0 0 1 0 0 0 0 0
## 3204 1 0 0 0 0 0 0 0 0 0
## 3205 0 0 0 0 0 0 0 0 0 0
## 3206 0 0 0 0 0 0 0 0 1 0
## 3207 1 0 0 0 0 0 0 0 0 0
## 3208 0 0 0 1 0 0 0 0 1 0
## 3209 0 0 0 0 1 0 0 0 1 0
## 3210 0 0 0 0 0 0 0 0 0 0
## 3211 0 0 0 0 0 0 0 0 0 0
## 3212 0 0 0 0 0 0 1 1 0 1
## 3213 0 0 0 0 0 0 0 0 1 0
## 3214 0 0 0 0 0 0 0 1 0 0
## 3215 0 0 0 0 0 0 1 0 1 0
## 3216 0 0 0 0 0 0 0 0 1 0
## 3217 0 0 0 0 0 0 0 0 0 1
## 3218 0 0 0 0 0 0 0 0 0 0
## 3219 0 0 1 0 0 0 0 1 0 0
## 3220 0 0 0 0 0 0 0 0 0 0
## 3221 0 0 0 0 0 0 0 1 1 0
## 3222 0 0 0 0 0 0 0 0 0 0
## 3223 0 0 0 0 0 0 0 1 0 0
## 3224 0 0 0 0 0 0 0 0 0 1
## 3225 0 0 0 0 0 0 0 0 1 0
## 3226 0 0 0 0 0 0 0 0 1 0
## 3227 0 0 0 0 0 0 0 1 0 1
## 3228 1 0 0 0 0 0 0 0 0 0
## 3229 0 0 0 0 0 0 0 0 1 0
## 3230 0 0 0 0 0 0 0 0 1 0
## 3231 0 0 0 0 0 0 0 0 0 0
## 3232 0 0 0 0 0 0 0 0 0 0
## 3233 0 0 0 0 0 0 1 0 0 0
## 3234 0 0 0 0 0 0 0 0 0 0
## 3235 0 0 0 0 0 0 0 0 0 0
## 3236 0 0 0 0 0 0 0 0 0 0
## 3237 1 0 0 0 0 0 1 1 0 1
## 3238 0 0 0 0 0 0 1 0 0 0
## 3239 0 0 0 0 0 0 0 0 0 0
## 3240 0 0 0 0 0 0 0 1 0 0
## 3241 0 0 0 0 0 0 0 1 1 1
## 3242 0 0 0 0 0 0 1 1 0 1
## 3243 0 0 0 1 0 0 0 1 0 0
## 3244 0 0 0 0 1 0 0 0 0 0
## 3245 1 0 0 0 0 0 0 0 0 0
## 3246 0 0 0 0 0 0 0 0 0 0
## 3247 0 0 0 0 0 0 0 1 1 0
## 3248 0 0 0 1 0 0 0 0 0 0
## 3249 0 0 0 0 0 0 1 0 0 0
## 3250 0 0 0 0 0 0 0 1 0 0
## 3251 0 0 0 1 0 0 0 0 0 0
## 3252 1 0 0 0 1 0 0 0 0 0
## 3253 0 0 0 0 0 0 0 0 0 0
## 3254 0 0 0 0 0 0 0 0 0 1
## 3255 0 0 0 0 0 0 1 0 0 0
## 3256 0 0 0 0 0 0 0 1 0 0
## 3257 0 0 0 0 0 0 0 0 1 0
## 3258 0 0 0 0 0 0 0 1 0 0
## 3259 0 0 0 0 0 0 0 1 0 0
## 3260 0 0 0 0 0 0 0 1 0 0
## 3261 0 0 0 0 0 0 0 1 0 0
## 3262 0 0 0 0 0 0 0 0 0 0
## 3263 0 0 0 0 0 0 0 0 0 0
## 3264 0 0 0 0 0 0 0 0 0 0
## 3265 0 0 0 0 0 0 1 0 0 1
## 3266 0 0 0 0 0 0 0 1 0 0
## 3267 1 0 0 0 0 0 0 1 0 0
## 3268 0 0 0 0 0 0 0 0 1 0
## 3269 0 0 0 0 0 0 0 0 0 0
## 3270 0 0 0 0 0 0 0 0 0 0
## 3271 0 0 0 0 0 0 0 1 1 0
## 3272 0 0 0 0 0 0 0 0 0 0
## 3273 0 0 0 0 0 0 0 0 0 0
## 3274 0 0 0 0 0 0 0 0 0 0
## 3275 0 0 0 0 0 0 0 0 0 0
## 3276 0 0 0 0 0 0 1 0 0 0
## 3277 0 0 0 0 0 0 0 0 0 0
## 3278 0 0 0 0 0 0 0 0 0 0
## 3279 0 0 0 0 0 0 0 0 0 0
## 3280 1 0 0 0 0 0 0 0 0 0
## 3281 0 0 0 0 0 1 0 0 0 0
## 3282 0 0 0 0 0 0 0 0 0 0
## 3283 0 1 0 0 0 0 1 1 0 0
## 3284 0 0 0 0 0 0 0 0 0 1
## 3285 0 0 0 0 0 0 0 0 0 0
## 3286 0 0 0 0 0 0 0 0 0 0
## 3287 0 0 0 0 0 0 0 0 0 0
## 3288 0 0 0 0 0 0 0 1 0 0
## 3289 0 0 0 0 1 0 1 0 0 0
## 3290 0 0 0 0 0 0 0 0 0 0
## 3291 0 0 0 0 0 0 0 0 0 0
## 3292 0 0 0 0 0 0 0 0 0 1
## 3293 1 0 0 0 0 0 0 0 0 0
## 3294 0 0 0 0 0 0 0 0 0 1
## 3295 1 0 0 0 0 0 0 0 0 1
## 3296 1 0 0 0 0 0 0 0 0 0
## 3297 1 0 0 0 0 0 0 0 0 0
## 3298 0 0 0 0 0 0 0 0 1 0
## 3299 0 0 0 0 0 0 0 0 1 0
## 3300 0 0 0 0 0 0 0 0 0 0
## 3301 0 0 0 0 0 0 0 0 1 0
## 3302 0 0 0 0 0 0 1 0 1 0
## 3303 0 0 0 0 0 0 0 1 1 0
## 3304 0 0 0 0 0 0 1 0 0 0
## 3305 1 0 0 0 0 0 0 0 0 1
## 3306 0 0 0 1 0 0 0 1 1 0
## 3307 0 0 0 0 0 0 0 0 0 0
## 3308 0 0 0 0 0 0 0 0 1 0
## 3309 0 0 0 0 0 0 0 0 0 1
## 3310 0 0 0 0 0 0 0 0 0 0
## 3311 1 0 0 0 0 0 1 0 0 0
## 3312 1 0 0 0 0 0 0 0 0 0
## 3313 1 0 0 0 0 0 1 0 0 0
## 3314 0 0 0 0 0 0 1 0 0 0
## 3315 0 0 0 0 0 0 0 0 0 0
## 3316 0 0 0 0 0 0 0 0 0 0
## 3317 0 0 0 0 0 0 0 0 0 0
## 3318 1 0 0 0 0 0 0 0 0 0
## 3319 0 0 0 0 0 0 0 0 0 0
## 3320 0 0 0 0 0 0 0 0 0 0
## 3321 0 0 0 0 0 1 0 0 0 0
## 3322 0 0 0 0 0 0 0 0 0 0
## 3323 0 0 0 0 0 0 0 0 0 0
## 3324 0 0 0 0 0 0 1 0 0 0
## 3325 0 0 0 0 0 0 1 0 0 0
## 3326 0 0 0 0 0 0 0 0 0 0
## 3327 0 0 0 0 0 0 0 0 0 0
## 3328 0 0 0 0 0 0 0 0 0 0
## 3329 0 0 0 0 0 0 0 0 0 0
## 3330 0 0 0 0 0 0 0 0 0 0
## 3331 0 0 0 0 0 0 0 0 0 0
## 3332 0 0 0 0 0 0 0 0 0 0
## 3333 0 0 0 0 0 0 0 0 0 0
## 3334 1 0 0 0 0 0 0 1 0 0
## 3335 1 0 0 0 0 0 0 0 0 0
## 3336 0 0 0 0 0 0 0 0 0 0
## 3337 1 0 0 0 0 0 1 0 0 0
## 3338 1 0 0 0 0 0 0 0 0 0
## 3339 1 0 0 0 0 0 0 0 1 0
## 3340 0 0 0 0 0 0 0 0 0 0
## 3341 0 0 0 0 0 0 1 1 0 1
## 3342 1 0 0 0 0 0 1 0 1 0
## 3343 1 0 0 0 0 0 0 0 0 0
## 3344 1 0 0 0 0 0 0 0 0 0
## 3345 0 0 0 0 0 0 0 1 0 0
## 3346 0 0 0 0 0 0 1 0 0 0
## 3347 0 0 0 0 1 0 0 0 0 0
## 3348 0 0 0 0 0 0 0 0 0 0
## 3349 0 0 0 0 0 0 0 0 1 0
## 3350 0 0 0 0 0 0 0 1 0 0
## 3351 0 0 0 0 0 0 1 0 0 0
## 3352 0 0 0 0 0 0 1 0 0 0
## 3353 0 0 1 0 0 0 0 1 0 0
## 3354 0 0 0 0 0 0 1 0 1 0
## 3355 0 0 0 0 1 0 0 0 0 0
## 3356 0 0 0 0 1 0 0 0 0 0
## 3357 0 0 0 0 0 0 0 1 1 0
## 3358 1 0 0 0 0 0 0 0 1 0
## 3359 0 0 0 0 1 0 0 0 0 0
## 3360 1 0 0 0 0 0 0 0 1 0
## 3361 0 0 0 0 0 0 0 0 0 0
## 3362 0 0 0 0 0 0 0 1 0 0
## 3363 0 0 0 0 0 0 0 0 0 0
## 3364 1 0 0 0 0 1 0 0 0 0
## 3365 1 0 0 0 0 0 1 0 0 0
## 3366 1 0 0 0 1 0 0 0 0 0
## 3367 1 0 0 0 0 0 1 0 0 1
## 3368 1 0 0 0 0 0 0 0 0 0
## 3369 0 0 0 0 1 0 0 0 0 0
## 3370 0 0 0 0 0 0 0 0 1 0
## 3371 0 0 0 0 0 0 0 1 1 0
## 3372 0 0 0 0 0 0 0 0 0 0
## 3373 0 0 0 0 0 0 0 0 0 0
## 3374 0 0 0 0 0 0 0 0 0 0
## 3375 0 0 0 0 1 0 1 0 0 0
## 3376 0 0 0 0 0 0 0 0 1 0
## 3377 0 0 0 0 0 0 1 0 0 0
## 3378 1 0 0 0 0 0 0 0 0 0
## 3379 1 0 0 0 0 0 1 0 0 0
## 3380 0 0 0 0 0 0 0 1 0 0
## 3381 1 0 0 0 0 0 1 1 0 1
## 3382 0 0 0 0 0 0 1 0 0 0
## 3383 0 0 0 0 0 0 0 0 0 0
## 3384 0 0 0 0 0 0 0 1 0 0
## 3385 0 0 0 0 0 0 0 1 1 1
## 3386 0 0 0 0 0 0 0 0 0 0
## 3387 0 0 0 0 0 0 1 1 0 1
## 3388 0 0 0 1 0 0 0 1 1 0
## 3389 0 0 0 1 0 0 1 0 1 0
## 3390 1 0 0 0 0 0 0 0 0 1
## 3391 0 0 0 0 0 0 0 0 0 0
## 3392 1 0 0 0 0 1 0 0 0 0
## 3393 0 0 0 0 0 0 0 0 0 0
## 3394 0 0 0 0 0 0 0 1 1 0
## 3395 1 0 0 0 0 0 0 0 0 0
## 3396 0 0 0 0 0 0 1 0 0 0
## 3397 0 0 0 0 0 0 0 0 0 0
## 3398 0 0 0 0 0 0 0 1 0 0
## 3399 1 0 0 0 1 0 0 0 0 0
## 3400 0 0 0 0 0 0 0 0 0 1
## 3401 1 0 0 0 0 0 1 0 0 0
## 3402 1 0 0 0 1 0 0 0 0 1
## 3403 1 0 0 0 0 0 0 0 0 0
## 3404 0 0 0 0 0 0 1 0 0 0
## 3405 0 0 0 1 0 0 1 0 0 0
## 3406 0 0 0 1 0 0 0 0 0 0
## 3407 0 0 0 0 0 0 0 1 0 0
## 3408 1 0 0 0 0 0 0 0 0 0
## 3409 0 0 0 0 0 0 0 1 0 0
## 3410 0 0 0 0 0 0 0 1 0 0
## 3411 0 0 0 0 0 0 0 1 0 0
## 3412 0 0 0 0 0 0 0 1 0 0
## 3413 0 0 0 1 0 0 0 0 0 0
## 3414 0 0 0 0 0 0 0 1 0 1
## 3415 0 0 0 0 0 0 0 0 0 0
## 3416 0 0 0 0 0 0 0 1 0 0
## 3417 0 0 0 0 0 0 0 1 0 0
## 3418 1 0 0 0 0 0 0 1 0 0
## 3419 0 0 0 0 0 0 0 0 0 0
## 3420 1 0 0 0 0 0 1 0 0 0
## 3421 1 0 0 0 0 0 1 0 0 0
## 3422 0 0 0 0 0 0 0 0 0 0
## 3423 1 0 0 0 0 0 0 0 1 0
## 3424 0 0 0 0 0 0 0 0 1 0
## 3425 1 0 0 0 0 0 0 0 0 0
## 3426 0 0 0 0 0 0 0 0 0 0
## 3427 0 0 0 0 0 0 0 1 0 0
## 3428 0 0 0 0 0 0 1 0 0 0
## 3429 0 0 0 0 0 0 1 0 0 0
## 3430 0 0 0 0 0 0 0 0 0 0
## 3431 1 0 0 0 0 0 0 0 0 0
## 3432 0 0 0 0 0 0 0 0 0 0
## 3433 0 0 0 0 0 1 0 0 0 0
## 3434 0 0 0 0 0 0 0 0 1 0
## 3435 0 0 0 0 0 0 0 0 0 0
## 3436 0 0 0 0 1 0 0 0 0 0
## 3437 0 0 0 0 1 0 0 0 0 0
## 3438 1 0 0 0 0 0 1 0 0 0
## 3439 1 1 0 0 0 0 0 1 0 0
## 3440 1 0 0 0 0 0 0 0 0 0
## 3441 0 0 0 0 1 0 0 0 0 0
## 3442 0 0 0 0 0 0 0 0 0 0
## 3443 0 0 0 0 0 0 0 1 0 0
## 3444 0 0 0 0 1 0 1 0 0 0
## 3445 0 0 0 0 0 0 0 0 0 0
## 3446 0 1 0 0 0 0 0 0 0 0
## 3447 0 0 0 0 0 1 0 0 1 0
## 3448 1 0 0 0 0 0 1 0 0 1
## 3449 1 0 0 0 0 0 0 0 0 0
## 3450 0 0 0 0 0 0 0 0 0 1
## 3451 1 0 0 0 0 0 1 0 0 0
## 3452 0 0 0 0 0 0 0 0 0 0
## 3453 1 0 0 0 0 0 0 0 0 0
## 3454 1 0 0 0 0 0 0 0 0 0
## 3455 1 0 0 0 0 0 0 0 0 0
## 3456 1 0 0 0 0 0 0 0 0 0
## 3457 1 0 0 0 0 0 0 0 0 1
## 3458 0 0 0 0 0 0 0 0 0 0
## 3459 0 0 0 0 0 0 0 0 0 0
## 3460 0 0 0 0 0 0 0 0 1 0
## 3461 1 0 0 0 0 0 1 0 0 1
## 3462 0 0 0 0 1 0 0 0 0 0
## 3463 0 0 0 0 0 0 0 0 1 0
## 3464 0 0 0 0 0 1 0 0 1 0
## 3465 0 0 0 0 1 0 0 0 0 0
## 3466 1 0 1 0 0 0 0 0 0 0
## 3467 1 0 0 0 0 0 0 0 0 0
## 3468 1 0 0 0 0 0 0 0 0 0
## 3469 1 0 0 0 0 0 1 0 0 0
## 3470 0 0 0 0 0 0 0 0 0 0
## 3471 0 0 0 0 0 0 1 0 0 0
## 3472 0 0 0 0 1 0 1 0 0 0
## 3473 0 0 0 0 0 0 0 0 0 0
## 3474 1 0 0 0 0 0 0 0 0 0
## 3475 0 0 0 0 0 0 1 0 0 0
## 3476 0 0 0 0 0 0 1 0 0 0
## 3477 0 0 0 0 0 0 0 0 0 0
## 3478 1 0 0 0 0 0 0 0 0 0
## 3479 0 0 0 0 0 0 0 1 0 0
## 3480 1 0 0 0 0 0 0 0 0 0
## 3481 1 0 0 0 0 0 0 0 0 0
## 3482 1 0 0 0 0 0 0 0 0 0
## 3483 1 0 0 0 0 0 0 1 0 0
## 3484 1 0 0 0 0 0 0 1 0 0
## 3485 1 0 0 0 0 0 0 0 0 0
## 3486 1 0 0 0 0 0 0 0 0 0
## 3487 0 0 0 0 0 0 0 0 1 0
## 3488 0 0 0 0 0 0 0 0 1 0
## 3489 0 0 0 0 0 0 0 0 0 0
## 3490 0 0 0 0 0 0 0 0 0 0
## 3491 1 0 0 0 0 0 1 0 1 0
## 3492 1 0 0 0 0 0 0 0 0 0
## 3493 1 0 0 0 0 0 0 0 0 0
## 3494 1 0 0 0 0 0 0 0 0 0
## 3495 0 0 0 0 0 0 1 0 0 1
## 3496 0 0 0 0 1 0 0 0 0 0
## 3497 0 0 0 0 0 0 0 0 1 0
## 3498 0 0 0 0 0 0 1 0 0 0
## 3499 1 0 0 0 0 0 0 0 0 0
## 3500 1 0 0 0 0 0 0 0 1 0
## 3501 1 0 0 0 0 0 0 0 1 0
## 3502 0 0 0 0 0 0 0 1 0 0
## 3503 0 0 0 0 0 0 0 0 1 0
## 3504 1 0 0 0 0 0 0 0 0 0
## 3505 1 0 0 0 0 0 1 0 1 0
## 3506 1 0 0 0 1 0 0 0 0 0
## 3507 0 0 0 0 0 0 0 0 0 0
## 3508 0 0 0 0 0 0 0 0 0 0
## 3509 0 0 0 0 0 0 1 0 0 0
## 3510 0 0 0 0 0 0 0 1 1 1
## 3511 1 0 0 0 0 0 0 0 0 0
## 3512 1 0 0 0 0 0 0 0 0 1
## 3513 1 0 0 0 0 1 0 0 0 0
## 3514 0 0 0 1 0 0 0 0 0 0
## 3515 0 0 0 0 0 0 1 0 0 0
## 3516 1 0 0 0 0 0 0 0 1 0
## 3517 1 0 0 0 0 0 1 0 0 0
## 3518 0 0 0 0 0 0 0 0 0 0
## 3519 0 0 0 0 0 0 0 0 0 0
## 3520 1 0 0 0 0 0 0 1 0 0
## 3521 1 0 0 0 0 0 1 0 0 0
## 3522 1 0 0 0 0 0 1 0 0 0
## 3523 1 0 0 0 0 0 1 0 0 1
## 3524 0 0 0 1 0 0 0 0 1 0
## 3525 1 0 0 0 1 0 0 0 0 0
## 3526 0 0 0 0 0 0 0 0 0 0
## 3527 0 0 0 0 0 0 0 0 1 0
## 3528 1 0 0 0 0 0 0 0 0 1
## 3529 0 0 0 0 0 1 0 0 0 0
## 3530 1 0 0 0 0 0 0 0 0 0
## 3531 0 0 0 0 0 0 0 1 1 0
## 3532 0 0 0 0 0 0 0 0 0 0
## 3533 0 0 0 0 0 0 0 0 0 0
## 3534 0 0 0 0 0 0 1 0 1 0
## 3535 1 0 0 0 0 0 1 0 0 0
## 3536 1 0 0 0 0 0 0 0 0 0
## 3537 1 0 0 0 0 0 0 0 0 0
## 3538 0 0 0 0 0 0 0 0 0 0
## 3539 0 0 0 0 0 0 1 0 0 0
## 3540 1 0 0 0 0 0 0 0 0 0
## 3541 1 0 0 0 0 0 0 0 0 0
## 3542 1 0 0 0 0 0 1 0 0 0
## 3543 1 0 0 0 0 0 0 0 0 0
## 3544 1 0 0 0 0 0 1 0 0 0
## 3545 1 0 0 0 0 0 0 0 0 0
## 3546 1 0 0 0 0 0 1 0 0 0
## 3547 1 0 0 0 0 0 0 0 0 0
## 3548 1 0 0 0 0 0 0 0 1 0
## 3549 0 0 0 0 0 0 0 0 0 0
## 3550 0 0 0 0 0 0 0 1 0 0
## 3551 0 0 0 0 0 0 0 0 0 0
## 3552 0 0 0 0 0 0 0 0 0 0
## 3553 1 0 0 0 0 0 0 1 0 0
## 3554 1 0 0 0 0 0 0 0 0 0
## 3555 0 0 0 0 0 0 0 0 0 0
## 3556 1 0 0 0 0 0 0 0 1 0
## 3557 0 0 0 0 0 0 0 0 0 0
## 3558 0 0 0 0 0 0 1 1 0 1
## 3559 0 0 0 0 0 0 0 0 1 0
## 3560 0 0 0 0 0 0 0 1 0 0
## 3561 1 0 0 0 0 0 0 0 0 0
## 3562 1 0 0 0 0 0 0 0 1 0
## 3563 0 0 0 0 0 0 0 0 0 0
## 3564 0 0 0 0 0 0 0 0 0 0
## 3565 0 0 0 0 0 0 0 1 0 1
## 3566 1 0 0 0 0 0 1 0 0 0
## 3567 1 0 0 0 0 0 0 0 0 0
## 3568 1 0 0 0 0 0 1 0 0 0
## 3569 1 0 0 0 0 0 1 0 0 1
## 3570 1 0 0 0 0 0 0 0 0 0
## 3571 1 0 0 0 0 1 0 1 1 0
## 3572 0 1 0 0 0 0 0 1 0 0
## 3573 0 0 0 0 1 0 0 0 0 0
## 3574 0 0 0 0 0 0 0 0 0 0
## 3575 0 0 0 0 0 0 0 0 0 0
## 3576 0 0 0 0 0 0 1 0 0 0
## 3577 0 0 0 0 0 0 0 0 0 0
## 3578 0 0 0 0 0 0 0 1 1 1
## 3579 0 0 0 0 0 0 0 0 0 0
## 3580 0 0 0 0 0 0 1 1 0 1
## 3581 0 0 0 1 0 0 0 1 1 0
## 3582 0 0 0 0 1 0 0 0 0 0
## 3583 0 0 0 0 0 0 0 0 0 0
## 3584 0 0 0 0 0 0 0 1 1 0
## 3585 1 0 0 0 0 0 1 0 0 0
## 3586 0 0 0 0 0 0 0 1 0 0
## 3587 0 0 0 1 0 0 0 0 0 0
## 3588 0 0 0 0 0 0 0 1 0 0
## 3589 0 0 0 0 0 0 0 1 0 0
## 3590 0 0 0 0 0 0 0 0 0 0
## 3591 1 0 0 0 0 0 0 1 0 0
## 3592 0 0 0 0 0 0 0 1 0 0
## 3593 1 0 0 0 0 0 0 1 0 0
## 3594 0 0 0 0 0 0 0 0 1 0
## 3595 0 0 0 0 0 0 0 0 0 0
## 3596 1 0 0 0 0 0 1 0 0 0
## 3597 1 0 0 0 0 0 0 0 0 0
## 3598 0 0 0 0 0 0 0 0 0 0
## 3599 0 0 0 0 0 0 0 0 1 0
## 3600 0 0 0 0 1 0 0 0 0 0
## 3601 1 0 0 0 0 0 0 0 0 0
## 3602 0 0 0 0 0 0 0 0 0 1
## 3603 0 0 0 0 1 0 0 0 0 0
## 3604 0 0 0 0 0 0 0 0 0 0
## 3605 0 0 0 0 0 0 0 0 0 0
## 3606 0 0 0 0 0 0 0 1 0 1
## 3607 0 0 0 0 0 0 0 0 0 0
## 3608 0 0 0 0 0 0 1 0 0 0
## 3609 0 0 0 0 0 1 0 0 1 0
## 3610 0 0 0 0 0 0 0 0 1 0
## 3611 0 0 0 0 0 0 0 0 0 0
## 3612 0 0 0 0 0 0 1 0 0 1
## 3613 0 0 0 0 1 0 0 0 0 0
## 3614 0 0 0 0 0 0 0 0 0 1
## 3615 1 0 0 0 0 0 0 0 0 0
## 3616 0 0 0 0 0 0 1 0 1 0
## 3617 0 0 0 0 0 0 0 0 0 0
## 3618 1 0 0 0 0 0 0 0 0 0
## 3619 0 0 0 0 0 0 0 0 1 0
## 3620 1 0 0 0 0 0 0 0 0 0
## 3621 1 0 0 0 0 0 0 0 0 0
## 3622 0 0 1 0 0 0 0 0 1 0
## 3623 1 0 0 0 0 0 1 0 0 0
## 3624 1 0 0 0 0 0 0 0 0 0
## 3625 1 0 0 0 0 0 0 0 1 0
## 3626 1 0 0 0 0 0 0 0 0 0
## 3627 0 0 0 0 0 0 0 0 0 0
## 3628 0 0 0 0 1 0 0 0 0 0
## 3629 0 0 0 0 0 0 0 0 0 0
## 3630 0 0 0 0 0 0 0 0 0 0
## 3631 1 0 0 0 0 0 0 1 0 0
## 3632 1 0 0 0 0 0 0 0 0 0
## 3633 0 0 0 0 0 0 0 0 0 0
## 3634 1 0 0 0 0 0 1 0 0 0
## 3635 1 0 0 0 0 0 0 0 0 0
## 3636 0 0 0 0 0 0 0 0 0 0
## 3637 0 0 0 0 0 0 0 0 0 0
## 3638 0 0 0 0 0 0 1 1 0 1
## 3639 1 0 0 0 0 0 0 0 1 0
## 3640 0 0 0 0 0 0 0 1 0 0
## 3641 0 0 0 0 0 0 1 0 0 0
## 3642 0 0 0 0 0 0 0 0 0 0
## 3643 0 0 0 0 0 0 0 0 1 0
## 3644 0 0 0 0 0 0 0 0 1 0
## 3645 0 0 0 0 0 0 0 1 0 1
## 3646 0 0 0 0 0 0 0 0 0 0
## 3647 1 0 0 0 0 0 1 0 0 0
## 3648 1 0 0 0 0 0 0 0 0 0
## 3649 1 0 0 0 0 0 0 0 0 0
## 3650 1 0 0 0 0 0 1 0 1 0
## 3651 0 0 0 0 0 0 0 0 0 0
## 3652 1 0 0 0 0 0 0 0 0 0
## 3653 0 0 0 0 0 0 0 0 0 0
## 3654 0 0 0 0 0 0 1 1 0 1
## 3655 0 0 0 0 0 0 0 1 0 0
## 3656 0 0 0 0 0 0 0 1 0 1
## 3657 1 0 0 0 0 0 1 0 0 0
## 3658 0 0 0 0 0 0 0 0 0 0
## 3659 1 0 0 0 0 0 1 0 0 0
## 3660 0 0 0 0 0 0 0 0 0 0
## 3661 0 0 0 0 0 0 0 0 0 0
## 3662 0 0 0 0 0 0 0 1 0 0
## 3663 0 0 0 0 0 0 0 1 1 0
## 3664 0 0 0 0 0 0 1 0 0 0
## 3665 0 0 0 0 0 0 0 1 0 0
## 3666 1 0 0 0 0 0 0 1 0 0
## 3667 0 0 0 0 0 0 0 0 0 0
## 3668 0 0 0 0 0 0 0 1 0 1
## 3669 0 0 0 0 0 0 1 0 0 0
## 3670 1 0 0 0 0 0 1 0 0 0
## 3671 1 0 0 0 0 0 0 0 0 0
## 3672 1 0 0 0 0 0 1 0 0 0
## 3673 0 0 0 0 0 0 1 0 0 0
## 3674 1 0 0 0 0 0 1 0 0 1
## 3675 0 0 0 1 0 0 0 0 1 0
## 3676 0 0 0 0 0 1 0 0 1 0
## 3677 1 0 0 0 0 0 0 0 0 0
## 3678 1 0 0 0 0 0 0 0 0 0
## 3679 0 0 0 0 0 0 0 0 0 0
## 3680 0 0 0 0 0 0 0 1 1 0
## 3681 0 0 0 0 0 0 0 0 1 0
## 3682 0 0 1 0 0 1 0 0 1 0
## 3683 0 0 0 0 0 0 0 0 0 0
## 3684 1 0 0 0 0 0 1 0 0 0
## 3685 1 0 0 0 0 0 0 0 1 0
## 3686 1 0 0 0 0 0 0 0 0 0
## 3687 0 0 0 0 0 0 0 0 0 0
## 3688 0 0 0 0 0 1 0 0 1 0
## 3689 0 0 0 0 0 0 0 0 1 0
## 3690 0 0 0 0 0 1 1 0 1 0
## 3691 0 0 0 0 0 1 0 0 1 0
## 3692 0 0 0 1 0 0 0 1 0 0
## 3693 0 0 0 0 0 0 0 0 0 0
## 3694 0 0 0 0 0 1 0 0 0 0
## 3695 0 0 0 0 0 0 0 0 0 0
## 3696 0 0 0 1 0 0 0 0 0 0
## 3697 0 0 0 0 0 0 0 0 0 0
## 3698 0 0 0 0 0 0 0 0 0 0
## 3699 1 0 0 0 0 0 0 0 0 0
## 3700 1 0 0 0 0 0 0 0 0 1
## 3701 1 0 0 0 0 0 0 0 0 0
## 3702 0 0 0 0 0 0 0 0 0 0
## 3703 1 0 0 0 0 0 0 0 0 0
## 3704 1 0 0 0 0 0 0 0 0 1
## 3705 0 0 0 0 0 0 0 0 1 0
## 3706 1 0 0 0 0 0 0 0 1 0
## 3707 0 0 0 0 0 0 0 0 1 0
## 3708 1 0 0 0 0 0 0 0 0 0
## 3709 1 0 0 0 0 0 0 0 1 0
## 3710 0 0 0 0 0 0 0 0 0 0
## 3711 0 0 0 0 0 0 0 0 1 0
## 3712 1 0 0 0 0 0 0 0 1 0
## 3713 0 0 0 0 0 0 1 0 1 0
## 3714 1 0 0 0 0 0 0 0 0 0
## 3715 0 0 0 0 0 0 1 0 1 0
## 3716 0 0 0 0 0 0 0 1 0 0
## 3717 1 0 0 0 0 0 1 0 0 0
## 3718 0 0 0 0 0 0 0 1 1 0
## 3719 1 0 0 0 0 0 0 0 0 0
## 3720 0 0 0 0 0 0 0 0 1 0
## 3721 0 0 0 0 0 0 0 0 0 0
## 3722 0 0 0 0 0 0 0 0 0 0
## 3723 0 0 0 0 0 0 0 0 0 0
## 3724 0 0 0 0 0 0 0 0 0 0
## 3725 0 0 0 0 0 0 0 0 1 0
## 3726 1 0 0 0 0 0 1 0 0 0
## 3727 1 0 0 0 0 0 0 0 1 0
## 3728 1 0 0 0 0 0 0 0 0 0
## 3729 1 0 0 0 0 0 0 0 0 0
## 3730 1 0 0 0 0 0 0 0 0 0
## 3731 0 0 0 0 0 0 0 0 0 0
## 3732 1 0 0 0 0 0 0 0 0 0
## 3733 0 0 0 0 0 0 0 0 1 0
## 3734 0 0 0 0 0 0 0 0 0 0
## 3735 1 0 0 0 0 0 0 0 0 0
## 3736 0 0 0 0 0 0 0 0 1 0
## 3737 1 0 0 0 0 0 0 0 0 0
## 3738 0 0 0 0 0 0 1 1 0 1
## 3739 1 0 0 0 0 0 0 0 1 0
## 3740 0 0 0 0 0 0 0 0 1 0
## 3741 0 0 0 0 0 0 0 1 0 1
## 3742 0 0 0 1 0 0 0 0 0 0
## 3743 0 0 0 0 0 0 0 0 0 0
## 3744 1 0 0 0 0 0 0 0 1 0
## 3745 1 0 0 0 0 0 1 0 0 0
## 3746 0 0 0 0 0 0 0 0 1 0
## 3747 1 0 0 0 0 0 1 0 0 1
## 3748 0 0 0 1 0 0 0 0 1 0
## 3749 0 0 0 0 0 0 0 0 1 0
## 3750 0 0 0 0 0 0 0 1 1 0
## 3751 1 0 0 0 0 0 0 0 1 0
## 3752 1 0 0 0 0 0 0 0 1 0
## 3753 1 0 0 0 0 0 0 0 0 0
## 3754 1 0 0 0 0 0 0 0 0 0
## 3755 1 0 0 0 0 0 0 0 0 1
## 3756 0 0 0 0 1 0 0 0 0 0
## 3757 1 0 0 0 0 0 0 0 1 0
## 3758 0 0 0 0 0 0 0 1 1 0
## 3759 0 0 0 0 0 0 0 0 1 0
## 3760 0 0 0 0 0 1 0 0 1 0
## 3761 1 0 0 0 0 0 0 0 0 0
## 3762 1 0 0 0 0 0 0 0 1 0
## 3763 1 0 0 0 0 0 0 1 0 0
## 3764 0 0 0 0 0 0 0 0 1 0
## 3765 0 0 0 0 0 0 0 0 1 0
## 3766 1 0 0 0 0 0 0 0 1 0
## 3767 1 0 0 0 0 0 0 0 1 1
## 3768 0 0 0 0 0 0 1 1 0 1
## 3769 1 0 0 0 0 0 0 0 0 0
## 3770 0 0 0 0 0 0 1 0 0 0
## 3771 0 0 0 0 0 0 0 0 1 0
## 3772 0 0 1 0 0 0 0 1 0 0
## 3773 0 0 0 0 1 0 0 0 0 0
## 3774 0 0 0 0 0 0 0 1 1 0
## 3775 1 0 0 0 0 0 0 0 1 0
## 3776 1 0 0 0 0 0 0 0 1 0
## 3777 0 0 0 0 0 0 0 0 1 0
## 3778 0 0 0 0 1 0 0 0 0 0
## 3779 0 0 0 0 0 0 0 1 1 0
## 3780 0 0 0 0 0 0 0 0 0 0
## 3781 0 0 0 0 0 0 0 1 1 0
## 3782 0 0 0 0 0 0 1 0 0 0
## 3783 0 0 0 0 0 0 0 0 0 0
## 3784 0 0 0 0 0 0 0 1 1 1
## 3785 0 0 0 1 0 0 0 1 0 0
## 3786 0 0 0 1 0 0 1 0 1 0
## 3787 0 0 0 0 0 0 0 1 1 0
## 3788 1 0 0 0 0 0 0 0 0 0
## 3789 0 0 0 1 0 0 0 0 0 0
## 3790 0 0 0 1 0 0 0 0 0 0
## 3791 1 0 0 0 1 0 0 0 0 0
## 3792 0 0 0 1 0 0 1 0 0 0
## 3793 0 0 0 0 0 0 0 0 1 0
## 3794 0 0 0 1 0 0 0 0 0 0
## 3795 0 0 0 0 0 0 0 1 0 0
## 3796 1 0 0 0 0 0 0 0 1 0
## 3797 0 0 0 0 0 0 0 1 0 0
## 3798 0 0 0 0 0 0 0 1 0 0
## 3799 0 0 0 0 0 0 0 1 0 0
## 3800 0 0 0 0 0 0 0 1 0 0
## 3801 0 0 0 1 0 0 0 0 0 0
## 3802 1 0 0 0 0 0 0 1 0 0
## 3803 0 0 0 0 0 0 0 1 0 1
## 3804 1 0 0 0 0 0 0 0 0 0
## 3805 1 0 0 0 0 0 1 0 0 1
## 3806 0 0 0 1 0 0 0 0 1 0
## 3807 0 0 0 0 0 0 0 0 0 0
## 3808 0 0 0 0 0 1 0 0 1 0
## 3809 0 0 0 0 0 0 0 0 1 0
## 3810 1 0 0 0 0 0 0 0 1 0
## 3811 0 0 0 0 0 0 0 1 0 0
## 3812 1 1 0 0 0 0 0 1 0 0
## 3813 1 0 0 0 0 0 0 1 0 0
## 3814 0 0 0 0 0 0 0 1 0 0
## 3815 0 0 0 1 0 0 0 0 0 0
## 3816 0 0 0 1 0 0 0 0 0 0
## 3817 0 0 0 1 0 0 0 0 0 0
## 3818 0 0 0 1 0 0 0 1 0 0
## 3819 0 0 0 1 0 0 0 0 0 0
## 3820 0 0 0 1 0 0 0 0 0 0
## 3821 0 0 0 0 0 0 0 1 0 0
## 3822 0 0 0 0 0 0 0 1 0 0
## 3823 0 0 0 0 0 1 0 0 1 0
## 3824 0 0 0 0 0 0 0 0 1 0
## 3825 1 0 0 0 0 0 0 0 0 0
## 3826 0 0 0 1 0 0 0 0 0 0
## 3827 0 0 0 0 0 0 1 0 1 0
## 3828 0 0 0 1 0 0 0 1 1 0
## 3829 0 0 0 0 1 0 0 0 0 0
## 3830 0 0 0 0 0 1 0 0 1 0
## 3831 0 0 0 0 0 0 0 0 0 0
## 3832 0 0 0 0 0 0 0 0 0 0
## 3833 0 0 0 1 0 0 0 1 1 0
## 3834 0 0 0 1 0 0 0 0 0 0
## 3835 1 0 0 0 0 0 0 0 1 0
## 3836 0 0 0 0 0 0 0 1 0 0
## 3837 0 0 0 1 0 0 0 0 1 0
## 3838 0 0 0 1 0 0 0 0 0 0
## 3839 0 0 0 1 0 0 0 0 1 0
## 3840 0 0 0 0 0 0 0 0 1 0
## 3841 0 0 0 0 0 0 0 0 1 0
## 3842 1 0 0 0 0 0 0 0 1 0
## 3843 1 0 0 0 0 0 0 0 0 1
## 3844 1 0 0 0 0 0 0 0 0 0
## 3845 0 0 0 0 0 0 0 0 0 0
## 3846 1 0 0 0 0 0 0 0 1 1
## 3847 0 0 0 0 0 0 0 0 0 0
## 3848 0 0 0 0 0 0 0 1 1 0
## 3849 0 0 0 0 0 0 0 0 0 0
## 3850 1 0 0 0 0 0 0 1 1 0
## 3851 1 0 0 0 0 0 1 0 0 1
## 3852 0 0 0 0 0 0 0 0 0 0
## 3853 0 0 0 0 0 0 0 0 1 0
## 3854 0 0 1 0 0 1 0 0 1 0
## 3855 1 0 0 0 0 0 1 0 0 0
## 3856 1 0 0 0 0 1 0 0 0 0
## 3857 1 0 0 0 0 0 0 0 0 1
## 3858 1 0 0 0 0 0 0 0 1 0
## 3859 0 0 0 1 0 0 0 1 0 0
## 3860 0 0 0 0 0 0 0 1 1 0
## 3861 0 0 0 0 0 0 0 0 1 0
## 3862 0 0 0 0 0 0 0 0 0 0
## 3863 0 0 1 0 0 0 0 0 1 0
## 3864 0 0 0 0 0 0 0 0 0 0
## 3865 1 0 0 0 0 0 0 0 1 0
## 3866 0 0 0 0 0 0 0 0 1 0
## 3867 0 0 0 0 0 0 1 0 1 0
## 3868 1 0 0 0 0 0 0 0 0 0
## 3869 0 0 0 0 0 0 0 0 1 1
## 3870 1 0 0 0 0 0 0 0 0 0
## 3871 0 0 0 0 0 0 0 0 1 0
## 3872 0 0 0 0 0 0 0 0 1 0
## 3873 1 0 0 0 0 0 0 1 0 0
## 3874 1 0 0 0 0 0 0 0 1 0
## 3875 0 0 0 0 0 0 0 0 0 0
## 3876 0 0 0 0 0 0 1 1 0 1
## 3877 0 0 0 0 0 0 1 0 0 1
## 3878 0 0 0 0 0 0 0 1 0 0
## 3879 1 0 0 0 0 1 0 1 1 0
## 3880 0 0 0 0 0 0 1 0 0 0
## 3881 0 0 0 0 0 0 0 1 1 0
## 3882 1 0 0 0 0 0 1 1 0 1
## 3883 0 0 0 0 0 0 0 0 0 0
## 3884 0 0 0 0 0 0 1 1 0 1
## 3885 0 0 0 0 0 0 0 0 0 0
## 3886 0 0 0 0 0 0 0 0 0 0
## 3887 0 0 0 0 0 0 0 1 1 0
## 3888 0 0 0 0 0 0 1 0 0 0
## 3889 0 0 0 0 0 0 0 1 0 0
## 3890 1 0 0 0 0 0 0 1 0 0
## 3891 0 0 0 0 0 0 0 0 0 0
## 3892 1 0 0 0 0 0 1 0 0 1
## 3893 1 0 0 0 1 0 0 0 0 0
## 3894 0 0 0 0 0 0 0 0 0 0
## 3895 0 0 0 0 0 0 0 0 0 0
## 3896 0 0 0 0 0 0 0 0 0 0
## 3897 1 0 0 0 0 0 1 0 0 0
## 3898 1 0 0 0 0 0 0 0 1 0
## 3899 0 0 0 0 1 0 1 0 0 0
## 3900 0 0 0 0 0 0 0 0 0 0
## 3901 1 0 0 0 0 0 0 0 0 0
## 3902 0 0 0 0 0 0 0 0 0 0
## 3903 1 0 0 0 0 0 1 0 0 0
## 3904 0 0 0 0 1 0 0 0 0 0
## 3905 0 0 0 0 0 0 0 0 0 0
## 3906 1 0 0 0 0 0 0 0 1 0
## 3907 0 0 0 0 0 0 0 0 0 0
## 3908 0 0 0 0 0 0 0 0 0 0
## 3909 0 0 0 0 0 0 1 0 1 0
## 3910 0 0 0 0 0 0 0 0 0 0
## 3911 0 0 0 0 0 0 1 0 0 0
## 3912 0 1 0 0 0 0 0 0 0 0
## 3913 0 0 0 0 0 0 0 0 0 0
## 3914 0 0 0 0 0 0 0 0 1 0
## 3915 0 0 0 0 0 0 0 0 0 0
## 3916 0 0 0 0 0 0 0 0 1 0
## 3917 1 0 0 0 0 1 0 0 0 0
## 3918 1 0 0 0 0 1 0 1 1 0
## 3919 1 0 0 0 0 0 0 0 0 0
## 3920 0 0 0 0 0 0 0 0 0 0
## 3921 0 0 0 0 0 0 0 1 0 0
## 3922 1 0 0 0 0 0 0 0 0 0
## 3923 1 0 0 0 0 0 0 0 0 0
## 3924 0 0 0 0 0 0 0 1 0 1
## 3925 1 0 1 0 0 0 0 0 0 0
## 3926 0 0 1 0 0 1 0 0 1 0
## 3927 1 0 0 0 0 0 1 0 0 0
## 3928 0 0 0 0 1 0 1 0 0 0
## 3929 0 0 0 0 0 0 0 0 0 0
## 3930 0 0 0 0 0 1 1 0 1 0
## 3931 1 0 0 0 0 0 0 0 0 0
## 3932 0 0 1 0 0 1 0 0 0 0
## 3933 0 0 0 0 0 0 1 0 1 0
## 3934 0 0 0 0 0 1 0 0 0 0
## 3935 0 0 0 0 0 0 1 0 0 1
## 3936 1 0 0 0 0 0 0 0 0 0
## 3937 0 0 0 0 0 0 1 0 0 0
## 3938 0 0 0 0 0 0 0 0 0 0
## 3939 0 0 1 0 0 1 0 0 0 0
## 3940 0 0 0 1 0 1 0 0 1 0
## 3941 0 0 0 0 1 0 1 0 0 0
## 3942 0 0 0 0 0 0 0 0 0 0
## 3943 1 0 0 0 0 0 1 0 0 0
## 3944 0 0 0 0 0 0 1 0 1 0
## 3945 0 0 0 0 0 0 0 0 1 0
## 3946 0 0 0 0 0 1 0 0 1 0
## 3947 1 0 0 0 0 0 0 0 0 0
## 3948 0 0 0 0 0 0 0 0 0 0
## 3949 1 0 0 0 0 0 0 1 0 0
## 3950 1 0 0 0 0 0 0 0 0 0
## 3951 0 0 0 0 0 0 1 1 0 1
## 3952 1 0 0 0 0 0 0 0 1 0
## 3953 0 0 0 0 0 0 1 0 0 0
## 3954 0 0 0 0 0 0 0 0 1 0
## 3955 0 0 0 0 0 0 0 0 1 0
## 3956 0 0 0 0 0 0 0 0 0 0
## 3957 0 0 0 0 0 0 0 0 0 0
## 3958 0 0 0 0 0 0 1 1 0 1
## 3959 0 0 0 0 0 0 0 1 0 0
## 3960 0 0 0 0 0 0 0 1 0 1
## 3961 0 0 0 0 0 0 0 0 0 0
## 3962 1 0 0 0 0 0 0 0 1 1
## 3963 1 0 0 0 0 0 1 0 0 0
## 3964 0 0 0 0 0 0 0 0 0 0
## 3965 0 0 0 0 0 0 0 0 0 0
## 3966 0 0 0 0 0 0 0 1 0 0
## 3967 0 0 0 0 0 0 0 1 0 0
## 3968 0 0 0 0 0 0 0 0 0 0
## 3969 0 0 0 0 0 0 0 1 0 1
## 3970 1 0 0 0 0 0 1 0 0 0
## 3971 0 0 0 1 0 0 0 0 1 0
## 3972 0 0 0 0 0 0 0 0 0 0
## 3973 0 0 0 0 0 0 0 0 0 0
## 3974 0 0 0 0 0 0 0 1 1 0
## 3975 0 0 0 1 0 1 0 0 1 0
## 3976 1 0 0 0 0 0 1 0 0 0
## 3977 0 0 0 0 0 1 0 0 0 0
## 3978 0 0 0 0 0 0 0 0 1 0
## 3979 0 0 0 0 0 0 0 0 0 0
## 3980 1 0 0 0 0 0 0 0 0 0
## 3981 1 0 0 0 0 0 0 0 0 0
## 3982 1 0 0 0 0 0 0 0 1 0
## 3983 1 0 0 0 0 0 0 0 0 0
## 3984 1 0 0 0 0 0 0 0 1 0
## 3985 0 0 0 0 0 0 1 0 0 0
## 3986 1 0 0 0 0 0 0 0 0 0
## 3987 0 0 0 0 0 0 0 0 1 0
## 3988 0 0 0 0 0 0 0 0 0 0
## 3989 1 0 0 0 0 0 0 0 1 1
## 3990 1 0 0 0 0 0 0 1 0 0
## 3991 0 0 0 0 0 1 0 1 1 0
## 3992 0 0 0 0 0 0 0 1 0 1
## 3993 0 0 0 1 0 0 0 0 1 0
## 3994 1 0 0 0 0 0 0 0 0 0
## 3995 0 0 0 0 0 0 0 0 0 0
## 3996 0 0 0 0 0 0 0 0 1 0
## 3997 0 0 0 1 0 1 0 0 1 0
## 3998 1 0 0 0 0 0 1 0 0 0
## 3999 0 0 0 0 0 0 0 0 1 0
## 4000 0 0 0 0 0 1 1 0 1 0
## 4001 1 0 0 0 0 0 0 0 1 0
## 4002 0 0 0 0 0 1 0 0 1 0
## 4003 1 0 0 0 0 0 0 0 0 0
## 4004 0 0 0 1 0 0 0 1 0 0
## 4005 1 0 0 0 0 0 0 0 1 0
## 4006 0 0 0 1 0 1 0 0 1 0
## 4007 0 0 0 0 0 0 1 0 1 0
## 4008 0 0 0 0 0 0 1 0 0 0
## 4009 0 0 0 0 0 0 0 0 1 1
## 4010 1 0 0 0 0 0 0 0 0 0
## 4011 0 0 0 1 0 0 0 0 1 0
## 4012 0 0 0 0 0 0 0 0 0 0
## 4013 1 0 0 0 0 0 0 0 1 1
## 4014 0 0 0 0 0 0 0 0 0 0
## 4015 1 0 0 0 0 0 1 0 0 1
## 4016 0 0 0 1 0 0 0 0 1 0
## 4017 1 0 0 0 1 0 0 0 0 0
## 4018 1 0 0 0 0 0 0 0 0 0
## 4019 0 0 0 0 0 0 0 0 0 0
## 4020 1 0 1 0 0 0 0 0 0 0
## 4021 1 0 0 0 0 0 0 0 0 0
## 4022 1 0 0 0 0 1 0 0 0 0
## 4023 0 0 0 0 0 1 0 0 0 0
## 4024 1 0 0 0 0 0 0 0 1 0
## 4025 1 0 0 0 0 0 0 0 1 0
## 4026 1 0 0 0 0 0 0 0 0 1
## 4027 1 0 0 0 0 0 0 0 0 0
## 4028 1 0 0 0 0 0 0 0 0 0
## 4029 1 0 0 0 0 0 1 0 0 0
## 4030 0 0 0 0 0 0 0 0 0 0
## 4031 0 0 0 0 0 0 1 0 0 0
## 4032 0 0 0 0 0 0 0 0 0 0
## 4033 0 0 0 0 0 0 0 0 0 0
## 4034 1 0 0 0 0 0 0 1 0 0
## 4035 0 0 0 0 0 0 0 0 0 0
## 4036 0 0 0 0 0 0 0 0 0 0
## 4037 0 0 0 0 0 0 0 1 1 0
## 4038 0 0 0 0 0 0 0 0 0 0
## 4039 0 0 0 0 0 0 0 0 1 0
## 4040 0 0 0 0 0 0 0 0 0 0
## 4041 0 0 0 0 0 1 0 0 1 0
## 4042 1 0 0 0 0 0 0 0 0 1
## 4043 1 0 0 0 0 1 0 0 0 0
## 4044 0 0 0 0 0 1 1 0 1 0
## 4045 1 0 0 0 0 0 0 0 1 0
## 4046 0 0 0 0 0 1 0 0 1 0
## 4047 0 0 0 0 0 0 0 1 1 0
## 4048 1 0 0 0 0 0 0 0 1 0
## 4049 0 0 0 0 0 0 1 0 1 0
## 4050 0 0 0 0 0 0 0 0 0 0
## 4051 0 0 0 0 0 0 1 0 0 0
## 4052 0 0 0 0 0 0 0 0 1 1
## 4053 1 0 0 0 0 0 0 0 0 0
## 4054 1 0 0 0 0 0 0 0 1 0
## 4055 0 0 0 0 0 0 0 0 0 0
## 4056 0 0 0 0 0 0 0 0 0 0
## 4057 0 0 0 1 0 0 0 0 1 0
## 4058 1 0 0 0 1 0 0 0 0 0
## 4059 0 0 0 1 0 1 0 0 1 0
## 4060 1 0 0 0 0 0 0 0 0 0
## 4061 0 0 0 0 1 0 1 0 0 0
## 4062 0 0 0 0 0 1 0 0 1 0
## 4063 1 0 0 0 0 0 0 0 0 0
## 4064 0 0 0 0 0 0 0 1 1 0
## 4065 0 0 0 1 0 1 0 0 1 0
## 4066 0 0 0 0 0 0 1 0 1 0
## 4067 0 0 0 0 0 0 1 0 0 0
## 4068 1 0 0 0 0 0 1 0 0 0
## 4069 0 0 0 0 0 1 0 0 0 0
## 4070 1 0 0 0 0 0 0 0 0 0
## 4071 1 0 0 0 0 0 0 0 0 0
## 4072 0 0 0 1 0 0 0 0 0 0
## 4073 1 0 0 0 0 0 0 0 0 0
## 4074 1 0 0 0 0 0 0 1 0 0
## 4075 0 0 0 0 0 0 0 0 1 0
## 4076 1 0 0 0 0 0 0 0 0 1
## 4077 0 0 0 0 0 0 0 0 0 0
## 4078 0 0 0 0 0 0 0 0 0 0
## 4079 0 0 0 0 0 0 1 1 0 1
## 4080 1 0 0 0 0 0 1 0 1 0
## 4081 1 0 0 0 0 0 0 0 0 0
## 4082 0 0 0 0 0 0 0 1 0 0
## 4083 0 0 0 0 0 0 1 0 1 0
## 4084 0 0 0 0 0 0 0 0 1 0
## 4085 0 0 0 0 0 0 0 1 0 0
## 4086 0 0 1 0 0 0 0 1 0 0
## 4087 0 0 0 0 0 0 1 0 0 0
## 4088 0 0 0 0 0 0 0 1 1 0
## 4089 0 0 0 0 0 0 0 0 1 0
## 4090 0 0 0 0 0 0 0 0 1 0
## 4091 0 0 0 0 0 0 0 1 0 1
## 4092 1 0 0 0 0 0 0 0 0 0
## 4093 0 0 0 0 0 0 0 0 1 0
## 4094 0 0 0 0 0 0 1 0 0 0
## 4095 1 0 0 0 0 0 1 1 0 1
## 4096 0 0 0 0 0 0 0 0 0 0
## 4097 0 0 0 0 0 0 0 1 1 1
## 4098 0 0 0 1 0 0 0 1 1 0
## 4099 0 0 0 0 0 0 0 1 1 0
## 4100 0 0 0 0 0 0 0 0 0 0
## 4101 0 0 0 0 0 0 0 1 0 0
## 4102 0 0 0 0 0 0 0 0 1 0
## 4103 0 0 0 0 0 0 0 1 0 0
## 4104 0 0 0 0 0 0 0 0 0 0
## 4105 0 0 0 0 0 0 0 0 0 0
## 4106 0 0 0 0 0 0 0 0 1 0
## 4107 0 0 0 0 0 0 0 0 1 0
## 4108 0 0 0 1 0 0 0 0 1 0
## 4109 0 0 0 0 0 0 0 0 0 0
## 4110 0 0 0 0 0 0 1 0 0 0
## 4111 1 0 0 0 0 0 0 0 0 0
## 4112 0 0 0 0 0 1 0 0 0 0
## 4113 0 1 0 0 0 0 0 0 0 0
## 4114 0 0 0 0 0 0 0 0 0 0
## 4115 0 0 0 0 0 0 0 0 1 0
## 4116 0 0 0 0 0 0 0 0 1 0
## 4117 0 0 0 0 0 0 0 0 1 0
## 4118 0 0 0 0 0 0 1 0 1 0
## 4119 0 0 0 0 0 0 0 1 0 0
## 4120 0 0 0 0 0 0 0 0 1 0
## 4121 0 0 0 1 0 0 0 1 1 0
## 4122 0 0 0 0 0 0 0 0 1 0
## 4123 0 0 0 0 0 0 0 1 1 0
## 4124 0 0 0 0 0 0 0 0 1 0
## 4125 0 0 0 0 0 0 0 1 1 0
## 4126 0 0 0 0 0 0 0 0 0 0
## 4127 0 0 0 0 0 0 0 0 1 0
## 4128 0 0 0 0 0 0 0 0 1 0
## 4129 0 0 0 0 0 0 1 0 0 0
## 4130 0 0 0 0 0 0 0 0 0 0
## 4131 0 0 0 0 0 0 0 0 0 0
## 4132 1 0 0 0 0 0 0 0 0 1
## 4133 1 0 0 0 0 0 0 0 1 0
## 4134 1 0 0 0 0 0 0 0 0 0
## 4135 0 0 0 0 0 0 0 0 0 0
## 4136 0 0 0 0 0 0 1 0 0 1
## 4137 0 0 0 0 0 0 1 0 0 0
## 4138 0 0 0 0 1 0 0 0 0 0
## 4139 1 0 0 0 0 0 0 0 0 0
## 4140 0 0 0 0 0 0 0 0 1 0
## 4141 0 0 0 0 0 0 0 1 0 0
## 4142 0 0 0 1 0 0 0 1 0 0
## 4143 0 0 0 0 0 0 1 0 0 0
## 4144 0 0 0 0 0 0 0 0 0 0
## 4145 0 0 0 0 1 0 0 0 0 0
## 4146 1 0 0 0 0 0 0 0 0 0
## 4147 0 0 0 0 1 0 0 0 0 0
## 4148 0 0 0 0 0 0 0 0 0 0
## 4149 0 0 0 0 0 0 0 0 0 0
## 4150 0 0 0 0 0 0 0 0 1 0
## 4151 0 0 0 0 0 0 0 0 0 0
## 4152 1 0 0 0 0 0 0 0 0 0
## 4153 1 0 0 0 0 0 1 0 0 1
## 4154 0 0 0 0 0 0 0 0 0 0
## 4155 0 0 0 0 0 0 0 0 0 0
## 4156 0 0 0 0 0 0 0 0 1 0
## 4157 0 0 0 0 0 0 0 1 1 0
## 4158 0 0 0 0 0 0 0 0 0 0
## 4159 0 0 0 0 1 0 1 0 0 0
## 4160 0 0 0 0 0 0 1 0 0 0
## 4161 1 0 0 0 0 0 0 0 0 0
## 4162 0 0 0 1 0 0 1 0 1 0
## 4163 1 0 0 0 0 0 0 0 0 1
## 4164 0 0 0 0 0 0 0 1 1 0
## 4165 0 0 0 1 0 0 0 0 0 0
## 4166 0 0 0 0 0 0 1 0 0 0
## Western
## 1 0
## 2 0
## 3 0
## 4 0
## 5 0
## 6 0
## 7 0
## 8 0
## 9 0
## 10 0
## 11 0
## 12 0
## 13 0
## 14 0
## 15 0
## 16 0
## 17 0
## 18 0
## 19 0
## 20 0
## 21 0
## 22 0
## 23 0
## 24 0
## 25 0
## 26 0
## 27 0
## 28 0
## 29 0
## 30 0
## 31 0
## 32 0
## 33 0
## 34 0
## 35 0
## 36 0
## 37 0
## 38 0
## 39 0
## 40 0
## 41 0
## 42 0
## 43 0
## 44 0
## 45 0
## 46 0
## 47 0
## 48 0
## 49 0
## 50 0
## 51 1
## 52 0
## 53 0
## 54 0
## 55 0
## 56 0
## 57 0
## 58 0
## 59 0
## 60 0
## 61 0
## 62 0
## 63 0
## 64 0
## 65 0
## 66 0
## 67 0
## 68 0
## 69 0
## 70 0
## 71 0
## 72 0
## 73 1
## 74 0
## 75 0
## 76 0
## 77 0
## 78 0
## 79 0
## 80 0
## 81 0
## 82 0
## 83 0
## 84 0
## 85 0
## 86 0
## 87 0
## 88 0
## 89 0
## 90 0
## 91 0
## 92 0
## 93 0
## 94 0
## 95 0
## 96 0
## 97 1
## 98 0
## 99 0
## 100 0
## 101 0
## 102 0
## 103 0
## 104 0
## 105 0
## 106 0
## 107 0
## 108 0
## 109 0
## 110 0
## 111 0
## 112 0
## 113 0
## 114 0
## 115 0
## 116 0
## 117 0
## 118 0
## 119 0
## 120 0
## 121 0
## 122 0
## 123 0
## 124 0
## 125 0
## 126 0
## 127 0
## 128 0
## 129 0
## 130 0
## 131 0
## 132 0
## 133 0
## 134 0
## 135 0
## 136 0
## 137 0
## 138 0
## 139 0
## 140 0
## 141 0
## 142 0
## 143 0
## 144 0
## 145 0
## 146 0
## 147 0
## 148 0
## 149 0
## 150 0
## 151 0
## 152 0
## 153 0
## 154 0
## 155 0
## 156 0
## 157 0
## 158 0
## 159 0
## 160 0
## 161 0
## 162 0
## 163 0
## 164 0
## 165 0
## 166 0
## 167 0
## 168 0
## 169 0
## 170 0
## 171 0
## 172 0
## 173 0
## 174 0
## 175 0
## 176 0
## 177 1
## 178 0
## 179 0
## 180 0
## 181 0
## 182 0
## 183 0
## 184 0
## 185 0
## 186 0
## 187 0
## 188 0
## 189 0
## 190 0
## 191 0
## 192 0
## 193 0
## 194 0
## 195 0
## 196 0
## 197 0
## 198 0
## 199 0
## 200 0
## 201 0
## 202 0
## 203 1
## 204 0
## 205 0
## 206 0
## 207 0
## 208 0
## 209 0
## 210 0
## 211 0
## 212 0
## 213 0
## 214 0
## 215 0
## 216 0
## 217 0
## 218 0
## 219 0
## 220 0
## 221 0
## 222 0
## 223 0
## 224 0
## 225 0
## 226 0
## 227 0
## 228 0
## 229 0
## 230 0
## 231 0
## 232 1
## 233 0
## 234 0
## 235 0
## 236 0
## 237 0
## 238 0
## 239 0
## 240 0
## 241 0
## 242 0
## 243 0
## 244 0
## 245 0
## 246 0
## 247 0
## 248 0
## 249 0
## 250 0
## 251 0
## 252 0
## 253 0
## 254 0
## 255 0
## 256 0
## 257 0
## 258 0
## 259 0
## 260 0
## 261 0
## 262 0
## 263 0
## 264 0
## 265 0
## 266 0
## 267 0
## 268 0
## 269 0
## 270 0
## 271 0
## 272 0
## 273 0
## 274 0
## 275 0
## 276 0
## 277 0
## 278 0
## 279 0
## 280 0
## 281 0
## 282 0
## 283 0
## 284 0
## 285 0
## 286 0
## 287 0
## 288 0
## 289 0
## 290 0
## 291 0
## 292 0
## 293 0
## 294 0
## 295 0
## 296 0
## 297 0
## 298 0
## 299 0
## 300 0
## 301 0
## 302 0
## 303 0
## 304 0
## 305 0
## 306 0
## 307 0
## 308 0
## 309 0
## 310 0
## 311 0
## 312 0
## 313 0
## 314 0
## 315 0
## 316 0
## 317 0
## 318 0
## 319 0
## 320 0
## 321 0
## 322 0
## 323 0
## 324 0
## 325 0
## 326 0
## 327 0
## 328 0
## 329 0
## 330 0
## 331 0
## 332 0
## 333 0
## 334 0
## 335 0
## 336 0
## 337 0
## 338 0
## 339 0
## 340 0
## 341 0
## 342 0
## 343 0
## 344 0
## 345 0
## 346 0
## 347 0
## 348 0
## 349 0
## 350 0
## 351 0
## 352 0
## 353 0
## 354 0
## 355 0
## 356 0
## 357 0
## 358 0
## 359 0
## 360 0
## 361 0
## 362 0
## 363 0
## 364 0
## 365 0
## 366 0
## 367 0
## 368 0
## 369 0
## 370 0
## 371 0
## 372 0
## 373 0
## 374 0
## 375 0
## 376 0
## 377 0
## 378 0
## 379 0
## 380 0
## 381 0
## 382 0
## 383 0
## 384 0
## 385 0
## 386 0
## 387 0
## 388 0
## 389 0
## 390 0
## 391 0
## 392 0
## 393 0
## 394 0
## 395 0
## 396 0
## 397 0
## 398 0
## 399 0
## 400 0
## 401 0
## 402 0
## 403 0
## 404 0
## 405 0
## 406 0
## 407 0
## 408 0
## 409 0
## 410 0
## 411 0
## 412 0
## 413 0
## 414 0
## 415 0
## 416 0
## 417 0
## 418 0
## 419 0
## 420 0
## 421 0
## 422 0
## 423 0
## 424 0
## 425 0
## 426 0
## 427 0
## 428 0
## 429 0
## 430 0
## 431 0
## 432 0
## 433 0
## 434 0
## 435 0
## 436 0
## 437 0
## 438 0
## 439 0
## 440 0
## 441 0
## 442 0
## 443 0
## 444 0
## 445 0
## 446 0
## 447 0
## 448 0
## 449 0
## 450 0
## 451 0
## 452 0
## 453 0
## 454 0
## 455 0
## 456 0
## 457 0
## 458 0
## 459 0
## 460 0
## 461 0
## 462 0
## 463 0
## 464 0
## 465 0
## 466 0
## 467 0
## 468 0
## 469 0
## 470 0
## 471 0
## 472 0
## 473 0
## 474 0
## 475 0
## 476 0
## 477 0
## 478 0
## 479 0
## 480 0
## 481 0
## 482 0
## 483 0
## 484 0
## 485 0
## 486 0
## 487 0
## 488 0
## 489 0
## 490 0
## 491 0
## 492 0
## 493 0
## 494 0
## 495 0
## 496 0
## 497 0
## 498 0
## 499 0
## 500 0
## 501 0
## 502 0
## 503 0
## 504 0
## 505 0
## 506 0
## 507 0
## 508 0
## 509 0
## 510 0
## 511 0
## 512 0
## 513 0
## 514 0
## 515 0
## 516 0
## 517 0
## 518 0
## 519 0
## 520 0
## 521 0
## 522 0
## 523 0
## 524 0
## 525 0
## 526 0
## 527 0
## 528 0
## 529 0
## 530 0
## 531 0
## 532 0
## 533 0
## 534 0
## 535 0
## 536 0
## 537 0
## 538 0
## 539 1
## 540 0
## 541 0
## 542 0
## 543 0
## 544 0
## 545 0
## 546 0
## 547 0
## 548 0
## 549 0
## 550 0
## 551 0
## 552 0
## 553 0
## 554 0
## 555 0
## 556 0
## 557 0
## 558 0
## 559 1
## 560 0
## 561 0
## 562 0
## 563 0
## 564 0
## 565 0
## 566 0
## 567 0
## 568 0
## 569 0
## 570 0
## 571 0
## 572 0
## 573 0
## 574 0
## 575 0
## 576 0
## 577 0
## 578 0
## 579 0
## 580 0
## 581 0
## 582 0
## 583 0
## 584 0
## 585 0
## 586 0
## 587 0
## 588 0
## 589 0
## 590 0
## 591 0
## 592 0
## 593 0
## 594 0
## 595 0
## 596 0
## 597 0
## 598 0
## 599 0
## 600 0
## 601 0
## 602 0
## 603 0
## 604 0
## 605 0
## 606 0
## 607 0
## 608 0
## 609 0
## 610 0
## 611 0
## 612 0
## 613 0
## 614 0
## 615 0
## 616 0
## 617 0
## 618 0
## 619 0
## 620 0
## 621 0
## 622 0
## 623 0
## 624 0
## 625 0
## 626 0
## 627 0
## 628 0
## 629 0
## 630 0
## 631 0
## 632 0
## 633 0
## 634 0
## 635 0
## 636 0
## 637 1
## 638 0
## 639 0
## 640 0
## 641 0
## 642 0
## 643 0
## 644 0
## 645 0
## 646 0
## 647 0
## 648 0
## 649 0
## 650 0
## 651 0
## 652 0
## 653 0
## 654 0
## 655 0
## 656 1
## 657 0
## 658 0
## 659 0
## 660 0
## 661 0
## 662 0
## 663 0
## 664 0
## 665 0
## 666 0
## 667 0
## 668 0
## 669 0
## 670 0
## 671 0
## 672 0
## 673 0
## 674 0
## 675 0
## 676 0
## 677 0
## 678 0
## 679 0
## 680 0
## 681 0
## 682 0
## 683 0
## 684 0
## 685 0
## 686 0
## 687 0
## 688 0
## 689 0
## 690 0
## 691 0
## 692 0
## 693 0
## 694 0
## 695 0
## 696 0
## 697 0
## 698 0
## 699 0
## 700 0
## 701 0
## 702 0
## 703 0
## 704 0
## 705 0
## 706 0
## 707 0
## 708 1
## 709 0
## 710 0
## 711 0
## 712 0
## 713 0
## 714 0
## 715 0
## 716 0
## 717 0
## 718 0
## 719 0
## 720 0
## 721 1
## 722 0
## 723 0
## 724 0
## 725 0
## 726 0
## 727 0
## 728 0
## 729 0
## 730 0
## 731 0
## 732 0
## 733 0
## 734 0
## 735 0
## 736 0
## 737 0
## 738 0
## 739 0
## 740 0
## 741 0
## 742 0
## 743 0
## 744 0
## 745 0
## 746 0
## 747 0
## 748 0
## 749 0
## 750 0
## 751 0
## 752 0
## 753 0
## 754 0
## 755 0
## 756 0
## 757 0
## 758 0
## 759 0
## 760 1
## 761 0
## 762 0
## 763 0
## 764 0
## 765 0
## 766 0
## 767 0
## 768 0
## 769 0
## 770 0
## 771 0
## 772 0
## 773 0
## 774 0
## 775 0
## 776 0
## 777 0
## 778 0
## 779 0
## 780 0
## 781 0
## 782 0
## 783 0
## 784 0
## 785 0
## 786 0
## 787 0
## 788 0
## 789 0
## 790 0
## 791 0
## 792 0
## 793 0
## 794 0
## 795 0
## 796 0
## 797 0
## 798 0
## 799 0
## 800 0
## 801 0
## 802 0
## 803 0
## 804 0
## 805 0
## 806 0
## 807 0
## 808 0
## 809 1
## 810 0
## 811 0
## 812 0
## 813 0
## 814 0
## 815 0
## 816 0
## 817 0
## 818 0
## 819 0
## 820 0
## 821 1
## 822 0
## 823 0
## 824 0
## 825 0
## 826 0
## 827 0
## 828 0
## 829 0
## 830 0
## 831 0
## 832 0
## 833 0
## 834 0
## 835 1
## 836 0
## 837 0
## 838 0
## 839 0
## 840 0
## 841 0
## 842 0
## 843 0
## 844 0
## 845 0
## 846 0
## 847 0
## 848 0
## 849 0
## 850 0
## 851 0
## 852 0
## 853 0
## 854 0
## 855 0
## 856 0
## 857 0
## 858 0
## 859 0
## 860 0
## 861 0
## 862 0
## 863 0
## 864 0
## 865 0
## 866 0
## 867 0
## 868 0
## 869 0
## 870 0
## 871 0
## 872 0
## 873 0
## 874 0
## 875 0
## 876 0
## 877 1
## 878 0
## 879 0
## 880 0
## 881 0
## 882 0
## 883 0
## 884 0
## 885 0
## 886 0
## 887 0
## 888 0
## 889 0
## 890 0
## 891 0
## 892 0
## 893 0
## 894 0
## 895 0
## 896 0
## 897 0
## 898 0
## 899 0
## 900 0
## 901 1
## 902 0
## 903 0
## 904 0
## 905 0
## 906 0
## 907 0
## 908 0
## 909 0
## 910 0
## 911 0
## 912 0
## 913 0
## 914 0
## 915 0
## 916 0
## 917 0
## 918 0
## 919 0
## 920 0
## 921 0
## 922 1
## 923 0
## 924 0
## 925 0
## 926 0
## 927 0
## 928 0
## 929 0
## 930 0
## 931 0
## 932 0
## 933 0
## 934 0
## 935 0
## 936 0
## 937 0
## 938 0
## 939 0
## 940 0
## 941 0
## 942 0
## 943 0
## 944 0
## 945 0
## 946 0
## 947 0
## 948 0
## 949 0
## 950 0
## 951 0
## 952 0
## 953 0
## 954 0
## 955 0
## 956 0
## 957 0
## 958 0
## 959 0
## 960 0
## 961 0
## 962 0
## 963 0
## 964 0
## 965 0
## 966 0
## 967 0
## 968 0
## 969 0
## 970 0
## 971 1
## 972 0
## 973 0
## 974 0
## 975 0
## 976 0
## 977 0
## 978 0
## 979 0
## 980 0
## 981 0
## 982 0
## 983 0
## 984 0
## 985 0
## 986 0
## 987 1
## 988 0
## 989 0
## 990 0
## 991 0
## 992 0
## 993 0
## 994 0
## 995 0
## 996 0
## 997 0
## 998 0
## 999 0
## 1000 0
## 1001 0
## 1002 0
## 1003 0
## 1004 1
## 1005 0
## 1006 0
## 1007 0
## 1008 0
## 1009 0
## 1010 0
## 1011 0
## 1012 0
## 1013 0
## 1014 0
## 1015 0
## 1016 0
## 1017 0
## 1018 0
## 1019 0
## 1020 0
## 1021 0
## 1022 0
## 1023 0
## 1024 0
## 1025 0
## 1026 0
## 1027 0
## 1028 0
## 1029 0
## 1030 0
## 1031 0
## 1032 0
## 1033 1
## 1034 0
## 1035 0
## 1036 0
## 1037 0
## 1038 0
## 1039 0
## 1040 0
## 1041 0
## 1042 0
## 1043 0
## 1044 0
## 1045 0
## 1046 0
## 1047 0
## 1048 0
## 1049 0
## 1050 0
## 1051 0
## 1052 0
## 1053 0
## 1054 0
## 1055 0
## 1056 0
## 1057 0
## 1058 0
## 1059 0
## 1060 0
## 1061 0
## 1062 0
## 1063 0
## 1064 1
## 1065 0
## 1066 0
## 1067 0
## 1068 0
## 1069 0
## 1070 1
## 1071 0
## 1072 0
## 1073 0
## 1074 0
## 1075 0
## 1076 0
## 1077 0
## 1078 1
## 1079 0
## 1080 0
## 1081 0
## 1082 0
## 1083 1
## 1084 0
## 1085 0
## 1086 0
## 1087 0
## 1088 0
## 1089 0
## 1090 0
## 1091 0
## 1092 0
## 1093 0
## 1094 0
## 1095 0
## 1096 0
## 1097 1
## 1098 0
## 1099 0
## 1100 0
## 1101 0
## 1102 0
## 1103 0
## 1104 0
## 1105 0
## 1106 0
## 1107 0
## 1108 0
## 1109 0
## 1110 0
## 1111 0
## 1112 0
## 1113 0
## 1114 0
## 1115 0
## 1116 0
## 1117 0
## 1118 0
## 1119 0
## 1120 0
## 1121 0
## 1122 0
## 1123 0
## 1124 0
## 1125 0
## 1126 0
## 1127 0
## 1128 0
## 1129 1
## 1130 0
## 1131 0
## 1132 0
## 1133 0
## 1134 0
## 1135 0
## 1136 0
## 1137 0
## 1138 0
## 1139 0
## 1140 0
## 1141 0
## 1142 0
## 1143 0
## 1144 0
## 1145 0
## 1146 0
## 1147 0
## 1148 0
## 1149 0
## 1150 0
## 1151 0
## 1152 0
## 1153 0
## 1154 1
## 1155 0
## 1156 0
## 1157 0
## 1158 0
## 1159 0
## 1160 0
## 1161 0
## 1162 0
## 1163 0
## 1164 0
## 1165 0
## 1166 0
## 1167 0
## 1168 0
## 1169 1
## 1170 0
## 1171 0
## 1172 0
## 1173 0
## 1174 0
## 1175 0
## 1176 0
## 1177 0
## 1178 0
## 1179 0
## 1180 0
## 1181 0
## 1182 0
## 1183 0
## 1184 0
## 1185 0
## 1186 0
## 1187 0
## 1188 0
## 1189 0
## 1190 0
## 1191 0
## 1192 0
## 1193 0
## 1194 0
## 1195 0
## 1196 0
## 1197 0
## 1198 0
## 1199 0
## 1200 0
## 1201 0
## 1202 0
## 1203 0
## 1204 0
## 1205 1
## 1206 0
## 1207 0
## 1208 0
## 1209 0
## 1210 0
## 1211 0
## 1212 0
## 1213 0
## 1214 0
## 1215 0
## 1216 0
## 1217 0
## 1218 0
## 1219 0
## 1220 0
## 1221 0
## 1222 0
## 1223 0
## 1224 0
## 1225 0
## 1226 0
## 1227 0
## 1228 0
## 1229 0
## 1230 0
## 1231 0
## 1232 0
## 1233 0
## 1234 1
## 1235 0
## 1236 1
## 1237 0
## 1238 0
## 1239 0
## 1240 0
## 1241 0
## 1242 0
## 1243 0
## 1244 0
## 1245 0
## 1246 0
## 1247 0
## 1248 0
## 1249 0
## 1250 0
## 1251 0
## 1252 0
## 1253 0
## 1254 0
## 1255 0
## 1256 0
## 1257 0
## 1258 0
## 1259 0
## 1260 0
## 1261 0
## 1262 0
## 1263 0
## 1264 0
## 1265 0
## 1266 0
## 1267 0
## 1268 0
## 1269 0
## 1270 0
## 1271 0
## 1272 0
## 1273 0
## 1274 0
## 1275 0
## 1276 0
## 1277 0
## 1278 0
## 1279 0
## 1280 0
## 1281 0
## 1282 0
## 1283 0
## 1284 0
## 1285 0
## 1286 0
## 1287 0
## 1288 0
## 1289 0
## 1290 0
## 1291 0
## 1292 0
## 1293 0
## 1294 0
## 1295 0
## 1296 0
## 1297 0
## 1298 0
## 1299 0
## 1300 0
## 1301 0
## 1302 0
## 1303 0
## 1304 0
## 1305 0
## 1306 0
## 1307 0
## 1308 0
## 1309 0
## 1310 0
## 1311 0
## 1312 0
## 1313 0
## 1314 0
## 1315 0
## 1316 0
## 1317 0
## 1318 0
## 1319 0
## 1320 0
## 1321 0
## 1322 0
## 1323 0
## 1324 0
## 1325 0
## 1326 0
## 1327 0
## 1328 0
## 1329 0
## 1330 0
## 1331 0
## 1332 0
## 1333 0
## 1334 0
## 1335 0
## 1336 1
## 1337 0
## 1338 0
## 1339 0
## 1340 0
## 1341 0
## 1342 0
## 1343 0
## 1344 0
## 1345 0
## 1346 0
## 1347 0
## 1348 0
## 1349 0
## 1350 0
## 1351 0
## 1352 0
## 1353 0
## 1354 0
## 1355 0
## 1356 0
## 1357 0
## 1358 0
## 1359 0
## 1360 0
## 1361 0
## 1362 0
## 1363 0
## 1364 0
## 1365 0
## 1366 0
## 1367 0
## 1368 0
## 1369 0
## 1370 0
## 1371 0
## 1372 0
## 1373 1
## 1374 0
## 1375 0
## 1376 0
## 1377 0
## 1378 0
## 1379 1
## 1380 0
## 1381 0
## 1382 0
## 1383 0
## 1384 0
## 1385 0
## 1386 0
## 1387 0
## 1388 0
## 1389 0
## 1390 0
## 1391 0
## 1392 0
## 1393 0
## 1394 0
## 1395 0
## 1396 0
## 1397 0
## 1398 0
## 1399 0
## 1400 0
## 1401 1
## 1402 0
## 1403 0
## 1404 0
## 1405 0
## 1406 0
## 1407 0
## 1408 0
## 1409 0
## 1410 0
## 1411 0
## 1412 0
## 1413 0
## 1414 0
## 1415 1
## 1416 0
## 1417 0
## 1418 0
## 1419 0
## 1420 0
## 1421 0
## 1422 0
## 1423 0
## 1424 0
## 1425 0
## 1426 0
## 1427 0
## 1428 0
## 1429 0
## 1430 0
## 1431 0
## 1432 0
## 1433 0
## 1434 0
## 1435 0
## 1436 0
## 1437 0
## 1438 0
## 1439 0
## 1440 0
## 1441 0
## 1442 0
## 1443 0
## 1444 0
## 1445 0
## 1446 0
## 1447 0
## 1448 0
## 1449 0
## 1450 0
## 1451 0
## 1452 0
## 1453 0
## 1454 0
## 1455 0
## 1456 0
## 1457 0
## 1458 0
## 1459 0
## 1460 0
## 1461 0
## 1462 0
## 1463 0
## 1464 0
## 1465 0
## 1466 0
## 1467 0
## 1468 0
## 1469 0
## 1470 1
## 1471 0
## 1472 0
## 1473 0
## 1474 0
## 1475 0
## 1476 0
## 1477 0
## 1478 0
## 1479 0
## 1480 0
## 1481 0
## 1482 0
## 1483 0
## 1484 1
## 1485 0
## 1486 0
## 1487 0
## 1488 0
## 1489 0
## 1490 0
## 1491 0
## 1492 0
## 1493 0
## 1494 0
## 1495 0
## 1496 0
## 1497 0
## 1498 0
## 1499 0
## 1500 0
## 1501 0
## 1502 0
## 1503 0
## 1504 0
## 1505 0
## 1506 1
## 1507 0
## 1508 0
## 1509 0
## 1510 0
## 1511 0
## 1512 0
## 1513 0
## 1514 0
## 1515 0
## 1516 0
## 1517 0
## 1518 0
## 1519 0
## 1520 0
## 1521 0
## 1522 0
## 1523 0
## 1524 0
## 1525 0
## 1526 0
## 1527 0
## 1528 0
## 1529 0
## 1530 0
## 1531 0
## 1532 0
## 1533 0
## 1534 0
## 1535 0
## 1536 0
## 1537 0
## 1538 0
## 1539 0
## 1540 0
## 1541 0
## 1542 0
## 1543 0
## 1544 0
## 1545 0
## 1546 0
## 1547 0
## 1548 0
## 1549 0
## 1550 0
## 1551 0
## 1552 0
## 1553 0
## 1554 0
## 1555 0
## 1556 0
## 1557 0
## 1558 0
## 1559 0
## 1560 0
## 1561 0
## 1562 0
## 1563 1
## 1564 0
## 1565 0
## 1566 0
## 1567 0
## 1568 0
## 1569 0
## 1570 0
## 1571 0
## 1572 0
## 1573 0
## 1574 0
## 1575 0
## 1576 0
## 1577 0
## 1578 0
## 1579 0
## 1580 0
## 1581 0
## 1582 0
## 1583 1
## 1584 0
## 1585 0
## 1586 0
## 1587 0
## 1588 0
## 1589 0
## 1590 0
## 1591 0
## 1592 0
## 1593 0
## 1594 0
## 1595 0
## 1596 0
## 1597 0
## 1598 0
## 1599 0
## 1600 0
## 1601 0
## 1602 0
## 1603 0
## 1604 0
## 1605 0
## 1606 0
## 1607 0
## 1608 0
## 1609 0
## 1610 0
## 1611 0
## 1612 0
## 1613 0
## 1614 0
## 1615 0
## 1616 0
## 1617 0
## 1618 0
## 1619 0
## 1620 0
## 1621 0
## 1622 0
## 1623 0
## 1624 0
## 1625 0
## 1626 0
## 1627 0
## 1628 0
## 1629 0
## 1630 0
## 1631 0
## 1632 0
## 1633 0
## 1634 0
## 1635 0
## 1636 0
## 1637 0
## 1638 0
## 1639 0
## 1640 0
## 1641 0
## 1642 0
## 1643 0
## 1644 1
## 1645 0
## 1646 0
## 1647 0
## 1648 0
## 1649 0
## 1650 0
## 1651 0
## 1652 0
## 1653 0
## 1654 0
## 1655 0
## 1656 0
## 1657 0
## 1658 0
## 1659 0
## 1660 0
## 1661 0
## 1662 1
## 1663 0
## 1664 0
## 1665 0
## 1666 0
## 1667 0
## 1668 0
## 1669 0
## 1670 0
## 1671 0
## 1672 0
## 1673 0
## 1674 0
## 1675 0
## 1676 0
## 1677 0
## 1678 0
## 1679 0
## 1680 0
## 1681 0
## 1682 0
## 1683 0
## 1684 0
## 1685 0
## 1686 0
## 1687 0
## 1688 0
## 1689 0
## 1690 0
## 1691 0
## 1692 0
## 1693 0
## 1694 0
## 1695 0
## 1696 0
## 1697 0
## 1698 0
## 1699 0
## 1700 0
## 1701 0
## 1702 0
## 1703 0
## 1704 0
## 1705 0
## 1706 0
## 1707 0
## 1708 0
## 1709 0
## 1710 0
## 1711 0
## 1712 0
## 1713 0
## 1714 0
## 1715 0
## 1716 0
## 1717 1
## 1718 0
## 1719 0
## 1720 0
## 1721 0
## 1722 0
## 1723 0
## 1724 0
## 1725 0
## 1726 0
## 1727 0
## 1728 0
## 1729 0
## 1730 0
## 1731 0
## 1732 0
## 1733 1
## 1734 0
## 1735 0
## 1736 0
## 1737 0
## 1738 0
## 1739 0
## 1740 0
## 1741 0
## 1742 0
## 1743 0
## 1744 0
## 1745 0
## 1746 0
## 1747 0
## 1748 1
## 1749 0
## 1750 0
## 1751 0
## 1752 0
## 1753 0
## 1754 0
## 1755 0
## 1756 0
## 1757 0
## 1758 0
## 1759 0
## 1760 0
## 1761 0
## 1762 0
## 1763 0
## 1764 0
## 1765 0
## 1766 0
## 1767 0
## 1768 0
## 1769 0
## 1770 0
## 1771 0
## 1772 0
## 1773 0
## 1774 0
## 1775 0
## 1776 0
## 1777 0
## 1778 0
## 1779 0
## 1780 0
## 1781 0
## 1782 0
## 1783 0
## 1784 0
## 1785 0
## 1786 0
## 1787 0
## 1788 0
## 1789 0
## 1790 0
## 1791 0
## 1792 1
## 1793 0
## 1794 0
## 1795 0
## 1796 0
## 1797 0
## 1798 0
## 1799 0
## 1800 0
## 1801 0
## 1802 0
## 1803 0
## 1804 0
## 1805 0
## 1806 0
## 1807 0
## 1808 0
## 1809 0
## 1810 0
## 1811 0
## 1812 0
## 1813 0
## 1814 0
## 1815 0
## 1816 0
## 1817 0
## 1818 0
## 1819 0
## 1820 0
## 1821 0
## 1822 0
## 1823 0
## 1824 0
## 1825 0
## 1826 0
## 1827 0
## 1828 0
## 1829 0
## 1830 0
## 1831 0
## 1832 0
## 1833 0
## 1834 0
## 1835 0
## 1836 0
## 1837 0
## 1838 1
## 1839 0
## 1840 0
## 1841 0
## 1842 0
## 1843 0
## 1844 0
## 1845 0
## 1846 0
## 1847 0
## 1848 0
## 1849 0
## 1850 0
## 1851 0
## 1852 0
## 1853 0
## 1854 0
## 1855 0
## 1856 0
## 1857 0
## 1858 0
## 1859 0
## 1860 0
## 1861 0
## 1862 0
## 1863 0
## 1864 0
## 1865 0
## 1866 0
## 1867 0
## 1868 0
## 1869 0
## 1870 0
## 1871 0
## 1872 0
## 1873 0
## 1874 0
## 1875 0
## 1876 0
## 1877 0
## 1878 0
## 1879 0
## 1880 0
## 1881 0
## 1882 0
## 1883 0
## 1884 0
## 1885 0
## 1886 0
## 1887 0
## 1888 0
## 1889 0
## 1890 0
## 1891 0
## 1892 0
## 1893 0
## 1894 0
## 1895 0
## 1896 0
## 1897 0
## 1898 0
## 1899 0
## 1900 0
## 1901 0
## 1902 0
## 1903 0
## 1904 0
## 1905 0
## 1906 0
## 1907 0
## 1908 0
## 1909 0
## 1910 0
## 1911 0
## 1912 0
## 1913 0
## 1914 0
## 1915 0
## 1916 0
## 1917 0
## 1918 0
## 1919 0
## 1920 0
## 1921 0
## 1922 0
## 1923 0
## 1924 0
## 1925 0
## 1926 0
## 1927 0
## 1928 0
## 1929 0
## 1930 0
## 1931 0
## 1932 0
## 1933 0
## 1934 0
## 1935 0
## 1936 0
## 1937 0
## 1938 0
## 1939 0
## 1940 0
## 1941 0
## 1942 0
## 1943 0
## 1944 0
## 1945 0
## 1946 0
## 1947 0
## 1948 0
## 1949 0
## 1950 0
## 1951 0
## 1952 0
## 1953 0
## 1954 0
## 1955 0
## 1956 0
## 1957 0
## 1958 0
## 1959 0
## 1960 0
## 1961 0
## 1962 0
## 1963 0
## 1964 0
## 1965 0
## 1966 0
## 1967 1
## 1968 0
## 1969 0
## 1970 0
## 1971 0
## 1972 0
## 1973 0
## 1974 0
## 1975 0
## 1976 0
## 1977 0
## 1978 0
## 1979 0
## 1980 0
## 1981 0
## 1982 0
## 1983 0
## 1984 0
## 1985 0
## 1986 0
## 1987 0
## 1988 0
## 1989 0
## 1990 0
## 1991 0
## 1992 0
## 1993 0
## 1994 0
## 1995 0
## 1996 0
## 1997 0
## 1998 0
## 1999 0
## 2000 0
## 2001 0
## 2002 0
## 2003 0
## 2004 0
## 2005 0
## 2006 0
## 2007 0
## 2008 0
## 2009 0
## 2010 0
## 2011 0
## 2012 0
## 2013 0
## 2014 0
## 2015 0
## 2016 0
## 2017 0
## 2018 0
## 2019 0
## 2020 1
## 2021 0
## 2022 0
## 2023 0
## 2024 0
## 2025 0
## 2026 0
## 2027 0
## 2028 0
## 2029 0
## 2030 0
## 2031 0
## 2032 0
## 2033 0
## 2034 0
## 2035 0
## 2036 0
## 2037 0
## 2038 0
## 2039 0
## 2040 0
## 2041 0
## 2042 0
## 2043 0
## 2044 0
## 2045 0
## 2046 0
## 2047 0
## 2048 0
## 2049 0
## 2050 0
## 2051 0
## 2052 0
## 2053 0
## 2054 0
## 2055 0
## 2056 0
## 2057 0
## 2058 0
## 2059 0
## 2060 1
## 2061 0
## 2062 0
## 2063 0
## 2064 0
## 2065 0
## 2066 0
## 2067 0
## 2068 1
## 2069 0
## 2070 0
## 2071 0
## 2072 0
## 2073 0
## 2074 0
## 2075 0
## 2076 0
## 2077 0
## 2078 0
## 2079 0
## 2080 0
## 2081 0
## 2082 0
## 2083 0
## 2084 1
## 2085 0
## 2086 0
## 2087 0
## 2088 0
## 2089 0
## 2090 0
## 2091 0
## 2092 0
## 2093 0
## 2094 0
## 2095 0
## 2096 1
## 2097 0
## 2098 0
## 2099 0
## 2100 0
## 2101 0
## 2102 0
## 2103 0
## 2104 0
## 2105 0
## 2106 1
## 2107 0
## 2108 0
## 2109 0
## 2110 0
## 2111 0
## 2112 0
## 2113 0
## 2114 0
## 2115 0
## 2116 0
## 2117 0
## 2118 0
## 2119 0
## 2120 0
## 2121 0
## 2122 0
## 2123 0
## 2124 0
## 2125 0
## 2126 0
## 2127 0
## 2128 0
## 2129 0
## 2130 0
## 2131 0
## 2132 0
## 2133 0
## 2134 0
## 2135 0
## 2136 0
## 2137 0
## 2138 0
## 2139 0
## 2140 0
## 2141 0
## 2142 0
## 2143 0
## 2144 0
## 2145 0
## 2146 0
## 2147 0
## 2148 0
## 2149 0
## 2150 0
## 2151 0
## 2152 0
## 2153 0
## 2154 0
## 2155 0
## 2156 0
## 2157 0
## 2158 0
## 2159 0
## 2160 0
## 2161 0
## 2162 0
## 2163 0
## 2164 0
## 2165 0
## 2166 0
## 2167 0
## 2168 0
## 2169 0
## 2170 0
## 2171 0
## 2172 0
## 2173 0
## 2174 0
## 2175 0
## 2176 0
## 2177 0
## 2178 0
## 2179 0
## 2180 0
## 2181 0
## 2182 0
## 2183 0
## 2184 0
## 2185 0
## 2186 0
## 2187 0
## 2188 0
## 2189 0
## 2190 0
## 2191 0
## 2192 0
## 2193 0
## 2194 0
## 2195 0
## 2196 0
## 2197 0
## 2198 0
## 2199 0
## 2200 0
## 2201 0
## 2202 0
## 2203 0
## 2204 0
## 2205 0
## 2206 0
## 2207 0
## 2208 0
## 2209 0
## 2210 0
## 2211 0
## 2212 0
## 2213 0
## 2214 0
## 2215 0
## 2216 0
## 2217 0
## 2218 0
## 2219 0
## 2220 0
## 2221 0
## 2222 0
## 2223 0
## 2224 0
## 2225 0
## 2226 0
## 2227 0
## 2228 0
## 2229 0
## 2230 0
## 2231 0
## 2232 0
## 2233 0
## 2234 0
## 2235 0
## 2236 0
## 2237 0
## 2238 0
## 2239 1
## 2240 0
## 2241 0
## 2242 0
## 2243 0
## 2244 0
## 2245 0
## 2246 0
## 2247 0
## 2248 0
## 2249 0
## 2250 0
## 2251 0
## 2252 0
## 2253 0
## 2254 0
## 2255 0
## 2256 0
## 2257 0
## 2258 0
## 2259 0
## 2260 0
## 2261 0
## 2262 0
## 2263 0
## 2264 0
## 2265 0
## 2266 0
## 2267 0
## 2268 0
## 2269 0
## 2270 0
## 2271 0
## 2272 0
## 2273 0
## 2274 0
## 2275 0
## 2276 0
## 2277 0
## 2278 0
## 2279 0
## 2280 0
## 2281 0
## 2282 0
## 2283 0
## 2284 0
## 2285 0
## 2286 0
## 2287 0
## 2288 0
## 2289 0
## 2290 0
## 2291 0
## 2292 0
## 2293 0
## 2294 0
## 2295 0
## 2296 0
## 2297 0
## 2298 0
## 2299 0
## 2300 0
## 2301 0
## 2302 0
## 2303 0
## 2304 0
## 2305 0
## 2306 0
## 2307 0
## 2308 0
## 2309 0
## 2310 0
## 2311 0
## 2312 0
## 2313 0
## 2314 0
## 2315 0
## 2316 0
## 2317 0
## 2318 0
## 2319 0
## 2320 0
## 2321 0
## 2322 0
## 2323 0
## 2324 0
## 2325 0
## 2326 0
## 2327 0
## 2328 0
## 2329 0
## 2330 0
## 2331 0
## 2332 0
## 2333 0
## 2334 0
## 2335 0
## 2336 0
## 2337 0
## 2338 0
## 2339 0
## 2340 0
## 2341 0
## 2342 0
## 2343 0
## 2344 0
## 2345 0
## 2346 0
## 2347 0
## 2348 0
## 2349 0
## 2350 0
## 2351 0
## 2352 0
## 2353 0
## 2354 0
## 2355 0
## 2356 0
## 2357 0
## 2358 0
## 2359 0
## 2360 0
## 2361 0
## 2362 0
## 2363 0
## 2364 0
## 2365 0
## 2366 0
## 2367 0
## 2368 0
## 2369 0
## 2370 0
## 2371 0
## 2372 0
## 2373 0
## 2374 0
## 2375 0
## 2376 0
## 2377 0
## 2378 0
## 2379 0
## 2380 0
## 2381 0
## 2382 0
## 2383 0
## 2384 0
## 2385 0
## 2386 0
## 2387 0
## 2388 0
## 2389 0
## 2390 0
## 2391 0
## 2392 0
## 2393 0
## 2394 0
## 2395 0
## 2396 0
## 2397 0
## 2398 0
## 2399 0
## 2400 0
## 2401 0
## 2402 0
## 2403 0
## 2404 0
## 2405 0
## 2406 0
## 2407 0
## 2408 0
## 2409 0
## 2410 0
## 2411 0
## 2412 1
## 2413 0
## 2414 0
## 2415 0
## 2416 0
## 2417 0
## 2418 0
## 2419 0
## 2420 0
## 2421 0
## 2422 0
## 2423 0
## 2424 0
## 2425 0
## 2426 0
## 2427 0
## 2428 0
## 2429 0
## 2430 0
## 2431 0
## 2432 0
## 2433 0
## 2434 0
## 2435 0
## 2436 0
## 2437 0
## 2438 0
## 2439 0
## 2440 0
## 2441 0
## 2442 0
## 2443 0
## 2444 0
## 2445 0
## 2446 0
## 2447 0
## 2448 0
## 2449 0
## 2450 0
## 2451 0
## 2452 0
## 2453 0
## 2454 0
## 2455 0
## 2456 0
## 2457 0
## 2458 0
## 2459 0
## 2460 0
## 2461 0
## 2462 0
## 2463 0
## 2464 0
## 2465 0
## 2466 0
## 2467 0
## 2468 0
## 2469 0
## 2470 0
## 2471 0
## 2472 0
## 2473 0
## 2474 0
## 2475 0
## 2476 0
## 2477 0
## 2478 0
## 2479 0
## 2480 0
## 2481 0
## 2482 0
## 2483 0
## 2484 0
## 2485 0
## 2486 0
## 2487 0
## 2488 0
## 2489 0
## 2490 0
## 2491 0
## 2492 0
## 2493 0
## 2494 0
## 2495 0
## 2496 0
## 2497 0
## 2498 0
## 2499 0
## 2500 0
## 2501 0
## 2502 0
## 2503 0
## 2504 0
## 2505 0
## 2506 0
## 2507 0
## 2508 0
## 2509 0
## 2510 0
## 2511 0
## 2512 0
## 2513 0
## 2514 0
## 2515 0
## 2516 0
## 2517 0
## 2518 0
## 2519 0
## 2520 0
## 2521 0
## 2522 0
## 2523 0
## 2524 0
## 2525 0
## 2526 0
## 2527 0
## 2528 0
## 2529 0
## 2530 0
## 2531 1
## 2532 0
## 2533 0
## 2534 0
## 2535 0
## 2536 0
## 2537 0
## 2538 0
## 2539 0
## 2540 0
## 2541 0
## 2542 0
## 2543 0
## 2544 0
## 2545 0
## 2546 0
## 2547 0
## 2548 0
## 2549 0
## 2550 0
## 2551 0
## 2552 0
## 2553 0
## 2554 0
## 2555 0
## 2556 0
## 2557 0
## 2558 0
## 2559 0
## 2560 0
## 2561 0
## 2562 0
## 2563 0
## 2564 0
## 2565 0
## 2566 0
## 2567 0
## 2568 0
## 2569 0
## 2570 0
## 2571 0
## 2572 0
## 2573 0
## 2574 0
## 2575 0
## 2576 0
## 2577 0
## 2578 0
## 2579 0
## 2580 0
## 2581 0
## 2582 0
## 2583 0
## 2584 0
## 2585 0
## 2586 0
## 2587 0
## 2588 0
## 2589 0
## 2590 0
## 2591 0
## 2592 0
## 2593 0
## 2594 0
## 2595 0
## 2596 0
## 2597 0
## 2598 0
## 2599 0
## 2600 0
## 2601 0
## 2602 0
## 2603 0
## 2604 0
## 2605 0
## 2606 0
## 2607 0
## 2608 0
## 2609 0
## 2610 0
## 2611 0
## 2612 0
## 2613 0
## 2614 0
## 2615 0
## 2616 0
## 2617 0
## 2618 0
## 2619 0
## 2620 0
## 2621 0
## 2622 0
## 2623 1
## 2624 0
## 2625 0
## 2626 0
## 2627 0
## 2628 0
## 2629 0
## 2630 0
## 2631 0
## 2632 0
## 2633 0
## 2634 0
## 2635 0
## 2636 0
## 2637 1
## 2638 0
## 2639 0
## 2640 0
## 2641 0
## 2642 0
## 2643 0
## 2644 0
## 2645 0
## 2646 0
## 2647 0
## 2648 0
## 2649 0
## 2650 0
## 2651 0
## 2652 0
## 2653 0
## 2654 0
## 2655 0
## 2656 0
## 2657 0
## 2658 0
## 2659 0
## 2660 0
## 2661 0
## 2662 0
## 2663 0
## 2664 0
## 2665 0
## 2666 0
## 2667 0
## 2668 0
## 2669 0
## 2670 0
## 2671 0
## 2672 0
## 2673 0
## 2674 0
## 2675 0
## 2676 0
## 2677 0
## 2678 0
## 2679 0
## 2680 0
## 2681 0
## 2682 0
## 2683 0
## 2684 0
## 2685 0
## 2686 0
## 2687 0
## 2688 0
## 2689 0
## 2690 0
## 2691 0
## 2692 0
## 2693 0
## 2694 0
## 2695 0
## 2696 0
## 2697 0
## 2698 0
## 2699 0
## 2700 0
## 2701 0
## 2702 0
## 2703 0
## 2704 0
## 2705 0
## 2706 0
## 2707 0
## 2708 0
## 2709 0
## 2710 0
## 2711 0
## 2712 0
## 2713 0
## 2714 0
## 2715 0
## 2716 0
## 2717 0
## 2718 0
## 2719 0
## 2720 0
## 2721 0
## 2722 0
## 2723 0
## 2724 0
## 2725 0
## 2726 0
## 2727 0
## 2728 0
## 2729 0
## 2730 1
## 2731 0
## 2732 0
## 2733 0
## 2734 0
## 2735 0
## 2736 0
## 2737 0
## 2738 0
## 2739 0
## 2740 0
## 2741 0
## 2742 0
## 2743 0
## 2744 0
## 2745 0
## 2746 0
## 2747 0
## 2748 0
## 2749 0
## 2750 0
## 2751 0
## 2752 0
## 2753 0
## 2754 0
## 2755 0
## 2756 0
## 2757 0
## 2758 0
## 2759 0
## 2760 0
## 2761 0
## 2762 0
## 2763 1
## 2764 0
## 2765 0
## 2766 0
## 2767 0
## 2768 0
## 2769 0
## 2770 0
## 2771 0
## 2772 0
## 2773 0
## 2774 0
## 2775 0
## 2776 0
## 2777 0
## 2778 0
## 2779 0
## 2780 0
## 2781 0
## 2782 0
## 2783 0
## 2784 0
## 2785 0
## 2786 0
## 2787 0
## 2788 0
## 2789 0
## 2790 0
## 2791 0
## 2792 0
## 2793 0
## 2794 0
## 2795 0
## 2796 0
## 2797 0
## 2798 0
## 2799 0
## 2800 0
## 2801 0
## 2802 0
## 2803 0
## 2804 0
## 2805 0
## 2806 0
## 2807 0
## 2808 0
## 2809 0
## 2810 0
## 2811 0
## 2812 0
## 2813 0
## 2814 0
## 2815 0
## 2816 0
## 2817 0
## 2818 0
## 2819 0
## 2820 0
## 2821 0
## 2822 0
## 2823 0
## 2824 0
## 2825 0
## 2826 0
## 2827 0
## 2828 0
## 2829 0
## 2830 0
## 2831 0
## 2832 0
## 2833 0
## 2834 0
## 2835 0
## 2836 0
## 2837 0
## 2838 0
## 2839 0
## 2840 1
## 2841 0
## 2842 0
## 2843 0
## 2844 0
## 2845 0
## 2846 0
## 2847 0
## 2848 0
## 2849 0
## 2850 0
## 2851 0
## 2852 0
## 2853 0
## 2854 0
## 2855 0
## 2856 0
## 2857 0
## 2858 0
## 2859 0
## 2860 0
## 2861 0
## 2862 0
## 2863 0
## 2864 0
## 2865 0
## 2866 1
## 2867 0
## 2868 0
## 2869 0
## 2870 0
## 2871 0
## 2872 0
## 2873 0
## 2874 0
## 2875 0
## 2876 0
## 2877 0
## 2878 0
## 2879 0
## 2880 0
## 2881 0
## 2882 0
## 2883 0
## 2884 0
## 2885 0
## 2886 0
## 2887 0
## 2888 0
## 2889 0
## 2890 0
## 2891 0
## 2892 0
## 2893 0
## 2894 0
## 2895 0
## 2896 0
## 2897 0
## 2898 0
## 2899 0
## 2900 0
## 2901 0
## 2902 0
## 2903 0
## 2904 0
## 2905 0
## 2906 0
## 2907 0
## 2908 0
## 2909 0
## 2910 0
## 2911 0
## 2912 0
## 2913 0
## 2914 0
## 2915 0
## 2916 0
## 2917 0
## 2918 0
## 2919 0
## 2920 0
## 2921 0
## 2922 0
## 2923 0
## 2924 0
## 2925 0
## 2926 0
## 2927 0
## 2928 0
## 2929 0
## 2930 0
## 2931 0
## 2932 0
## 2933 0
## 2934 0
## 2935 0
## 2936 0
## 2937 0
## 2938 0
## 2939 0
## 2940 0
## 2941 0
## 2942 0
## 2943 0
## 2944 0
## 2945 0
## 2946 0
## 2947 0
## 2948 0
## 2949 0
## 2950 0
## 2951 0
## 2952 0
## 2953 0
## 2954 0
## 2955 0
## 2956 0
## 2957 0
## 2958 0
## 2959 0
## 2960 0
## 2961 0
## 2962 0
## 2963 0
## 2964 0
## 2965 0
## 2966 0
## 2967 0
## 2968 0
## 2969 0
## 2970 0
## 2971 0
## 2972 0
## 2973 0
## 2974 0
## 2975 0
## 2976 0
## 2977 1
## 2978 0
## 2979 0
## 2980 0
## 2981 0
## 2982 0
## 2983 0
## 2984 0
## 2985 0
## 2986 0
## 2987 0
## 2988 0
## 2989 0
## 2990 0
## 2991 0
## 2992 0
## 2993 0
## 2994 0
## 2995 0
## 2996 0
## 2997 0
## 2998 0
## 2999 0
## 3000 0
## 3001 0
## 3002 0
## 3003 0
## 3004 0
## 3005 0
## 3006 0
## 3007 0
## 3008 0
## 3009 0
## 3010 0
## 3011 0
## 3012 0
## 3013 0
## 3014 0
## 3015 0
## 3016 0
## 3017 0
## 3018 0
## 3019 0
## 3020 0
## 3021 0
## 3022 0
## 3023 0
## 3024 0
## 3025 0
## 3026 0
## 3027 0
## 3028 0
## 3029 0
## 3030 0
## 3031 0
## 3032 0
## 3033 0
## 3034 0
## 3035 0
## 3036 0
## 3037 0
## 3038 0
## 3039 0
## 3040 0
## 3041 0
## 3042 0
## 3043 0
## 3044 0
## 3045 0
## 3046 0
## 3047 0
## 3048 0
## 3049 0
## 3050 0
## 3051 0
## 3052 0
## 3053 0
## 3054 0
## 3055 0
## 3056 0
## 3057 0
## 3058 0
## 3059 0
## 3060 0
## 3061 0
## 3062 0
## 3063 0
## 3064 0
## 3065 0
## 3066 0
## 3067 0
## 3068 0
## 3069 0
## 3070 0
## 3071 0
## 3072 0
## 3073 0
## 3074 0
## 3075 0
## 3076 0
## 3077 0
## 3078 0
## 3079 0
## 3080 0
## 3081 0
## 3082 0
## 3083 0
## 3084 0
## 3085 0
## 3086 0
## 3087 0
## 3088 0
## 3089 0
## 3090 0
## 3091 0
## 3092 0
## 3093 0
## 3094 0
## 3095 0
## 3096 0
## 3097 0
## 3098 0
## 3099 0
## 3100 0
## 3101 0
## 3102 0
## 3103 0
## 3104 0
## 3105 0
## 3106 0
## 3107 0
## 3108 0
## 3109 0
## 3110 0
## 3111 0
## 3112 0
## 3113 0
## 3114 0
## 3115 0
## 3116 0
## 3117 0
## 3118 0
## 3119 0
## 3120 0
## 3121 0
## 3122 0
## 3123 0
## 3124 0
## 3125 0
## 3126 0
## 3127 0
## 3128 0
## 3129 0
## 3130 0
## 3131 0
## 3132 0
## 3133 0
## 3134 0
## 3135 0
## 3136 0
## 3137 0
## 3138 0
## 3139 0
## 3140 0
## 3141 0
## 3142 0
## 3143 0
## 3144 0
## 3145 0
## 3146 0
## 3147 0
## 3148 0
## 3149 0
## 3150 0
## 3151 0
## 3152 0
## 3153 0
## 3154 0
## 3155 0
## 3156 0
## 3157 0
## 3158 0
## 3159 0
## 3160 0
## 3161 0
## 3162 0
## 3163 0
## 3164 0
## 3165 0
## 3166 0
## 3167 0
## 3168 0
## 3169 0
## 3170 0
## 3171 0
## 3172 0
## 3173 0
## 3174 0
## 3175 0
## 3176 0
## 3177 0
## 3178 0
## 3179 0
## 3180 0
## 3181 0
## 3182 0
## 3183 0
## 3184 0
## 3185 0
## 3186 0
## 3187 0
## 3188 0
## 3189 0
## 3190 0
## 3191 0
## 3192 0
## 3193 0
## 3194 0
## 3195 0
## 3196 0
## 3197 0
## 3198 0
## 3199 0
## 3200 0
## 3201 0
## 3202 0
## 3203 0
## 3204 0
## 3205 0
## 3206 0
## 3207 0
## 3208 0
## 3209 0
## 3210 0
## 3211 0
## 3212 0
## 3213 0
## 3214 0
## 3215 0
## 3216 0
## 3217 0
## 3218 0
## 3219 0
## 3220 0
## 3221 0
## 3222 0
## 3223 0
## 3224 0
## 3225 0
## 3226 0
## 3227 0
## 3228 0
## 3229 0
## 3230 0
## 3231 0
## 3232 0
## 3233 0
## 3234 0
## 3235 0
## 3236 0
## 3237 0
## 3238 0
## 3239 0
## 3240 0
## 3241 0
## 3242 0
## 3243 0
## 3244 0
## 3245 0
## 3246 0
## 3247 0
## 3248 0
## 3249 0
## 3250 0
## 3251 0
## 3252 0
## 3253 0
## 3254 0
## 3255 0
## 3256 0
## 3257 0
## 3258 0
## 3259 0
## 3260 0
## 3261 0
## 3262 0
## 3263 0
## 3264 0
## 3265 0
## 3266 0
## 3267 0
## 3268 0
## 3269 0
## 3270 0
## 3271 0
## 3272 0
## 3273 0
## 3274 0
## 3275 0
## 3276 0
## 3277 0
## 3278 0
## 3279 0
## 3280 0
## 3281 0
## 3282 0
## 3283 0
## 3284 0
## 3285 0
## 3286 0
## 3287 1
## 3288 0
## 3289 0
## 3290 0
## 3291 0
## 3292 0
## 3293 1
## 3294 0
## 3295 0
## 3296 0
## 3297 0
## 3298 0
## 3299 0
## 3300 0
## 3301 0
## 3302 0
## 3303 0
## 3304 0
## 3305 0
## 3306 0
## 3307 0
## 3308 0
## 3309 0
## 3310 0
## 3311 0
## 3312 0
## 3313 0
## 3314 0
## 3315 0
## 3316 0
## 3317 0
## 3318 1
## 3319 0
## 3320 0
## 3321 0
## 3322 0
## 3323 0
## 3324 0
## 3325 0
## 3326 0
## 3327 0
## 3328 0
## 3329 0
## 3330 1
## 3331 0
## 3332 0
## 3333 0
## 3334 0
## 3335 0
## 3336 0
## 3337 0
## 3338 0
## 3339 0
## 3340 0
## 3341 0
## 3342 0
## 3343 0
## 3344 0
## 3345 0
## 3346 0
## 3347 0
## 3348 1
## 3349 0
## 3350 0
## 3351 0
## 3352 0
## 3353 0
## 3354 0
## 3355 0
## 3356 0
## 3357 0
## 3358 0
## 3359 0
## 3360 0
## 3361 0
## 3362 0
## 3363 0
## 3364 0
## 3365 0
## 3366 0
## 3367 0
## 3368 0
## 3369 0
## 3370 0
## 3371 0
## 3372 0
## 3373 0
## 3374 0
## 3375 0
## 3376 0
## 3377 0
## 3378 0
## 3379 0
## 3380 0
## 3381 0
## 3382 0
## 3383 0
## 3384 0
## 3385 0
## 3386 1
## 3387 0
## 3388 0
## 3389 0
## 3390 0
## 3391 0
## 3392 0
## 3393 0
## 3394 0
## 3395 0
## 3396 0
## 3397 1
## 3398 0
## 3399 0
## 3400 0
## 3401 0
## 3402 0
## 3403 0
## 3404 0
## 3405 0
## 3406 0
## 3407 0
## 3408 0
## 3409 0
## 3410 0
## 3411 0
## 3412 0
## 3413 0
## 3414 0
## 3415 0
## 3416 0
## 3417 0
## 3418 0
## 3419 0
## 3420 0
## 3421 0
## 3422 0
## 3423 0
## 3424 0
## 3425 0
## 3426 0
## 3427 0
## 3428 0
## 3429 0
## 3430 0
## 3431 0
## 3432 0
## 3433 0
## 3434 0
## 3435 0
## 3436 0
## 3437 0
## 3438 0
## 3439 0
## 3440 0
## 3441 0
## 3442 0
## 3443 0
## 3444 0
## 3445 0
## 3446 0
## 3447 0
## 3448 0
## 3449 0
## 3450 0
## 3451 0
## 3452 0
## 3453 0
## 3454 0
## 3455 0
## 3456 0
## 3457 0
## 3458 0
## 3459 0
## 3460 0
## 3461 0
## 3462 0
## 3463 0
## 3464 0
## 3465 0
## 3466 0
## 3467 0
## 3468 0
## 3469 0
## 3470 0
## 3471 0
## 3472 0
## 3473 0
## 3474 0
## 3475 0
## 3476 0
## 3477 0
## 3478 0
## 3479 0
## 3480 0
## 3481 1
## 3482 0
## 3483 0
## 3484 0
## 3485 0
## 3486 0
## 3487 0
## 3488 0
## 3489 0
## 3490 0
## 3491 0
## 3492 0
## 3493 0
## 3494 0
## 3495 0
## 3496 0
## 3497 0
## 3498 0
## 3499 1
## 3500 0
## 3501 0
## 3502 0
## 3503 0
## 3504 0
## 3505 0
## 3506 0
## 3507 0
## 3508 0
## 3509 0
## 3510 0
## 3511 0
## 3512 0
## 3513 0
## 3514 0
## 3515 0
## 3516 0
## 3517 0
## 3518 0
## 3519 0
## 3520 0
## 3521 0
## 3522 0
## 3523 0
## 3524 0
## 3525 0
## 3526 0
## 3527 0
## 3528 0
## 3529 0
## 3530 0
## 3531 0
## 3532 0
## 3533 0
## 3534 0
## 3535 0
## 3536 0
## 3537 0
## 3538 0
## 3539 0
## 3540 0
## 3541 0
## 3542 0
## 3543 0
## 3544 0
## 3545 0
## 3546 0
## 3547 0
## 3548 0
## 3549 0
## 3550 0
## 3551 0
## 3552 0
## 3553 0
## 3554 0
## 3555 0
## 3556 0
## 3557 0
## 3558 0
## 3559 0
## 3560 0
## 3561 0
## 3562 0
## 3563 0
## 3564 0
## 3565 0
## 3566 0
## 3567 0
## 3568 0
## 3569 0
## 3570 0
## 3571 0
## 3572 0
## 3573 0
## 3574 0
## 3575 0
## 3576 0
## 3577 0
## 3578 0
## 3579 1
## 3580 0
## 3581 0
## 3582 0
## 3583 0
## 3584 0
## 3585 0
## 3586 0
## 3587 0
## 3588 0
## 3589 0
## 3590 0
## 3591 0
## 3592 0
## 3593 0
## 3594 0
## 3595 0
## 3596 0
## 3597 0
## 3598 0
## 3599 0
## 3600 0
## 3601 0
## 3602 0
## 3603 0
## 3604 0
## 3605 0
## 3606 0
## 3607 0
## 3608 0
## 3609 0
## 3610 0
## 3611 0
## 3612 0
## 3613 0
## 3614 0
## 3615 0
## 3616 0
## 3617 0
## 3618 0
## 3619 0
## 3620 0
## 3621 0
## 3622 0
## 3623 0
## 3624 0
## 3625 0
## 3626 0
## 3627 0
## 3628 0
## 3629 0
## 3630 0
## 3631 0
## 3632 0
## 3633 0
## 3634 0
## 3635 0
## 3636 0
## 3637 0
## 3638 0
## 3639 0
## 3640 0
## 3641 0
## 3642 0
## 3643 0
## 3644 0
## 3645 0
## 3646 0
## 3647 0
## 3648 0
## 3649 0
## 3650 0
## 3651 0
## 3652 0
## 3653 0
## 3654 0
## 3655 0
## 3656 0
## 3657 0
## 3658 0
## 3659 0
## 3660 0
## 3661 0
## 3662 0
## 3663 0
## 3664 0
## 3665 0
## 3666 0
## 3667 0
## 3668 0
## 3669 0
## 3670 0
## 3671 0
## 3672 0
## 3673 0
## 3674 0
## 3675 0
## 3676 0
## 3677 0
## 3678 0
## 3679 0
## 3680 0
## 3681 0
## 3682 0
## 3683 0
## 3684 0
## 3685 0
## 3686 0
## 3687 0
## 3688 0
## 3689 0
## 3690 0
## 3691 0
## 3692 0
## 3693 0
## 3694 0
## 3695 0
## 3696 0
## 3697 0
## 3698 0
## 3699 0
## 3700 0
## 3701 0
## 3702 0
## 3703 0
## 3704 0
## 3705 0
## 3706 0
## 3707 0
## 3708 0
## 3709 0
## 3710 0
## 3711 0
## 3712 0
## 3713 0
## 3714 0
## 3715 0
## 3716 0
## 3717 0
## 3718 0
## 3719 1
## 3720 0
## 3721 0
## 3722 0
## 3723 0
## 3724 0
## 3725 0
## 3726 0
## 3727 0
## 3728 0
## 3729 0
## 3730 0
## 3731 0
## 3732 0
## 3733 0
## 3734 0
## 3735 0
## 3736 0
## 3737 0
## 3738 0
## 3739 0
## 3740 0
## 3741 0
## 3742 0
## 3743 0
## 3744 0
## 3745 0
## 3746 0
## 3747 0
## 3748 0
## 3749 0
## 3750 0
## 3751 0
## 3752 0
## 3753 0
## 3754 0
## 3755 0
## 3756 0
## 3757 0
## 3758 0
## 3759 0
## 3760 0
## 3761 0
## 3762 0
## 3763 0
## 3764 0
## 3765 0
## 3766 0
## 3767 0
## 3768 0
## 3769 0
## 3770 0
## 3771 0
## 3772 0
## 3773 0
## 3774 0
## 3775 0
## 3776 0
## 3777 0
## 3778 0
## 3779 0
## 3780 0
## 3781 0
## 3782 0
## 3783 0
## 3784 0
## 3785 0
## 3786 0
## 3787 0
## 3788 0
## 3789 0
## 3790 0
## 3791 0
## 3792 0
## 3793 0
## 3794 0
## 3795 0
## 3796 0
## 3797 0
## 3798 0
## 3799 0
## 3800 0
## 3801 0
## 3802 0
## 3803 0
## 3804 0
## 3805 0
## 3806 0
## 3807 0
## 3808 0
## 3809 0
## 3810 0
## 3811 0
## 3812 0
## 3813 0
## 3814 0
## 3815 0
## 3816 0
## 3817 0
## 3818 0
## 3819 0
## 3820 0
## 3821 0
## 3822 0
## 3823 0
## 3824 0
## 3825 0
## 3826 0
## 3827 0
## 3828 0
## 3829 0
## 3830 0
## 3831 0
## 3832 1
## 3833 0
## 3834 0
## 3835 0
## 3836 0
## 3837 0
## 3838 0
## 3839 0
## 3840 0
## 3841 0
## 3842 0
## 3843 0
## 3844 0
## 3845 0
## 3846 0
## 3847 0
## 3848 0
## 3849 0
## 3850 0
## 3851 0
## 3852 0
## 3853 0
## 3854 0
## 3855 0
## 3856 0
## 3857 0
## 3858 0
## 3859 0
## 3860 0
## 3861 0
## 3862 0
## 3863 0
## 3864 1
## 3865 0
## 3866 0
## 3867 0
## 3868 0
## 3869 0
## 3870 0
## 3871 0
## 3872 0
## 3873 0
## 3874 0
## 3875 0
## 3876 0
## 3877 0
## 3878 0
## 3879 0
## 3880 0
## 3881 0
## 3882 0
## 3883 0
## 3884 0
## 3885 0
## 3886 0
## 3887 0
## 3888 0
## 3889 0
## 3890 0
## 3891 0
## 3892 0
## 3893 0
## 3894 0
## 3895 0
## 3896 0
## 3897 0
## 3898 0
## 3899 0
## 3900 0
## 3901 0
## 3902 1
## 3903 0
## 3904 0
## 3905 0
## 3906 0
## 3907 0
## 3908 0
## 3909 0
## 3910 0
## 3911 0
## 3912 0
## 3913 0
## 3914 0
## 3915 0
## 3916 0
## 3917 0
## 3918 0
## 3919 0
## 3920 0
## 3921 0
## 3922 0
## 3923 0
## 3924 0
## 3925 0
## 3926 0
## 3927 0
## 3928 0
## 3929 0
## 3930 0
## 3931 0
## 3932 0
## 3933 0
## 3934 0
## 3935 0
## 3936 0
## 3937 0
## 3938 0
## 3939 0
## 3940 0
## 3941 0
## 3942 0
## 3943 0
## 3944 0
## 3945 0
## 3946 0
## 3947 0
## 3948 0
## 3949 0
## 3950 0
## 3951 0
## 3952 0
## 3953 0
## 3954 0
## 3955 0
## 3956 0
## 3957 0
## 3958 0
## 3959 0
## 3960 0
## 3961 0
## 3962 0
## 3963 0
## 3964 0
## 3965 0
## 3966 0
## 3967 0
## 3968 0
## 3969 0
## 3970 0
## 3971 0
## 3972 0
## 3973 0
## 3974 0
## 3975 0
## 3976 0
## 3977 0
## 3978 0
## 3979 0
## 3980 0
## 3981 0
## 3982 0
## 3983 0
## 3984 0
## 3985 0
## 3986 0
## 3987 0
## 3988 0
## 3989 0
## 3990 0
## 3991 0
## 3992 0
## 3993 0
## 3994 0
## 3995 0
## 3996 0
## 3997 0
## 3998 0
## 3999 0
## 4000 0
## 4001 0
## 4002 0
## 4003 0
## 4004 0
## 4005 0
## 4006 0
## 4007 0
## 4008 0
## 4009 0
## 4010 0
## 4011 0
## 4012 0
## 4013 0
## 4014 0
## 4015 0
## 4016 0
## 4017 0
## 4018 0
## 4019 0
## 4020 0
## 4021 0
## 4022 0
## 4023 0
## 4024 0
## 4025 0
## 4026 0
## 4027 0
## 4028 0
## 4029 0
## 4030 0
## 4031 0
## 4032 0
## 4033 0
## 4034 0
## 4035 0
## 4036 0
## 4037 0
## 4038 0
## 4039 0
## 4040 0
## 4041 0
## 4042 0
## 4043 0
## 4044 0
## 4045 0
## 4046 0
## 4047 0
## 4048 0
## 4049 0
## 4050 0
## 4051 0
## 4052 0
## 4053 0
## 4054 0
## 4055 0
## 4056 0
## 4057 0
## 4058 0
## 4059 0
## 4060 0
## 4061 0
## 4062 0
## 4063 0
## 4064 0
## 4065 0
## 4066 0
## 4067 0
## 4068 0
## 4069 0
## 4070 0
## 4071 0
## 4072 0
## 4073 0
## 4074 0
## 4075 0
## 4076 0
## 4077 0
## 4078 0
## 4079 0
## 4080 0
## 4081 0
## 4082 0
## 4083 0
## 4084 0
## 4085 0
## 4086 0
## 4087 0
## 4088 0
## 4089 0
## 4090 0
## 4091 0
## 4092 0
## 4093 0
## 4094 0
## 4095 0
## 4096 0
## 4097 0
## 4098 0
## 4099 0
## 4100 0
## 4101 0
## 4102 0
## 4103 0
## 4104 0
## 4105 0
## 4106 0
## 4107 0
## 4108 0
## 4109 0
## 4110 0
## 4111 0
## 4112 0
## 4113 0
## 4114 0
## 4115 0
## 4116 0
## 4117 0
## 4118 0
## 4119 0
## 4120 0
## 4121 0
## 4122 0
## 4123 0
## 4124 0
## 4125 0
## 4126 0
## 4127 0
## 4128 0
## 4129 0
## 4130 0
## 4131 0
## 4132 0
## 4133 0
## 4134 0
## 4135 0
## 4136 0
## 4137 0
## 4138 0
## 4139 0
## 4140 0
## 4141 0
## 4142 0
## 4143 0
## 4144 0
## 4145 0
## 4146 1
## 4147 0
## 4148 0
## 4149 0
## 4150 0
## 4151 0
## 4152 0
## 4153 0
## 4154 0
## 4155 0
## 4156 0
## 4157 0
## 4158 0
## 4159 0
## 4160 0
## 4161 0
## 4162 0
## 4163 0
## 4164 0
## 4165 0
## 4166 0
## [ reached 'max' / getOption("max.print") -- omitted 95226 rows ]
Mittlere Rating Filme
# Gruppiere nach Filme und berechne den Durchschnitt
average_ratings_per_movie <- merged_data %>%
group_by(item) %>%
summarize(mean_rating = mean(rating))
median_rating <- median(average_ratings_per_movie$mean_rating)
min_rating <- min(average_ratings_per_movie$mean_rating)
max_rating <- max(average_ratings_per_movie$mean_rating)
mean_rating <- mean(average_ratings_per_movie$mean_rating)
# Resultate
cat("Median Filmbewertung:", median_rating, "\n")
## Median Filmbewertung: 3.162132
cat("Minimale Filmbewertung:", min_rating, "\n")
## Minimale Filmbewertung: 1
cat("Maximale Filmbewertung:", max_rating, "\n")
## Maximale Filmbewertung: 5
cat("Durchschnittliche Filmbewertung:", mean_rating, "\n")
## Durchschnittliche Filmbewertung: 3.07748
Plot Mittlere Rating Filme
average_ratings_per_movie <- merged_data %>%
group_by(item) %>%
summarize(mean_rating = mean(rating))
# Plot
ggplot(data = average_ratings_per_movie, aes(x = mean_rating)) +
geom_histogram(binwidth = 0.1, fill = "blue", color = "black") +
labs(
title = "Durchschnittliche Ratings Filme",
x = "Durchschnittliche Bewertung",
y = "Nummer an Filmen"
)
Mittlere Ratings User
average_ratings_per_user <- merged_data %>%
group_by(user) %>%
summarize(mean_rating = mean(rating))
median_rating <- median(average_ratings_per_user$mean_rating)
min_rating <- min(average_ratings_per_user$mean_rating)
max_rating <- max(average_ratings_per_user$mean_rating)
mean_rating <- mean(average_ratings_per_user$mean_rating)
# Resultate
cat("Median durchschnittliche Userbewertung:", median_rating, "\n")
## Median durchschnittliche Userbewertung: 3.619048
cat("Minimale durchschnittliche Userbewertung:", min_rating, "\n")
## Minimale durchschnittliche Userbewertung: 1.49652
cat("Maximale durchschnittliche Userbewertung:", max_rating, "\n")
## Maximale durchschnittliche Userbewertung: 4.869565
cat("Durchschnittliche durchschnittliche Userbewertung:", mean_rating, "\n")
## Durchschnittliche durchschnittliche Userbewertung: 3.587565
Plot Mittlere Ratings User
ggplot(data = average_ratings_per_user, aes(x = mean_rating)) +
geom_histogram(binwidth = 0.1, fill = "blue", color = "black") +
labs(
title = "Durchschnittliche Ratings User",
x = "Durchschnittliche Bewertung",
y = "Nummer an Usern"
)
normalized_ratings <- merged_data %>%
group_by(user) %>%
mutate(normalized_rating = (rating - mean(rating)) / sd(rating))
median_normalized_rating <- median(normalized_ratings$normalized_rating)
min_normalized_rating <- min(normalized_ratings$normalized_rating)
max_normalized_rating <- max(normalized_ratings$normalized_rating)
mean_normalized_rating <- mean(normalized_ratings$normalized_rating)
# Resultate
cat("Median der normalisierten avg Userbewertungen:", median_normalized_rating, "\n")
## Median der normalisierten avg Userbewertungen: 0.1083949
cat("Minimale normalisierte avg Userbewertung:", min_normalized_rating, "\n")
## Minimale normalisierte avg Userbewertung: -4.851575
cat("Maximale normalisierte avg Userbewertung:", max_normalized_rating, "\n")
## Maximale normalisierte avg Userbewertung: 4.127926
cat("Durchschnittliche normalisierte avg Userbewertung:", mean_normalized_rating, "\n")
## Durchschnittliche normalisierte avg Userbewertung: -4.574621e-17
Plot the average user ratings. This time with a Z score normalization
ggplot(data = normalized_ratings, aes(x = normalized_rating)) +
geom_histogram(binwidth = 0.1, fill = "blue", color = "black") +
labs(
title = "Durchschnittliche Ratings User",
x = "Durchschnittliche Bewertung",
y = "Nummer an Usern"
)
# Normalize the MovieLense data
Norm <- normalize(MovieLense)
dfNorm <- as(Norm, "data.frame")
head(dfNorm)
## user item rating
## 1 1 Toy Story (1995) 1.3948339
## 453 1 GoldenEye (1995) -0.6051661
## 584 1 Four Rooms (1995) 0.3948339
## 674 1 Get Shorty (1995) -0.6051661
## 883 1 Copycat (1995) -0.6051661
## 969 1 Shanghai Triad (Yao a yao yao dao waipo qiao) (1995) 1.3948339
# Calculate average ratings per user
avgNormRatingUser <- dfNorm %>%
group_by(user) %>%
summarize(avgRating = mean(rating)) %>%
arrange(desc(avgRating))
#test_that("The mean is around zero", {
# expect_true(all.equal(mean(avgNormRatingUser$avgRating), 0, tolerance = 0.01))
#})
# Visualize for a subset of users for non normalized data
df %>%
filter(user %in% 1:12) %>%
ggplot(aes(x = user, y = rating)) +
geom_violin(color = "grey", fill = "grey", alpha = 0.5) +
labs(
x = "User",
y = "Ratings",
title = "Distribution of Ratings from Individual Users",
subtitle = "Subset of Users 1-12"
)
# Visualize for a subset of users for normalized data
dfNorm %>%
filter(user %in% 1:12) %>%
ggplot(aes(x = user, y = rating)) +
geom_violin(color = "grey", fill = "grey", alpha = 0.5) +
labs(
x = "User",
y = "Normalized Ratings",
title = "Normalized Distribution of Ratings from Individual Users",
subtitle = "Subset of Users 1-12"
)
Plot Average Ratings User We can see that normalization shifts the graph to the left -> The average of the user ratings is worse.
Plot Violine Normalization eliminates user bias in collaborative filtering. Different users may have different rating standards, some may be more generous than others. Normalization centers each users rating around zero, making comparisons between users more meaningful, e.g. a normalized rating of zero would mean that the user finds the object average by their own standards. Before normalization, we do not see a clear difference between users rating preferences, while after normalization we see the similarities between users and their rating preferences, whether negative or positive.
# install.packages("viridis")
library(viridis)
## Loading required package: viridisLite
set.seed(42)
smallM <- MovieLense[
sample(nrow(MovieLense), 50), sample(ncol(MovieLense), 50)
]
# Visualize the sparsity pattern of the smallMovieLense matrix
library(Matrix)
image(as(smallM, "matrix"), main = "Sparsity Pattern of User-Item Matrix", xlab = "Items", ylab = "Users", col = viridis(5))
legend("topright", legend = c("1", "2", "3", "4", "5"), fill = viridis(5), title = "Rating")
# Calculate sparsity level
movieMatrix <- as(MovieLense, "matrix")
totalN <- length(movieMatrix)
filledN <- sum(
!is.na(movieMatrix) & movieMatrix > 0,
na.rm = TRUE
)
sparsityLevel <- (totalN - filledN) / totalN
print(paste("Sparsity Level: ", round(sparsityLevel * 100, 2), "%"))
## [1] "Sparsity Level: 93.67 %"
The user item matrix represents the interactions or ratings between users and items. In the image the colored dots represent interactions or in our case ratings. The large number of empty space indicates that users have not interacted with any item. This is a common problem in real world user-item matrices, as not every user interacts with every item. The sparsity level of the item-user-matrix for the movielens dataset is ca. 93.7%.
Aufgabe 2: Reduziere den MovieLens Datensatz auf rund 400 Nutzerinnen und 700 Filme, indem du Filme und Nutzerinnen mit sehr wenigen Ratings entfernst. 1. Anzahl Filme und Nutzer*innen sowie Sparsity vor und nach Datenreduktion
# Filtere 400 aktivste users
top_400_users <- merged_data %>%
group_by(user) %>%
summarize(total_ratings = n()) %>%
arrange(desc(total_ratings)) %>%
slice(1:400) %>%
select(user)
# Filter the top 700 movies
top_movies <- merged_data %>%
group_by(item) %>%
summarize(total_ratings = n()) %>%
arrange(desc(total_ratings)) %>%
slice(1:700) %>%
select(item)
# Reduziere dataset für Filme und User
dataFrame1 <- merged_data %>%
filter(user %in% top_400_users$user, item %in% top_movies$item)
For 400
Before
num_users_before <- length(unique(merged_data$user))
num_movies_before <- length(unique(merged_data$item))
sparsity_before <- 1 - (nrow(merged_data) / (num_users_before * num_movies_before))
# Output before reduction
cat("Number of users before reduction:", num_users_before, "\n")
## Number of users before reduction: 943
cat("Number of movies before reduction:", num_movies_before, "\n")
## Number of movies before reduction: 1664
cat("Sparsity before reduction:", sparsity_before, "\n")
## Sparsity before reduction: 0.9366588
After reduction
num_users_after <- length(unique(dataFrame1$user))
num_movies_after <- length(unique(dataFrame1$item))
sparsity_after <- 1 - (nrow(dataFrame1) / (num_users_after * num_movies_after))
# Output after reduction
cat("Number of users after reduction:", num_users_after, "\n")
## Number of users after reduction: 400
cat("Number of movies after reduction:", num_movies_after, "\n")
## Number of movies after reduction: 700
cat("Sparsity after reduction:", sparsity_after, "\n")
## Sparsity after reduction: 0.7591893
That makes sense, because if we kick out the users who watch fewer movies, then the sparsity should decrease.
Plot Avarage ratings.
library(gridExtra)
##
## Attaching package: 'gridExtra'
## The following object is masked from 'package:dplyr':
##
## combine
avg_ratings_400 <- dataFrame1 %>%
group_by(item) %>%
summarize(mean_rating = mean(rating))
avg_ratings_full <- merged_data %>%
group_by(item) %>%
summarize(mean_rating = mean(rating))
avg400 <- ggplot(data = avg_ratings_400, aes(x = mean_rating)) +
geom_histogram(binwidth = 0.1, fill = "blue", color = "black") +
labs(
title = "400er Reduktion",
x = "Durchschnittliche Bewertung",
y = "Anzahl Filme"
)
avgfull <- ggplot(data = avg_ratings_full, aes(x = mean_rating)) +
geom_histogram(binwidth = 0.1, fill = "blue", color = "black") +
labs(
title = "voller Datensatz",
x = "Durchschnittliche Bewertung",
y = "Anzahl Filme"
)
grid.arrange(avg400, avgfull, ncol = 2)
Second dataframe with 400 best users sliced between 200 and 600.
top_600_users <- merged_data %>%
group_by(user) %>%
summarize(total_ratings = n()) %>%
arrange(desc(total_ratings)) %>%
slice(201:600) %>%
select(user)
# Filter the top 700 movies
top_movies <- merged_data %>%
group_by(item) %>%
summarize(total_ratings = n()) %>%
arrange(desc(total_ratings)) %>%
slice(1:700) %>%
select(item)
# Reduziere dataset für Filme und User
dataFrame2 <- merged_data %>%
filter(user %in% top_600_users$user, item %in% top_movies$item)
Plot average ratings for 600
avg_ratings_600 <- dataFrame2 %>%
group_by(item) %>%
summarize(mean_rating = mean(rating))
avg_ratings_full <- merged_data %>%
group_by(item) %>%
summarize(mean_rating = mean(rating))
avg600 <- ggplot(data = avg_ratings_600, aes(x = mean_rating)) +
geom_histogram(binwidth = 0.1, fill = "blue", color = "black") +
labs(
title = "600er Reduktion",
x = "Durchschnittliche Bewertung",
y = "Anzahl Filme"
)
avgfull <- ggplot(data = avg_ratings_full, aes(x = mean_rating)) +
geom_histogram(binwidth = 0.1, fill = "blue", color = "black") +
labs(
title = "voller Datensatz",
x = "Durchschnittliche Bewertung",
y = "Anzahl Filme"
)
grid.arrange(avg600, avgfull, ncol = 2)
Again, before data reduction
num_users_before <- length(unique(merged_data$user))
num_movies_before <- length(unique(merged_data$item))
sparsity_before <- 1 - (nrow(merged_data) / (num_users_before * num_movies_before))
# Output before reduction
cat("Number of users before reduction:", num_users_before, "\n")
## Number of users before reduction: 943
cat("Number of movies before reduction:", num_movies_before, "\n")
## Number of movies before reduction: 1664
cat("Sparsity before reduction:", sparsity_before, "\n")
## Sparsity before reduction: 0.9366588
This is after you have reduced to the 600 most relevant users, without the 200 most relevant users.
num_users_after <- length(unique(dataFrame2$user))
num_movies_after <- length(unique(dataFrame2$item))
sparsity_after <- 1 - (nrow(dataFrame2) / (num_users_after * num_movies_after))
# Output after reduction
cat("Number of users after reduction:", num_users_after, "\n")
## Number of users after reduction: 400
cat("Number of movies after reduction:", num_movies_after, "\n")
## Number of movies after reduction: 700
cat("Sparsity after reduction:", sparsity_after, "\n")
## Sparsity after reduction: 0.8810714
The sparsity with 943 users and 1664 films is 0.93, which is very high. We reduce the data set to 400 users (who gave the most ratings) and 700 movies. We see that the sparsity has dropped to 76 percent, which is reasonable, because we have the most active users and most rated movies left. The second reduced data frame takes the most active 600 users, but cuts out the first 200. We see that the sparsity increases to 88 percent. The first 200 most active users are no longer present, so we have a higher sparsity.
head(dataFrame1)
## user item rating year
## 1 1 Toy Story (1995) 5 1995
## 2 1 GoldenEye (1995) 3 1995
## 3 1 Four Rooms (1995) 4 1995
## 4 1 Get Shorty (1995) 3 1995
## 5 1 Copycat (1995) 3 1995
## 6 1 Twelve Monkeys (1995) 4 1995
## url unknown Action
## 1 http://us.imdb.com/M/title-exact?Toy%20Story%20(1995) 0 0
## 2 http://us.imdb.com/M/title-exact?GoldenEye%20(1995) 0 1
## 3 http://us.imdb.com/M/title-exact?Four%20Rooms%20(1995) 0 0
## 4 http://us.imdb.com/M/title-exact?Get%20Shorty%20(1995) 0 1
## 5 http://us.imdb.com/M/title-exact?Copycat%20(1995) 0 0
## 6 http://us.imdb.com/M/title-exact?Twelve%20Monkeys%20(1995) 0 0
## Adventure Animation Children's Comedy Crime Documentary Drama Fantasy
## 1 0 1 1 1 0 0 0 0
## 2 1 0 0 0 0 0 0 0
## 3 0 0 0 0 0 0 0 0
## 4 0 0 0 1 0 0 1 0
## 5 0 0 0 0 1 0 1 0
## 6 0 0 0 0 0 0 1 0
## Film-Noir Horror Musical Mystery Romance Sci-Fi Thriller War Western
## 1 0 0 0 0 0 0 0 0 0
## 2 0 0 0 0 0 0 1 0 0
## 3 0 0 0 0 0 0 1 0 0
## 4 0 0 0 0 0 0 0 0 0
## 5 0 0 0 0 0 0 1 0 0
## 6 0 0 0 0 0 1 0 0 0
Die Formel ist:
IOU = (# gemeinsame Filme) / (#Filme in beiden df zusammen )
# Distinkte Movies / User für die Beiden Dataframes
anzahl_movies_400 <- n_distinct(dataFrame1$item)
anzahl_users_400 <- n_distinct(dataFrame1$user)
anzahl_movies_600 <- n_distinct(dataFrame2$item)
anzahl_users_600 <- n_distinct(dataFrame2$user)
# Intersection
common_movies <- intersect(dataFrame1$item, dataFrame2$item)
common_users <- intersect(dataFrame1$user, dataFrame2$user)
# IOU
IOU_movies <- length(common_movies) / (anzahl_movies_400 + anzahl_movies_600 - length(common_movies))
IOU_users <- length(common_users) / (anzahl_users_400 +
anzahl_users_600 - length(common_users))
cat("Intersection over Union für Filme:", IOU_movies, "\n")
## Intersection over Union für Filme: 1
cat("Intersection over Union für Nutzer:", IOU_users, "\n")
## Intersection over Union für Nutzer: 0.3333333
This result was logical after our data separation, as we use the same films and 0.333 also makes sense, as only users 201-400 appear in both data frames. The intersection over union is a measure of the overlap between two data sets. For the user IoU, there is an overlap of about 33% between the first and second data sets. For the movies IoU, the overlap between the first and second data sets is about 100%. The overlap is quite reasonable and therefore the data sets are not too similar. We could reduce the similarity by choosing other splitting techniques, e.g. instead of 400 users we could have 700, and the indexing could range from 1 to 500 and from 201 to 700 and see how the IoU behaves.
Aufgabe 3: Erzeuge einen IBCF Recommender und analysiere die Ähnlichkeitsmatrix des trainierten Modelles für den reduzierten Datensatz. 1. Zerlege den Datensatz in Trainings- und Testdaten im verhältnis 4:1.
matrixReduced1 <- as(dataFrame1, "realRatingMatrix")
evalScheme1 <- evaluationScheme(
matrixReduced1,
method = "split",
train = 0.8,
given = 5,
goodRating = 4
)
evalScheme1
## Evaluation scheme with 5 items given
## Method: 'split' with 1 run(s).
## Training set proportion: 0.800
## Good ratings: >=4.000000
## Data set: 400 x 700 rating matrix of class 'realRatingMatrix' with 67427 ratings.
matrixReduced2 <- as(dataFrame2, "realRatingMatrix")
evalScheme2 <- evaluationScheme(
matrixReduced2,
method = "split",
train = 0.8,
given = 5,
goodRating = 4
)
evalScheme2
## Evaluation scheme with 5 items given
## Method: 'split' with 1 run(s).
## Training set proportion: 0.800
## Good ratings: >=4.000000
## Data set: 400 x 700 rating matrix of class 'realRatingMatrix' with 33300 ratings.
We use the evaluationScheme for the first data set with the 400 most active users, and we decided that good ratings are equal to 4 because we thought 3 was too mediocre. The output is a realRatingMatrix with 67427 ratings and the training set proportion is 0.8. For the second dataset, we have the same parameters and there are 33300 ratings.
# Get the training set from the evaluationScheme object
trainData1 <- getData(evalScheme1, "train")
testData1 <- getData(evalScheme1, "known")
trainData2 <- getData(evalScheme2, "train")
testData2 <- getData(evalScheme2, "known")
# Train the IBCF model
trainedModel1 <- Recommender(
trainData1,
method = "IBCF", param = list(k = 30, method = "Cosine")
)
trainedModel2 <- Recommender(
trainData2,
method = "IBCF", param = list(k = 30, method = "Cosine")
)
Top 400
sim_400 <- getModel(trainedModel1)$sim
image(getModel(trainedModel1)$sim,
main = "IBCF Similarity Matrix Heatmap for top 400"
)
Top 600 without first 200
sim_600 <- getModel(trainedModel2)$sim
image(getModel(trainedModel2)$sim,
main = "IBCF Similarity Matrix Heatmap for top 600 (without first 200)"
)
The first diagram entitled “Top 600 (excluding the first 200) similarity matrix heatmap,” shows an unevenly distributed heatmap and appears quite sparse. The second chart, titled “IBCF Similarity Matrix Heatmap for top 400,” shows a slightly denser heatmap, which suggests that a greater number of similarities may have been identified between the articles. The difference in active users can be derived from the density of interactions. If a model has more active users, we would expect a denser similarity matrix as there are more reviews and interactions from which similarities can be derived. interactions from which similarities can be calculated. The heatmap with more dots (or less white space) could be the one with more active users, assuming that “active refers to the frequency or volume of ratings given by users. More active users usually lead to a denser similarity matrix as there are more data points to calculate the similarities between each item
sums400 <- colSums(sim_400)
twentytop_400 <- head(sort(sums400, decreasing = TRUE), 20)
hist(
sums400,
breaks = 50, main = "Distribution of Movie Rating Occurences",
xlab = "Amount of Times Rated",
ylab = "Number of Movies that occur x times"
)
We can see that a large proportion of movies do not appear at all or
only very rarely (left side). The largest proportion of movies rated is
between 0 and 50 occurrences. We conclude that most movies are rated
very rarely.
sumsDF2 <- colSums(sim_600)
twentytop_600 <- head(sort(sumsDF2, decreasing = TRUE), 20)
hist(
sumsDF2,
breaks = 50, main = "Distribution of Movie Rating Occurences",
xlab = "Amount of Times Rated",
ylab = "Number of Movies that occur x times"
)
Because the users from the second dataset are less active than the users
from the first dataset, we see more movies are rated fewer times.
twentytop_400
## Leave It to Beaver (1997) Air Bud (1997)
## 147.46565 140.24714
## Little Princess, A (1995) Excess Baggage (1997)
## 127.20735 126.98554
## Fallen (1998) Kundun (1997)
## 126.19729 120.24375
## Mouse Hunt (1997) Eve's Bayou (1997)
## 119.81153 119.16842
## Money Talks (1997) Love Jones (1997)
## 114.42248 113.78945
## Apostle, The (1997) When We Were Kings (1996)
## 111.45972 110.83874
## Sphere (1998) Desperate Measures (1998)
## 106.70701 105.06807
## Sweet Hereafter, The (1997) Postman, The (1997)
## 103.03043 102.43199
## Anastasia (1997) Waiting for Guffman (1996)
## 102.36002 97.99983
## Shall We Dance? (1996) Flubber (1997)
## 97.76417 97.43438
These are the top 20 most rated movies for the first data set.
twentytop_600
## What's Love Got to Do with It (1993)
## 156.2298
## Victor/Victoria (1982)
## 131.8416
## Renaissance Man (1994)
## 129.0877
## Red Rock West (1992)
## 127.7431
## Waiting for Guffman (1996)
## 125.7738
## Wings of the Dove, The (1997)
## 123.2845
## Short Cuts (1993)
## 122.8463
## Shall We Dance? (1996)
## 122.4125
## Tales From the Crypt Presents: Demon Knight (1995)
## 121.7189
## Thin Man, The (1934)
## 120.8637
## Sophie's Choice (1982)
## 119.2540
## To Die For (1995)
## 118.5171
## With Honors (1994)
## 116.8980
## Sirens (1994)
## 116.7781
## Supercop (1992)
## 115.7981
## Rising Sun (1993)
## 114.3790
## Substitute, The (1996)
## 112.3504
## Young Guns II (1990)
## 111.5995
## Tank Girl (1995)
## 111.3158
## Tin Men (1987)
## 110.2293
These are the top 20 most rated movies for the second data set. It is interesting that the film ‘Fallen (1998)’, which appeared the most in the data set 400, does not even make the top20 here.
First Data Set
ggplot() +
geom_histogram(data = dataFrame1 %>% group_by(item) %>%
count(), aes(n), binwidth = 0.05, color = "blue", fill = "white", alpha = 0.5) +
labs(
title = "Comparison between Recommendation and Reduced Data Set 1",
subtitle = "Top 20 Movies from IBCF in green",
x = "Amount of Ratings",
y = "Amount of Movies",
) +
geom_vline(xintercept = twentytop_400, color = "green")
The blue histogram shows the number of ratings per movie for the first
data set. The green lines show the 20 most rated movies from the IBCF.
We see that the recommendations tend to be in the middle of the
distribution. The model has not choosed the most rated movies.
Second Data Set
ggplot() +
geom_histogram(data = dataFrame2 %>% group_by(item) %>%
count(), aes(n), binwidth = 0.05, color = "blue", fill = "white", alpha = 0.5) +
labs(
title = "Comparison between Recommendation and Reduced Data Set 1",
subtitle = "Top 20 Movies from IBCF in green",
x = "Amount of Ratings",
y = "Amount of Movies",
) +
geom_vline(xintercept = twentytop_600, color = "green")
The blue histogram shows the number of ratings per film for the first
data set. The green lines show the 20 best-rated films from the IBCF. It
can be seen that the recommendations tend to lie in the middle of the
distribution, regardless of the skewness of the distribution. The model
has a balanced recommendation between rarely and frequently rated
films.
Movie Ratings Distribution (Normalized) for top 20 (first data set)
names_twentytop_400 <- names(twentytop_400)
top20simmrat <- dataFrame1 %>%
group_by(item) %>%
filter(item %in% names_twentytop_400)
ggplot() +
geom_histogram(data = top20simmrat, aes(rating), binwidth = 0.1) +
facet_wrap(vars(top20simmrat$item)) +
labs(
x = "Normalized Ratings",
y = "Number of Ratings",
title = "Movie Ratings Distribution (Normalized) for top 20 Movies"
)
We see for each individual movie of our recommender (top 400) how it was
rated, e.g. the “When We Were Kings (1996)” was rated very positively,
where as “Excess Baggage (1997)” was rated very negatively.
Movie Ratings Distribution (Normalized) for top 20 (second data set)
names_twentytop_600 <- names(twentytop_600)
top20simmrat <- dataFrame2 %>%
group_by(item) %>%
filter(item %in% names_twentytop_600)
ggplot() +
geom_histogram(data = top20simmrat, aes(rating), binwidth = 0.1) +
facet_wrap(vars(top20simmrat$item)) +
labs(
x = "Normalized Ratings",
y = "Number of Ratings",
title = "Movie Ratings Distribution (Normalized) for top 20 Movies"
)
The distribution is much sparser than before. We can see for each
individual movie of our recommender (second data set) how it was rated,
In contrast to the other data set, this one tends to be rated more
positively, For example, the film “Short Cuts (1993)” was rated very
positively, whereas “Sirens (1994)” was rated rather negatively.
# Convert from df to realRatingMatrix
matrixReduced1 <- as(dataFrame1, "realRatingMatrix")
# Define the given values to iterate over
given_values <- c(5, 10, 20, 40)
# Iterate over the different given values
for (given in given_values) {
cat("Processing for given =", given, "\n")
# Create evaluation scheme
evalScheme <- evaluationScheme(
matrixReduced1,
method = "split",
train = 0.8,
given = given,
goodRating = 4
)
# Train the IBCF model
trained_model <- Recommender(
getData(evalScheme, "train"),
method = "IBCF",
param = list(k = 30, method = "Cosine")
)
# Extract the similarity matrix
simMatrix <- getModel(trained_model)$sim
# Find the top 10 most similar movies
top10 <- apply(simMatrix, 1, function(x) {
order(x, decreasing = TRUE)[1:10]
})
# Unlist and tabulate to find most frequent
mostFrequentMovies <- table(as.vector(top10))
# Sort
mostFrequentMovies <- sort(mostFrequentMovies, decreasing = TRUE)
# Process for ggplot2
dfMostFrequentMovies <- as.data.frame(mostFrequentMovies)
colnames(dfMostFrequentMovies) <- c("item", "freq")
# Get the names for the movies for given ids in mostFreqentMovies
dfMostFrequentMovies$MovieTitle <- dfMeta[as.numeric(names(mostFrequentMovies)), "title"]
# Visualize
p <- ggplot(
head(dfMostFrequentMovies, 10),
aes(x = reorder(MovieTitle, -freq), y = freq)
) +
geom_bar(stat = "identity") +
xlab("Movie Titles") +
ylab("Frequency") +
ggtitle(paste("Top 10 Most Frequent Movies in Similarity Matrix for given =", given)) +
theme(axis.text.x = element_text(angle = 90, hjust = 1))
print(p)
}
## Processing for given = 5
## Processing for given = 10
## Processing for given = 20
## Processing for given = 40
The IBCF Recommender uses a test set of user profiles that are not part of the training but of the predictions. Additionally, there is a set of masked ratings to evaluate the prediction. For the masking, we use the Given-x parameter, which is a random selection from all test users for the prediction, the rest is part of the evaluation. It turns out that the same result is not always achieved for different given values, e.g. the recommendation results for Given = 5 differ from those of the others. We can state the same for the second data set.
Aufgabe 4 (DIY): Implementiere Funktionen zur Berechnung von Ähnlichkeitsmatrizen bei IBCF Recommenders für (a) Cosine Similarity mit ordinale Ratings und (b) Jaccard Similarity mit binären Ratings
Jaccard Similarity Function
getJaccardSim <- function(M) {
A <- tcrossprod(M)
im <- which(A > 0, arr.ind = TRUE)
b <- rowSums(M)
Aim <- A[im]
sparseMatrix(
i = im[, 1],
j = im[, 2],
x = Aim / (b[im[, 1]] + b[im[, 2]] - Aim),
dims = dim(A)
)
}
set.seed(42)
index <- sort(sample(1:nrow(MovieLense), 100)) # wähle 100 zufällige Filme
oursample <- MovieLense[index]
# reguläre Werte Matrix
oursample_Matrix <- as(oursample, "matrix")
oursample_Matrix[is.na(oursample_Matrix)] <- 0 # ersetze na durch 0
# binäre Werte Matrix
oursample_bin <- binarize(oursample, 4)
sampledMatrix <- as(oursample_bin, "matrix")
jaccard_sim <- as(getJaccardSim(sampledMatrix), "matrix")
jaccard_sim[1:5, 1:5]
## [,1] [,2] [,3] [,4] [,5]
## [1,] 1.000000000 0.007751938 0.01470588 0.115384615 0.045454545
## [2,] 0.007751938 1.000000000 0.18750000 0.007692308 0.008064516
## [3,] 0.014705882 0.187500000 1.00000000 0.029411765 0.000000000
## [4,] 0.115384615 0.007692308 0.02941176 1.000000000 0.043478261
## [5,] 0.045454545 0.008064516 0.00000000 0.043478261 1.000000000
Cosinus Similarity Function
getCosineSim <- function(M) {
similarity <- M / sqrt(rowSums(M * M))
similarity[is.na(similarity)] <- 0
similarity <- similarity %*% t(similarity)
similarity <- as(similarity, "matrix")
}
We use the cosine similarity on the regular data (100 movies)
cosinus_sim <- getCosineSim(oursample_Matrix)
cosinus_sim[1:5, 1:5]
## 3 16 24 33 40
## 3 1.00000000 0.06062300 0.07398465 0.36933893 0.35535822
## 16 0.06062300 1.00000000 0.36689082 0.04662802 0.06900681
## 24 0.07398465 0.36689082 1.00000000 0.08154464 0.08887677
## 33 0.36933893 0.04662802 0.08154464 1.00000000 0.32719073
## 40 0.35535822 0.06900681 0.08887677 0.32719073 1.00000000
We compare the custom Cosine with Recommender Cosine and proxy Cosine
realRM <- as(oursample_Matrix, "realRatingMatrix")
cosine_rec <- as.matrix(similarity(realRM, method = "cosine", which = "users"))
diag(cosine_rec) <- 1
rescale <- function(x) {
return(1 / 2 * (x + 1))
}
co_sim_rec <- apply(cosinus_sim, 1, rescale)
max(abs(cosine_rec - co_sim_rec), na.rm = TRUE)
## [1] 4.218847e-15
all.equal(cosine_rec, co_sim_rec)
## [1] TRUE
Recommenderlab rescales the matrix, so we have to do it also. Now we proof if our implementation is allmost equal to the recommenderlab implementation. We see there is almost no difference (floating point error) between our custom implementation and the recommender cosine.
Now we compare our implementation with the proxy cosine
library(proxy)
proxy_cosine <- as(cosine(t(oursample_Matrix)), "matrix")
max(abs(cosinus_sim - proxy_cosine))
## [1] 8.437695e-15
all.equal(cosinus_sim, proxy_cosine)
## [1] TRUE
We see that there is almost no difference between our custom implementation and the proxy cosine.
Calculate the Runtimes
startTime <- Sys.time()
cosineSimMatrix <- getCosineSim(oursample_Matrix)
endTime <- Sys.time()
runtimeCustom <- endTime - startTime
print("Runtim for custom cosine function:")
## [1] "Runtim for custom cosine function:"
print(runtimeCustom)
## Time difference of 0.01024413 secs
startTime <- Sys.time()
realRM <- as(oursample_Matrix, "realRatingMatrix")
cosine_rec <- as.matrix(similarity(realRM, method = "cosine", which = "users"))
endTime <- Sys.time()
runtimeCustom <- endTime - startTime
print("Runtim for recommender cosine function:")
## [1] "Runtim for recommender cosine function:"
print(runtimeCustom)
## Time difference of 0.0217731 secs
startTime <- Sys.time()
proxy_cosine <- as(cosine(t(oursample_Matrix)), "matrix")
endTime <- Sys.time()
runtimeCustom <- endTime - startTime
print("Runtim for proxy cosine function:")
## [1] "Runtim for proxy cosine function:"
print(runtimeCustom)
## Time difference of 0.2935851 secs
The proxy cosine function is about four times slower than our custom implementation. The recommender cosine function is also slower than our custom implementation, because we have to convert the matrix into a realRatingMatrix, which requires more steps and is slower. is slower.
cos_jacc <- mean(abs(cosinus_sim - jaccard_sim), na.rm = TRUE)
print("Mean Absolute Difference between Cosinus and Jaccard:")
## [1] "Mean Absolute Difference between Cosinus and Jaccard:"
print(cos_jacc)
## [1] 0.1238838
Interpretation: The Mean Absolute Difference (MAD) can be interpreted as the average error between the two measures. Since cosine similarity and Jaccard similarity are different metrics (cosine similarity takes into account the magnitude of the vectors, while Jaccard similarity is based on the presence/absence of characteristics), some difference is to be expected. A MAD of 0.12 indicates that there is some discrepancy between the two measures, the overall magnitude of this discrepancy is modest. This suggest that for the particular dataset, both measures are providing relatively similar information.
Visualization
library(ggplot2)
# install.packages("reshape2")
library(reshape2)
##
## Attaching package: 'reshape2'
## The following object is masked from 'package:tidyr':
##
## smiths
# Daten für die Heatmap vorbereiten
cosinus_melted <- melt(cosinus_sim)
jaccard_melted <- melt(jaccard_sim)
# Plotte cos Heatmap
movie_labels <- rownames(cosinus_sim)
# long format
cos_sim_df <- as.data.frame(as.table(cosinus_sim))
cos_sim_df$Var1 <- factor(cos_sim_df$Var1, levels = movie_labels)
cos_sim_df$Var2 <- factor(cos_sim_df$Var2, levels = movie_labels)
# heatmap
ggplot(data = cos_sim_df, aes(Var1, Var2, fill = Freq)) +
geom_tile() +
scale_fill_gradient(low = "white", high = "blue") +
theme_minimal() +
theme(axis.text.x = element_text(angle = 90, hjust = 1, vjust = 0.5)) +
labs(title = "Cosine Similarity Matrix", x = "Movies", y = "Movies") +
scale_x_discrete(labels = rep("", nrow(cos_sim_df))) +
scale_y_discrete(labels = rep("", nrow(cos_sim_df)))
# jaccard heatmap
ggplot(data = jaccard_melted, aes(x = Var1, y = Var2, fill = value)) +
geom_tile() +
labs(title = "Jaccard Similarity Matrix", x = "Movies", y = "Movies") +
theme_minimal()
Our dataset consists of ratings which are non binary and on different scales. Cosine similarity (CS) can capture the nuances in user preferences more effectively than Jaccard Similarity (JS). The CS will consider different levels of preference (e.g. rating scales from 1 to 5), whereas Jaccard similarity only considers whether an item was rated or not, ignoring the rating scale.
Our users may rate only a small subset of all available items (high sparsity). CS can still find a high degree of similarity between two users even if they have rated a different number of items.
Jaccard does not take into account the magnitude of the interaction and would consider two users who rated a different number of items less similar, even if the smaller set of ratings is a subset of the larger set of ratings.
Aufgabe 5: Vergleiche und diskutiere Top-N Empfehlungen von IBCF und UBCF Modellen mit 30 Nachbarn und Cosine Similarity für den reduzierten Datensatz. 1. Berechne die Top-15 Empfehlungen aller Testnutzer*innen via IBCF und UBCF
library(recommenderlab)
dataFrame1 <- merged_data %>%
filter(user %in% top_400_users$user, item %in% top_movies$item)
matrixReduced1 <- as(dataFrame1, "realRatingMatrix")
evalScheme1 <- evaluationScheme(
matrixReduced1,
method = "split",
train = 0.8,
given = 5,
goodRating = 4
)
trainData1 <- getData(evalScheme1, "train")
testData1 <- getData(evalScheme1, "known")
dataFrame2 <- merged_data %>%
filter(user %in% top_600_users$user, item %in% top_movies$item)
matrixReduced2 <- as(dataFrame2, "realRatingMatrix")
evalScheme2 <- evaluationScheme(
matrixReduced2,
method = "split",
train = 0.8,
given = 5,
goodRating = 4
)
trainData2 <- getData(evalScheme2, "train")
testData2 <- getData(evalScheme2, "known")
ibcfModel <- Recommender(trainData1, method = "IBCF", param = list(k = 30, method = "Cosine"))
ubcfModel <- Recommender(trainData1, method = "UBCF", param = list(nn = 30, method = "Cosine"))
# Function to get top N recommendations
getTopN <- function(model, data, n = 15) {
sapply(seq(nrow(data)), function(i) {
recs <- predict(model, newdata = data[i, ], n = n)
as(recs, "list")[[1]]
})
}
# Get top 15 recommendations for all users
top15_ibcf <- getTopN(ibcfModel, testData1)
top15_ubcf <- getTopN(ubcfModel, testData1)
comparison_table <- data.frame(
# Annahme: Die Zeilen repräsentieren die Top-15 Empfehlungen
IBCF_User1 = top15_ibcf[1],
UBCF_User1 = top15_ubcf[1],
IBCF_User2 = top15_ibcf[2],
UBCF_User2 = top15_ubcf[2],
IBCF_User3 = top15_ibcf[3],
UBCF_User3 = top15_ubcf[3]
)
comparison_table
## c..Independence.Day..ID4...1996.....Pretty.Woman..1990.....101.Dalmatians..1996....
## 1 Independence Day (ID4) (1996)
## 2 Pretty Woman (1990)
## 3 101 Dalmatians (1996)
## 4 Air Bud (1997)
## 5 Air Force One (1997)
## 6 Apostle, The (1997)
## 7 Bean (1997)
## 8 Bed of Roses (1996)
## 9 Breakdown (1997)
## 10 Bridges of Madison County, The (1995)
## 11 Chamber, The (1996)
## 12 City Hall (1996)
## 13 Days of Thunder (1990)
## 14 Desperate Measures (1998)
## 15 Dirty Dancing (1987)
## c..Sunset.Blvd...1950.....Treasure.of.the.Sierra.Madre..The..1948....
## 1 Sunset Blvd. (1950)
## 2 Treasure of the Sierra Madre, The (1948)
## 3 Heavenly Creatures (1994)
## 4 Being There (1979)
## 5 Quiet Man, The (1952)
## 6 Some Folks Call It a Sling Blade (1993)
## 7 East of Eden (1955)
## 8 Three Colors: Red (1994)
## 9 Godfather, The (1972)
## 10 As Good As It Gets (1997)
## 11 Shawshank Redemption, The (1994)
## 12 Raise the Red Lantern (1991)
## 13 Jean de Florette (1986)
## 14 Close Shave, A (1995)
## 15 Flirting With Disaster (1996)
## c..Amistad..1997.....Apollo.13..1995.....Birds..The..1963....
## 1 Amistad (1997)
## 2 Apollo 13 (1995)
## 3 Birds, The (1963)
## 4 Braveheart (1995)
## 5 Empire Strikes Back, The (1980)
## 6 Gandhi (1982)
## 7 Glory (1989)
## 8 Great Escape, The (1963)
## 9 Groundhog Day (1993)
## 10 Hoop Dreams (1994)
## 11 It's a Wonderful Life (1946)
## 12 Kundun (1997)
## 13 Princess Bride, The (1987)
## 14 Raising Arizona (1987)
## 15 Return of the Jedi (1983)
## c..Bronx.Tale..A..1993.....Shall.We.Dance...1996.....Shadow.Conspiracy..1997....
## 1 Bronx Tale, A (1993)
## 2 Shall We Dance? (1996)
## 3 Shadow Conspiracy (1997)
## 4 Persuasion (1995)
## 5 M (1931)
## 6 Don Juan DeMarco (1995)
## 7 Raging Bull (1980)
## 8 Bottle Rocket (1996)
## 9 Wild Bunch, The (1969)
## 10 Swimming with Sharks (1995)
## 11 Richard III (1995)
## 12 Enchanted April (1991)
## 13 Three Colors: Blue (1993)
## 14 Three Colors: Red (1994)
## 15 Jumanji (1995)
## c..Anastasia..1997.....Arsenic.and.Old.Lace..1944.....Bound..1996....
## 1 Anastasia (1997)
## 2 Arsenic and Old Lace (1944)
## 3 Bound (1996)
## 4 Carrie (1976)
## 5 Client, The (1994)
## 6 Coneheads (1993)
## 7 East of Eden (1955)
## 8 Fallen (1998)
## 9 Hunt for Red October, The (1990)
## 10 Leaving Las Vegas (1995)
## 11 Much Ado About Nothing (1993)
## 12 People vs. Larry Flynt, The (1996)
## 13 Private Benjamin (1980)
## 14 Rebel Without a Cause (1955)
## 15 Rocket Man (1997)
## c..Don.Juan.DeMarco..1995.....Roman.Holiday..1953.....Farewell.My.Concubine..1993....
## 1 Don Juan DeMarco (1995)
## 2 Roman Holiday (1953)
## 3 Farewell My Concubine (1993)
## 4 MatchMaker, The (1997)
## 5 Father of the Bride (1950)
## 6 Apt Pupil (1998)
## 7 Enchanted April (1991)
## 8 Basketball Diaries, The (1995)
## 9 Gigi (1958)
## 10 Lawrence of Arabia (1962)
## 11 Restoration (1995)
## 12 Day the Earth Stood Still, The (1951)
## 13 Cat on a Hot Tin Roof (1958)
## 14 Streetcar Named Desire, A (1951)
## 15 Nosferatu (Nosferatu, eine Symphonie des Grauens) (1922)
print("für user 1: ")
## [1] "für user 1: "
print(intersect(top15_ibcf[1], top15_ubcf[1]))
## list()
cat("\n")
print("für user 2: ")
## [1] "für user 2: "
print(intersect(top15_ibcf[2], top15_ubcf[2]))
## list()
cat("\n")
print("für user 3: ")
## [1] "für user 3: "
print(intersect(top15_ibcf[3], top15_ubcf[3]))
## list()
We do not see any intersect between the recommendations of the two models.
# combine all recommendations into a single vector for each method
all_ibcf <- unlist(top15_ibcf)
all_ubcf <- unlist(top15_ubcf)
# Create a table of frequencies for each set of recommendations
freq_ibcf <- table(all_ibcf)
freq_ubcf <- table(all_ubcf)
# Convert the tables to data frames for plotting
df_ibcf <- as.data.frame(freq_ibcf)
df_ubcf <- as.data.frame(freq_ubcf)
names(df_ibcf) <- c("Movie", "IBCF_Count")
names(df_ubcf) <- c("Movie", "UBCF_Count")
df_combined <- merge(df_ibcf, df_ubcf, by = "Movie", all = TRUE)
df_combined[is.na(df_combined)] <- 0
library(ggplot2)
df_melted <- reshape2::melt(df_combined, id.vars = "Movie")
ggplot(data = df_melted, aes(x = Movie, y = value, fill = variable)) +
geom_bar(stat = "identity", position = "dodge") +
theme(axis.text.x = element_text(angle = 90, hjust = 1)) +
labs(x = "Movie", y = "Recommendation Count", fill = "Method") +
ggtitle("Distribution of Movie Recommendations: IBCF vs. UBCF") +
theme(axis.text.x = element_blank())
In the graph we see the distribution for both recommenders recommending
different movies. For example, UBCF recommends a movie very frequently
(far left in the graph), while the IBCF recommendation program does not.
On the far right, we see a lot of movies that are only recommended by
UBCF and not by IBCF.
UBCF algorithms make recommendations based on the similarity of user interaction patterns. If a group of users has interacted with a certain set of movies that is not widely popular or rated by other users, UBCF can still recommend these movies to similar users.
UBCF is typically better at capturing the “long tail” of less popular items. This means it can recommend movies that have been rated by a small number of similar users, while IBCF might miss these if the items themselves dont have enough interactions to establish strong item-item similarities.
Aufgabe 6: Untersuche den Einfluss von Ratings und Modelltyp auf Top-N Empfehlungen für den reduzierten Datensatz und vergleiche die Empfehlungen über alle Testnutzerinnen in den Top-15 Listen, wenn Modelltyp und Rating verändert werden. Vergleiche die Verteilung übereinstimmender Empfehlungen aller Testnutzerinnen in den Top-15 Listen für, 1. IBCF vs UBCF, beide mit ordinalen Ratings und Cosine Similarity, Hinweise: Diese Aufgabe ist eine Fortsetzung von Aufgabe 5. Gefordert ist eine vergleichende, statistische Analyse inklusive Visualisierung. Der erste Schritt dabei ist die Übereinstimmung der Empfehlungen pro Nutzer*in zu untersuchen. Implementiere eine Funktion für die Überprüfung der Übereinstimmung von Empfehlungen
matrixReduced1 <- as(dataFrame1, "realRatingMatrix")
evaluationScheme <- evaluationScheme(matrixReduced1, method = "split", train = 0.8, given = 5, goodRating = 4)
trainSet <- getData(evaluationScheme, "train")
testSet <- getData(evaluationScheme, "known")
ibcf <- Recommender(trainSet, "IBCF", param = list(k = 30, method = "cosine"))
ibcf
## Recommender of type 'IBCF' for 'realRatingMatrix'
## learned using 320 users.
ubcf <- Recommender(testSet, "UBCF", param = list(nn = 30, method = "cosine"))
ubcf
## Recommender of type 'UBCF' for 'realRatingMatrix'
## learned using 80 users.
ibcfTopNList <- predict(ibcf, testSet, n = 15)
ibcfTopNList
## Recommendations as 'topNList' with n = 15 for 80 users.
ubcfTopNList <- predict(ubcf, testSet, n = 15)
ubcfTopNList
## Recommendations as 'topNList' with n = 15 for 80 users.
getTopNdataFrame <- function(topNList) {
counts <- table(unlist(as.array(as(topNList, "list"))))
df <- data.frame(Movie = names(counts), Count = unname(counts)) %>%
select("Movie", "Count.Freq") %>%
rename("Count" = "Count.Freq") %>%
arrange(desc(Count))
df
}
ibcfTopNdataFrame <- getTopNdataFrame(ibcfTopNList)
ibcfTopNdataFrame
## Movie Count
## 1 Back to the Future (1985) 21
## 2 Aladdin (1992) 15
## 3 Aliens (1986) 14
## 4 Amadeus (1984) 14
## 5 Braveheart (1995) 13
## 6 Fugitive, The (1993) 13
## 7 African Queen, The (1951) 12
## 8 2001: A Space Odyssey (1968) 11
## 9 Alien (1979) 11
## 10 Apt Pupil (1998) 11
## 11 Empire Strikes Back, The (1980) 11
## 12 Apollo 13 (1995) 10
## 13 Chasing Amy (1997) 10
## 14 Citizen Kane (1941) 10
## 15 Die Hard (1988) 10
## 16 Apocalypse Now (1979) 9
## 17 Clockwork Orange, A (1971) 9
## 18 Dead Poets Society (1989) 9
## 19 Forrest Gump (1994) 9
## 20 Glory (1989) 9
## 21 Hunt for Red October, The (1990) 9
## 22 All About Eve (1950) 8
## 23 As Good As It Gets (1997) 8
## 24 Before Sunrise (1995) 8
## 25 Big Night (1996) 8
## 26 Dial M for Murder (1954) 8
## 27 Indiana Jones and the Last Crusade (1989) 8
## 28 Abyss, The (1989) 7
## 29 Air Force One (1997) 7
## 30 Blob, The (1958) 7
## 31 Blues Brothers, The (1980) 7
## 32 Boot, Das (1981) 7
## 33 Brazil (1985) 7
## 34 Bridge on the River Kwai, The (1957) 7
## 35 Chinatown (1974) 7
## 36 E.T. the Extra-Terrestrial (1982) 7
## 37 Godfather: Part II, The (1974) 7
## 38 12 Angry Men (1957) 6
## 39 Barcelona (1994) 6
## 40 Ben-Hur (1959) 6
## 41 Blade Runner (1982) 6
## 42 Bob Roberts (1992) 6
## 43 Breakfast at Tiffany's (1961) 6
## 44 Charade (1963) 6
## 45 Cinema Paradiso (1988) 6
## 46 City of Lost Children, The (1995) 6
## 47 Clerks (1994) 6
## 48 Close Shave, A (1995) 6
## 49 Gandhi (1982) 6
## 50 Godfather, The (1972) 6
## 51 Henry V (1989) 6
## 52 Jurassic Park (1993) 6
## 53 Psycho (1960) 6
## 54 Schindler's List (1993) 6
## 55 39 Steps, The (1935) 5
## 56 Age of Innocence, The (1993) 5
## 57 Alien 3 (1992) 5
## 58 American in Paris, An (1951) 5
## 59 American President, The (1995) 5
## 60 Angels and Insects (1995) 5
## 61 Arsenic and Old Lace (1944) 5
## 62 Associate, The (1996) 5
## 63 Babe (1995) 5
## 64 Better Off Dead... (1985) 5
## 65 Big Lebowski, The (1998) 5
## 66 Boogie Nights (1997) 5
## 67 Bullets Over Broadway (1994) 5
## 68 Cold Comfort Farm (1995) 5
## 69 Crow, The (1994) 5
## 70 Delicatessen (1991) 5
## 71 Graduate, The (1967) 5
## 72 Great Escape, The (1963) 5
## 73 L.A. Confidential (1997) 5
## 74 Lawrence of Arabia (1962) 5
## 75 Princess Bride, The (1987) 5
## 76 Raiders of the Lost Ark (1981) 5
## 77 Return of the Jedi (1983) 5
## 78 This Is Spinal Tap (1984) 5
## 79 Trainspotting (1996) 5
## 80 Addicted to Love (1997) 4
## 81 Akira (1988) 4
## 82 Alice in Wonderland (1951) 4
## 83 Army of Darkness (1993) 4
## 84 Bananas (1971) 4
## 85 Beautician and the Beast, The (1997) 4
## 86 Beauty and the Beast (1991) 4
## 87 Being There (1979) 4
## 88 Big Sleep, The (1946) 4
## 89 Bronx Tale, A (1993) 4
## 90 City Slickers II: The Legend of Curly's Gold (1994) 4
## 91 Contact (1997) 4
## 92 Dances with Wolves (1990) 4
## 93 Dave (1993) 4
## 94 Day the Earth Stood Still, The (1951) 4
## 95 Deconstructing Harry (1997) 4
## 96 Donnie Brasco (1997) 4
## 97 Gattaca (1997) 4
## 98 Glengarry Glen Ross (1992) 4
## 99 Gone with the Wind (1939) 4
## 100 Good Will Hunting (1997) 4
## 101 GoodFellas (1990) 4
## 102 It's a Wonderful Life (1946) 4
## 103 Lion King, The (1994) 4
## 104 M*A*S*H (1970) 4
## 105 Men in Black (1997) 4
## 106 North by Northwest (1959) 4
## 107 One Flew Over the Cuckoo's Nest (1975) 4
## 108 Philadelphia Story, The (1940) 4
## 109 Pulp Fiction (1994) 4
## 110 Raising Arizona (1987) 4
## 111 Terminator, The (1984) 4
## 112 When Harry Met Sally... (1989) 4
## 113 Wizard of Oz, The (1939) 4
## 114 Alien: Resurrection (1997) 3
## 115 Antonia's Line (1995) 3
## 116 Around the World in 80 Days (1956) 3
## 117 Austin Powers: International Man of Mystery (1997) 3
## 118 Birds, The (1963) 3
## 119 Blue in the Face (1995) 3
## 120 Bottle Rocket (1996) 3
## 121 Bound (1996) 3
## 122 Breaking the Waves (1996) 3
## 123 Butch Cassidy and the Sundance Kid (1969) 3
## 124 Cape Fear (1962) 3
## 125 Carlito's Way (1993) 3
## 126 Carrie (1976) 3
## 127 Casablanca (1942) 3
## 128 Chamber, The (1996) 3
## 129 Citizen Ruth (1996) 3
## 130 City Hall (1996) 3
## 131 Clear and Present Danger (1994) 3
## 132 Congo (1995) 3
## 133 Conspiracy Theory (1997) 3
## 134 Desperado (1995) 3
## 135 Face/Off (1997) 3
## 136 Fifth Element, The (1997) 3
## 137 First Kid (1996) 3
## 138 Full Monty, The (1997) 3
## 139 Giant (1956) 3
## 140 Hamlet (1996) 3
## 141 High Noon (1952) 3
## 142 Independence Day (ID4) (1996) 3
## 143 Jaws (1975) 3
## 144 Monty Python and the Holy Grail (1974) 3
## 145 Much Ado About Nothing (1993) 3
## 146 Nikita (La Femme Nikita) (1990) 3
## 147 Platoon (1986) 3
## 148 Postino, Il (1994) 3
## 149 Silence of the Lambs, The (1991) 3
## 150 Titanic (1997) 3
## 151 Toy Story (1995) 3
## 152 Willy Wonka and the Chocolate Factory (1971) 3
## 153 187 (1997) 2
## 154 Absolute Power (1997) 2
## 155 Ace Ventura: Pet Detective (1994) 2
## 156 Adventures of Robin Hood, The (1938) 2
## 157 Air Bud (1997) 2
## 158 Amistad (1997) 2
## 159 Annie Hall (1977) 2
## 160 Apartment, The (1960) 2
## 161 Bad Boys (1995) 2
## 162 Batman & Robin (1997) 2
## 163 Batman Returns (1992) 2
## 164 Bean (1997) 2
## 165 Beavis and Butt-head Do America (1996) 2
## 166 Bed of Roses (1996) 2
## 167 Benny & Joon (1993) 2
## 168 Beverly Hills Ninja (1997) 2
## 169 Black Sheep (1996) 2
## 170 Brady Bunch Movie, The (1995) 2
## 171 Bridges of Madison County, The (1995) 2
## 172 Bringing Up Baby (1938) 2
## 173 Broken Arrow (1996) 2
## 174 Cable Guy, The (1996) 2
## 175 Casino (1995) 2
## 176 Cat on a Hot Tin Roof (1958) 2
## 177 Cat People (1982) 2
## 178 Chain Reaction (1996) 2
## 179 Circle of Friends (1995) 2
## 180 Cliffhanger (1993) 2
## 181 Cool Hand Luke (1967) 2
## 182 Cop Land (1997) 2
## 183 Courage Under Fire (1996) 2
## 184 Dangerous Minds (1995) 2
## 185 Dead Man Walking (1995) 2
## 186 Devil in a Blue Dress (1995) 2
## 187 Die Hard 2 (1990) 2
## 188 Emma (1996) 2
## 189 Eraser (1996) 2
## 190 Escape from New York (1981) 2
## 191 Eve's Bayou (1997) 2
## 192 Fantasia (1940) 2
## 193 Fargo (1996) 2
## 194 Father of the Bride Part II (1995) 2
## 195 Flirting With Disaster (1996) 2
## 196 Four Weddings and a Funeral (1994) 2
## 197 Game, The (1997) 2
## 198 Ghost and Mrs. Muir, The (1947) 2
## 199 GoldenEye (1995) 2
## 200 Grosse Pointe Blank (1997) 2
## 201 His Girl Friday (1940) 2
## 202 Jackie Brown (1997) 2
## 203 Jerry Maguire (1996) 2
## 204 Kundun (1997) 2
## 205 Lone Star (1996) 2
## 206 Magnificent Seven, The (1954) 2
## 207 Moll Flanders (1996) 2
## 208 Monty Python's Life of Brian (1979) 2
## 209 People vs. Larry Flynt, The (1996) 2
## 210 Raging Bull (1980) 2
## 211 Rear Window (1954) 2
## 212 Rebel Without a Cause (1955) 2
## 213 Right Stuff, The (1983) 2
## 214 Rock, The (1996) 2
## 215 Room with a View, A (1986) 2
## 216 Secret of Roan Inish, The (1994) 2
## 217 Secrets & Lies (1996) 2
## 218 Shawshank Redemption, The (1994) 2
## 219 Sling Blade (1996) 2
## 220 Some Like It Hot (1959) 2
## 221 Spitfire Grill, The (1996) 2
## 222 Stand by Me (1986) 2
## 223 Star Trek: The Wrath of Khan (1982) 2
## 224 Supercop (1992) 2
## 225 Terminator 2: Judgment Day (1991) 2
## 226 Three Colors: Red (1994) 2
## 227 Twelve Monkeys (1995) 2
## 228 Welcome to the Dollhouse (1995) 2
## 229 2 Days in the Valley (1996) 1
## 230 Addams Family Values (1993) 1
## 231 Adventures of Priscilla, Queen of the Desert, The (1994) 1
## 232 American Werewolf in London, An (1981) 1
## 233 Anastasia (1997) 1
## 234 Apostle, The (1997) 1
## 235 Aristocats, The (1970) 1
## 236 Arrival, The (1996) 1
## 237 Basic Instinct (1992) 1
## 238 Basketball Diaries, The (1995) 1
## 239 Basquiat (1996) 1
## 240 Batman (1989) 1
## 241 Batman Forever (1995) 1
## 242 Beautiful Girls (1996) 1
## 243 Bedknobs and Broomsticks (1971) 1
## 244 Birdcage, The (1996) 1
## 245 Bonnie and Clyde (1967) 1
## 246 Booty Call (1997) 1
## 247 Bram Stoker's Dracula (1992) 1
## 248 Breakdown (1997) 1
## 249 Brothers McMullen, The (1995) 1
## 250 Bulletproof (1996) 1
## 251 Celluloid Closet, The (1995) 1
## 252 Christmas Carol, A (1938) 1
## 253 Cinderella (1950) 1
## 254 Client, The (1994) 1
## 255 Con Air (1997) 1
## 256 Conan the Barbarian (1981) 1
## 257 Coneheads (1993) 1
## 258 Cook the Thief His Wife & Her Lover, The (1989) 1
## 259 Copycat (1995) 1
## 260 Crash (1996) 1
## 261 Crimson Tide (1995) 1
## 262 Crying Game, The (1992) 1
## 263 Dante's Peak (1997) 1
## 264 Desperate Measures (1998) 1
## 265 Dirty Dancing (1987) 1
## 266 Disclosure (1994) 1
## 267 Dolores Claiborne (1994) 1
## 268 Don Juan DeMarco (1995) 1
## 269 Doors, The (1991) 1
## 270 Duck Soup (1933) 1
## 271 Dumbo (1941) 1
## 272 East of Eden (1955) 1
## 273 Eat Drink Man Woman (1994) 1
## 274 Eddie (1996) 1
## 275 Edge, The (1997) 1
## 276 Escape from L.A. (1996) 1
## 277 Evil Dead II (1987) 1
## 278 Evita (1996) 1
## 279 Executive Decision (1996) 1
## 280 Fallen (1998) 1
## 281 Fear (1996) 1
## 282 Field of Dreams (1989) 1
## 283 Fire Down Below (1997) 1
## 284 First Knight (1995) 1
## 285 Fish Called Wanda, A (1988) 1
## 286 Flubber (1997) 1
## 287 Forbidden Planet (1956) 1
## 288 Forget Paris (1995) 1
## 289 Fox and the Hound, The (1981) 1
## 290 Freeway (1996) 1
## 291 Fried Green Tomatoes (1991) 1
## 292 From Dusk Till Dawn (1996) 1
## 293 Full Metal Jacket (1987) 1
## 294 G.I. Jane (1997) 1
## 295 Ghost and the Darkness, The (1996) 1
## 296 Grand Day Out, A (1992) 1
## 297 Great Dictator, The (1940) 1
## 298 Grifters, The (1990) 1
## 299 Groundhog Day (1993) 1
## 300 Grumpier Old Men (1995) 1
## 301 Harold and Maude (1971) 1
## 302 Heat (1995) 1
## 303 Heavenly Creatures (1994) 1
## 304 Hercules (1997) 1
## 305 Highlander (1986) 1
## 306 Ice Storm, The (1997) 1
## 307 In & Out (1997) 1
## 308 In the Line of Fire (1993) 1
## 309 In the Name of the Father (1993) 1
## 310 It Happened One Night (1934) 1
## 311 Jackal, The (1997) 1
## 312 Jean de Florette (1986) 1
## 313 Kids (1995) 1
## 314 Kolya (1996) 1
## 315 Koyaanisqatsi (1983) 1
## 316 Last Action Hero (1993) 1
## 317 Leaving Las Vegas (1995) 1
## 318 Legends of the Fall (1994) 1
## 319 Like Water For Chocolate (Como agua para chocolate) (1992) 1
## 320 Little Princess, A (1995) 1
## 321 Love Bug, The (1969) 1
## 322 Madness of King George, The (1994) 1
## 323 Maltese Falcon, The (1941) 1
## 324 Man Who Would Be King, The (1975) 1
## 325 Man Without a Face, The (1993) 1
## 326 Manhattan (1979) 1
## 327 Mars Attacks! (1996) 1
## 328 Marvin's Room (1996) 1
## 329 Mary Poppins (1964) 1
## 330 Maverick (1994) 1
## 331 Mighty Aphrodite (1995) 1
## 332 Mother (1996) 1
## 333 Mouse Hunt (1997) 1
## 334 Muriel's Wedding (1994) 1
## 335 My Best Friend's Wedding (1997) 1
## 336 My Life as a Dog (Mitt liv som hund) (1985) 1
## 337 Nightmare Before Christmas, The (1993) 1
## 338 Nosferatu (Nosferatu, eine Symphonie des Grauens) (1922) 1
## 339 Othello (1995) 1
## 340 Peacemaker, The (1997) 1
## 341 Perfect World, A (1993) 1
## 342 Philadelphia (1993) 1
## 343 Piano, The (1993) 1
## 344 Playing God (1997) 1
## 345 Preacher's Wife, The (1996) 1
## 346 Primal Fear (1996) 1
## 347 Private Parts (1997) 1
## 348 Pump Up the Volume (1990) 1
## 349 Ransom (1996) 1
## 350 Rebecca (1940) 1
## 351 Remains of the Day, The (1993) 1
## 352 Rob Roy (1995) 1
## 353 Rosewood (1997) 1
## 354 Rumble in the Bronx (1995) 1
## 355 Sabrina (1995) 1
## 356 Scream (1996) 1
## 357 Seven Years in Tibet (1997) 1
## 358 Shine (1996) 1
## 359 Sneakers (1992) 1
## 360 Some Kind of Wonderful (1987) 1
## 361 Somewhere in Time (1980) 1
## 362 Speed (1994) 1
## 363 Star Trek IV: The Voyage Home (1986) 1
## 364 Star Trek: First Contact (1996) 1
## 365 Sting, The (1973) 1
## 366 Sunset Blvd. (1950) 1
## 367 Swingers (1996) 1
## 368 Taxi Driver (1976) 1
## 369 To Kill a Mockingbird (1962) 1
## 370 Tomorrow Never Dies (1997) 1
## 371 True Lies (1994) 1
## 372 True Romance (1993) 1
## 373 U Turn (1997) 1
## 374 Ulee's Gold (1997) 1
## 375 Vertigo (1958) 1
## 376 Volcano (1997) 1
## 377 Waiting for Guffman (1996) 1
## 378 Wedding Singer, The (1998) 1
ubcfTopNdataFrame <- getTopNdataFrame(ubcfTopNList)
ubcfTopNdataFrame
## Movie
## 1 Toy Story (1995)
## 2 Harold and Maude (1971)
## 3 Indiana Jones and the Last Crusade (1989)
## 4 Jurassic Park (1993)
## 5 Miller's Crossing (1990)
## 6 Ran (1985)
## 7 Sense and Sensibility (1995)
## 8 Usual Suspects, The (1995)
## 9 African Queen, The (1951)
## 10 Jerry Maguire (1996)
## 11 Killing Fields, The (1984)
## 12 Taxi Driver (1976)
## 13 Braveheart (1995)
## 14 Bridge on the River Kwai, The (1957)
## 15 Chinatown (1974)
## 16 E.T. the Extra-Terrestrial (1982)
## 17 People vs. Larry Flynt, The (1996)
## 18 Piano, The (1993)
## 19 Pulp Fiction (1994)
## 20 Silence of the Lambs, The (1991)
## 21 Spitfire Grill, The (1996)
## 22 This Is Spinal Tap (1984)
## 23 Wizard of Oz, The (1939)
## 24 Akira (1988)
## 25 Arrival, The (1996)
## 26 Die Hard (1988)
## 27 Full Monty, The (1997)
## 28 Monty Python and the Holy Grail (1974)
## 29 Nikita (La Femme Nikita) (1990)
## 30 Raging Bull (1980)
## 31 Star Trek VI: The Undiscovered Country (1991)
## 32 Star Wars (1977)
## 33 Sting, The (1973)
## 34 Terminator 2: Judgment Day (1991)
## 35 Trainspotting (1996)
## 36 When Harry Met Sally... (1989)
## 37 Wild Bunch, The (1969)
## 38 Apt Pupil (1998)
## 39 As Good As It Gets (1997)
## 40 Brothers McMullen, The (1995)
## 41 Cape Fear (1991)
## 42 Crimson Tide (1995)
## 43 Crucible, The (1996)
## 44 Donnie Brasco (1997)
## 45 Dr. Strangelove or: How I Learned to Stop Worrying and Love the Bomb (1963)
## 46 Empire Strikes Back, The (1980)
## 47 Forrest Gump (1994)
## 48 From Dusk Till Dawn (1996)
## 49 Gandhi (1982)
## 50 Heat (1995)
## 51 Mr. Holland's Opus (1995)
## 52 Parent Trap, The (1961)
## 53 Princess Bride, The (1987)
## 54 Raiders of the Lost Ark (1981)
## 55 Rock, The (1996)
## 56 Speed (1994)
## 57 Sudden Death (1995)
## 58 Terminator, The (1984)
## 59 Aladdin (1992)
## 60 Alice in Wonderland (1951)
## 61 Arsenic and Old Lace (1944)
## 62 Batman (1989)
## 63 Chain Reaction (1996)
## 64 Crow, The (1994)
## 65 Die Hard: With a Vengeance (1995)
## 66 Godfather, The (1972)
## 67 GoldenEye (1995)
## 68 Heathers (1989)
## 69 Jumanji (1995)
## 70 Outbreak (1995)
## 71 Reservoir Dogs (1992)
## 72 Return of the Jedi (1983)
## 73 Robin Hood: Prince of Thieves (1991)
## 74 Schindler's List (1993)
## 75 To Die For (1995)
## 76 What's Eating Gilbert Grape (1993)
## 77 Anastasia (1997)
## 78 Apocalypse Now (1979)
## 79 Apollo 13 (1995)
## 80 Big Night (1996)
## 81 Bound (1996)
## 82 Butch Cassidy and the Sundance Kid (1969)
## 83 Clockwork Orange, A (1971)
## 84 Clueless (1995)
## 85 Demolition Man (1993)
## 86 Don Juan DeMarco (1995)
## 87 Evil Dead II (1987)
## 88 Face/Off (1997)
## 89 Fantasia (1940)
## 90 Game, The (1997)
## 91 Get Shorty (1995)
## 92 Glengarry Glen Ross (1992)
## 93 Jackie Brown (1997)
## 94 Jaws (1975)
## 95 Menace II Society (1993)
## 96 Net, The (1995)
## 97 Red Rock West (1992)
## 98 Richard III (1995)
## 99 Smoke (1995)
## 100 Star Trek: The Wrath of Khan (1982)
## 101 Strange Days (1995)
## 102 Three Colors: Blue (1993)
## 103 2001: A Space Odyssey (1968)
## 104 Ace Ventura: Pet Detective (1994)
## 105 Air Force One (1997)
## 106 American President, The (1995)
## 107 Beauty and the Beast (1991)
## 108 Black Sheep (1996)
## 109 Breakfast at Tiffany's (1961)
## 110 Broken Arrow (1996)
## 111 Casablanca (1942)
## 112 Cat People (1982)
## 113 Chamber, The (1996)
## 114 Clear and Present Danger (1994)
## 115 Cop Land (1997)
## 116 Dead Poets Society (1989)
## 117 Devil's Advocate, The (1997)
## 118 Dragonheart (1996)
## 119 Eat Drink Man Woman (1994)
## 120 First Knight (1995)
## 121 Grifters, The (1990)
## 122 His Girl Friday (1940)
## 123 In the Line of Fire (1993)
## 124 Independence Day (ID4) (1996)
## 125 Jackie Chan's First Strike (1996)
## 126 Jane Eyre (1996)
## 127 Kids (1995)
## 128 Love Jones (1997)
## 129 Mission: Impossible (1996)
## 130 Monty Python's Life of Brian (1979)
## 131 Mystery Science Theater 3000: The Movie (1996)
## 132 Natural Born Killers (1994)
## 133 Omen, The (1976)
## 134 Perfect World, A (1993)
## 135 Platoon (1986)
## 136 Postino, Il (1994)
## 137 Private Benjamin (1980)
## 138 Restoration (1995)
## 139 Sneakers (1992)
## 140 Stargate (1994)
## 141 Sunset Blvd. (1950)
## 142 Tin Cup (1996)
## 143 Wag the Dog (1997)
## 144 Young Frankenstein (1974)
## 145 101 Dalmatians (1996)
## 146 Aliens (1986)
## 147 Bed of Roses (1996)
## 148 Bedknobs and Broomsticks (1971)
## 149 Birdcage, The (1996)
## 150 Blade Runner (1982)
## 151 Blue in the Face (1995)
## 152 Brazil (1985)
## 153 Bringing Up Baby (1938)
## 154 Charade (1963)
## 155 Conan the Barbarian (1981)
## 156 Day the Earth Stood Still, The (1951)
## 157 Deer Hunter, The (1978)
## 158 Diva (1981)
## 159 Fargo (1996)
## 160 Four Weddings and a Funeral (1994)
## 161 Fugitive, The (1993)
## 162 Graduate, The (1967)
## 163 James and the Giant Peach (1996)
## 164 L.A. Confidential (1997)
## 165 Lawrence of Arabia (1962)
## 166 Liar Liar (1997)
## 167 Like Water For Chocolate (Como agua para chocolate) (1992)
## 168 Lion King, The (1994)
## 169 Little Women (1994)
## 170 Manon of the Spring (Manon des sources) (1986)
## 171 Mary Poppins (1964)
## 172 Men in Black (1997)
## 173 Miracle on 34th Street (1994)
## 174 Mulholland Falls (1996)
## 175 Nixon (1995)
## 176 Nosferatu (Nosferatu, eine Symphonie des Grauens) (1922)
## 177 One Flew Over the Cuckoo's Nest (1975)
## 178 Pink Floyd - The Wall (1982)
## 179 Right Stuff, The (1983)
## 180 Romy and Michele's High School Reunion (1997)
## 181 Shadowlands (1993)
## 182 Sleeper (1973)
## 183 Some Like It Hot (1959)
## 184 Stand by Me (1986)
## 185 Star Trek: First Contact (1996)
## 186 Stealing Beauty (1996)
## 187 To Kill a Mockingbird (1962)
## 188 True Lies (1994)
## 189 Twelve Monkeys (1995)
## 190 Welcome to the Dollhouse (1995)
## 191 Amadeus (1984)
## 192 Annie Hall (1977)
## 193 Army of Darkness (1993)
## 194 Benny & Joon (1993)
## 195 Birds, The (1963)
## 196 Blob, The (1958)
## 197 Contact (1997)
## 198 Daylight (1996)
## 199 English Patient, The (1996)
## 200 Escape from New York (1981)
## 201 Excess Baggage (1997)
## 202 Fierce Creatures (1997)
## 203 GoodFellas (1990)
## 204 Henry V (1989)
## 205 High Noon (1952)
## 206 In the Name of the Father (1993)
## 207 Joe's Apartment (1996)
## 208 Jungle Book, The (1994)
## 209 Last Man Standing (1996)
## 210 Life Less Ordinary, A (1997)
## 211 Lost Highway (1997)
## 212 Malice (1993)
## 213 Man Without a Face, The (1993)
## 214 Matilda (1996)
## 215 Mrs. Doubtfire (1993)
## 216 Old Yeller (1957)
## 217 Patton (1970)
## 218 Phenomenon (1996)
## 219 Raising Arizona (1987)
## 220 River Wild, The (1994)
## 221 Shawshank Redemption, The (1994)
## 222 Shine (1996)
## 223 Singin' in the Rain (1952)
## 224 Six Degrees of Separation (1993)
## 225 Species (1995)
## 226 Streetcar Named Desire, A (1951)
## 227 Swingers (1996)
## 228 Tommy Boy (1995)
## 229 Truth About Cats & Dogs, The (1996)
## 230 Ulee's Gold (1997)
## 231 Up Close and Personal (1996)
## 232 Up in Smoke (1978)
## 233 What's Love Got to Do with It (1993)
## 234 While You Were Sleeping (1995)
## 235 Willy Wonka and the Chocolate Factory (1971)
## Count
## 1 13
## 2 12
## 3 11
## 4 10
## 5 10
## 6 10
## 7 10
## 8 10
## 9 9
## 10 9
## 11 9
## 12 9
## 13 8
## 14 8
## 15 8
## 16 8
## 17 8
## 18 8
## 19 8
## 20 8
## 21 8
## 22 8
## 23 8
## 24 7
## 25 7
## 26 7
## 27 7
## 28 7
## 29 7
## 30 7
## 31 7
## 32 7
## 33 7
## 34 7
## 35 7
## 36 7
## 37 7
## 38 6
## 39 6
## 40 6
## 41 6
## 42 6
## 43 6
## 44 6
## 45 6
## 46 6
## 47 6
## 48 6
## 49 6
## 50 6
## 51 6
## 52 6
## 53 6
## 54 6
## 55 6
## 56 6
## 57 6
## 58 6
## 59 5
## 60 5
## 61 5
## 62 5
## 63 5
## 64 5
## 65 5
## 66 5
## 67 5
## 68 5
## 69 5
## 70 5
## 71 5
## 72 5
## 73 5
## 74 5
## 75 5
## 76 5
## 77 4
## 78 4
## 79 4
## 80 4
## 81 4
## 82 4
## 83 4
## 84 4
## 85 4
## 86 4
## 87 4
## 88 4
## 89 4
## 90 4
## 91 4
## 92 4
## 93 4
## 94 4
## 95 4
## 96 4
## 97 4
## 98 4
## 99 4
## 100 4
## 101 4
## 102 4
## 103 3
## 104 3
## 105 3
## 106 3
## 107 3
## 108 3
## 109 3
## 110 3
## 111 3
## 112 3
## 113 3
## 114 3
## 115 3
## 116 3
## 117 3
## 118 3
## 119 3
## 120 3
## 121 3
## 122 3
## 123 3
## 124 3
## 125 3
## 126 3
## 127 3
## 128 3
## 129 3
## 130 3
## 131 3
## 132 3
## 133 3
## 134 3
## 135 3
## 136 3
## 137 3
## 138 3
## 139 3
## 140 3
## 141 3
## 142 3
## 143 3
## 144 3
## 145 2
## 146 2
## 147 2
## 148 2
## 149 2
## 150 2
## 151 2
## 152 2
## 153 2
## 154 2
## 155 2
## 156 2
## 157 2
## 158 2
## 159 2
## 160 2
## 161 2
## 162 2
## 163 2
## 164 2
## 165 2
## 166 2
## 167 2
## 168 2
## 169 2
## 170 2
## 171 2
## 172 2
## 173 2
## 174 2
## 175 2
## 176 2
## 177 2
## 178 2
## 179 2
## 180 2
## 181 2
## 182 2
## 183 2
## 184 2
## 185 2
## 186 2
## 187 2
## 188 2
## 189 2
## 190 2
## 191 1
## 192 1
## 193 1
## 194 1
## 195 1
## 196 1
## 197 1
## 198 1
## 199 1
## 200 1
## 201 1
## 202 1
## 203 1
## 204 1
## 205 1
## 206 1
## 207 1
## 208 1
## 209 1
## 210 1
## 211 1
## 212 1
## 213 1
## 214 1
## 215 1
## 216 1
## 217 1
## 218 1
## 219 1
## 220 1
## 221 1
## 222 1
## 223 1
## 224 1
## 225 1
## 226 1
## 227 1
## 228 1
## 229 1
## 230 1
## 231 1
## 232 1
## 233 1
## 234 1
## 235 1
library(dplyr)
compareModels <- function(ibcf, ubcf) {
stopifnot(is.data.frame(ibcf))
stopifnot(is.data.frame(ubcf))
print(paste("Recommendations IBCF:", nrow(ibcf)))
print(paste("Recommendations UBCF:", nrow(ubcf)))
intersect_ <- intersect(ibcf$Movie, ubcf$Movie)
print(paste("Similar recommendations:", length(intersect_)))
print(paste("Proportion IBCF:", length(intersect_) / nrow(ibcf) * 100))
print(paste("Proportion UBCF:", length(intersect_) / nrow(ubcf) * 100))
}
print("First Reduction without Normalization")
## [1] "First Reduction without Normalization"
compareModels(ibcfTopNdataFrame, ubcfTopNdataFrame)
## [1] "Recommendations IBCF: 378"
## [1] "Recommendations UBCF: 235"
## [1] "Similar recommendations: 147"
## [1] "Proportion IBCF: 38.8888888888889"
## [1] "Proportion UBCF: 62.5531914893617"
matrixReduced2 <- as(dataFrame2, "realRatingMatrix")
evaluationScheme2 <- evaluationScheme(matrixReduced2, method = "split", train = 0.8, given = 5, goodRating = 4)
trainSet2 <- getData(evaluationScheme2, "train")
testSet2 <- getData(evaluationScheme2, "known")
ibcf2 <- Recommender(trainSet2, "IBCF", param = list(k = 30, method = "cosine"))
ibcf2
## Recommender of type 'IBCF' for 'realRatingMatrix'
## learned using 320 users.
ubcf2 <- Recommender(testSet2, "UBCF", param = list(nn = 30, method = "cosine"))
ubcf2
## Recommender of type 'UBCF' for 'realRatingMatrix'
## learned using 80 users.
ibcfTopNList2 <- predict(ibcf2, testSet2, n = 15)
ibcfTopNList2
## Recommendations as 'topNList' with n = 15 for 80 users.
ubcfTopNList2 <- predict(ubcf2, testSet2, n = 15)
ubcfTopNList2
## Recommendations as 'topNList' with n = 15 for 80 users.
getTopNdataFrame <- function(topNList) {
counts <- table(unlist(as.array(as(topNList, "list"))))
df <- data.frame(Movie = names(counts), Count = unname(counts)) %>%
select("Movie", "Count.Freq") %>%
rename("Count" = "Count.Freq") %>%
arrange(desc(Count))
df
}
ibcfTopNdataFrame2 <- getTopNdataFrame(ibcfTopNList2)
ibcfTopNdataFrame2
## Movie
## 1 American in Paris, An (1951)
## 2 Big Lebowski, The (1998)
## 3 Bride of Frankenstein (1935)
## 4 187 (1997)
## 5 Bananas (1971)
## 6 Associate, The (1996)
## 7 Before Sunrise (1995)
## 8 African Queen, The (1951)
## 9 Air Bud (1997)
## 10 Alien 3 (1992)
## 11 Amistad (1997)
## 12 Apartment, The (1960)
## 13 Barcelona (1994)
## 14 Basquiat (1996)
## 15 Bronx Tale, A (1993)
## 16 Age of Innocence, The (1993)
## 17 Annie Hall (1977)
## 18 Austin Powers: International Man of Mystery (1997)
## 19 Bad Boys (1995)
## 20 Bed of Roses (1996)
## 21 Chamber, The (1996)
## 22 Addams Family Values (1993)
## 23 Adventures of Priscilla, Queen of the Desert, The (1994)
## 24 Alice in Wonderland (1951)
## 25 American Werewolf in London, An (1981)
## 26 Amityville Horror, The (1979)
## 27 Anastasia (1997)
## 28 As Good As It Gets (1997)
## 29 Black Sheep (1996)
## 30 Bottle Rocket (1996)
## 31 12 Angry Men (1957)
## 32 2 Days in the Valley (1996)
## 33 39 Steps, The (1935)
## 34 Akira (1988)
## 35 Aladdin (1992)
## 36 All About Eve (1950)
## 37 Antonia's Line (1995)
## 38 Apostle, The (1997)
## 39 Beauty and the Beast (1991)
## 40 Beverly Hills Ninja (1997)
## 41 Blob, The (1958)
## 42 Boot, Das (1981)
## 43 Bridges of Madison County, The (1995)
## 44 Bullets Over Broadway (1994)
## 45 Carlito's Way (1993)
## 46 Charade (1963)
## 47 Citizen Ruth (1996)
## 48 City Slickers II: The Legend of Curly's Gold (1994)
## 49 Congo (1995)
## 50 Kundun (1997)
## 51 Malice (1993)
## 52 Star Wars (1977)
## 53 Ace Ventura: Pet Detective (1994)
## 54 Adventures of Robin Hood, The (1938)
## 55 Aliens (1986)
## 56 Amadeus (1984)
## 57 Apollo 13 (1995)
## 58 Around the World in 80 Days (1956)
## 59 Babe (1995)
## 60 Benny & Joon (1993)
## 61 Big Night (1996)
## 62 Big Sleep, The (1946)
## 63 Blue in the Face (1995)
## 64 Bob Roberts (1992)
## 65 Breakdown (1997)
## 66 Cape Fear (1962)
## 67 Cat People (1982)
## 68 Celluloid Closet, The (1995)
## 69 Days of Thunder (1990)
## 70 Demolition Man (1993)
## 71 Family Thing, A (1996)
## 72 101 Dalmatians (1996)
## 73 20,000 Leagues Under the Sea (1954)
## 74 2001: A Space Odyssey (1968)
## 75 American President, The (1995)
## 76 Angels and Insects (1995)
## 77 Army of Darkness (1993)
## 78 Arrival, The (1996)
## 79 Arsenic and Old Lace (1944)
## 80 Basic Instinct (1992)
## 81 Batman Forever (1995)
## 82 Beautiful Girls (1996)
## 83 Beavis and Butt-head Do America (1996)
## 84 Booty Call (1997)
## 85 Brady Bunch Movie, The (1995)
## 86 Brazil (1985)
## 87 Butch Cassidy and the Sundance Kid (1969)
## 88 Carrie (1976)
## 89 Casablanca (1942)
## 90 Casper (1995)
## 91 Citizen Kane (1941)
## 92 City of Lost Children, The (1995)
## 93 Cool Runnings (1993)
## 94 Crucible, The (1996)
## 95 Dead Poets Society (1989)
## 96 Doors, The (1991)
## 97 Empire Strikes Back, The (1980)
## 98 Great White Hype, The (1996)
## 99 Hard Target (1993)
## 100 Man Who Knew Too Little, The (1997)
## 101 MatchMaker, The (1997)
## 102 Serial Mom (1994)
## 103 Shadow, The (1994)
## 104 Shawshank Redemption, The (1994)
## 105 Absolute Power (1997)
## 106 Addicted to Love (1997)
## 107 Alien (1979)
## 108 Alien: Resurrection (1997)
## 109 Aristocats, The (1970)
## 110 Back to the Future (1985)
## 111 Batman Returns (1992)
## 112 Being There (1979)
## 113 Ben-Hur (1959)
## 114 Birdcage, The (1996)
## 115 Blade Runner (1982)
## 116 Bound (1996)
## 117 Bram Stoker's Dracula (1992)
## 118 Braveheart (1995)
## 119 Breakfast at Tiffany's (1961)
## 120 Bringing Up Baby (1938)
## 121 Bulletproof (1996)
## 122 Candyman (1992)
## 123 Cat on a Hot Tin Roof (1958)
## 124 Cinema Paradiso (1988)
## 125 Clear and Present Danger (1994)
## 126 Coneheads (1993)
## 127 Contact (1997)
## 128 Crash (1996)
## 129 Dances with Wolves (1990)
## 130 Dangerous Minds (1995)
## 131 Dead Man Walking (1995)
## 132 Desperate Measures (1998)
## 133 Dr. Strangelove or: How I Learned to Stop Worrying and Love the Bomb (1963)
## 134 Dumbo (1941)
## 135 E.T. the Extra-Terrestrial (1982)
## 136 English Patient, The (1996)
## 137 Eve's Bayou (1997)
## 138 Fargo (1996)
## 139 Fear (1996)
## 140 Fifth Element, The (1997)
## 141 Fish Called Wanda, A (1988)
## 142 Forrest Gump (1994)
## 143 Great Dictator, The (1940)
## 144 Hunt for Red October, The (1990)
## 145 Jaws 2 (1978)
## 146 Jurassic Park (1993)
## 147 Midnight in the Garden of Good and Evil (1997)
## 148 Money Train (1995)
## 149 Murder in the First (1995)
## 150 Quick and the Dead, The (1995)
## 151 Return of Martin Guerre, The (Retour de Martin Guerre, Le) (1982)
## 152 Silence of the Lambs, The (1991)
## 153 Abyss, The (1989)
## 154 Air Force One (1997)
## 155 Apt Pupil (1998)
## 156 Basketball Diaries, The (1995)
## 157 Batman & Robin (1997)
## 158 Bean (1997)
## 159 Bedknobs and Broomsticks (1971)
## 160 Better Off Dead... (1985)
## 161 Birds, The (1963)
## 162 Blues Brothers, The (1980)
## 163 Boogie Nights (1997)
## 164 Bridge on the River Kwai, The (1957)
## 165 Broken Arrow (1996)
## 166 Cable Guy, The (1996)
## 167 Cape Fear (1991)
## 168 Chain Reaction (1996)
## 169 Chasing Amy (1997)
## 170 Cinderella (1950)
## 171 Clerks (1994)
## 172 Cold Comfort Farm (1995)
## 173 Cop Land (1997)
## 174 Craft, The (1996)
## 175 Crimson Tide (1995)
## 176 Crumb (1994)
## 177 Crying Game, The (1992)
## 178 Cyrano de Bergerac (1990)
## 179 Dave (1993)
## 180 Dazed and Confused (1993)
## 181 Devil's Advocate, The (1997)
## 182 Die Hard: With a Vengeance (1995)
## 183 Disclosure (1994)
## 184 Don Juan DeMarco (1995)
## 185 Eraser (1996)
## 186 Escape from L.A. (1996)
## 187 Excess Baggage (1997)
## 188 Executive Decision (1996)
## 189 Extreme Measures (1996)
## 190 Fantasia (1940)
## 191 Firm, The (1993)
## 192 First Wives Club, The (1996)
## 193 Freeway (1996)
## 194 Fugitive, The (1993)
## 195 Godfather, The (1972)
## 196 Godfather: Part II, The (1974)
## 197 Grand Day Out, A (1992)
## 198 Grease (1978)
## 199 His Girl Friday (1940)
## 200 Hoodlum (1997)
## 201 Hot Shots! Part Deux (1993)
## 202 Jaws (1975)
## 203 Jean de Florette (1986)
## 204 Koyaanisqatsi (1983)
## 205 Life Less Ordinary, A (1997)
## 206 Lion King, The (1994)
## 207 Long Kiss Goodnight, The (1996)
## 208 Lost World: Jurassic Park, The (1997)
## 209 Menace II Society (1993)
## 210 Mission: Impossible (1996)
## 211 Moll Flanders (1996)
## 212 Much Ado About Nothing (1993)
## 213 Nosferatu (Nosferatu, eine Symphonie des Grauens) (1922)
## 214 Othello (1995)
## 215 People vs. Larry Flynt, The (1996)
## 216 Piano, The (1993)
## 217 Pretty Woman (1990)
## 218 Pulp Fiction (1994)
## 219 Raiders of the Lost Ark (1981)
## 220 Raising Arizona (1987)
## 221 Rear Window (1954)
## 222 Renaissance Man (1994)
## 223 Rumble in the Bronx (1995)
## 224 Sabrina (1995)
## 225 Shadow Conspiracy (1997)
## 226 Sweet Hereafter, The (1997)
## 227 Tin Men (1987)
## 228 Titanic (1997)
## 229 When Harry Met Sally... (1989)
## 230 Wings of Desire (1987)
## 231 Batman (1989)
## 232 Beautician and the Beast, The (1997)
## 233 Bonnie and Clyde (1967)
## 234 Breaking the Waves (1996)
## 235 Brothers McMullen, The (1995)
## 236 Casino (1995)
## 237 Chinatown (1974)
## 238 Circle of Friends (1995)
## 239 City Hall (1996)
## 240 Cliffhanger (1993)
## 241 Clockwork Orange, A (1971)
## 242 Clueless (1995)
## 243 Conspiracy Theory (1997)
## 244 Cook the Thief His Wife & Her Lover, The (1989)
## 245 Copycat (1995)
## 246 Crow, The (1994)
## 247 Daylight (1996)
## 248 Delicatessen (1991)
## 249 Devil's Own, The (1997)
## 250 Diabolique (1996)
## 251 Dial M for Murder (1954)
## 252 Die Hard (1988)
## 253 Dirty Dancing (1987)
## 254 Dolores Claiborne (1994)
## 255 Duck Soup (1933)
## 256 East of Eden (1955)
## 257 Eat Drink Man Woman (1994)
## 258 Enchanted April (1991)
## 259 Everyone Says I Love You (1996)
## 260 Evil Dead II (1987)
## 261 Face/Off (1997)
## 262 Fallen (1998)
## 263 Fan, The (1996)
## 264 Farewell My Concubine (1993)
## 265 Father of the Bride (1950)
## 266 Fierce Creatures (1997)
## 267 Flirting With Disaster (1996)
## 268 Flubber (1997)
## 269 Forbidden Planet (1956)
## 270 Forget Paris (1995)
## 271 Four Rooms (1995)
## 272 Fox and the Hound, The (1981)
## 273 French Kiss (1995)
## 274 Full Metal Jacket (1987)
## 275 Full Monty, The (1997)
## 276 Gandhi (1982)
## 277 Gattaca (1997)
## 278 Ghost and the Darkness, The (1996)
## 279 Good Will Hunting (1997)
## 280 GoodFellas (1990)
## 281 Graduate, The (1967)
## 282 Grifters, The (1990)
## 283 Grumpier Old Men (1995)
## 284 Happy Gilmore (1996)
## 285 Home for the Holidays (1995)
## 286 I.Q. (1994)
## 287 Ice Storm, The (1997)
## 288 In the Company of Men (1997)
## 289 In the Line of Fire (1993)
## 290 Independence Day (ID4) (1996)
## 291 Island of Dr. Moreau, The (1996)
## 292 It's a Wonderful Life (1946)
## 293 Jerry Maguire (1996)
## 294 Joe's Apartment (1996)
## 295 Kids (1995)
## 296 Kids in the Hall: Brain Candy (1996)
## 297 Killing Fields, The (1984)
## 298 L.A. Confidential (1997)
## 299 Last Man Standing (1996)
## 300 Last Supper, The (1995)
## 301 Leaving Las Vegas (1995)
## 302 Liar Liar (1997)
## 303 Local Hero (1983)
## 304 M*A*S*H (1970)
## 305 Mad City (1997)
## 306 Manon of the Spring (Manon des sources) (1986)
## 307 Mary Poppins (1964)
## 308 Monty Python and the Holy Grail (1974)
## 309 Monty Python's Life of Brian (1979)
## 310 Mortal Kombat: Annihilation (1997)
## 311 Mouse Hunt (1997)
## 312 Mr. Holland's Opus (1995)
## 313 Mr. Smith Goes to Washington (1939)
## 314 Mrs. Brown (Her Majesty, Mrs. Brown) (1997)
## 315 Mrs. Doubtfire (1993)
## 316 My Life as a Dog (Mitt liv som hund) (1985)
## 317 Nightmare Before Christmas, The (1993)
## 318 Nobody's Fool (1994)
## 319 One Flew Over the Cuckoo's Nest (1975)
## 320 Perfect World, A (1993)
## 321 Phantom, The (1996)
## 322 Playing God (1997)
## 323 Postman, The (1997)
## 324 Powder (1995)
## 325 Princess Bride, The (1987)
## 326 Private Benjamin (1980)
## 327 Red Corner (1997)
## 328 Return of the Jedi (1983)
## 329 Ridicule (1996)
## 330 Rock, The (1996)
## 331 Roman Holiday (1953)
## 332 Schindler's List (1993)
## 333 Screamers (1995)
## 334 Sleepless in Seattle (1993)
## 335 Snow White and the Seven Dwarfs (1937)
## 336 So I Married an Axe Murderer (1993)
## 337 Speed (1994)
## 338 Sphere (1998)
## 339 Sudden Death (1995)
## 340 Swimming with Sharks (1995)
## 341 Tales from the Crypt Presents: Bordello of Blood (1996)
## 342 Taxi Driver (1976)
## 343 Third Man, The (1949)
## 344 Time to Kill, A (1996)
## 345 Trees Lounge (1996)
## 346 U Turn (1997)
## 347 Under Siege (1992)
## 348 Volcano (1997)
## 349 Waiting for Guffman (1996)
## 350 What's Love Got to Do with It (1993)
## 351 While You Were Sleeping (1995)
## 352 Wild Bunch, The (1969)
## 353 Wizard of Oz, The (1939)
## 354 Wyatt Earp (1994)
## 355 Young Frankenstein (1974)
## Count
## 1 14
## 2 12
## 3 12
## 4 11
## 5 11
## 6 10
## 7 10
## 8 9
## 9 9
## 10 9
## 11 9
## 12 9
## 13 9
## 14 9
## 15 9
## 16 8
## 17 8
## 18 8
## 19 8
## 20 8
## 21 8
## 22 7
## 23 7
## 24 7
## 25 7
## 26 7
## 27 7
## 28 7
## 29 7
## 30 7
## 31 6
## 32 6
## 33 6
## 34 6
## 35 6
## 36 6
## 37 6
## 38 6
## 39 6
## 40 6
## 41 6
## 42 6
## 43 6
## 44 6
## 45 6
## 46 6
## 47 6
## 48 6
## 49 6
## 50 6
## 51 6
## 52 6
## 53 5
## 54 5
## 55 5
## 56 5
## 57 5
## 58 5
## 59 5
## 60 5
## 61 5
## 62 5
## 63 5
## 64 5
## 65 5
## 66 5
## 67 5
## 68 5
## 69 5
## 70 5
## 71 5
## 72 4
## 73 4
## 74 4
## 75 4
## 76 4
## 77 4
## 78 4
## 79 4
## 80 4
## 81 4
## 82 4
## 83 4
## 84 4
## 85 4
## 86 4
## 87 4
## 88 4
## 89 4
## 90 4
## 91 4
## 92 4
## 93 4
## 94 4
## 95 4
## 96 4
## 97 4
## 98 4
## 99 4
## 100 4
## 101 4
## 102 4
## 103 4
## 104 4
## 105 3
## 106 3
## 107 3
## 108 3
## 109 3
## 110 3
## 111 3
## 112 3
## 113 3
## 114 3
## 115 3
## 116 3
## 117 3
## 118 3
## 119 3
## 120 3
## 121 3
## 122 3
## 123 3
## 124 3
## 125 3
## 126 3
## 127 3
## 128 3
## 129 3
## 130 3
## 131 3
## 132 3
## 133 3
## 134 3
## 135 3
## 136 3
## 137 3
## 138 3
## 139 3
## 140 3
## 141 3
## 142 3
## 143 3
## 144 3
## 145 3
## 146 3
## 147 3
## 148 3
## 149 3
## 150 3
## 151 3
## 152 3
## 153 2
## 154 2
## 155 2
## 156 2
## 157 2
## 158 2
## 159 2
## 160 2
## 161 2
## 162 2
## 163 2
## 164 2
## 165 2
## 166 2
## 167 2
## 168 2
## 169 2
## 170 2
## 171 2
## 172 2
## 173 2
## 174 2
## 175 2
## 176 2
## 177 2
## 178 2
## 179 2
## 180 2
## 181 2
## 182 2
## 183 2
## 184 2
## 185 2
## 186 2
## 187 2
## 188 2
## 189 2
## 190 2
## 191 2
## 192 2
## 193 2
## 194 2
## 195 2
## 196 2
## 197 2
## 198 2
## 199 2
## 200 2
## 201 2
## 202 2
## 203 2
## 204 2
## 205 2
## 206 2
## 207 2
## 208 2
## 209 2
## 210 2
## 211 2
## 212 2
## 213 2
## 214 2
## 215 2
## 216 2
## 217 2
## 218 2
## 219 2
## 220 2
## 221 2
## 222 2
## 223 2
## 224 2
## 225 2
## 226 2
## 227 2
## 228 2
## 229 2
## 230 2
## 231 1
## 232 1
## 233 1
## 234 1
## 235 1
## 236 1
## 237 1
## 238 1
## 239 1
## 240 1
## 241 1
## 242 1
## 243 1
## 244 1
## 245 1
## 246 1
## 247 1
## 248 1
## 249 1
## 250 1
## 251 1
## 252 1
## 253 1
## 254 1
## 255 1
## 256 1
## 257 1
## 258 1
## 259 1
## 260 1
## 261 1
## 262 1
## 263 1
## 264 1
## 265 1
## 266 1
## 267 1
## 268 1
## 269 1
## 270 1
## 271 1
## 272 1
## 273 1
## 274 1
## 275 1
## 276 1
## 277 1
## 278 1
## 279 1
## 280 1
## 281 1
## 282 1
## 283 1
## 284 1
## 285 1
## 286 1
## 287 1
## 288 1
## 289 1
## 290 1
## 291 1
## 292 1
## 293 1
## 294 1
## 295 1
## 296 1
## 297 1
## 298 1
## 299 1
## 300 1
## 301 1
## 302 1
## 303 1
## 304 1
## 305 1
## 306 1
## 307 1
## 308 1
## 309 1
## 310 1
## 311 1
## 312 1
## 313 1
## 314 1
## 315 1
## 316 1
## 317 1
## 318 1
## 319 1
## 320 1
## 321 1
## 322 1
## 323 1
## 324 1
## 325 1
## 326 1
## 327 1
## 328 1
## 329 1
## 330 1
## 331 1
## 332 1
## 333 1
## 334 1
## 335 1
## 336 1
## 337 1
## 338 1
## 339 1
## 340 1
## 341 1
## 342 1
## 343 1
## 344 1
## 345 1
## 346 1
## 347 1
## 348 1
## 349 1
## 350 1
## 351 1
## 352 1
## 353 1
## 354 1
## 355 1
ubcfTopNdataFrame2 <- getTopNdataFrame(ubcfTopNList2)
ubcfTopNdataFrame2
## Movie
## 1 Blade Runner (1982)
## 2 Clerks (1994)
## 3 Die Hard (1988)
## 4 Flirting With Disaster (1996)
## 5 Aliens (1986)
## 6 Heathers (1989)
## 7 Jaws (1975)
## 8 Star Trek: The Wrath of Khan (1982)
## 9 Dr. Strangelove or: How I Learned to Stop Worrying and Love the Bomb (1963)
## 10 Maltese Falcon, The (1941)
## 11 2001: A Space Odyssey (1968)
## 12 Mission: Impossible (1996)
## 13 Fargo (1996)
## 14 Brazil (1985)
## 15 Killing Fields, The (1984)
## 16 Lone Star (1996)
## 17 Seven (Se7en) (1995)
## 18 Silence of the Lambs, The (1991)
## 19 Apocalypse Now (1979)
## 20 Birdcage, The (1996)
## 21 Clueless (1995)
## 22 Crow, The (1994)
## 23 Gandhi (1982)
## 24 L.A. Confidential (1997)
## 25 Swingers (1996)
## 26 This Is Spinal Tap (1984)
## 27 Toy Story (1995)
## 28 Willy Wonka and the Chocolate Factory (1971)
## 29 Winnie the Pooh and the Blustery Day (1968)
## 30 Crumb (1994)
## 31 G.I. Jane (1997)
## 32 Gattaca (1997)
## 33 Godfather, The (1972)
## 34 Godfather: Part II, The (1974)
## 35 Lost World: Jurassic Park, The (1997)
## 36 Psycho (1960)
## 37 Pulp Fiction (1994)
## 38 Secrets & Lies (1996)
## 39 Some Like It Hot (1959)
## 40 Terminator, The (1984)
## 41 To Kill a Mockingbird (1962)
## 42 True Lies (1994)
## 43 Wizard of Oz, The (1939)
## 44 Big Lebowski, The (1998)
## 45 Bottle Rocket (1996)
## 46 Broken Arrow (1996)
## 47 Empire Strikes Back, The (1980)
## 48 Happy Gilmore (1996)
## 49 Return of the Jedi (1983)
## 50 Short Cuts (1993)
## 51 Stand by Me (1986)
## 52 Strange Days (1995)
## 53 When We Were Kings (1996)
## 54 Addicted to Love (1997)
## 55 Air Force One (1997)
## 56 Alien (1979)
## 57 Boogie Nights (1997)
## 58 Bound (1996)
## 59 Bridge on the River Kwai, The (1957)
## 60 Cape Fear (1991)
## 61 Celluloid Closet, The (1995)
## 62 Contact (1997)
## 63 Down Periscope (1996)
## 64 Eraser (1996)
## 65 Forrest Gump (1994)
## 66 Full Monty, The (1997)
## 67 GoodFellas (1990)
## 68 Hercules (1997)
## 69 Ice Storm, The (1997)
## 70 Independence Day (ID4) (1996)
## 71 Jackie Brown (1997)
## 72 Jean de Florette (1986)
## 73 Liar Liar (1997)
## 74 Love Jones (1997)
## 75 Man Who Would Be King, The (1975)
## 76 Mighty Aphrodite (1995)
## 77 My Life as a Dog (Mitt liv som hund) (1985)
## 78 Primal Fear (1996)
## 79 Professional, The (1994)
## 80 Quiz Show (1994)
## 81 Rainmaker, The (1997)
## 82 Ref, The (1994)
## 83 Reservoir Dogs (1992)
## 84 Rob Roy (1995)
## 85 Rock, The (1996)
## 86 Scream (1996)
## 87 She's So Lovely (1997)
## 88 Sound of Music, The (1965)
## 89 Spawn (1997)
## 90 Speed (1994)
## 91 Terminator 2: Judgment Day (1991)
## 92 Air Bud (1997)
## 93 Alien: Resurrection (1997)
## 94 All About Eve (1950)
## 95 Bean (1997)
## 96 Beautician and the Beast, The (1997)
## 97 Blue in the Face (1995)
## 98 Braveheart (1995)
## 99 Bridges of Madison County, The (1995)
## 100 Chinatown (1974)
## 101 Christmas Carol, A (1938)
## 102 Crying Game, The (1992)
## 103 Dante's Peak (1997)
## 104 Deconstructing Harry (1997)
## 105 Deer Hunter, The (1978)
## 106 Dragonheart (1996)
## 107 Evita (1996)
## 108 Fallen (1998)
## 109 Firm, The (1993)
## 110 Ghost (1990)
## 111 Good Will Hunting (1997)
## 112 Jerry Maguire (1996)
## 113 Last Action Hero (1993)
## 114 Leaving Las Vegas (1995)
## 115 Long Kiss Goodnight, The (1996)
## 116 Man Without a Face, The (1993)
## 117 Monty Python and the Holy Grail (1974)
## 118 Mr. Holland's Opus (1995)
## 119 Murder at 1600 (1997)
## 120 My Best Friend's Wedding (1997)
## 121 Mystery Science Theater 3000: The Movie (1996)
## 122 Nobody's Fool (1994)
## 123 Philadelphia (1993)
## 124 Rebel Without a Cause (1955)
## 125 Romy and Michele's High School Reunion (1997)
## 126 Sabrina (1995)
## 127 Sneakers (1992)
## 128 Star Trek VI: The Undiscovered Country (1991)
## 129 Stargate (1994)
## 130 Usual Suspects, The (1995)
## 131 African Queen, The (1951)
## 132 Apollo 13 (1995)
## 133 Associate, The (1996)
## 134 Big Night (1996)
## 135 Cold Comfort Farm (1995)
## 136 Cop Land (1997)
## 137 Dave (1993)
## 138 Daylight (1996)
## 139 Devil's Own, The (1997)
## 140 Donnie Brasco (1997)
## 141 E.T. the Extra-Terrestrial (1982)
## 142 English Patient, The (1996)
## 143 Event Horizon (1997)
## 144 Face/Off (1997)
## 145 Fantasia (1940)
## 146 Fierce Creatures (1997)
## 147 Fugitive, The (1993)
## 148 Full Metal Jacket (1987)
## 149 Game, The (1997)
## 150 Glory (1989)
## 151 Groundhog Day (1993)
## 152 Heat (1995)
## 153 High Noon (1952)
## 154 Indiana Jones and the Last Crusade (1989)
## 155 James and the Giant Peach (1996)
## 156 Jaws 2 (1978)
## 157 Jungle2Jungle (1997)
## 158 Kiss the Girls (1997)
## 159 Kolya (1996)
## 160 Lawrence of Arabia (1962)
## 161 Lion King, The (1994)
## 162 Menace II Society (1993)
## 163 Michael Collins (1996)
## 164 Mortal Kombat: Annihilation (1997)
## 165 My Fair Lady (1964)
## 166 North by Northwest (1959)
## 167 Nutty Professor, The (1996)
## 168 Patton (1970)
## 169 Princess Bride, The (1987)
## 170 Quiet Man, The (1952)
## 171 Rosewood (1997)
## 172 Rudy (1993)
## 173 Saint, The (1997)
## 174 Schindler's List (1993)
## 175 Secret of Roan Inish, The (1994)
## 176 Seventh Seal, The (Sjunde inseglet, Det) (1957)
## 177 She's the One (1996)
## 178 Shining, The (1980)
## 179 Singin' in the Rain (1952)
## 180 Star Trek IV: The Voyage Home (1986)
## 181 Unforgiven (1992)
## 182 Up Close and Personal (1996)
## 183 Volcano (1997)
## 184 Wag the Dog (1997)
## 185 Waiting for Guffman (1996)
## 186 When Harry Met Sally... (1989)
## 187 12 Angry Men (1957)
## 188 Absolute Power (1997)
## 189 Age of Innocence, The (1993)
## 190 Aladdin (1992)
## 191 Austin Powers: International Man of Mystery (1997)
## 192 Basic Instinct (1992)
## 193 Beavis and Butt-head Do America (1996)
## 194 Ben-Hur (1959)
## 195 Birds, The (1963)
## 196 Boot, Das (1981)
## 197 Bride of Frankenstein (1935)
## 198 Bringing Up Baby (1938)
## 199 Casino (1995)
## 200 Con Air (1997)
## 201 Cool Hand Luke (1967)
## 202 Craft, The (1996)
## 203 Dead Man Walking (1995)
## 204 Ed Wood (1994)
## 205 Eve's Bayou (1997)
## 206 Executive Decision (1996)
## 207 Freeway (1996)
## 208 Good, The Bad and The Ugly, The (1966)
## 209 Graduate, The (1967)
## 210 Grifters, The (1990)
## 211 Hamlet (1996)
## 212 Henry V (1989)
## 213 Hoop Dreams (1994)
## 214 I Know What You Did Last Summer (1997)
## 215 Interview with the Vampire (1994)
## 216 Jackie Chan's First Strike (1996)
## 217 Kingpin (1996)
## 218 Leave It to Beaver (1997)
## 219 Love Bug, The (1969)
## 220 Manhattan (1979)
## 221 Mars Attacks! (1996)
## 222 Men in Black (1997)
## 223 Michael (1996)
## 224 Moll Flanders (1996)
## 225 Much Ado About Nothing (1993)
## 226 Multiplicity (1996)
## 227 Muriel's Wedding (1994)
## 228 Nightmare Before Christmas, The (1993)
## 229 Nikita (La Femme Nikita) (1990)
## 230 Notorious (1946)
## 231 Once Upon a Time in America (1984)
## 232 One Flew Over the Cuckoo's Nest (1975)
## 233 River Wild, The (1994)
## 234 Sense and Sensibility (1995)
## 235 Shall We Dance? (1996)
## 236 Sleepless in Seattle (1993)
## 237 Sling Blade (1996)
## 238 Smilla's Sense of Snow (1997)
## 239 Some Kind of Wonderful (1987)
## 240 Soul Food (1997)
## 241 Spitfire Grill, The (1996)
## 242 Star Trek III: The Search for Spock (1984)
## 243 Star Trek: The Motion Picture (1979)
## 244 Streetcar Named Desire, A (1951)
## 245 Supercop (1992)
## 246 That Thing You Do! (1996)
## 247 Thin Man, The (1934)
## 248 Three Musketeers, The (1993)
## 249 Tin Cup (1996)
## 250 Vertigo (1958)
## 251 Wings of the Dove, The (1997)
## Count
## 1 14
## 2 14
## 3 14
## 4 14
## 5 12
## 6 12
## 7 12
## 8 12
## 9 11
## 10 11
## 11 10
## 12 10
## 13 9
## 14 8
## 15 8
## 16 8
## 17 8
## 18 8
## 19 7
## 20 7
## 21 7
## 22 7
## 23 7
## 24 7
## 25 7
## 26 7
## 27 7
## 28 7
## 29 7
## 30 6
## 31 6
## 32 6
## 33 6
## 34 6
## 35 6
## 36 6
## 37 6
## 38 6
## 39 6
## 40 6
## 41 6
## 42 6
## 43 6
## 44 5
## 45 5
## 46 5
## 47 5
## 48 5
## 49 5
## 50 5
## 51 5
## 52 5
## 53 5
## 54 4
## 55 4
## 56 4
## 57 4
## 58 4
## 59 4
## 60 4
## 61 4
## 62 4
## 63 4
## 64 4
## 65 4
## 66 4
## 67 4
## 68 4
## 69 4
## 70 4
## 71 4
## 72 4
## 73 4
## 74 4
## 75 4
## 76 4
## 77 4
## 78 4
## 79 4
## 80 4
## 81 4
## 82 4
## 83 4
## 84 4
## 85 4
## 86 4
## 87 4
## 88 4
## 89 4
## 90 4
## 91 4
## 92 3
## 93 3
## 94 3
## 95 3
## 96 3
## 97 3
## 98 3
## 99 3
## 100 3
## 101 3
## 102 3
## 103 3
## 104 3
## 105 3
## 106 3
## 107 3
## 108 3
## 109 3
## 110 3
## 111 3
## 112 3
## 113 3
## 114 3
## 115 3
## 116 3
## 117 3
## 118 3
## 119 3
## 120 3
## 121 3
## 122 3
## 123 3
## 124 3
## 125 3
## 126 3
## 127 3
## 128 3
## 129 3
## 130 3
## 131 2
## 132 2
## 133 2
## 134 2
## 135 2
## 136 2
## 137 2
## 138 2
## 139 2
## 140 2
## 141 2
## 142 2
## 143 2
## 144 2
## 145 2
## 146 2
## 147 2
## 148 2
## 149 2
## 150 2
## 151 2
## 152 2
## 153 2
## 154 2
## 155 2
## 156 2
## 157 2
## 158 2
## 159 2
## 160 2
## 161 2
## 162 2
## 163 2
## 164 2
## 165 2
## 166 2
## 167 2
## 168 2
## 169 2
## 170 2
## 171 2
## 172 2
## 173 2
## 174 2
## 175 2
## 176 2
## 177 2
## 178 2
## 179 2
## 180 2
## 181 2
## 182 2
## 183 2
## 184 2
## 185 2
## 186 2
## 187 1
## 188 1
## 189 1
## 190 1
## 191 1
## 192 1
## 193 1
## 194 1
## 195 1
## 196 1
## 197 1
## 198 1
## 199 1
## 200 1
## 201 1
## 202 1
## 203 1
## 204 1
## 205 1
## 206 1
## 207 1
## 208 1
## 209 1
## 210 1
## 211 1
## 212 1
## 213 1
## 214 1
## 215 1
## 216 1
## 217 1
## 218 1
## 219 1
## 220 1
## 221 1
## 222 1
## 223 1
## 224 1
## 225 1
## 226 1
## 227 1
## 228 1
## 229 1
## 230 1
## 231 1
## 232 1
## 233 1
## 234 1
## 235 1
## 236 1
## 237 1
## 238 1
## 239 1
## 240 1
## 241 1
## 242 1
## 243 1
## 244 1
## 245 1
## 246 1
## 247 1
## 248 1
## 249 1
## 250 1
## 251 1
library(dplyr)
compareModels <- function(ibcf, ubcf) {
stopifnot(is.data.frame(ibcf))
stopifnot(is.data.frame(ubcf))
print(paste("Recommendations IBCF:", nrow(ibcf)))
print(paste("Recommendations UBCF:", nrow(ubcf)))
intersect_ <- intersect(ibcf$Movie, ubcf$Movie)
print(paste("Similar recommendations:", length(intersect_)))
print(paste("Proportion IBCF:", length(intersect_) / nrow(ibcf) * 100))
print(paste("Proportion UBCF:", length(intersect_) / nrow(ubcf) * 100))
}
print("Second Reduction Dataset without Normalization")
## [1] "Second Reduction Dataset without Normalization"
compareModels(ibcfTopNdataFrame2, ubcfTopNdataFrame2)
## [1] "Recommendations IBCF: 355"
## [1] "Recommendations UBCF: 251"
## [1] "Similar recommendations: 121"
## [1] "Proportion IBCF: 34.0845070422535"
## [1] "Proportion UBCF: 48.207171314741"
First Reduction Set: IBCF recommends 378 movies. UBCF recommends 235 movies. The intersect between both recommenders for the first reduced dataset is 147 movies. The relative intersect for IBCF is 38% and for UBCF it is 62%.
Second Reduction Set: IBCF recommends 355 movies. UBCF recommends 251 movies. The intersect between both recommenders for the first reduced dataset is 121 movies. The relative intersect for IBCF is 34% and for UBCF it is 48%. We see that the intersect is lower than before because we have fewer user ratings to work with.
Both methods are not giving similar recommendations. IBCF and UBCF rely on different aspects of the data. IBCF measures similarities between items based on user interactions, while UBCF measures similarities between users based on their interactions with items. The different focus can lead to different sets of recommendations.
dataFrame1Norm <- dataFrame1
dataFrame1Norm$rating <- scale(dataFrame1$rating)
#test_that("ratings have mean 0 and sd 1", {
# expect_equal(mean(dataFrame1Norm$rating), 0)
# expect_equal(sd(dataFrame1Norm$rating), 1)
#})
matrixReduced1Norm <- as(dataFrame1Norm, "realRatingMatrix")
evaluationScheme <- evaluationScheme(matrixReduced1Norm, method = "split", train = 0.8, given = 5, goodRating = 4)
trainSetNorm <- getData(evaluationScheme, "train")
testSetNorm <- getData(evaluationScheme, "known")
ibcfNorm <- Recommender(trainSet, "IBCF", param = list(k = 30, method = "cosine"))
ibcfNorm
## Recommender of type 'IBCF' for 'realRatingMatrix'
## learned using 320 users.
ubcfNorm <- Recommender(testSet, "UBCF", param = list(nn = 30, method = "cosine"))
ubcfNorm
## Recommender of type 'UBCF' for 'realRatingMatrix'
## learned using 80 users.
ibcfTopNListNorm <- predict(ibcfNorm, testSetNorm, n = 15)
ibcfTopNListNorm
## Recommendations as 'topNList' with n = 15 for 80 users.
ubcfTopNListNorm <- predict(ubcfNorm, testSetNorm, n = 15)
ubcfTopNListNorm
## Recommendations as 'topNList' with n = 15 for 80 users.
getTopNdataFrame <- function(topNList) {
counts <- table(unlist(as.array(as(topNList, "list"))))
df <- data.frame(Movie = names(counts), Count = unname(counts)) %>%
select("Movie", "Count.Freq") %>%
rename("Count" = "Count.Freq") %>%
arrange(desc(Count))
df
}
ibcfTopNdataFrameNorm <- getTopNdataFrame(ibcfTopNListNorm)
ibcfTopNdataFrameNorm
## Movie
## 1 Back to the Future (1985)
## 2 Braveheart (1995)
## 3 Fugitive, The (1993)
## 4 Die Hard (1988)
## 5 Amadeus (1984)
## 6 101 Dalmatians (1996)
## 7 Apocalypse Now (1979)
## 8 Raiders of the Lost Ark (1981)
## 9 Return of the Jedi (1983)
## 10 2001: A Space Odyssey (1968)
## 11 Hunt for Red October, The (1990)
## 12 Independence Day (ID4) (1996)
## 13 Alien (1979)
## 14 Aliens (1986)
## 15 As Good As It Gets (1997)
## 16 Butch Cassidy and the Sundance Kid (1969)
## 17 Glory (1989)
## 18 Princess Bride, The (1987)
## 19 Apt Pupil (1998)
## 20 Birds, The (1963)
## 21 Boot, Das (1981)
## 22 Crimson Tide (1995)
## 23 Empire Strikes Back, The (1980)
## 24 Men in Black (1997)
## 25 Psycho (1960)
## 26 Pulp Fiction (1994)
## 27 Terminator 2: Judgment Day (1991)
## 28 187 (1997)
## 29 Austin Powers: International Man of Mystery (1997)
## 30 Beautician and the Beast, The (1997)
## 31 Ben-Hur (1959)
## 32 Bonnie and Clyde (1967)
## 33 Cape Fear (1962)
## 34 Chasing Amy (1997)
## 35 Citizen Kane (1941)
## 36 Cool Hand Luke (1967)
## 37 Courage Under Fire (1996)
## 38 Godfather, The (1972)
## 39 Godfather: Part II, The (1974)
## 40 Indiana Jones and the Last Crusade (1989)
## 41 12 Angry Men (1957)
## 42 Adventures of Priscilla, Queen of the Desert, The (1994)
## 43 Age of Innocence, The (1993)
## 44 Aladdin (1992)
## 45 Alien: Resurrection (1997)
## 46 All About Eve (1950)
## 47 Apollo 13 (1995)
## 48 Around the World in 80 Days (1956)
## 49 Batman Forever (1995)
## 50 Big Lebowski, The (1998)
## 51 Blues Brothers, The (1980)
## 52 Bram Stoker's Dracula (1992)
## 53 Cinema Paradiso (1988)
## 54 Con Air (1997)
## 55 Donnie Brasco (1997)
## 56 Forrest Gump (1994)
## 57 Graduate, The (1967)
## 58 Henry V (1989)
## 59 It's a Wonderful Life (1946)
## 60 Jurassic Park (1993)
## 61 Nikita (La Femme Nikita) (1990)
## 62 Schindler's List (1993)
## 63 Seven (Se7en) (1995)
## 64 Star Trek: The Wrath of Khan (1982)
## 65 Terminator, The (1984)
## 66 Absolute Power (1997)
## 67 African Queen, The (1951)
## 68 Air Bud (1997)
## 69 Air Force One (1997)
## 70 American President, The (1995)
## 71 Angels and Insects (1995)
## 72 Annie Hall (1977)
## 73 Aristocats, The (1970)
## 74 Arsenic and Old Lace (1944)
## 75 Basic Instinct (1992)
## 76 Bean (1997)
## 77 Beavis and Butt-head Do America (1996)
## 78 Bed of Roses (1996)
## 79 Benny & Joon (1993)
## 80 Black Sheep (1996)
## 81 Bob Roberts (1992)
## 82 Brazil (1985)
## 83 Breaking the Waves (1996)
## 84 Bride of Frankenstein (1935)
## 85 Bulletproof (1996)
## 86 Bullets Over Broadway (1994)
## 87 Candyman (1992)
## 88 Casablanca (1942)
## 89 Chamber, The (1996)
## 90 Chinatown (1974)
## 91 Circle of Friends (1995)
## 92 Congo (1995)
## 93 Dances with Wolves (1990)
## 94 Dead Poets Society (1989)
## 95 Dial M for Murder (1954)
## 96 Duck Soup (1933)
## 97 E.T. the Extra-Terrestrial (1982)
## 98 Gandhi (1982)
## 99 GoodFellas (1990)
## 100 Great Escape, The (1963)
## 101 Jaws (1975)
## 102 Monty Python and the Holy Grail (1974)
## 103 North by Northwest (1959)
## 104 Right Stuff, The (1983)
## 105 Rock, The (1996)
## 106 Sleepless in Seattle (1993)
## 107 Top Gun (1986)
## 108 Addicted to Love (1997)
## 109 Adventures of Robin Hood, The (1938)
## 110 American Werewolf in London, An (1981)
## 111 Anastasia (1997)
## 112 Arrival, The (1996)
## 113 Associate, The (1996)
## 114 Basketball Diaries, The (1995)
## 115 Batman & Robin (1997)
## 116 Beautiful Girls (1996)
## 117 Blade Runner (1982)
## 118 Blob, The (1958)
## 119 Bound (1996)
## 120 Breakfast at Tiffany's (1961)
## 121 Bridges of Madison County, The (1995)
## 122 Bringing Up Baby (1938)
## 123 Cat People (1982)
## 124 Charade (1963)
## 125 City of Lost Children, The (1995)
## 126 Clear and Present Danger (1994)
## 127 Clerks (1994)
## 128 Clockwork Orange, A (1971)
## 129 Cold Comfort Farm (1995)
## 130 Conspiracy Theory (1997)
## 131 Crow, The (1994)
## 132 Dave (1993)
## 133 Day the Earth Stood Still, The (1951)
## 134 Deconstructing Harry (1997)
## 135 Deer Hunter, The (1978)
## 136 Eat Drink Man Woman (1994)
## 137 Edge, The (1997)
## 138 English Patient, The (1996)
## 139 Evil Dead II (1987)
## 140 Fargo (1996)
## 141 Fifth Element, The (1997)
## 142 Fish Called Wanda, A (1988)
## 143 Lone Star (1996)
## 144 Much Ado About Nothing (1993)
## 145 Philadelphia Story, The (1940)
## 146 Raging Bull (1980)
## 147 Raising Arizona (1987)
## 148 Rear Window (1954)
## 149 Secrets & Lies (1996)
## 150 Sling Blade (1996)
## 151 Smoke (1995)
## 152 Speed (1994)
## 153 Star Wars (1977)
## 154 Streetcar Named Desire, A (1951)
## 155 Titanic (1997)
## 156 While You Were Sleeping (1995)
## 157 39 Steps, The (1935)
## 158 Abyss, The (1989)
## 159 Ace Ventura: Pet Detective (1994)
## 160 Addams Family Values (1993)
## 161 Akira (1988)
## 162 Army of Darkness (1993)
## 163 Bad Boys (1995)
## 164 Bananas (1971)
## 165 Batman (1989)
## 166 Before Sunrise (1995)
## 167 Better Off Dead... (1985)
## 168 Big Night (1996)
## 169 Blue in the Face (1995)
## 170 Boogie Nights (1997)
## 171 Breakdown (1997)
## 172 Bridge on the River Kwai, The (1957)
## 173 Broken Arrow (1996)
## 174 Brothers McMullen, The (1995)
## 175 Carlito's Way (1993)
## 176 Casino (1995)
## 177 Casper (1995)
## 178 Celluloid Closet, The (1995)
## 179 Chain Reaction (1996)
## 180 Christmas Carol, A (1938)
## 181 Cinderella (1950)
## 182 Citizen Ruth (1996)
## 183 City Hall (1996)
## 184 City Slickers II: The Legend of Curly's Gold (1994)
## 185 Client, The (1994)
## 186 Close Shave, A (1995)
## 187 Conan the Barbarian (1981)
## 188 Coneheads (1993)
## 189 Copycat (1995)
## 190 Crash (1996)
## 191 Daylight (1996)
## 192 Dead Man Walking (1995)
## 193 Desperado (1995)
## 194 Desperate Measures (1998)
## 195 Devil's Advocate, The (1997)
## 196 Devil's Own, The (1997)
## 197 Dirty Dancing (1987)
## 198 Don Juan DeMarco (1995)
## 199 Dragonheart (1996)
## 200 Eddie (1996)
## 201 Escape from L.A. (1996)
## 202 Eve's Bayou (1997)
## 203 Everyone Says I Love You (1996)
## 204 Excess Baggage (1997)
## 205 Executive Decision (1996)
## 206 Family Thing, A (1996)
## 207 Field of Dreams (1989)
## 208 Firm, The (1993)
## 209 First Kid (1996)
## 210 Frighteners, The (1996)
## 211 G.I. Jane (1997)
## 212 Ghost (1990)
## 213 Ghost and Mrs. Muir, The (1947)
## 214 Gone with the Wind (1939)
## 215 Good Will Hunting (1997)
## 216 High Noon (1952)
## 217 In the Company of Men (1997)
## 218 Jackie Chan's First Strike (1996)
## 219 James and the Giant Peach (1996)
## 220 Kingpin (1996)
## 221 Koyaanisqatsi (1983)
## 222 Lawrence of Arabia (1962)
## 223 Lost Highway (1997)
## 224 Maltese Falcon, The (1941)
## 225 Mars Attacks! (1996)
## 226 Mary Poppins (1964)
## 227 Menace II Society (1993)
## 228 Mission: Impossible (1996)
## 229 Mr. Holland's Opus (1995)
## 230 Mrs. Doubtfire (1993)
## 231 My Best Friend's Wedding (1997)
## 232 My Fellow Americans (1996)
## 233 Patton (1970)
## 234 People vs. Larry Flynt, The (1996)
## 235 Playing God (1997)
## 236 Postman, The (1997)
## 237 Private Parts (1997)
## 238 Ransom (1996)
## 239 Romy and Michele's High School Reunion (1997)
## 240 Room with a View, A (1986)
## 241 Rumble in the Bronx (1995)
## 242 Sense and Sensibility (1995)
## 243 Shawshank Redemption, The (1994)
## 244 Shine (1996)
## 245 Silence of the Lambs, The (1991)
## 246 Six Degrees of Separation (1993)
## 247 Smilla's Sense of Snow (1997)
## 248 Some Like It Hot (1959)
## 249 Stand by Me (1986)
## 250 Star Trek IV: The Voyage Home (1986)
## 251 Star Trek: First Contact (1996)
## 252 Strictly Ballroom (1992)
## 253 Sunset Blvd. (1950)
## 254 Time to Kill, A (1996)
## 255 Twister (1996)
## 256 20,000 Leagues Under the Sea (1954)
## 257 Alice in Wonderland (1951)
## 258 Alien 3 (1992)
## 259 American in Paris, An (1951)
## 260 Amistad (1997)
## 261 Apartment, The (1960)
## 262 Apostle, The (1997)
## 263 Babe (1995)
## 264 Barcelona (1994)
## 265 Basquiat (1996)
## 266 Batman Returns (1992)
## 267 Beauty and the Beast (1991)
## 268 Bedknobs and Broomsticks (1971)
## 269 Beverly Hills Ninja (1997)
## 270 Big Sleep, The (1946)
## 271 Birdcage, The (1996)
## 272 Booty Call (1997)
## 273 Bottle Rocket (1996)
## 274 Brady Bunch Movie, The (1995)
## 275 Bronx Tale, A (1993)
## 276 Cable Guy, The (1996)
## 277 Carrie (1976)
## 278 Cat on a Hot Tin Roof (1958)
## 279 Cliffhanger (1993)
## 280 Contact (1997)
## 281 Cool Runnings (1993)
## 282 Cop Land (1997)
## 283 Crumb (1994)
## 284 Dangerous Minds (1995)
## 285 Dante's Peak (1997)
## 286 Days of Thunder (1990)
## 287 Devil in a Blue Dress (1995)
## 288 Diabolique (1996)
## 289 Die Hard 2 (1990)
## 290 Die Hard: With a Vengeance (1995)
## 291 Down Periscope (1996)
## 292 Dr. Strangelove or: How I Learned to Stop Worrying and Love the Bomb (1963)
## 293 Dumbo (1941)
## 294 East of Eden (1955)
## 295 Ed Wood (1994)
## 296 Emma (1996)
## 297 Eraser (1996)
## 298 Event Horizon (1997)
## 299 Face/Off (1997)
## 300 Fan, The (1996)
## 301 Fear (1996)
## 302 First Knight (1995)
## 303 First Wives Club, The (1996)
## 304 Flubber (1997)
## 305 Fly Away Home (1996)
## 306 Forget Paris (1995)
## 307 Fox and the Hound, The (1981)
## 308 Fried Green Tomatoes (1991)
## 309 Full Metal Jacket (1987)
## 310 Game, The (1997)
## 311 George of the Jungle (1997)
## 312 Giant (1956)
## 313 Gigi (1958)
## 314 Glengarry Glen Ross (1992)
## 315 GoldenEye (1995)
## 316 Grand Day Out, A (1992)
## 317 Groundhog Day (1993)
## 318 Hamlet (1996)
## 319 Hercules (1997)
## 320 Highlander (1986)
## 321 His Girl Friday (1940)
## 322 Hoop Dreams (1994)
## 323 Hot Shots! Part Deux (1993)
## 324 How to Make an American Quilt (1995)
## 325 Hunchback of Notre Dame, The (1996)
## 326 Ice Storm, The (1997)
## 327 In the Line of Fire (1993)
## 328 In the Name of the Father (1993)
## 329 It Happened One Night (1934)
## 330 Jackal, The (1997)
## 331 Jane Eyre (1996)
## 332 Jerry Maguire (1996)
## 333 Kids (1995)
## 334 Kolya (1996)
## 335 Kundun (1997)
## 336 L.A. Confidential (1997)
## 337 Last Man Standing (1996)
## 338 Last of the Mohicans, The (1992)
## 339 Last Supper, The (1995)
## 340 Leave It to Beaver (1997)
## 341 Leaving Las Vegas (1995)
## 342 Legends of the Fall (1994)
## 343 Life Less Ordinary, A (1997)
## 344 Lion King, The (1994)
## 345 Little Princess, A (1995)
## 346 Love Bug, The (1969)
## 347 M*A*S*H (1970)
## 348 Mallrats (1995)
## 349 Man Who Knew Too Little, The (1997)
## 350 Man Without a Face, The (1993)
## 351 Manon of the Spring (Manon des sources) (1986)
## 352 Matilda (1996)
## 353 Mighty Aphrodite (1995)
## 354 Miller's Crossing (1990)
## 355 Mirror Has Two Faces, The (1996)
## 356 Monty Python's Life of Brian (1979)
## 357 Mortal Kombat: Annihilation (1997)
## 358 Muppet Treasure Island (1996)
## 359 Muriel's Wedding (1994)
## 360 My Fair Lady (1964)
## 361 My Favorite Year (1982)
## 362 My Left Foot (1989)
## 363 Mystery Science Theater 3000: The Movie (1996)
## 364 Naked Gun 33 1/3: The Final Insult (1994)
## 365 Nightmare Before Christmas, The (1993)
## 366 Nightmare on Elm Street, A (1984)
## 367 Nixon (1995)
## 368 Nobody's Fool (1994)
## 369 Nutty Professor, The (1996)
## 370 One Flew Over the Cuckoo's Nest (1975)
## 371 Outbreak (1995)
## 372 Peacemaker, The (1997)
## 373 Perfect World, A (1993)
## 374 Persuasion (1995)
## 375 Phenomenon (1996)
## 376 Philadelphia (1993)
## 377 Platoon (1986)
## 378 Preacher's Wife, The (1996)
## 379 Pretty Woman (1990)
## 380 Primal Fear (1996)
## 381 Pump Up the Volume (1990)
## 382 Quiz Show (1994)
## 383 Ran (1985)
## 384 Real Genius (1985)
## 385 Rebecca (1940)
## 386 Rebel Without a Cause (1955)
## 387 Remains of the Day, The (1993)
## 388 Reservoir Dogs (1992)
## 389 Restoration (1995)
## 390 Richard III (1995)
## 391 Ridicule (1996)
## 392 Robin Hood: Prince of Thieves (1991)
## 393 Roman Holiday (1953)
## 394 Rosewood (1997)
## 395 Scream (1996)
## 396 Scream 2 (1997)
## 397 Seven Years in Tibet (1997)
## 398 Shadow Conspiracy (1997)
## 399 She's So Lovely (1997)
## 400 Short Cuts (1993)
## 401 Singin' in the Rain (1952)
## 402 Sneakers (1992)
## 403 Snow White and the Seven Dwarfs (1937)
## 404 So I Married an Axe Murderer (1993)
## 405 Some Folks Call It a Sling Blade (1993)
## 406 Some Kind of Wonderful (1987)
## 407 Somewhere in Time (1980)
## 408 Space Jam (1996)
## 409 Spitfire Grill, The (1996)
## 410 Spy Hard (1996)
## 411 Star Trek: Generations (1994)
## 412 Stargate (1994)
## 413 Sweet Hereafter, The (1997)
## 414 That Thing You Do! (1996)
## 415 Thin Man, The (1934)
## 416 Third Man, The (1949)
## 417 Three Colors: Red (1994)
## 418 Three Colors: White (1994)
## 419 Three Musketeers, The (1993)
## 420 To Catch a Thief (1955)
## 421 To Die For (1995)
## 422 Tomorrow Never Dies (1997)
## 423 Toy Story (1995)
## 424 Trees Lounge (1996)
## 425 Truth About Cats & Dogs, The (1996)
## 426 Twelve Monkeys (1995)
## 427 Ulee's Gold (1997)
## 428 Under Siege 2: Dark Territory (1995)
## 429 Unforgiven (1992)
## 430 Up Close and Personal (1996)
## 431 Waiting for Guffman (1996)
## 432 When Harry Met Sally... (1989)
## 433 Wrong Trousers, The (1993)
## 434 Young Guns (1988)
## 435 Young Guns II (1990)
## Count
## 1 14
## 2 14
## 3 14
## 4 13
## 5 12
## 6 11
## 7 11
## 8 11
## 9 10
## 10 9
## 11 9
## 12 9
## 13 8
## 14 8
## 15 8
## 16 8
## 17 8
## 18 8
## 19 7
## 20 7
## 21 7
## 22 7
## 23 7
## 24 7
## 25 7
## 26 7
## 27 7
## 28 6
## 29 6
## 30 6
## 31 6
## 32 6
## 33 6
## 34 6
## 35 6
## 36 6
## 37 6
## 38 6
## 39 6
## 40 6
## 41 5
## 42 5
## 43 5
## 44 5
## 45 5
## 46 5
## 47 5
## 48 5
## 49 5
## 50 5
## 51 5
## 52 5
## 53 5
## 54 5
## 55 5
## 56 5
## 57 5
## 58 5
## 59 5
## 60 5
## 61 5
## 62 5
## 63 5
## 64 5
## 65 5
## 66 4
## 67 4
## 68 4
## 69 4
## 70 4
## 71 4
## 72 4
## 73 4
## 74 4
## 75 4
## 76 4
## 77 4
## 78 4
## 79 4
## 80 4
## 81 4
## 82 4
## 83 4
## 84 4
## 85 4
## 86 4
## 87 4
## 88 4
## 89 4
## 90 4
## 91 4
## 92 4
## 93 4
## 94 4
## 95 4
## 96 4
## 97 4
## 98 4
## 99 4
## 100 4
## 101 4
## 102 4
## 103 4
## 104 4
## 105 4
## 106 4
## 107 4
## 108 3
## 109 3
## 110 3
## 111 3
## 112 3
## 113 3
## 114 3
## 115 3
## 116 3
## 117 3
## 118 3
## 119 3
## 120 3
## 121 3
## 122 3
## 123 3
## 124 3
## 125 3
## 126 3
## 127 3
## 128 3
## 129 3
## 130 3
## 131 3
## 132 3
## 133 3
## 134 3
## 135 3
## 136 3
## 137 3
## 138 3
## 139 3
## 140 3
## 141 3
## 142 3
## 143 3
## 144 3
## 145 3
## 146 3
## 147 3
## 148 3
## 149 3
## 150 3
## 151 3
## 152 3
## 153 3
## 154 3
## 155 3
## 156 3
## 157 2
## 158 2
## 159 2
## 160 2
## 161 2
## 162 2
## 163 2
## 164 2
## 165 2
## 166 2
## 167 2
## 168 2
## 169 2
## 170 2
## 171 2
## 172 2
## 173 2
## 174 2
## 175 2
## 176 2
## 177 2
## 178 2
## 179 2
## 180 2
## 181 2
## 182 2
## 183 2
## 184 2
## 185 2
## 186 2
## 187 2
## 188 2
## 189 2
## 190 2
## 191 2
## 192 2
## 193 2
## 194 2
## 195 2
## 196 2
## 197 2
## 198 2
## 199 2
## 200 2
## 201 2
## 202 2
## 203 2
## 204 2
## 205 2
## 206 2
## 207 2
## 208 2
## 209 2
## 210 2
## 211 2
## 212 2
## 213 2
## 214 2
## 215 2
## 216 2
## 217 2
## 218 2
## 219 2
## 220 2
## 221 2
## 222 2
## 223 2
## 224 2
## 225 2
## 226 2
## 227 2
## 228 2
## 229 2
## 230 2
## 231 2
## 232 2
## 233 2
## 234 2
## 235 2
## 236 2
## 237 2
## 238 2
## 239 2
## 240 2
## 241 2
## 242 2
## 243 2
## 244 2
## 245 2
## 246 2
## 247 2
## 248 2
## 249 2
## 250 2
## 251 2
## 252 2
## 253 2
## 254 2
## 255 2
## 256 1
## 257 1
## 258 1
## 259 1
## 260 1
## 261 1
## 262 1
## 263 1
## 264 1
## 265 1
## 266 1
## 267 1
## 268 1
## 269 1
## 270 1
## 271 1
## 272 1
## 273 1
## 274 1
## 275 1
## 276 1
## 277 1
## 278 1
## 279 1
## 280 1
## 281 1
## 282 1
## 283 1
## 284 1
## 285 1
## 286 1
## 287 1
## 288 1
## 289 1
## 290 1
## 291 1
## 292 1
## 293 1
## 294 1
## 295 1
## 296 1
## 297 1
## 298 1
## 299 1
## 300 1
## 301 1
## 302 1
## 303 1
## 304 1
## 305 1
## 306 1
## 307 1
## 308 1
## 309 1
## 310 1
## 311 1
## 312 1
## 313 1
## 314 1
## 315 1
## 316 1
## 317 1
## 318 1
## 319 1
## 320 1
## 321 1
## 322 1
## 323 1
## 324 1
## 325 1
## 326 1
## 327 1
## 328 1
## 329 1
## 330 1
## 331 1
## 332 1
## 333 1
## 334 1
## 335 1
## 336 1
## 337 1
## 338 1
## 339 1
## 340 1
## 341 1
## 342 1
## 343 1
## 344 1
## 345 1
## 346 1
## 347 1
## 348 1
## 349 1
## 350 1
## 351 1
## 352 1
## 353 1
## 354 1
## 355 1
## 356 1
## 357 1
## 358 1
## 359 1
## 360 1
## 361 1
## 362 1
## 363 1
## 364 1
## 365 1
## 366 1
## 367 1
## 368 1
## 369 1
## 370 1
## 371 1
## 372 1
## 373 1
## 374 1
## 375 1
## 376 1
## 377 1
## 378 1
## 379 1
## 380 1
## 381 1
## 382 1
## 383 1
## 384 1
## 385 1
## 386 1
## 387 1
## 388 1
## 389 1
## 390 1
## 391 1
## 392 1
## 393 1
## 394 1
## 395 1
## 396 1
## 397 1
## 398 1
## 399 1
## 400 1
## 401 1
## 402 1
## 403 1
## 404 1
## 405 1
## 406 1
## 407 1
## 408 1
## 409 1
## 410 1
## 411 1
## 412 1
## 413 1
## 414 1
## 415 1
## 416 1
## 417 1
## 418 1
## 419 1
## 420 1
## 421 1
## 422 1
## 423 1
## 424 1
## 425 1
## 426 1
## 427 1
## 428 1
## 429 1
## 430 1
## 431 1
## 432 1
## 433 1
## 434 1
## 435 1
ubcfTopNdataFrameNorm <- getTopNdataFrame(ubcfTopNListNorm)
ubcfTopNdataFrameNorm
## Movie
## 1 E.T. the Extra-Terrestrial (1982)
## 2 Indiana Jones and the Last Crusade (1989)
## 3 Toy Story (1995)
## 4 Usual Suspects, The (1995)
## 5 Akira (1988)
## 6 Jurassic Park (1993)
## 7 Monty Python and the Holy Grail (1974)
## 8 Fantasia (1940)
## 9 Heat (1995)
## 10 Ran (1985)
## 11 When Harry Met Sally... (1989)
## 12 African Queen, The (1951)
## 13 Outbreak (1995)
## 14 Rock, The (1996)
## 15 This Is Spinal Tap (1984)
## 16 Arrival, The (1996)
## 17 Chinatown (1974)
## 18 Star Trek VI: The Undiscovered Country (1991)
## 19 Star Wars (1977)
## 20 Taxi Driver (1976)
## 21 Aladdin (1992)
## 22 Die Hard (1988)
## 23 Die Hard: With a Vengeance (1995)
## 24 Donnie Brasco (1997)
## 25 Forrest Gump (1994)
## 26 Harold and Maude (1971)
## 27 Raging Bull (1980)
## 28 Alice in Wonderland (1951)
## 29 Aliens (1986)
## 30 Batman (1989)
## 31 Braveheart (1995)
## 32 Clueless (1995)
## 33 Godfather, The (1972)
## 34 GoldenEye (1995)
## 35 Silence of the Lambs, The (1991)
## 36 Star Trek: The Wrath of Khan (1982)
## 37 Sudden Death (1995)
## 38 Trainspotting (1996)
## 39 Big Night (1996)
## 40 Breakfast at Tiffany's (1961)
## 41 Chain Reaction (1996)
## 42 Crow, The (1994)
## 43 Crucible, The (1996)
## 44 Dead Poets Society (1989)
## 45 Dr. Strangelove or: How I Learned to Stop Worrying and Love the Bomb (1963)
## 46 Net, The (1995)
## 47 Omen, The (1976)
## 48 Piano, The (1993)
## 49 Princess Bride, The (1987)
## 50 Robin Hood: Prince of Thieves (1991)
## 51 Smoke (1995)
## 52 Strange Days (1995)
## 53 Young Frankenstein (1974)
## 54 Apollo 13 (1995)
## 55 Bedknobs and Broomsticks (1971)
## 56 Bringing Up Baby (1938)
## 57 Clear and Present Danger (1994)
## 58 Conan the Barbarian (1981)
## 59 Game, The (1997)
## 60 Liar Liar (1997)
## 61 Menace II Society (1993)
## 62 Miller's Crossing (1990)
## 63 Mulholland Falls (1996)
## 64 People vs. Larry Flynt, The (1996)
## 65 Pulp Fiction (1994)
## 66 Romy and Michele's High School Reunion (1997)
## 67 Spitfire Grill, The (1996)
## 68 Terminator, The (1984)
## 69 Wild Bunch, The (1969)
## 70 Amadeus (1984)
## 71 Arsenic and Old Lace (1944)
## 72 Beauty and the Beast (1991)
## 73 Cape Fear (1991)
## 74 Cop Land (1997)
## 75 Eat Drink Man Woman (1994)
## 76 Four Weddings and a Funeral (1994)
## 77 Gone with the Wind (1939)
## 78 Jumanji (1995)
## 79 Nosferatu (Nosferatu, eine Symphonie des Grauens) (1922)
## 80 Raiders of the Lost Ark (1981)
## 81 River Wild, The (1994)
## 82 Sting, The (1973)
## 83 Sunset Blvd. (1950)
## 84 To Die For (1995)
## 85 Truth About Cats & Dogs, The (1996)
## 86 Wag the Dog (1997)
## 87 Wizard of Oz, The (1939)
## 88 101 Dalmatians (1996)
## 89 Ace Ventura: Pet Detective (1994)
## 90 American President, The (1995)
## 91 Annie Hall (1977)
## 92 Blob, The (1958)
## 93 Bonnie and Clyde (1967)
## 94 Brazil (1985)
## 95 Bridge on the River Kwai, The (1957)
## 96 Butch Cassidy and the Sundance Kid (1969)
## 97 Casablanca (1942)
## 98 Copycat (1995)
## 99 Daylight (1996)
## 100 Deer Hunter, The (1978)
## 101 Devil's Advocate, The (1997)
## 102 Don Juan DeMarco (1995)
## 103 Fargo (1996)
## 104 From Dusk Till Dawn (1996)
## 105 Gandhi (1982)
## 106 Glory (1989)
## 107 Grifters, The (1990)
## 108 Heathers (1989)
## 109 High Noon (1952)
## 110 Jackie Chan's First Strike (1996)
## 111 James and the Giant Peach (1996)
## 112 Jane Eyre (1996)
## 113 Jaws (1975)
## 114 Last Action Hero (1993)
## 115 Last Man Standing (1996)
## 116 Lawrence of Arabia (1962)
## 117 Like Water For Chocolate (Como agua para chocolate) (1992)
## 118 Man Without a Face, The (1993)
## 119 Manhattan (1979)
## 120 Mary Poppins (1964)
## 121 Matilda (1996)
## 122 Men in Black (1997)
## 123 Monty Python's Life of Brian (1979)
## 124 Nikita (La Femme Nikita) (1990)
## 125 One Flew Over the Cuckoo's Nest (1975)
## 126 Raising Arizona (1987)
## 127 Red Rock West (1992)
## 128 Return of the Jedi (1983)
## 129 Richard III (1995)
## 130 Schindler's List (1993)
## 131 Sense and Sensibility (1995)
## 132 Shawshank Redemption, The (1994)
## 133 Some Like It Hot (1959)
## 134 Star Trek V: The Final Frontier (1989)
## 135 Stealing Beauty (1996)
## 136 Three Musketeers, The (1993)
## 137 To Kill a Mockingbird (1962)
## 138 Up in Smoke (1978)
## 139 Welcome to the Dollhouse (1995)
## 140 20,000 Leagues Under the Sea (1954)
## 141 Anastasia (1997)
## 142 Apocalypse Now (1979)
## 143 Ben-Hur (1959)
## 144 Black Sheep (1996)
## 145 Bound (1996)
## 146 Broken Arrow (1996)
## 147 Cat People (1982)
## 148 Dante's Peak (1997)
## 149 Down Periscope (1996)
## 150 Face/Off (1997)
## 151 Fierce Creatures (1997)
## 152 First Knight (1995)
## 153 Glengarry Glen Ross (1992)
## 154 His Girl Friday (1940)
## 155 In the Line of Fire (1993)
## 156 Independence Day (ID4) (1996)
## 157 Jackie Brown (1997)
## 158 Killing Fields, The (1984)
## 159 Little Women (1994)
## 160 Mighty Aphrodite (1995)
## 161 Mission: Impossible (1996)
## 162 Mystery Science Theater 3000: The Movie (1996)
## 163 Nutty Professor, The (1996)
## 164 Parent Trap, The (1961)
## 165 Private Benjamin (1980)
## 166 Reservoir Dogs (1992)
## 167 Santa Clause, The (1994)
## 168 Shadowlands (1993)
## 169 Six Degrees of Separation (1993)
## 170 Sleeper (1973)
## 171 Speed (1994)
## 172 Star Trek: First Contact (1996)
## 173 Stargate (1994)
## 174 Terminator 2: Judgment Day (1991)
## 175 Three Colors: Blue (1993)
## 176 Tommy Boy (1995)
## 177 True Lies (1994)
## 178 Twelve Monkeys (1995)
## 179 Volcano (1997)
## 180 What's Eating Gilbert Grape (1993)
## 181 What's Love Got to Do with It (1993)
## 182 Air Force One (1997)
## 183 Apt Pupil (1998)
## 184 Army of Darkness (1993)
## 185 As Good As It Gets (1997)
## 186 Bad Boys (1995)
## 187 Batman Returns (1992)
## 188 Bed of Roses (1996)
## 189 Benny & Joon (1993)
## 190 Chamber, The (1996)
## 191 Charade (1963)
## 192 Citizen Kane (1941)
## 193 Clockwork Orange, A (1971)
## 194 Crimson Tide (1995)
## 195 Day the Earth Stood Still, The (1951)
## 196 Demolition Man (1993)
## 197 Dragonheart (1996)
## 198 English Patient, The (1996)
## 199 Everyone Says I Love You (1996)
## 200 Fugitive, The (1993)
## 201 Full Monty, The (1997)
## 202 Great Dictator, The (1940)
## 203 Henry V (1989)
## 204 Hercules (1997)
## 205 In the Name of the Father (1993)
## 206 Interview with the Vampire (1994)
## 207 Jungle2Jungle (1997)
## 208 Kids (1995)
## 209 Kingpin (1996)
## 210 L.A. Confidential (1997)
## 211 Lion King, The (1994)
## 212 Lost Highway (1997)
## 213 Love Jones (1997)
## 214 Manon of the Spring (Manon des sources) (1986)
## 215 Mask, The (1994)
## 216 Miracle on 34th Street (1994)
## 217 Mr. Holland's Opus (1995)
## 218 Mrs. Doubtfire (1993)
## 219 Nixon (1995)
## 220 Old Yeller (1957)
## 221 Peacemaker, The (1997)
## 222 Phantom, The (1996)
## 223 Pink Floyd - The Wall (1982)
## 224 Platoon (1986)
## 225 Ransom (1996)
## 226 Roman Holiday (1953)
## 227 Sabrina (1995)
## 228 Saint, The (1997)
## 229 Seven (Se7en) (1995)
## 230 Shine (1996)
## 231 Stand by Me (1986)
## 232 Swingers (1996)
## 233 Sword in the Stone, The (1963)
## 234 Ulee's Gold (1997)
## 235 Up Close and Personal (1996)
## 236 While You Were Sleeping (1995)
## Count
## 1 13
## 2 13
## 3 13
## 4 13
## 5 12
## 6 12
## 7 12
## 8 11
## 9 11
## 10 11
## 11 11
## 12 10
## 13 10
## 14 10
## 15 10
## 16 9
## 17 9
## 18 9
## 19 9
## 20 9
## 21 8
## 22 8
## 23 8
## 24 8
## 25 8
## 26 8
## 27 8
## 28 7
## 29 7
## 30 7
## 31 7
## 32 7
## 33 7
## 34 7
## 35 7
## 36 7
## 37 7
## 38 7
## 39 6
## 40 6
## 41 6
## 42 6
## 43 6
## 44 6
## 45 6
## 46 6
## 47 6
## 48 6
## 49 6
## 50 6
## 51 6
## 52 6
## 53 6
## 54 5
## 55 5
## 56 5
## 57 5
## 58 5
## 59 5
## 60 5
## 61 5
## 62 5
## 63 5
## 64 5
## 65 5
## 66 5
## 67 5
## 68 5
## 69 5
## 70 4
## 71 4
## 72 4
## 73 4
## 74 4
## 75 4
## 76 4
## 77 4
## 78 4
## 79 4
## 80 4
## 81 4
## 82 4
## 83 4
## 84 4
## 85 4
## 86 4
## 87 4
## 88 3
## 89 3
## 90 3
## 91 3
## 92 3
## 93 3
## 94 3
## 95 3
## 96 3
## 97 3
## 98 3
## 99 3
## 100 3
## 101 3
## 102 3
## 103 3
## 104 3
## 105 3
## 106 3
## 107 3
## 108 3
## 109 3
## 110 3
## 111 3
## 112 3
## 113 3
## 114 3
## 115 3
## 116 3
## 117 3
## 118 3
## 119 3
## 120 3
## 121 3
## 122 3
## 123 3
## 124 3
## 125 3
## 126 3
## 127 3
## 128 3
## 129 3
## 130 3
## 131 3
## 132 3
## 133 3
## 134 3
## 135 3
## 136 3
## 137 3
## 138 3
## 139 3
## 140 2
## 141 2
## 142 2
## 143 2
## 144 2
## 145 2
## 146 2
## 147 2
## 148 2
## 149 2
## 150 2
## 151 2
## 152 2
## 153 2
## 154 2
## 155 2
## 156 2
## 157 2
## 158 2
## 159 2
## 160 2
## 161 2
## 162 2
## 163 2
## 164 2
## 165 2
## 166 2
## 167 2
## 168 2
## 169 2
## 170 2
## 171 2
## 172 2
## 173 2
## 174 2
## 175 2
## 176 2
## 177 2
## 178 2
## 179 2
## 180 2
## 181 2
## 182 1
## 183 1
## 184 1
## 185 1
## 186 1
## 187 1
## 188 1
## 189 1
## 190 1
## 191 1
## 192 1
## 193 1
## 194 1
## 195 1
## 196 1
## 197 1
## 198 1
## 199 1
## 200 1
## 201 1
## 202 1
## 203 1
## 204 1
## 205 1
## 206 1
## 207 1
## 208 1
## 209 1
## 210 1
## 211 1
## 212 1
## 213 1
## 214 1
## 215 1
## 216 1
## 217 1
## 218 1
## 219 1
## 220 1
## 221 1
## 222 1
## 223 1
## 224 1
## 225 1
## 226 1
## 227 1
## 228 1
## 229 1
## 230 1
## 231 1
## 232 1
## 233 1
## 234 1
## 235 1
## 236 1
compareModels <- function(ibcf, ubcf) {
stopifnot(is.data.frame(ibcf))
stopifnot(is.data.frame(ubcf))
print(paste("Recommendations IBCF:", nrow(ibcf)))
print(paste("Recommendations UBCF:", nrow(ubcf)))
intersectIbcfUbcf <- intersect(ibcf$Movie, ubcf$Movie)
print(paste("Similar recommendations:", length(intersectIbcfUbcf)))
print(paste("Proportion IBCF:", length(intersectIbcfUbcf) / nrow(ibcf) * 100))
print(paste("Proportion UBCF:", length(intersectIbcfUbcf) / nrow(ubcf) * 100))
}
print("First Reduction with Normalization")
## [1] "First Reduction with Normalization"
compareModels(ibcfTopNdataFrameNorm, ubcfTopNdataFrameNorm)
## [1] "Recommendations IBCF: 435"
## [1] "Recommendations UBCF: 236"
## [1] "Similar recommendations: 167"
## [1] "Proportion IBCF: 38.3908045977011"
## [1] "Proportion UBCF: 70.7627118644068"
IBCF with normalized data recommends 435 films. UBCF with normalized data recommends 236 films. The intersection between the two recommenders for the first reduced data set (normalized) is 167 films. The relative intersection for IBCF is 38% and for UBCF 70%. The results are similar to those without normalized ratings. The UBCF recommendations are lower than before because they include people with the same taste in movies and different rating strengths (4 might be a very good rating for some people and not for others). Normalized ratings make the recommendations more similar because we group users together.
Aufgabe 7: Vergleiche Memory-based und Modell-based Recommenders bezüglich Überschneidung der Top-N Empfehlungen für den reduzierten Datensatz, analog zur vorangehenden Aufgabe. Vergleiche wie sich der Anteil übereinstimmender Empfehlungen der Top-15 Liste verändert für
Hinweise: • Diese Aufgabe ist eine Fortsetzung von Aufgabe 6. • Gefordert ist eine vergleichende, statistische Analyse inklusive Visualisierung. • Die Anzahl Singulärwert ist zu variieren von 10 auf 20, 30, 40, und 50
n <- 15
# ibcf
recmod_ibcf_400 <- Recommender(trainData1, method = "IBCF", param = list(method = "Cosine", k = 30))
rec_ibcf_400 <- as(predict(recmod_ibcf_400, testData1, n = n), "list")
# svd 10
recmod_svd_400_10 <- Recommender(trainData1, method = "SVD", param = list(k = 10))
rec_svd_400_10 <- as(predict(recmod_svd_400_10, testData1, n = n), "list")
# svd 20
recmod_svd_400_20 <- Recommender(trainData1, method = "SVD", param = list(k = 20))
rec_svd_400_20 <- as(predict(recmod_svd_400_20, testData1, n = n), "list")
# svd 30
recmod_svd_400_30 <- Recommender(trainData1, method = "SVD", param = list(k = 30))
rec_svd_400_30 <- as(predict(recmod_svd_400_30, testData1, n = n), "list")
# svd 40
recmod_svd_400_40 <- Recommender(trainData1, method = "SVD", param = list(k = 40))
rec_svd_400_40 <- as(predict(recmod_svd_400_40, testData1, n = n), "list")
# svd 50
recmod_svd_400_50 <- Recommender(trainData1, method = "SVD", param = list(k = 50))
rec_svd_400_50 <- as(predict(recmod_svd_400_50, testData1, n = n), "list")
svd10reclist <- unlist(names(recmod_ibcf_400) %>% map(~ (sum(
rec_ibcf_400[[.x]] %in% rec_svd_400_10[[.x]]
)) / 15 * 100))
svd20reclist <- unlist(names(recmod_ibcf_400) %>% map(~ (sum(
rec_ibcf_400[[.x]] %in% rec_svd_400_20[[.x]]
)) / 15 * 100))
svd30reclist <- unlist(names(recmod_ibcf_400) %>% map(~ (sum(
rec_ibcf_400[[.x]] %in% rec_svd_400_30[[.x]]
)) / 15 * 100))
svd40reclist <- unlist(names(recmod_ibcf_400) %>% map(~ (sum(
rec_ibcf_400[[.x]] %in% rec_svd_400_40[[.x]]
)) / 15 * 100))
svd50reclist <- unlist(names(recmod_ibcf_400) %>% map(~ (sum(
rec_ibcf_400[[.x]] %in% rec_svd_400_50[[.x]]
)) / 15 * 100))
# dataframes
df_svd_400_10 <- as.data.frame(svd10reclist)
df_svd_400_20 <- as.data.frame(svd10reclist)
df_svd_400_30 <- as.data.frame(svd10reclist)
df_svd_400_40 <- as.data.frame(svd10reclist)
df_svd_400_50 <- as.data.frame(svd10reclist)
# Create a function to calculate overlap
calculate_overlap <- function(rec_ibcf, rec_svd, n, model_name) {
data.frame(
val = names(rec_ibcf) %>%
map_dbl(~ sum(rec_ibcf[[.x]] %in% rec_svd[[.x]]) / n * 100),
model = model_name
)
}
# Calculate overlap for different SVD configurations
df_svd_400_10 <- calculate_overlap(rec_ibcf_400, rec_svd_400_10, 15, "SVD 10")
df_svd_400_20 <- calculate_overlap(rec_ibcf_400, rec_svd_400_20, 15, "SVD 20")
df_svd_400_30 <- calculate_overlap(rec_ibcf_400, rec_svd_400_30, 15, "SVD 30")
df_svd_400_40 <- calculate_overlap(rec_ibcf_400, rec_svd_400_40, 15, "SVD 40")
df_svd_400_50 <- calculate_overlap(rec_ibcf_400, rec_svd_400_50, 15, "SVD 50")
# Bind the data frames together
different_SVD <- bind_rows(
df_svd_400_10, df_svd_400_20, df_svd_400_30,
df_svd_400_40, df_svd_400_50
)
We can see from our table that the intersection between the SVD models does not really change.
different_SVD %>%
group_by(model) %>%
summarise(mean(val))
## # A tibble: 5 × 2
## model `mean(val)`
## <chr> <dbl>
## 1 SVD 10 3.92
## 2 SVD 20 3.83
## 3 SVD 30 4
## 4 SVD 40 4
## 5 SVD 50 4.08
Now we plot the whole thing to visualize it. It looks pretty similar for all of them. There are almost no differences.
ggplot() +
geom_histogram(data = different_SVD, aes(val, fill = model), binwidth = 1) +
facet_wrap(. ~ model) +
labs(
x = "Intersections in %",
y = "#Users",
title = "Intersections of IBCF and various SVD"
)
We calculate svd models with different singular values and make a
prediction. Then we compare the prediction with an ibcf model. We see
that the highest overlap value is 0%, then around 8% and then it
decreases further. This means that for most users there is less or no
overlap between the IBCF and SVD models.
SVD reduces the dimensionality of the data by identifying latent features that may not be directly interpretable. These latent features represent underlying patterns in the data that are not necessarily related to the explicit item similarities that IBCF uses. IBCF directly computes similarities between items based on user ratings, without considering latent features. If these latent features do not align with the direct item-item ratings similarity, the recommendations from SVD and IBCF will diverge.
Hinweise: • Diese Aufgabe dient dazu die zentrale Frage der Evaluierung von Recommender Systemen zu vertiefen und dient als Input für die Entscheidung von Aufgabe 9. • Die eigene Implementierung ist sinnvoll zu testen und zu dokumentieren
coverageN <- function(dataset, model, n) {
model <- Recommender(dataset, model, param = list(k = n, method = "cosine"))
topN <- predict(model, dataset, n = 15)
listItems <- unique(
unlist(
as(topN, "list"),
use.names = FALSE
)
)
coverageN <- length(listItems) / nrow(dataset) * 100
return(coverageN)
}
data(MovieLense)
coverage = coverageN(MovieLense, "IBCF", 15)
paste("Coverage at N for Movie Lense: ", coverage)
## [1] "Coverage at N for Movie Lense: 63.4146341463415"
nValues <- c(5, 10, 15, 20, 25, 30)
coverage_values <- c()
paste("Coverage at N for Movie Lense")
## [1] "Coverage at N for Movie Lense"
for (n in nValues) {
coverage <- coverageN(MovieLense, "IBCF", n)
coverage_values <- c(coverage_values, coverage)
print(paste("Coverage for n =", n, round(coverage, 4)))
}
## [1] "Coverage for n = 5 58.3245"
## [1] "Coverage for n = 10 61.824"
## [1] "Coverage for n = 15 63.4146"
## [1] "Coverage for n = 20 69.2471"
## [1] "Coverage for n = 25 70.0954"
## [1] "Coverage for n = 30 73.5949"
If we recommend 5 items to each user, the model recommends about 58 percent of all movies, whereas 42 percent of all movies are never recommended. On the other hand, if we recommend 30 movies to each user, the model recommends about 74 percent of all movies, while 26 percent of all movies are never recommended. This is because the more movies we recommend, the more obscure movies will be recommended.
library(recommenderlab)
library(ggplot2)
coverage_at_n <- function(recommender, data, N) {
all_items <- unique(colnames(data))
top_n_items <- unique(unlist(getTopN(recommender, data, n = N)))
return(length(top_n_items) / length(all_items))
}
novelty_at_n <- function(recommender, data, N) {
top_n_recommendations <- getTopN(recommender, data, n = N)
novelty_scores <- unlist(lapply(top_n_recommendations, function(x) mean(item_popularity[unlist(x)])))
return(mean(novelty_scores))
}
item_popularity <- rowSums(MovieLense)
# Calculate metrics for different N values
N_values <- c(5, 10, 15, 20, 25, 30)
metrics <- data.frame(N = N_values, Coverage_IBCF = NA, Novelty_IBCF = NA, Coverage_SVD = NA, Novelty_SVD = NA)
ibcf_recommender <- Recommender(MovieLense, method = "IBCF", param = list(k = 30, method = "Cosine"))
svd_recommender <- Recommender(MovieLense, method = "SVD", param = list(k = 30))
for (N in N_values) {
metrics[metrics$N == N, "Coverage_IBCF"] <- coverage_at_n(ibcf_recommender, MovieLense, N)
metrics[metrics$N == N, "Novelty_IBCF"] <- novelty_at_n(ibcf_recommender, MovieLense, N)
metrics[metrics$N == N, "Coverage_SVD"] <- coverage_at_n(svd_recommender, MovieLense, N)
metrics[metrics$N == N, "Novelty_SVD"] <- novelty_at_n(svd_recommender, MovieLense, N)
}
Coverage Increases with N, for both IBCF and SVD. This is expected since a larger N allows the recommender to cover more items from the item space. In the plot we see the Trade-off between Novelty and Coverage, which says that a good recommender system should ideally have high Coverage (suggesting it can recommend a diverse set of items) and high Novelty (indicating it can suggest new or less-known items).
Aufgabe 9: Bestimme aus 5 unterschiedlichen Modellen das für Top-N Empfehlungen “beste” Modell und verwende zusätzlich einen Top-Movie Recommender. 1. Verwende für die Evaluierung 10-fache Kreuzvalidierung, 2. Begründe deine Wahl von Metriken und Modell, 3. Analysiere das “beste” Modell für Top-N Recommendations mit N = 10, 15, 20, 25 und 30, 4. Optimiere das “beste” Modell hinsichtlich Hyperparametern.
First, we determine what is our good rating. We are looking for a balanced ratio between “good” and “bad” ratings and a similar sensitivity and specificity. We therefore choose 0.5 as the quantile, which we quantify as good.
gR <- quantile(merged_data$rating, 0.5)
gR
## 50%
## 4
We choose the following models: SVD IBCF cosine UBCF cosine IBCF Pearson UBCF Pearson
Why did we choose these models:
SVD (Singular Value Decomposition): SVD is a widely used matrix factorization technique that responds well to latent factors in the data. It is known for its good performance in discovering patterns in large data sets.
IBCF (Item-Based Collaborative Filtering) with Cosine Similarity: IBCF is based on similarity between items and is well suited for datasets with clear item similarities. Cosine similarity is a simple and effective method to measure the similarity between items.
UBCF (User-Based Collaborative Filtering) with Cosine similarity: UBCF looks at the similarity between users. Cosine similarity is also used here to calculate the similarity between user profiles.
IBCF with Pearson similarity: Pearson similarity can also be used for IBCF instead of Cosine similarity. Pearson similarity takes into account the centering of the data and may be preferred in certain scenarios.
UBCF with Pearson similarity: Analogous to IBCF, but for users instead of elements.
top_400_scheme <- evaluationScheme(
matrixReduced1,
goodRating = gR,
method = "cross-validation",
k = 10,
given = 20
)
approaches <- list(
"Popular movies" = list(name = "POPULAR", param = NULL),
"SVD" = list(name = "SVD", param = list(k = 30)),
"IBCF cosinus" = list(
name = "IBCF",
param = list(method = "Cosine", k = 30)
),
"IBCF Pearson" = list(
name = "IBCF",
param = list(method = "Pearson", k = 30)
),
"UBCF cosinus" = list(
name = "UBCF",
param = list(method = "Cosine", k = 30)
),
"UBCF Pearson" = list(
name = "UBCF",
param = list(method = "Pearson", nn = 30)
)
)
steps <- c(10, 15, 20, 25, 30)
Now we plot the 5 models for data_400
We use True Positive Rate (TPR) and False Positive Rate (FPR) as metrics:
True Positive Rate (TPR): Proportion of true positive instances that were correctly predicted as positive by the model. Formula: TPR = TP / (TP + FN) TP (True Positive): Number of instances correctly predicted as positive. FN (False Negative): Number of instances falsely predicted as negative.
False Positive Rate (FPR): FPR is the proportion of true negative instances that were incorrectly predicted as positive by the model. Formula: FPR = FP / (FP + TN) FP (False Positive): Number of instances falsely predicted as positive. TN (True Negative): Number of instances correctly predicted as negative.
comparemod400 <- evaluate(top_400_scheme, approaches,
n = steps, type = "topNList",
progress = FALSE
)
## Warning: Unknown parameters: k
## Available parameter (with default values):
## method = cosine
## nn = 25
## sample = FALSE
## weighted = TRUE
## normalize = center
## min_matching_items = 0
## min_predictive_items = 0
## verbose = FALSE
## Warning: Unknown parameters: k
## Available parameter (with default values):
## method = cosine
## nn = 25
## sample = FALSE
## weighted = TRUE
## normalize = center
## min_matching_items = 0
## min_predictive_items = 0
## verbose = FALSE
## Warning: Unknown parameters: k
## Available parameter (with default values):
## method = cosine
## nn = 25
## sample = FALSE
## weighted = TRUE
## normalize = center
## min_matching_items = 0
## min_predictive_items = 0
## verbose = FALSE
## Warning: Unknown parameters: k
## Available parameter (with default values):
## method = cosine
## nn = 25
## sample = FALSE
## weighted = TRUE
## normalize = center
## min_matching_items = 0
## min_predictive_items = 0
## verbose = FALSE
## Warning: Unknown parameters: k
## Available parameter (with default values):
## method = cosine
## nn = 25
## sample = FALSE
## weighted = TRUE
## normalize = center
## min_matching_items = 0
## min_predictive_items = 0
## verbose = FALSE
## Warning: Unknown parameters: k
## Available parameter (with default values):
## method = cosine
## nn = 25
## sample = FALSE
## weighted = TRUE
## normalize = center
## min_matching_items = 0
## min_predictive_items = 0
## verbose = FALSE
## Warning: Unknown parameters: k
## Available parameter (with default values):
## method = cosine
## nn = 25
## sample = FALSE
## weighted = TRUE
## normalize = center
## min_matching_items = 0
## min_predictive_items = 0
## verbose = FALSE
## Warning: Unknown parameters: k
## Available parameter (with default values):
## method = cosine
## nn = 25
## sample = FALSE
## weighted = TRUE
## normalize = center
## min_matching_items = 0
## min_predictive_items = 0
## verbose = FALSE
## Warning: Unknown parameters: k
## Available parameter (with default values):
## method = cosine
## nn = 25
## sample = FALSE
## weighted = TRUE
## normalize = center
## min_matching_items = 0
## min_predictive_items = 0
## verbose = FALSE
## Warning: Unknown parameters: k
## Available parameter (with default values):
## method = cosine
## nn = 25
## sample = FALSE
## weighted = TRUE
## normalize = center
## min_matching_items = 0
## min_predictive_items = 0
## verbose = FALSE
plot(comparemod400, avg = TRUE, lty = 1, annotate = 1, legend = "topleft")
Plot Interpretation: Generally, a model that produces a curve closer to the top left corner of the plot (high TPR, low FPR) would be considered better performing. The plot suggests that there are differences in how each model performs, with some trade-offs between TPR and FPR.
But perhaps the SVD model can still be be optimized with the help of hyperparameters.
The default value of gamna is 0.015 The default value of lambda is 0.001 (https://rdrr.io/cran/recommenderlab/src/R/RECOM_SVDF.R) The default value of lambda is 0.001
top_400_scheme <- evaluationScheme(matrixReduced1,
goodRating = gR,
method = "cross-validation",
k = 10, given = 20
)
approaches <- list(
"Popular movies" = list(name = "POPULAR", param = NULL),
"SVD lambda 0.0001" = list(
name = "SVD",
lambda = 0.0001,
param = list(k = 50)
),
"SVD lambda def(0.001)" = list(
name = "SVD",
lambda = 0.001,
param = list(k = 50)
),
"SVD lambda 0.002" = list(
name = "SVD",
lambda = 0.002,
param = list(k = 50)
),
"SVD lambda 0.005" = list(
name = "SVD",
lambda = 0.005,
param = list(k = 50)
),
"SVD lambda 0.01" = list(
name = "SVD",
lambda = 0.01,
param = list(k = 50)
),
"SVD lambda 0.02" = list(
name = "SVD",
lambda = 0.02,
param = list(k = 50)
)
)
comparemod400 <- evaluate(top_400_scheme, approaches, n = steps, type = "topNList", progress = FALSE)
plot(comparemod400, avg = TRUE, lty = 1, annotate = 1, legend = "topleft")
The plot provided gives us insight into how different values of lambda
should impact the True Positive Rate (TPR) and False Positive Rate (FPR)
for the SVD recommender compared to a baseline ‘Popular movies’
recommender. By varying lambda, we should observe changes in the ROC
curve, which indicate the trade-off between the TPR and FPR at different
thresholds, but thats not the case. We could not figure out how to tune
the hyperparameters, therefore, all combinations deliver the same
results and are on top of each other.
Aufgabe 10 (DIY): Untersuche die relative Übereinstimmung zwischen Top-N Empfehlungen und präferierten Filmen für das “beste” Modell und zwei weiteren Modelle bzw. -parametrisierungen. 1. Fixiere 20 zufällig gewählte Testnutzerinnen für alle Modellvergleiche, 2. Bestimme pro Nutzerin den Anteil nach Genres seiner Top-Filme (=Filme mit besten Bewertungen), 3. Vergleiche pro Nutzer*in Top-Empfehlungen vs Top-Filme nach Genres, 4. Definiere eine Qualitätsmetrik für Top-N Listen und teste sie
Diese Aufgabe ist eine Fortsetzung von Aufgabe 9. • Der Top-N Monitor erlaubt zu überprüfen, ob die gemachten Empfehlungen den Präferenzen der Nutzer*innen entsprechen und verwendet eine einfach verständliche Visualisierung. • Die eigene Implementierung einer Qualitätsmetrik ist gründlich zu prüfen und zu dokumentieren.
getRandomUsers <- function(data, nUsers, seed) {
set.seed(seed)
Users <- sample(1:nrow(data), nUsers)
dataTest <- data[Users, ]
return(Users)
}
getRandomDataset <- function(data, nUsers, seed) {
set.seed(seed)
Users <- sample(1:nrow(data), nUsers)
dataTest <- data[Users, ]
return(dataTest)
}
Users <- getRandomUsers(MovieLense, 20, 42)
Users400Random <- getRandomUsers(matrixReduced1, 20, 42)
Users600Random <- getRandomUsers(matrixReduced2, 20, 42)
Data <- getRandomDataset(MovieLense, 20, 42)
Data400 <- getRandomDataset(matrixReduced1, 20, 42)
Data600 <- getRandomDataset(matrixReduced2, 20, 42)
We have developed two functions, one for the selection of random users and one for the selection of random data sets. We selected 20 random users from the Movie Lense dataset as well as for both reduced datasets.
svd3 <- Recommender(Data, "SVD", param = list(k = 3))
ubcf13 <- Recommender(Data, "UBCF", parameter = list(method = "Cosine", nn = 13))
ibcf22 <- Recommender(Data, "IBCF", param = list(k = 22, method = "cosine"))
svd6 <- Recommender(Data, "SVD", param = list(k = 6))
svd3_400 <- Recommender(Data400, "SVD", param = list(k = 3))
ubcf13_400 <- Recommender(Data400, "UBCF", parameter = list(method = "Cosine", nn = 13))
ibcf22_400 <- Recommender(Data400, "IBCF", param = list(k = 22, method = "cosine"))
svd6_400 <- Recommender(Data400, "SVD", param = list(k = 6))
svd3_600 <- Recommender(Data600, "SVD", param = list(k = 3))
ubcf13_600 <- Recommender(Data600, "UBCF", parameter = list(method = "Cosine", nn = 13))
ibcf22_600 <- Recommender(Data600, "IBCF", param = list(k = 22, method = "cosine"))
svd6_600 <- Recommender(Data600, "SVD", param = list(k = 6))
N <- 10
topN_svd3 <- predict(svd3, Data, n = N)
topN_ubcf13 <- predict(ubcf13, Data, n = N)
topN_ibcf22 <- predict(ibcf22, Data, n = N)
topN_svd6 <- predict(svd6, Data, n = N)
getTopNRec <- function(users, dataset, model) {
topN_model <- predict(model, dataset, n = 10)
topN_list <- as(topN_model, "list")
topN_tibble <- as_tibble(topN_list)
topN_dataFrame <- as.data.frame(topN_tibble)
colnames(topN_dataFrame) <- Users
topN_dataFrame_T <- t(topN_dataFrame)
topN_dataFrame_T_tibble <- as_tibble(topN_dataFrame_T)
topN_dataFrame_T_tibble$Users <- Users
topN_dataFrame_T_tibble_long <- pivot_longer(
topN_dataFrame_T_tibble,
cols = 1:10, names_to = "topN", values_to = "ID"
)
topN_dataFrame_T_tibble_long_genre <- left_join(
topN_dataFrame_T_tibble_long, MovieLenseMeta,
by = c("ID" = "title")
)
topNTibble <- select(
topN_dataFrame_T_tibble_long_genre, -topN, -year, -url, -ID
)
topNRec <- topNTibble %>%
group_by(Users) %>%
summarise(across(everything(), ~ sum(., is.na(.), 0)))
}
# resultsList are top n recommendations for m models for random users for k datasets
resultsList <- list()
resultsList400 <- list()
resultsList600 <- list()
modelsList <- list(svd3, ubcf13, ibcf22, svd6)
modelsList400 <- list(svd3_400, ubcf13_400, ibcf22_400, svd6_400)
modelsList600 <- list(svd3_600, ubcf13_600, ibcf22_600, svd6_600)
for (j in 1:length(modelsList)) {
topNRec <- getTopNRec(Users, Data, modelsList[[j]])
topNRec400 <- getTopNRec(Users400, Data400, modelsList400[[j]])
topNRec600 <- getTopNRec(Users600, Data600, modelsList600[[j]])
resultsList[[j]] <- topNRec
resultsList400[[j]] <- topNRec400
resultsList600[[j]] <- topNRec600
}
## Warning: The `x` argument of `as_tibble.matrix()` must have unique column names if
## `.name_repair` is omitted as of tibble 2.0.0.
## ℹ Using compatibility `.name_repair`.
## This warning is displayed once every 8 hours.
## Call `lifecycle::last_lifecycle_warnings()` to see where this warning was
## generated.
Here are the watched genres per user for svd3
resultsList[1]
## [[1]]
## # A tibble: 20 × 20
## Users unknown Action Adventure Animation `Children's` Comedy Crime
## <int> <dbl> <dbl> <dbl> <dbl> <dbl> <dbl> <dbl>
## 1 24 0 0 1 0 1 2 0
## 2 49 0 0 1 0 1 2 0
## 3 74 0 0 1 0 1 2 0
## 4 128 0 0 1 0 1 2 0
## 5 146 0 0 1 0 1 2 0
## 6 153 0 0 1 0 1 2 0
## 7 165 0 0 1 0 1 2 0
## 8 228 0 0 0 0 0 2 0
## 9 303 0 0 1 0 1 1 1
## 10 321 0 0 1 0 1 2 0
## 11 356 0 0 1 0 1 2 0
## 12 410 0 0 1 0 1 2 0
## 13 532 0 0 1 0 1 2 0
## 14 561 0 0 1 0 1 2 1
## 15 601 0 0 1 0 1 2 0
## 16 622 0 0 1 0 1 2 0
## 17 634 0 0 1 0 1 2 0
## 18 839 0 0 1 0 1 2 0
## 19 879 0 0 1 0 1 2 0
## 20 882 0 0 1 0 1 2 0
## # ℹ 12 more variables: Documentary <dbl>, Drama <dbl>, Fantasy <dbl>,
## # `Film-Noir` <dbl>, Horror <dbl>, Musical <dbl>, Mystery <dbl>,
## # Romance <dbl>, `Sci-Fi` <dbl>, Thriller <dbl>, War <dbl>, Western <dbl>
Here are the watched genres per user for ubcf13
resultsList[2]
## [[1]]
## # A tibble: 20 × 20
## Users unknown Action Adventure Animation `Children's` Comedy Crime
## <int> <dbl> <dbl> <dbl> <dbl> <dbl> <dbl> <dbl>
## 1 24 0 1 1 0 1 1 2
## 2 49 0 0 0 0 0 2 0
## 3 74 0 0 1 0 1 2 1
## 4 128 0 0 1 0 1 1 0
## 5 146 0 1 1 0 0 4 0
## 6 153 0 0 0 0 0 2 1
## 7 165 0 2 1 0 0 3 0
## 8 228 0 1 0 0 0 2 0
## 9 303 0 0 1 1 1 3 0
## 10 321 0 0 1 0 1 3 0
## 11 356 0 1 1 0 1 4 0
## 12 410 0 0 1 0 1 2 0
## 13 532 0 1 2 0 2 3 0
## 14 561 0 0 0 1 0 3 1
## 15 601 0 0 0 0 0 4 1
## 16 622 0 0 0 0 0 1 2
## 17 634 0 1 2 0 1 3 1
## 18 839 0 0 1 0 1 0 1
## 19 879 0 0 0 0 0 1 1
## 20 882 0 0 0 0 0 2 1
## # ℹ 12 more variables: Documentary <dbl>, Drama <dbl>, Fantasy <dbl>,
## # `Film-Noir` <dbl>, Horror <dbl>, Musical <dbl>, Mystery <dbl>,
## # Romance <dbl>, `Sci-Fi` <dbl>, Thriller <dbl>, War <dbl>, Western <dbl>
Here are the watched genres per user for ibcf22
resultsList[3]
## [[1]]
## # A tibble: 20 × 20
## Users unknown Action Adventure Animation `Children's` Comedy Crime
## <int> <dbl> <dbl> <dbl> <dbl> <dbl> <dbl> <dbl>
## 1 24 0 1 0 0 0 3 0
## 2 49 0 6 0 0 0 4 1
## 3 74 0 1 2 0 2 2 1
## 4 128 0 0 1 0 0 1 1
## 5 146 0 2 1 1 2 4 0
## 6 153 0 1 2 1 2 2 1
## 7 165 0 1 1 1 1 3 1
## 8 228 0 0 0 0 1 4 2
## 9 303 0 0 2 0 1 1 0
## 10 321 0 2 0 0 0 1 1
## 11 356 0 1 3 1 3 1 2
## 12 410 0 0 2 0 1 4 1
## 13 532 0 0 1 0 0 1 0
## 14 561 0 0 0 2 2 8 1
## 15 601 0 2 2 0 0 2 1
## 16 622 0 0 0 0 0 2 1
## 17 634 0 0 2 0 2 0 2
## 18 839 0 1 1 0 1 2 0
## 19 879 0 1 1 1 2 2 1
## 20 882 0 0 0 0 0 2 0
## # ℹ 12 more variables: Documentary <dbl>, Drama <dbl>, Fantasy <dbl>,
## # `Film-Noir` <dbl>, Horror <dbl>, Musical <dbl>, Mystery <dbl>,
## # Romance <dbl>, `Sci-Fi` <dbl>, Thriller <dbl>, War <dbl>, Western <dbl>
Here are the watched genres per user for svd6
resultsList[4]
## [[1]]
## # A tibble: 20 × 20
## Users unknown Action Adventure Animation `Children's` Comedy Crime
## <int> <dbl> <dbl> <dbl> <dbl> <dbl> <dbl> <dbl>
## 1 24 0 0 1 0 1 2 0
## 2 49 0 0 1 0 1 2 0
## 3 74 0 0 1 0 1 2 0
## 4 128 0 0 1 0 1 2 0
## 5 146 0 0 1 0 1 2 0
## 6 153 0 0 1 0 1 2 0
## 7 165 0 0 1 0 1 2 0
## 8 228 0 0 0 0 0 2 0
## 9 303 0 0 1 0 1 1 1
## 10 321 0 0 1 0 1 2 0
## 11 356 0 0 1 0 1 2 0
## 12 410 0 0 1 0 1 2 0
## 13 532 0 0 1 0 1 3 0
## 14 561 0 0 1 0 1 2 0
## 15 601 0 0 1 1 2 3 0
## 16 622 0 0 1 0 1 2 0
## 17 634 0 0 1 0 1 2 0
## 18 839 0 0 1 0 1 2 0
## 19 879 0 0 1 0 1 2 0
## 20 882 0 0 1 0 1 2 0
## # ℹ 12 more variables: Documentary <dbl>, Drama <dbl>, Fantasy <dbl>,
## # `Film-Noir` <dbl>, Horror <dbl>, Musical <dbl>, Mystery <dbl>,
## # Romance <dbl>, `Sci-Fi` <dbl>, Thriller <dbl>, War <dbl>, Western <dbl>
MovieLenseFjoin <- full_join(
(as(MovieLense, "data.frame")), MovieLenseMeta,
by = c("item" = "title")
) %>%
select(-c("year", "url"))
getFavMovByGenre <- function(users) {
userFavorites <- MovieLenseFjoin %>%
filter(user %in% Users, rating == 5) %>%
group_by(user) %>%
summarise(across(c(unknown, Action, Adventure, Animation, `Children's`, Comedy, Crime, Documentary, Drama, Fantasy, `Film-Noir`, Horror, Musical, Mystery, Romance, `Sci-Fi`, Thriller, War, Western), sum)) %>%
mutate(user = as.numeric(user)) %>%
arrange(user)
return(userFavorites)
}
userFavorites <- getFavMovByGenre(Users)
userFavorites400 <- getFavMovByGenre(Users400Random)
userFavorites600 <- getFavMovByGenre(Users600Random)
We have created a usersFavorites matrix where each column represents the genre and each row represents a user. The numbers in the matrix are the sum of the ratings for all the movies the user has given. We will compare this matrix with the model recommendation to see how the model performs.
topNRec <- getTopNRec(users = Users, dataset = Data, model = svd3)[1, 2:20]
userFav <- userFavorites[1, 2:20]
bind <- rbind(topNRec, userFav)
bind <- bind %>% add_column(Type = c("topNRec", "topNUser"))
bind
## # A tibble: 2 × 20
## unknown Action Adventure Animation `Children's` Comedy Crime Documentary Drama
## <dbl> <dbl> <dbl> <dbl> <dbl> <dbl> <dbl> <dbl> <dbl>
## 1 0 0 1 0 1 2 0 1 6
## 2 0 4 3 1 4 10 6 0 21
## # ℹ 11 more variables: Fantasy <dbl>, `Film-Noir` <dbl>, Horror <dbl>,
## # Musical <dbl>, Mystery <dbl>, Romance <dbl>, `Sci-Fi` <dbl>,
## # Thriller <dbl>, War <dbl>, Western <dbl>, Type <chr>
bindPivot <- pivot_longer(bind, cols = 1:19, names_to = "genre", values_to = "value")
ggplot(bindPivot, aes(y = genre, x = value)) +
geom_point(aes(color = Type)) +
geom_line(aes(group = genre)) +
labs(title = "Top-N Recommendations vs Top Movies per genre (MovieLense Full)", x = "Value", y = "Genre") +
theme(plot.title = element_text(hjust = 0.5)) +
theme_minimal()
makeCleveland <- function(topNRec, userFav, datatext, text) {
bind <- rbind(topNRec, userFav)
bind <- bind %>% add_column(Type = c("topNRec", "topNUser"))
bind <- pivot_longer(bind, cols = 1:19, values_to = "value", names_to = "genre")
ggplot(bind, aes(y = genre, x = value)) +
geom_point(aes(color = Type)) +
geom_line(aes(group = genre)) +
theme_minimal() +
labs(title = paste("Top-N Recommendations vs Top Movies per genre", text, " ", datatext), x = "Value", y = "Genre") +
theme(plot.title = element_text(hjust = 0.5))
}
# for each model and each dataset we want a cleveland plot
listModel <- list("SVD3", "UBCF13", "IBCF22", "SVD_6")
dataSetNames <- list("For data 400", "For data 600")
userFavoritesLense400600 <- list(userFavorites, userFavorites400, userFavorites600)
# MovieLense
for (i in 1:length(listModel)) {
dataTitle <- "MovieLense"
modelName <- listModel[i]
b_df <- userFavorites[1, 2:20]
a_df <- resultsList[[i]][1, 2:20]
print(makeCleveland(a_df, b_df, dataTitle, modelName))
}
# Dataset Reduced 400
for (i in 1:length(listModel)) {
dataTitle <- "DS 400"
modelName <- listModel[i]
b_df <- userFavorites400[1, 2:20]
a_df <- resultsList400[[i]][1, 2:20]
print(makeCleveland(a_df, b_df, dataTitle, modelName))
}
# Dataset Reduced 600
for (i in 1:length(listModel)) {
dataTitle <- "DS 600"
modelName <- listModel[i]
b_df <- userFavorites600[1, 2:20]
a_df <- resultsList600[[i]][1, 2:20]
print(makeCleveland(a_df, b_df, dataTitle, modelName))
}
As a visual quality measure for top N-lists from various recommenders,
we have chosen the Cleveland Plot. The Cleveland Plot shows and compares
several variables and in the case of of top N-lists, it allows a
comparison between the users favorite movies and the movies recommended
by the model. In the plot we see overlapping data points, which means
that the model has recommended the same amount of movies as the user has
rated. The further apart the data points are, the more the user’s
preferences and the model’s recommendation deviates.
As a good choice for a test metric, we compared cosine similarity and absolute difference.
getMeanAbsoluteDifference <- function(df1, df2) {
matrix1 <- as.matrix(df1)
matrix2 <- as.matrix(df2)
if (!all(dim(matrix1) == dim(matrix2))) {
stop("The dimensions of the two matrices must be the same.")
}
absDifferences <- abs(matrix1 - matrix2)
meanAbsDifference <- mean(absDifferences, na.rm = TRUE)
return(meanAbsDifference)
}
MAE1 <- getMeanAbsoluteDifference(resultsList[[1]][,2:20], userFavorites[,2:20])
MAE2 <- getMeanAbsoluteDifference(resultsList[[2]][,2:20], userFavorites[,2:20])
MAE3 <- getMeanAbsoluteDifference(resultsList[[3]][,2:20], userFavorites[,2:20])
MAE4 <- getMeanAbsoluteDifference(resultsList[[4]][,2:20], userFavorites[,2:20])
MAE1_400 <- getMeanAbsoluteDifference(resultsList400[[1]][,2:20], userFavorites400[,2:20])
MAE2_400 <- getMeanAbsoluteDifference(resultsList400[[2]][,2:20], userFavorites400[,2:20])
MAE3_400 <- getMeanAbsoluteDifference(resultsList400[[3]][,2:20], userFavorites400[,2:20])
MAE4_400 <- getMeanAbsoluteDifference(resultsList400[[4]][,2:20], userFavorites400[,2:20])
MAE1_600 <- getMeanAbsoluteDifference(resultsList600[[1]][,2:20], userFavorites600[,2:20])
MAE2_600 <- getMeanAbsoluteDifference(resultsList600[[2]][,2:20], userFavorites600[,2:20])
MAE3_600 <- getMeanAbsoluteDifference(resultsList600[[3]][,2:20], userFavorites600[,2:20])
MAE4_600 <- getMeanAbsoluteDifference(resultsList600[[4]][,2:20], userFavorites600[,2:20])
paste("Full Movie Lense")
## [1] "Full Movie Lense"
paste("This was the MAE for SVD 3", MAE1)
## [1] "This was the MAE for SVD 3 2.86578947368421"
paste("This was the MAE for UBCF 13 (Cosine)", MAE2)
## [1] "This was the MAE for UBCF 13 (Cosine) 2.84473684210526"
paste("This was the MAE for IBCF 22 (Cosine)", MAE3)
## [1] "This was the MAE for IBCF 22 (Cosine) 2.91842105263158"
paste("This was the MAE for SVD 6", MAE4)
## [1] "This was the MAE for SVD 6 2.85526315789474"
paste("Reduced Data Set 400")
## [1] "Reduced Data Set 400"
paste("This was the MAE for SVD 3", MAE1_400)
## [1] "This was the MAE for SVD 3 2.69736842105263"
paste("This was the MAE for UBCF 13 (Cosine)", MAE2_400)
## [1] "This was the MAE for UBCF 13 (Cosine) 2.76052631578947"
paste("This was the MAE for IBCF 22 (Cosine)", MAE3_400)
## [1] "This was the MAE for IBCF 22 (Cosine) 2.77631578947368"
paste("This was the MAE for SVD 6", MAE4_400)
## [1] "This was the MAE for SVD 6 2.68421052631579"
paste("Reduced Data Set 600 (200 up to 600 users)")
## [1] "Reduced Data Set 600 (200 up to 600 users)"
paste("This was the MAE for SVD 3", MAE1_600)
## [1] "This was the MAE for SVD 3 2.80263157894737"
paste("This was the MAE for UBCF 13 (Euclidean)", MAE2_600)
## [1] "This was the MAE for UBCF 13 (Euclidean) 2.77368421052632"
paste("This was the MAE for IBCF 22 (Cosine)", MAE3_600)
## [1] "This was the MAE for IBCF 22 (Cosine) 2.77368421052632"
paste("This was the MAE for SVD 6", MAE4_600)
## [1] "This was the MAE for SVD 6 2.78157894736842"
The disadvantage of the MAE is that it is hard to tell when the score is high or not. It depends on several factors, like: Rating Scale Dataset and Domain Specifics Comparison with Baselines User Satisfaction Distribution of Errors Goal of the Recommendation System It is therefore difficult to say whether our models have made correct predictions.
Let us look at the cosine similarity.
calculateCosineSimilarity <- function(df1, df2) {
matrix1 <- as.matrix(df1)
matrix2 <- as.matrix(df2)
if (!all(dim(matrix1) == dim(matrix2))) {
stop("The dimensions of the two matrices must be the same.")
}
cosineSimilarity <- function(vec1, vec2) {
sum(vec1 * vec2) / (sqrt(sum(vec1^2)) * sqrt(sum(vec2^2)))
}
similarities <- mapply(cosineSimilarity, as.data.frame(t(matrix1)), as.data.frame(t(matrix2)))
meanSimilarity <- mean(similarities, na.rm = TRUE)
return(meanSimilarity)
}
cosine1 <- calculateCosineSimilarity(resultsList[[1]][,2:20], userFavorites[,2:20])
cosine2 <- calculateCosineSimilarity(resultsList[[2]][,2:20], userFavorites[,2:20])
cosine3 <- calculateCosineSimilarity(resultsList[[3]][,2:20], userFavorites[,2:20])
cosine4 <- calculateCosineSimilarity(resultsList[[4]][,2:20], userFavorites[,2:20])
cosine1_400 <- calculateCosineSimilarity(resultsList400[[1]][,2:20], userFavorites[,2:20])
cosine2_400 <- calculateCosineSimilarity(resultsList400[[2]][,2:20], userFavorites[,2:20])
cosine3_400 <- calculateCosineSimilarity(resultsList400[[3]][,2:20], userFavorites[,2:20])
cosine4_400 <- calculateCosineSimilarity(resultsList400[[4]][,2:20], userFavorites[,2:20])
cosine1_600 <- calculateCosineSimilarity(resultsList600[[1]][,2:20], userFavorites[,2:20])
cosine2_600 <- calculateCosineSimilarity(resultsList600[[2]][,2:20], userFavorites[,2:20])
cosine3_600 <- calculateCosineSimilarity(resultsList600[[3]][,2:20], userFavorites[,2:20])
cosine4_600 <- calculateCosineSimilarity(resultsList600[[4]][,2:20], userFavorites[,2:20])
paste("Full Movie Lense")
## [1] "Full Movie Lense"
paste("This was the Cosine for SVD 3", cosine1)
## [1] "This was the Cosine for SVD 3 0.74937743403454"
paste("This was the Cosine for UBCF 13 (Euclidean)", cosine2)
## [1] "This was the Cosine for UBCF 13 (Euclidean) 0.74706363871486"
paste("This was the Cosine for IBCF 22 (Cosine)", cosine3)
## [1] "This was the Cosine for IBCF 22 (Cosine) 0.688910041730383"
paste("This was the Cosine for SVD 6", cosine4)
## [1] "This was the Cosine for SVD 6 0.750034125583754"
paste("Reduced Data Set 400")
## [1] "Reduced Data Set 400"
paste("This was the Cosine for SVD 3", cosine1_400)
## [1] "This was the Cosine for SVD 3 0.809599182056283"
paste("This was the Cosine for UBCF 13 (Cosine)", cosine2_400)
## [1] "This was the Cosine for UBCF 13 (Cosine) 0.747780200049077"
paste("This was the Cosine for IBCF 22 (Cosine)", cosine3_400)
## [1] "This was the Cosine for IBCF 22 (Cosine) 0.766267159434662"
paste("This was the Cosine for SVD 6", cosine4_400)
## [1] "This was the Cosine for SVD 6 0.804890974749536"
paste("Reduced Data Set 600 (200 up to 600 users)")
## [1] "Reduced Data Set 600 (200 up to 600 users)"
paste("This was the Cosine for SVD 3", cosine1_600)
## [1] "This was the Cosine for SVD 3 0.753244804088269"
paste("This was the Cosine for UBCF 13 (Cosine)", cosine1_600)
## [1] "This was the Cosine for UBCF 13 (Cosine) 0.753244804088269"
paste("This was the Cosine for IBCF 22 (Cosine)", cosine1_600)
## [1] "This was the Cosine for IBCF 22 (Cosine) 0.753244804088269"
paste("This was the Cosine for SVD 6", cosine1_600)
## [1] "This was the Cosine for SVD 6 0.753244804088269"
We choose the cosine instead of the mean absolute error because it is clear that if the metric is close to 1, the vectors are more similar. We took the mean of all cosine similarities across n users, to obtain a single measure between the user preference and model prediction vectors. This gave us a single measure that we could use to create a summary statistic to help interpret and compare the overall similarity of user preferences. For the mean absolute error, this was not so clear. The best model we could find in the previous chapter was an SVD model with k singular values. Here, SVD provides the best overall result for the reduced data set with 400 highest rated users.